From 1ed6e21e51976d143de183ce2ea742528b30faed Mon Sep 17 00:00:00 2001 From: avsthiago Date: Fri, 26 Mar 2021 21:40:22 +0100 Subject: [PATCH 1/3] adding sources to dataset management --- src/data/clip_images.py | 41 + src/data/create_dataset.py | 0 src/data/extract_cells.py | 169 + src/data/resources/annotations.csv | 39534 +++++++++++++++++++++++++++ src/split_dataset.py | 80 + 5 files changed, 39824 insertions(+) create mode 100644 src/data/clip_images.py create mode 100644 src/data/create_dataset.py create mode 100644 src/data/extract_cells.py create mode 100644 src/data/resources/annotations.csv create mode 100644 src/split_dataset.py diff --git a/src/data/clip_images.py b/src/data/clip_images.py new file mode 100644 index 0000000..ca00af7 --- /dev/null +++ b/src/data/clip_images.py @@ -0,0 +1,41 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on Mon Jul 30 15:22:02 2018 + +@author: avsthiago +""" + +import cv2, os, multiprocessing +from tqdm import tqdm + +PATH = '/home/avsthiago/tese_thiago/thesis/thesis-deepbee/data/processed/human_test_set/size_220' + +files = [] + +for path, subdirs, fls in os.walk(PATH): + for name in fls: + files.append(os.path.join(path, name)) + +def resize_and_save(im_name): + size = 110 + img = cv2.imread(im_name) + + center = img.shape[0]//2 + + min_y = center - size + min_x = center - size + max_y = center + size + max_x = center + size + roi = img[min_y:max_y,min_x:max_x] + + cv2.imwrite(im_name,roi) + + +pool = multiprocessing.Pool(processes=8) + +with tqdm(total=len(files)) as t: + for _ in pool.imap_unordered(resize_and_save, files): + t.update(1) + +pool.terminate() \ No newline at end of file diff --git a/src/data/create_dataset.py b/src/data/create_dataset.py new file mode 100644 index 0000000..e69de29 diff --git a/src/data/extract_cells.py b/src/data/extract_cells.py new file mode 100644 index 0000000..d681502 --- /dev/null +++ b/src/data/extract_cells.py @@ -0,0 +1,169 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on Thu Feb 15 17:13:29 2018 + +@author: avsthiago +""" + + +import cv2 +import numpy as np +import os +import random +import multiprocessing +import subprocess +import gc +import utils_processing as up + +def create_path(path): + if not os.path.exists(path): + os.makedirs(path) + +PATH = '/home/avsthiago/tese_thiago/thesis/datasets/images_and_annotations/labels_one_file/train_test_val' +OUT_PATH = '/home/avsthiago/tese_thiago/thesis/datasets/DEFAULT_224x224_dataset_no_out' +PATH_IMAGES = '/home/avsthiago/tese_thiago/thesis/datasets/images_and_annotations' + +HANOT = True +#size = 224 + +labels = dict() + +def work(data): + #try: + img = cv2.imread(data[-2]) + size = int(data[-1] // 2) + for p in data[1]: + #print(p) + width, height = img.shape[:2] + min_y = p[2]-size if p[2]-size >= 0 else 0 + min_x = p[1]-size if p[1]-size >= 0 else 0 + max_y = p[2]+size if p[2]+size <= width else width + max_x = p[1]+size if p[1]+size <= height else height + + roi = img[min_y:max_y,min_x:max_x] + #print(os.path.join(data[2],str(p[0])+'.JPG')) + + cv2.imwrite(os.path.join(data[2],str(p[0])+'.JPG'),roi) + gc.collect() + return 0 + + +for l in os.listdir(PATH): + labels[l] = [os.path.join(PATH,l, i) for i in os.listdir(os.path.join(PATH, l))] + +sz = 224 + +OUT_PATH = os.path.join(OUT_PATH, str(sz)) + +for ind, vals in labels.items(): + for c in vals: + cl = c.split('/')[-1] + create_path(os.path.join(OUT_PATH,ind,cl)) + + annot = np.loadtxt(c, delimiter=',', dtype=np.object) + annot[:,[0,1,2,5,6]] = annot[:,[0,1,2,5,6]].astype(np.int32) + images_names = np.unique(annot[:,4]) + + images_and_points = [[a, annot[annot[:,4]==a][:,[0,5,6]], os.path.join(OUT_PATH,ind,cl),os.path.join(PATH_IMAGES, a), sz] for a in images_names] + + for im in images_and_points: + image = cv2.imread(im[-2]) + pt = np.c_[im[1], (np.ones(im[1].shape[0]) * 15).astype(np.int32)] + + blob_imgs = up.extract_circles(image, np.copy(pt[:, 1:]), + output_size=sz, + standardize_radius=False) + + for save in zip(blob_imgs, pt[:,0]): + cv2.imwrite(os.path.join(im[2],str(save[1])+'.JPG'),save[0]) + + print(ind, cl) + + + #cv2.imshow('image', blob_imgs[1]) + + + + + +OUTPUT_FOLDER_NAME = 'OUT' +OUTPUT_FOLDER_PATH = os.path.join(OUT_PATH, OUTPUT_FOLDER_NAME) +PATH_LABELS = 'DEEP' +EXTENSION = 'JPG' +PATH_FINAL_LABELS = os.path.join(PATH, PATH_LABELS) +labels = os.listdir(PATH_FINAL_LABELS) +IMAGE_FILES = os.listdir(PATH) + +classes = [] + + +def create_path_if_not_exists(directory): + if not os.path.exists(directory): + os.makedirs(directory) + + +for im in IMAGE_FILES: + file_name = os.path.join(PATH, im) + if os.path.isfile(file_name): + im = im.upper() + os.rename(file_name, os.path.join(PATH, im)) + +create_path_if_not_exists(OUTPUT_FOLDER_PATH) + +tot_images = 0 +ind = 0 + +for label in labels: + with open(os.path.join(PATH_FINAL_LABELS, label), mode='r') as file: + tot_images += len(list(file.readlines())) + + +for label in labels: + with open(os.path.join(PATH_FINAL_LABELS, label), mode='r') as file: + + return_tuple_int = lambda x, y: np.array([int(float(x)), int(float(y))]) + + image_name = ".".join(["".join(label.split('.')[:-1]), EXTENSION]) + image_path = os.path.join(PATH, image_name) + img = cv2.imread(image_path) + + for line in file.readlines(): + ind += 1 + line = line.split() + category = line[0] + p1 = return_tuple_int(*line[4:6]) + p2 = return_tuple_int(*line[6:8]) + + # TODO: fazer isso com uma normalização gaussiana + #noise_x = random.randint(-10, 10) + #noise_y = random.randint(-10, 10) + + #p1[0] += noise_x + #p2[0] += noise_x + #p1[1] += noise_y + #p2[1] += noise_y + + max_y, max_x = img.shape[:2] + p1[0] = np.clip(p1[0], 0, max_x) + p2[0] = np.clip(p2[0], 0, max_x) + p1[1] = np.clip(p1[1], 0, max_y) + p2[1] = np.clip(p2[1], 0, max_y) + + category_output_path = os.path.join(OUTPUT_FOLDER_PATH, category) + + if category not in classes: + create_path_if_not_exists(category_output_path) + classes.append(category_output_path) + + + out_img_name = ".".join([str(len(os.listdir(category_output_path))+1).zfill(6), + EXTENSION]) + + out_img_path = os.path.join(category_output_path, out_img_name) + + + cv2.imwrite(out_img_path , img[p1[1]:p2[1], p1[0]:p2[0]]) + #cv2.waitKey(0) + print(label, ind, tot_images) + \ No newline at end of file diff --git a/src/data/resources/annotations.csv b/src/data/resources/annotations.csv new file mode 100644 index 0000000..8d43cbc --- /dev/null +++ b/src/data/resources/annotations.csv @@ -0,0 +1,39534 @@ +id,x,y,radius,class,class name,image name +17940,1402,658,15,0,capped,DSC_0818.JPG +18069,1369,724,15,0,capped,DSC_0818.JPG +18071,2509,1222,17,0,capped,DSC_0818.JPG +18087,1618,787,15,0,capped,DSC_0818.JPG +18112,1339,910,15,0,capped,DSC_0818.JPG +18120,2515,853,15,0,capped,DSC_0818.JPG +18125,2092,730,17,0,capped,DSC_0818.JPG +18153,1513,478,15,0,capped,DSC_0818.JPG +18154,1405,787,17,0,capped,DSC_0818.JPG +18163,1444,724,15,0,capped,DSC_0818.JPG +18173,1303,598,15,0,capped,DSC_0818.JPG +18174,1297,841,17,0,capped,DSC_0818.JPG +18175,1411,907,15,0,capped,DSC_0818.JPG +18191,1375,844,17,0,capped,DSC_0818.JPG +18198,1588,472,15,0,capped,DSC_0818.JPG +18199,1114,781,17,0,capped,DSC_0818.JPG +18200,2431,1345,17,0,capped,DSC_0818.JPG +18206,1663,601,17,0,capped,DSC_0818.JPG +18207,1342,796,17,0,capped,DSC_0818.JPG +18221,2365,1213,17,0,capped,DSC_0818.JPG +18228,1588,601,17,0,capped,DSC_0818.JPG +18229,2581,1345,17,0,capped,DSC_0818.JPG +18244,1519,601,17,0,capped,DSC_0818.JPG +18248,1366,592,17,0,capped,DSC_0818.JPG +18249,1228,838,17,0,capped,DSC_0818.JPG +18260,1654,727,15,0,capped,DSC_0818.JPG +18262,2557,907,15,0,capped,DSC_0818.JPG +18263,2290,1462,16,0,capped,DSC_0818.JPG +18269,1411,535,17,0,capped,DSC_0818.JPG +18270,1621,547,15,0,capped,DSC_0818.JPG +18271,1297,715,17,0,capped,DSC_0818.JPG +18282,1477,535,17,0,capped,DSC_0818.JPG +18289,1480,664,15,0,capped,DSC_0818.JPG +18291,1693,787,17,0,capped,DSC_0818.JPG +18292,1150,841,17,0,capped,DSC_0818.JPG +18301,1618,661,15,0,capped,DSC_0818.JPG +18302,1222,727,17,0,capped,DSC_0818.JPG +18303,1261,781,15,0,capped,DSC_0818.JPG +18304,1192,907,17,0,capped,DSC_0818.JPG +18308,1477,901,17,0,capped,DSC_0818.JPG +18312,1948,475,17,0,capped,DSC_0818.JPG +18313,1447,478,15,0,capped,DSC_0818.JPG +18317,1336,655,17,0,capped,DSC_0818.JPG +18318,1153,712,17,0,capped,DSC_0818.JPG +18319,1804,724,17,0,capped,DSC_0818.JPG +18320,1765,787,17,0,capped,DSC_0818.JPG +18327,1477,781,15,0,capped,DSC_0818.JPG +18335,1447,967,15,0,capped,DSC_0818.JPG +18340,1735,604,17,0,capped,DSC_0818.JPG +18341,1873,730,15,0,capped,DSC_0818.JPG +18342,1180,784,17,0,capped,DSC_0818.JPG +18343,2011,853,17,0,capped,DSC_0818.JPG +18346,1258,547,15,0,capped,DSC_0818.JPG +18347,1735,730,15,0,capped,DSC_0818.JPG +18348,1372,1090,17,0,capped,DSC_0818.JPG +18351,1666,475,15,0,capped,DSC_0818.JPG +18352,1225,595,17,0,capped,DSC_0818.JPG +18354,1552,538,15,0,capped,DSC_0818.JPG +18355,2431,1465,17,0,capped,DSC_0818.JPG +18362,1342,529,17,0,capped,DSC_0818.JPG +18363,1117,901,17,0,capped,DSC_0818.JPG +18364,1768,922,15,0,capped,DSC_0818.JPG +18366,2656,1099,17,0,capped,DSC_0818.JPG +18368,1762,670,15,0,capped,DSC_0818.JPG +18369,2734,973,15,0,capped,DSC_0818.JPG +18371,1201,658,17,0,capped,DSC_0818.JPG +18373,2473,1156,17,0,capped,DSC_0818.JPG +18374,2467,1285,17,0,capped,DSC_0818.JPG +18379,1384,472,17,0,capped,DSC_0818.JPG +18380,1090,712,17,0,capped,DSC_0818.JPG +18385,1273,1021,17,0,capped,DSC_0818.JPG +18391,1696,406,17,0,capped,DSC_0818.JPG +18392,1960,598,17,0,capped,DSC_0818.JPG +18394,1078,835,17,0,capped,DSC_0818.JPG +18395,1630,1033,17,0,capped,DSC_0818.JPG +18397,2539,1396,17,0,capped,DSC_0818.JPG +18403,1555,418,17,0,capped,DSC_0818.JPG +18404,1297,964,17,0,capped,DSC_0818.JPG +18408,1906,661,15,0,capped,DSC_0818.JPG +18409,1843,790,17,0,capped,DSC_0818.JPG +18410,1489,409,15,0,capped,DSC_0818.JPG +18411,1162,592,17,0,capped,DSC_0818.JPG +18419,1624,403,15,0,capped,DSC_0818.JPG +18420,1540,775,15,0,capped,DSC_0818.JPG +18422,2431,1225,17,0,capped,DSC_0818.JPG +18426,1273,403,17,0,capped,DSC_0818.JPG +18428,1690,1036,17,0,capped,DSC_0818.JPG +18433,1768,541,17,0,capped,DSC_0818.JPG +18434,1516,970,17,0,capped,DSC_0818.JPG +18435,1399,1147,15,0,capped,DSC_0818.JPG +18437,1405,1024,17,0,capped,DSC_0818.JPG +18440,1690,904,15,0,capped,DSC_0818.JPG +18446,1126,535,17,0,capped,DSC_0818.JPG +18448,2323,1387,15,0,capped,DSC_0818.JPG +18452,2365,1462,17,0,capped,DSC_0818.JPG +18460,2575,1465,17,0,capped,DSC_0818.JPG +18463,2464,1411,17,0,capped,DSC_0818.JPG +18471,1705,1165,15,0,capped,DSC_0818.JPG +18478,1519,1213,17,0,capped,DSC_0818.JPG +21247,418,2443,17,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21348,694,2251,17,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21381,811,2788,17,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21423,1021,2887,17,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21439,607,2374,17,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21440,622,2638,17,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21473,652,2161,17,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21475,508,2449,17,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21487,769,2701,15,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21538,652,2803,15,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21552,340,2080,17,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21589,721,2761,17,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21691,607,2860,16,0,capped,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2392,3322,181,15,0,capped,DSC_0844.JPG +2416,367,706,17,0,capped,DSC_0844.JPG +2431,3991,262,17,0,capped,DSC_0844.JPG +2449,838,271,15,0,capped,DSC_0844.JPG +2472,1699,2401,17,0,capped,DSC_0844.JPG +2474,367,832,15,0,capped,DSC_0844.JPG +2478,4651,598,17,0,capped,DSC_0844.JPG +2533,295,1894,17,0,capped,DSC_0844.JPG +2543,295,697,15,0,capped,DSC_0844.JPG +2575,4714,733,17,0,capped,DSC_0844.JPG +25793,2959,634,15,0,capped,DSC_0819.JPG +2590,730,334,15,0,capped,DSC_0844.JPG +2591,481,517,17,0,capped,DSC_0844.JPG +2592,328,766,17,0,capped,DSC_0844.JPG +2593,403,769,15,0,capped,DSC_0844.JPG +2594,289,943,15,0,capped,DSC_0844.JPG +2599,625,526,17,0,capped,DSC_0844.JPG +2602,4129,265,15,0,capped,DSC_0844.JPG +2603,694,529,17,0,capped,DSC_0844.JPG +2605,5056,1333,15,0,capped,DSC_0844.JPG +26071,2815,634,15,0,capped,DSC_0819.JPG +26110,4390,1294,17,0,capped,DSC_0819.JPG +2612,871,337,15,0,capped,DSC_0844.JPG +2613,4852,853,15,0,capped,DSC_0844.JPG +26152,2917,814,15,0,capped,DSC_0819.JPG +26199,3295,1351,15,0,capped,DSC_0819.JPG +2620,3901,2500,17,0,capped,DSC_0844.JPG +26214,2953,880,17,0,capped,DSC_0819.JPG +26240,3205,445,15,0,capped,DSC_0819.JPG +26259,2920,691,17,0,capped,DSC_0819.JPG +26260,2776,694,15,0,capped,DSC_0819.JPG +26261,3232,874,15,0,capped,DSC_0819.JPG +26266,3964,1534,17,0,capped,DSC_0819.JPG +2630,4657,469,15,0,capped,DSC_0844.JPG +2631,4963,916,15,0,capped,DSC_0844.JPG +26317,3541,1783,15,0,capped,DSC_0819.JPG +26324,2890,634,15,0,capped,DSC_0819.JPG +2635,4618,544,17,0,capped,DSC_0844.JPG +26350,4393,1414,17,0,capped,DSC_0819.JPG +26354,3931,1588,15,0,capped,DSC_0819.JPG +2638,4066,2563,17,0,capped,DSC_0844.JPG +2640,4681,667,17,0,capped,DSC_0844.JPG +26404,2770,1180,17,0,capped,DSC_0819.JPG +26406,3295,1477,17,0,capped,DSC_0819.JPG +2641,5014,1276,15,0,capped,DSC_0844.JPG +26423,3439,1354,15,0,capped,DSC_0819.JPG +26425,3118,1420,15,0,capped,DSC_0819.JPG +26442,2851,694,17,0,capped,DSC_0819.JPG +26444,2839,1183,15,0,capped,DSC_0819.JPG +26446,3823,1411,15,0,capped,DSC_0819.JPG +2645,4267,397,15,0,capped,DSC_0844.JPG +2646,580,589,15,0,capped,DSC_0844.JPG +26461,3157,1111,15,0,capped,DSC_0819.JPG +26462,2737,1243,15,0,capped,DSC_0819.JPG +26474,2995,694,17,0,capped,DSC_0819.JPG +26476,3478,817,17,0,capped,DSC_0819.JPG +26481,3157,1237,15,0,capped,DSC_0819.JPG +26498,2704,814,17,0,capped,DSC_0819.JPG +26505,3082,1363,17,0,capped,DSC_0819.JPG +26506,3580,1474,15,0,capped,DSC_0819.JPG +26513,3595,379,15,0,capped,DSC_0819.JPG +26521,3439,1474,17,0,capped,DSC_0819.JPG +26525,3694,313,17,0,capped,DSC_0819.JPG +26526,3418,442,17,0,capped,DSC_0819.JPG +26530,2704,1183,17,0,capped,DSC_0819.JPG +26533,3331,1411,15,0,capped,DSC_0819.JPG +26547,3484,442,15,0,capped,DSC_0819.JPG +2655,3463,178,17,0,capped,DSC_0844.JPG +26550,2950,1000,15,0,capped,DSC_0819.JPG +26552,4213,1351,17,0,capped,DSC_0819.JPG +2656,3853,253,15,0,capped,DSC_0844.JPG +2657,4201,262,15,0,capped,DSC_0844.JPG +26571,2956,754,15,0,capped,DSC_0819.JPG +26576,3133,931,17,0,capped,DSC_0819.JPG +26578,2911,1180,15,0,capped,DSC_0819.JPG +2658,4480,403,15,0,capped,DSC_0844.JPG +26581,3256,1660,15,0,capped,DSC_0819.JPG +2659,4585,472,17,0,capped,DSC_0844.JPG +26593,4540,685,17,0,capped,DSC_0819.JPG +26594,3448,751,17,0,capped,DSC_0819.JPG +26595,2737,880,17,0,capped,DSC_0819.JPG +26600,4492,1111,17,0,capped,DSC_0819.JPG +26605,3190,1543,17,0,capped,DSC_0819.JPG +26614,3235,754,15,0,capped,DSC_0819.JPG +26616,4351,1231,15,0,capped,DSC_0819.JPG +26617,3361,1723,15,0,capped,DSC_0819.JPG +26621,4723,868,17,0,capped,DSC_0819.JPG +26626,2878,1366,17,0,capped,DSC_0819.JPG +26629,3862,1723,17,0,capped,DSC_0819.JPG +26636,3871,247,17,0,capped,DSC_0819.JPG +26637,4507,622,17,0,capped,DSC_0819.JPG +26638,3028,634,17,0,capped,DSC_0819.JPG +26639,2989,811,17,0,capped,DSC_0819.JPG +26645,3757,1534,15,0,capped,DSC_0819.JPG +26657,4462,814,17,0,capped,DSC_0819.JPG +26659,3091,994,17,0,capped,DSC_0819.JPG +2666,3535,181,17,0,capped,DSC_0844.JPG +26661,2944,1237,15,0,capped,DSC_0819.JPG +2667,4858,724,17,0,capped,DSC_0844.JPG +26672,3661,379,17,0,capped,DSC_0819.JPG +26673,3172,505,15,0,capped,DSC_0819.JPG +26675,4687,685,17,0,capped,DSC_0819.JPG +26680,3019,877,15,0,capped,DSC_0819.JPG +26682,4465,1171,15,0,capped,DSC_0819.JPG +26685,3541,1537,17,0,capped,DSC_0819.JPG +2669,3565,256,17,0,capped,DSC_0844.JPG +26693,3133,568,15,0,capped,DSC_0819.JPG +26697,2875,1483,17,0,capped,DSC_0819.JPG +26699,4003,1591,15,0,capped,DSC_0819.JPG +2670,730,466,17,0,capped,DSC_0844.JPG +2671,4441,472,17,0,capped,DSC_0844.JPG +26711,3379,628,15,0,capped,DSC_0819.JPG +26712,3202,694,15,0,capped,DSC_0819.JPG +26717,3649,1471,17,0,capped,DSC_0819.JPG +26718,4288,1474,17,0,capped,DSC_0819.JPG +2672,4792,601,17,0,capped,DSC_0844.JPG +26723,3943,250,17,0,capped,DSC_0819.JPG +26727,3661,502,15,0,capped,DSC_0819.JPG +26728,3205,565,17,0,capped,DSC_0819.JPG +26732,2884,754,17,0,capped,DSC_0819.JPG +26735,3202,937,15,0,capped,DSC_0819.JPG +26736,4567,985,15,0,capped,DSC_0819.JPG +26737,2737,1003,17,0,capped,DSC_0819.JPG +26740,4501,1231,17,0,capped,DSC_0819.JPG +26741,2842,1426,17,0,capped,DSC_0819.JPG +26754,4291,622,17,0,capped,DSC_0819.JPG +26759,4312,1288,17,0,capped,DSC_0819.JPG +26764,3679,1534,17,0,capped,DSC_0819.JPG +26770,4192,316,15,0,capped,DSC_0819.JPG +26771,4441,373,17,0,capped,DSC_0819.JPG +26772,4462,1291,17,0,capped,DSC_0819.JPG +26773,3862,1348,17,0,capped,DSC_0819.JPG +26774,4249,1414,15,0,capped,DSC_0819.JPG +2678,1231,205,17,0,capped,DSC_0844.JPG +26781,4366,373,15,0,capped,DSC_0819.JPG +26782,4156,379,17,0,capped,DSC_0819.JPG +26784,3241,508,17,0,capped,DSC_0819.JPG +26785,3241,631,17,0,capped,DSC_0819.JPG +26786,3517,754,15,0,capped,DSC_0819.JPG +26788,2983,1054,15,0,capped,DSC_0819.JPG +26789,4039,1534,17,0,capped,DSC_0819.JPG +2679,3778,271,17,0,capped,DSC_0844.JPG +26791,3472,1654,15,0,capped,DSC_0819.JPG +26792,3787,1717,17,0,capped,DSC_0819.JPG +2680,4024,331,15,0,capped,DSC_0844.JPG +26802,3802,250,17,0,capped,DSC_0819.JPG +26804,3520,379,17,0,capped,DSC_0819.JPG +26805,3445,499,15,0,capped,DSC_0819.JPG +26807,3172,628,17,0,capped,DSC_0819.JPG +26808,2740,634,17,0,capped,DSC_0819.JPG +26810,4498,745,17,0,capped,DSC_0819.JPG +26811,2665,877,17,0,capped,DSC_0819.JPG +26813,2671,1243,17,0,capped,DSC_0819.JPG +26814,2836,1306,17,0,capped,DSC_0819.JPG +26817,3406,1543,15,0,capped,DSC_0819.JPG +26820,3715,1600,15,0,capped,DSC_0819.JPG +26826,4015,376,17,0,capped,DSC_0819.JPG +26827,3274,571,17,0,capped,DSC_0819.JPG +26829,4390,1051,15,0,capped,DSC_0819.JPG +26830,2635,1177,17,0,capped,DSC_0819.JPG +26832,3016,1243,17,0,capped,DSC_0819.JPG +26834,3715,1717,17,0,capped,DSC_0819.JPG +26839,4228,379,15,0,capped,DSC_0819.JPG +26842,3340,1051,17,0,capped,DSC_0819.JPG +26844,2740,1123,17,0,capped,DSC_0819.JPG +26846,3013,1480,17,0,capped,DSC_0819.JPG +2685,769,403,17,0,capped,DSC_0844.JPG +26850,3346,445,17,0,capped,DSC_0819.JPG +26851,4435,502,17,0,capped,DSC_0819.JPG +26852,3694,568,17,0,capped,DSC_0819.JPG +26853,2704,691,15,0,capped,DSC_0819.JPG +26854,2818,754,17,0,capped,DSC_0819.JPG +26856,2878,874,17,0,capped,DSC_0819.JPG +26859,2803,1246,15,0,capped,DSC_0819.JPG +26860,3121,1297,17,0,capped,DSC_0819.JPG +26861,4033,1411,17,0,capped,DSC_0819.JPG +26862,3784,1471,15,0,capped,DSC_0819.JPG +26865,4108,1534,17,0,capped,DSC_0819.JPG +26866,3862,1597,17,0,capped,DSC_0819.JPG +26867,4072,1600,17,0,capped,DSC_0819.JPG +26868,3433,1723,15,0,capped,DSC_0819.JPG +2687,4744,796,17,0,capped,DSC_0844.JPG +26875,3520,634,15,0,capped,DSC_0819.JPG +26876,3343,691,15,0,capped,DSC_0819.JPG +26880,2773,817,15,0,capped,DSC_0819.JPG +26882,3019,1120,17,0,capped,DSC_0819.JPG +26884,3085,1237,17,0,capped,DSC_0819.JPG +26885,3154,1603,15,0,capped,DSC_0819.JPG +26886,3532,1657,17,0,capped,DSC_0819.JPG +2689,5182,2047,17,0,capped,DSC_0844.JPG +26894,2920,571,17,0,capped,DSC_0819.JPG +26895,2704,943,17,0,capped,DSC_0819.JPG +26896,2704,1057,17,0,capped,DSC_0819.JPG +26897,3544,1285,15,0,capped,DSC_0819.JPG +26898,3406,1288,15,0,capped,DSC_0819.JPG +26899,2770,1306,17,0,capped,DSC_0819.JPG +2690,661,463,15,0,capped,DSC_0844.JPG +26900,4285,1348,17,0,capped,DSC_0819.JPG +26901,4144,1351,17,0,capped,DSC_0819.JPG +26902,3193,1423,15,0,capped,DSC_0819.JPG +26907,3610,1783,17,0,capped,DSC_0819.JPG +2691,4933,985,16,0,capped,DSC_0844.JPG +26910,3517,505,15,0,capped,DSC_0819.JPG +26911,2749,757,17,0,capped,DSC_0819.JPG +26912,2851,811,15,0,capped,DSC_0819.JPG +26913,2989,943,15,0,capped,DSC_0819.JPG +26914,2602,997,17,0,capped,DSC_0819.JPG +26917,3475,1414,17,0,capped,DSC_0819.JPG +26919,2908,1549,15,0,capped,DSC_0819.JPG +2692,4963,1042,17,0,capped,DSC_0844.JPG +26921,3511,1597,17,0,capped,DSC_0819.JPG +26927,3589,628,17,0,capped,DSC_0819.JPG +26928,3133,691,17,0,capped,DSC_0819.JPG +26929,3553,694,17,0,capped,DSC_0819.JPG +26930,3163,754,17,0,capped,DSC_0819.JPG +26931,4612,808,15,0,capped,DSC_0819.JPG +26932,3163,868,15,0,capped,DSC_0819.JPG +26934,2671,1000,15,0,capped,DSC_0819.JPG +26936,3055,1054,17,0,capped,DSC_0819.JPG +26937,2635,1060,15,0,capped,DSC_0819.JPG +26938,3088,1120,17,0,capped,DSC_0819.JPG +26939,2911,1303,17,0,capped,DSC_0819.JPG +26940,3898,1411,17,0,capped,DSC_0819.JPG +26942,3190,1660,15,0,capped,DSC_0819.JPG +2695,4408,400,15,0,capped,DSC_0844.JPG +26951,3307,631,17,0,capped,DSC_0819.JPG +26952,3310,1000,17,0,capped,DSC_0819.JPG +26953,4423,1111,17,0,capped,DSC_0819.JPG +26955,3928,1351,17,0,capped,DSC_0819.JPG +26957,3895,1534,17,0,capped,DSC_0819.JPG +26958,3052,1543,15,0,capped,DSC_0819.JPG +2696,478,646,15,0,capped,DSC_0844.JPG +26963,3940,382,17,0,capped,DSC_0819.JPG +26964,3700,439,15,0,capped,DSC_0819.JPG +26965,3484,574,15,0,capped,DSC_0819.JPG +26966,4366,625,17,0,capped,DSC_0819.JPG +26969,2881,1120,17,0,capped,DSC_0819.JPG +2697,5092,1273,17,0,capped,DSC_0844.JPG +26970,4249,1288,17,0,capped,DSC_0819.JPG +26971,4603,1294,17,0,capped,DSC_0819.JPG +26972,3511,1357,15,0,capped,DSC_0819.JPG +26978,4549,439,17,0,capped,DSC_0819.JPG +26980,3346,568,17,0,capped,DSC_0819.JPG +26983,4390,1165,17,0,capped,DSC_0819.JPG +2699,1330,2455,17,0,capped,DSC_0844.JPG +26997,3295,1597,17,0,capped,DSC_0819.JPG +27001,3559,316,15,0,capped,DSC_0819.JPG +27002,3448,379,17,0,capped,DSC_0819.JPG +27003,4258,445,15,0,capped,DSC_0819.JPG +27004,3592,508,15,0,capped,DSC_0819.JPG +27006,2566,937,17,0,capped,DSC_0819.JPG +27007,3379,991,15,0,capped,DSC_0819.JPG +27009,2731,1363,17,0,capped,DSC_0819.JPG +2701,4723,595,17,0,capped,DSC_0844.JPG +27012,3364,1603,17,0,capped,DSC_0819.JPG +27015,3574,1714,17,0,capped,DSC_0819.JPG +27016,3223,1723,15,0,capped,DSC_0819.JPG +27019,4336,439,17,0,capped,DSC_0819.JPG +27020,3310,508,15,0,capped,DSC_0819.JPG +27022,3412,694,17,0,capped,DSC_0819.JPG +27026,3055,931,17,0,capped,DSC_0819.JPG +27027,4285,1108,17,0,capped,DSC_0819.JPG +27028,3121,1177,15,0,capped,DSC_0819.JPG +27030,3313,1288,17,0,capped,DSC_0819.JPG +27032,3256,1540,17,0,capped,DSC_0819.JPG +27033,3445,1597,15,0,capped,DSC_0819.JPG +27034,3403,1657,15,0,capped,DSC_0819.JPG +27039,3556,568,17,0,capped,DSC_0819.JPG +27040,4471,568,15,0,capped,DSC_0819.JPG +27043,4528,1054,17,0,capped,DSC_0819.JPG +27044,3124,1057,15,0,capped,DSC_0819.JPG +27046,3475,1540,15,0,capped,DSC_0819.JPG +27047,3334,1660,15,0,capped,DSC_0819.JPG +2705,1876,2416,17,0,capped,DSC_0844.JPG +27051,4297,373,17,0,capped,DSC_0819.JPG +27053,3556,445,15,0,capped,DSC_0819.JPG +27054,3376,514,17,0,capped,DSC_0819.JPG +27055,3133,808,15,0,capped,DSC_0819.JPG +27056,3268,811,15,0,capped,DSC_0819.JPG +27057,3346,817,17,0,capped,DSC_0819.JPG +27059,2842,1063,15,0,capped,DSC_0819.JPG +27060,3052,1183,15,0,capped,DSC_0819.JPG +27061,2875,1240,15,0,capped,DSC_0819.JPG +27062,4498,1357,17,0,capped,DSC_0819.JPG +27063,3259,1420,15,0,capped,DSC_0819.JPG +27069,3487,316,17,0,capped,DSC_0819.JPG +2707,3388,184,15,0,capped,DSC_0844.JPG +27070,4081,379,17,0,capped,DSC_0819.JPG +27072,4645,748,17,0,capped,DSC_0819.JPG +27075,3049,1303,15,0,capped,DSC_0819.JPG +27076,3016,1363,15,0,capped,DSC_0819.JPG +27077,2803,1483,15,0,capped,DSC_0819.JPG +27079,3790,1594,17,0,capped,DSC_0819.JPG +27084,4123,316,17,0,capped,DSC_0819.JPG +27086,3268,916,15,0,capped,DSC_0819.JPG +27087,2779,943,15,0,capped,DSC_0819.JPG +27089,3268,1048,15,0,capped,DSC_0819.JPG +2709,979,271,16,0,capped,DSC_0844.JPG +27090,2773,1057,17,0,capped,DSC_0819.JPG +27091,2806,1120,17,0,capped,DSC_0819.JPG +27092,4357,1348,15,0,capped,DSC_0819.JPG +27093,3754,1408,17,0,capped,DSC_0819.JPG +27094,3394,1783,17,0,capped,DSC_0819.JPG +2710,4474,532,15,0,capped,DSC_0844.JPG +27103,3733,382,17,0,capped,DSC_0819.JPG +27104,4435,622,15,0,capped,DSC_0819.JPG +27107,4501,874,15,0,capped,DSC_0819.JPG +27108,3151,1480,17,0,capped,DSC_0819.JPG +2711,337,886,17,0,capped,DSC_0844.JPG +27115,3931,1471,15,0,capped,DSC_0819.JPG +27116,3502,1720,15,0,capped,DSC_0819.JPG +27121,3100,508,15,0,capped,DSC_0819.JPG +27124,3097,754,17,0,capped,DSC_0819.JPG +27125,3064,811,15,0,capped,DSC_0819.JPG +27127,3691,1408,17,0,capped,DSC_0819.JPG +27128,3580,1600,17,0,capped,DSC_0819.JPG +27130,3682,1783,17,0,capped,DSC_0819.JPG +27134,3625,316,15,0,capped,DSC_0819.JPG +27135,3274,445,17,0,capped,DSC_0819.JPG +27136,4624,556,15,0,capped,DSC_0819.JPG +27137,4324,568,15,0,capped,DSC_0819.JPG +27138,3451,628,17,0,capped,DSC_0819.JPG +27139,3211,817,17,0,capped,DSC_0819.JPG +2714,1264,2338,15,0,capped,DSC_0844.JPG +27141,3436,874,15,0,capped,DSC_0819.JPG +27142,2560,1057,17,0,capped,DSC_0819.JPG +27143,2950,1129,17,0,capped,DSC_0819.JPG +27144,3226,1360,17,0,capped,DSC_0819.JPG +27145,3997,1474,15,0,capped,DSC_0819.JPG +27149,3625,445,17,0,capped,DSC_0819.JPG +27150,4219,505,15,0,capped,DSC_0819.JPG +27151,4366,505,17,0,capped,DSC_0819.JPG +27152,3412,814,15,0,capped,DSC_0819.JPG +27154,2818,1006,17,0,capped,DSC_0819.JPG +27156,4174,1291,17,0,capped,DSC_0819.JPG +27158,3652,1354,17,0,capped,DSC_0819.JPG +2716,835,400,17,0,capped,DSC_0844.JPG +27163,3595,247,17,0,capped,DSC_0819.JPG +27164,3766,319,17,0,capped,DSC_0819.JPG +27165,3625,571,15,0,capped,DSC_0819.JPG +27166,3484,691,15,0,capped,DSC_0819.JPG +27167,3313,880,15,0,capped,DSC_0819.JPG +27168,4528,925,17,0,capped,DSC_0819.JPG +27169,4606,928,17,0,capped,DSC_0819.JPG +2717,4687,538,15,0,capped,DSC_0844.JPG +27170,2596,1120,15,0,capped,DSC_0819.JPG +27171,2980,1177,17,0,capped,DSC_0819.JPG +27172,2980,1303,17,0,capped,DSC_0819.JPG +27173,3082,1474,15,0,capped,DSC_0819.JPG +27174,3115,1546,17,0,capped,DSC_0819.JPG +27178,3976,307,15,0,capped,DSC_0819.JPG +2718,511,586,17,0,capped,DSC_0844.JPG +27180,3022,754,17,0,capped,DSC_0819.JPG +27182,4108,1288,17,0,capped,DSC_0819.JPG +27183,3253,1297,15,0,capped,DSC_0819.JPG +27184,2809,1366,15,0,capped,DSC_0819.JPG +27185,3043,1417,15,0,capped,DSC_0819.JPG +27187,3646,1597,15,0,capped,DSC_0819.JPG +2719,370,955,15,0,capped,DSC_0844.JPG +27193,3805,379,17,0,capped,DSC_0819.JPG +27195,3106,625,17,0,capped,DSC_0819.JPG +27196,3292,754,17,0,capped,DSC_0819.JPG +27197,3376,874,17,0,capped,DSC_0819.JPG +27198,3484,1291,15,0,capped,DSC_0819.JPG +27199,3859,1474,17,0,capped,DSC_0819.JPG +27215,4297,502,15,0,capped,DSC_0819.JPG +27216,4516,502,15,0,capped,DSC_0819.JPG +27217,4258,562,17,0,capped,DSC_0819.JPG +27218,3376,745,15,0,capped,DSC_0819.JPG +27219,2809,874,17,0,capped,DSC_0819.JPG +27220,3238,991,15,0,capped,DSC_0819.JPG +27223,3613,1657,17,0,capped,DSC_0819.JPG +27232,4465,685,15,0,capped,DSC_0819.JPG +27233,2845,937,15,0,capped,DSC_0819.JPG +27235,4462,1048,15,0,capped,DSC_0819.JPG +27236,3586,1354,15,0,capped,DSC_0819.JPG +27238,3619,1408,15,0,capped,DSC_0819.JPG +27242,4417,433,15,0,capped,DSC_0819.JPG +27243,4195,442,17,0,capped,DSC_0819.JPG +27244,3418,565,17,0,capped,DSC_0819.JPG +27245,3835,565,17,0,capped,DSC_0819.JPG +27246,3187,1174,17,0,capped,DSC_0819.JPG +27247,4531,1180,15,0,capped,DSC_0819.JPG +27248,3973,1420,15,0,capped,DSC_0819.JPG +27249,3226,1480,17,0,capped,DSC_0819.JPG +2725,4987,2215,17,0,capped,DSC_0844.JPG +27254,3673,253,17,0,capped,DSC_0819.JPG +27255,4474,445,15,0,capped,DSC_0819.JPG +27256,4537,805,15,0,capped,DSC_0819.JPG +27262,3415,316,15,0,capped,DSC_0819.JPG +27263,4261,319,17,0,capped,DSC_0819.JPG +27265,4012,1345,15,0,capped,DSC_0819.JPG +27266,3964,1654,17,0,capped,DSC_0819.JPG +27273,2848,574,15,0,capped,DSC_0819.JPG +27274,4498,991,15,0,capped,DSC_0819.JPG +27275,2938,1363,15,0,capped,DSC_0819.JPG +27276,2983,1426,17,0,capped,DSC_0819.JPG +2728,550,652,17,0,capped,DSC_0844.JPG +27283,4066,1468,15,0,capped,DSC_0819.JPG +27287,4048,307,17,0,capped,DSC_0819.JPG +27288,3241,376,17,0,capped,DSC_0819.JPG +27289,3880,382,17,0,capped,DSC_0819.JPG +2729,4894,790,16,0,capped,DSC_0844.JPG +27291,4720,994,15,0,capped,DSC_0819.JPG +27292,4603,1174,17,0,capped,DSC_0819.JPG +27293,4444,1231,15,0,capped,DSC_0819.JPG +27298,4399,559,17,0,capped,DSC_0819.JPG +27299,4570,748,17,0,capped,DSC_0819.JPG +2730,1771,2428,15,0,capped,DSC_0844.JPG +27301,4111,1420,15,0,capped,DSC_0819.JPG +27304,3730,241,17,0,capped,DSC_0819.JPG +27305,2998,568,15,0,capped,DSC_0819.JPG +2731,3490,259,17,0,capped,DSC_0844.JPG +27315,3133,436,15,0,capped,DSC_0819.JPG +27316,4606,1051,17,0,capped,DSC_0819.JPG +27317,2668,1126,17,0,capped,DSC_0819.JPG +27318,3643,1720,17,0,capped,DSC_0819.JPG +2732,4933,847,17,0,capped,DSC_0844.JPG +27326,4429,745,17,0,capped,DSC_0819.JPG +27327,4681,1048,15,0,capped,DSC_0819.JPG +27331,4567,865,17,0,capped,DSC_0819.JPG +27335,4123,445,17,0,capped,DSC_0819.JPG +27338,3220,1603,17,0,capped,DSC_0819.JPG +27342,4654,1114,17,0,capped,DSC_0819.JPG +27352,4576,619,15,0,capped,DSC_0819.JPG +27360,3301,1219,17,0,capped,DSC_0819.JPG +27366,3334,946,17,0,capped,DSC_0819.JPG +2738,5197,1441,15,0,capped,DSC_0844.JPG +2740,2005,2491,17,0,capped,DSC_0844.JPG +27406,3301,394,17,0,capped,DSC_0819.JPG +2741,1813,2500,17,0,capped,DSC_0844.JPG +2742,3640,256,15,0,capped,DSC_0844.JPG +2744,5029,1036,17,0,capped,DSC_0844.JPG +2745,214,1057,17,0,capped,DSC_0844.JPG +2751,4300,337,17,0,capped,DSC_0844.JPG +2752,4228,346,17,0,capped,DSC_0844.JPG +2753,256,1837,15,0,capped,DSC_0844.JPG +2756,4375,331,17,0,capped,DSC_0844.JPG +2757,4510,472,17,0,capped,DSC_0844.JPG +2758,478,778,17,0,capped,DSC_0844.JPG +2761,1360,2389,17,0,capped,DSC_0844.JPG +2763,1303,211,17,0,capped,DSC_0844.JPG +2764,4549,403,15,0,capped,DSC_0844.JPG +2765,5101,1153,17,0,capped,DSC_0844.JPG +2768,4114,2509,15,0,capped,DSC_0844.JPG +2769,1189,277,17,0,capped,DSC_0844.JPG +2770,4753,667,15,0,capped,DSC_0844.JPG +27708,3292,982,17,0,capped,DSC_0840.JPG +2771,4816,919,17,0,capped,DSC_0844.JPG +2776,4891,922,17,0,capped,DSC_0844.JPG +2777,5059,1222,17,0,capped,DSC_0844.JPG +2778,1366,2308,17,0,capped,DSC_0844.JPG +2779,1213,2407,17,0,capped,DSC_0844.JPG +2781,3355,250,15,0,capped,DSC_0844.JPG +2782,4549,538,15,0,capped,DSC_0844.JPG +2783,4987,1105,17,0,capped,DSC_0844.JPG +2785,4945,2383,17,0,capped,DSC_0844.JPG +2788,3952,331,15,0,capped,DSC_0844.JPG +2789,802,466,17,0,capped,DSC_0844.JPG +2792,5230,1987,17,0,capped,DSC_0844.JPG +2794,1363,2221,15,0,capped,DSC_0844.JPG +2795,4012,2350,17,0,capped,DSC_0844.JPG +2797,4057,271,17,0,capped,DSC_0844.JPG +2798,4162,334,15,0,capped,DSC_0844.JPG +2799,1549,2500,17,0,capped,DSC_0844.JPG +2800,1516,223,17,0,capped,DSC_0844.JPG +2801,547,526,17,0,capped,DSC_0844.JPG +28014,889,832,17,0,capped,DSC_0840.JPG +2802,445,706,17,0,capped,DSC_0844.JPG +2803,4825,790,15,0,capped,DSC_0844.JPG +2804,178,1111,17,0,capped,DSC_0844.JPG +2805,784,2287,16,0,capped,DSC_0844.JPG +2806,1288,2410,15,0,capped,DSC_0844.JPG +2809,1375,217,15,0,capped,DSC_0844.JPG +28090,883,1426,15,0,capped,DSC_0840.JPG +2810,5098,1384,17,0,capped,DSC_0844.JPG +2812,466,2092,17,0,capped,DSC_0844.JPG +2813,5059,2212,15,0,capped,DSC_0844.JPG +2814,2230,2422,15,0,capped,DSC_0844.JPG +2815,4057,2461,17,0,capped,DSC_0844.JPG +2817,1678,2512,17,0,capped,DSC_0844.JPG +2818,1126,280,17,0,capped,DSC_0844.JPG +2819,4096,337,17,0,capped,DSC_0844.JPG +28202,4177,931,17,0,capped,DSC_0840.JPG +2821,5218,1873,17,0,capped,DSC_0844.JPG +2822,5140,2107,17,0,capped,DSC_0844.JPG +2824,1150,2464,17,0,capped,DSC_0844.JPG +2826,4339,403,17,0,capped,DSC_0844.JPG +28264,784,1015,15,0,capped,DSC_0840.JPG +2827,5125,1447,17,0,capped,DSC_0844.JPG +2829,1051,277,17,0,capped,DSC_0844.JPG +28293,3076,1219,17,0,capped,DSC_0840.JPG +2830,220,934,17,0,capped,DSC_0844.JPG +28305,3145,1570,15,0,capped,DSC_0840.JPG +2831,3139,1459,16,0,capped,DSC_0844.JPG +28311,3739,2116,15,0,capped,DSC_0840.JPG +2832,4873,2389,16,0,capped,DSC_0844.JPG +28333,3256,1039,15,0,capped,DSC_0840.JPG +28357,2239,607,17,0,capped,DSC_0840.JPG +28379,3967,679,17,0,capped,DSC_0840.JPG +2838,1912,2500,15,0,capped,DSC_0844.JPG +28383,1699,1501,15,0,capped,DSC_0840.JPG +28393,3910,427,17,0,capped,DSC_0840.JPG +28394,1603,601,15,0,capped,DSC_0840.JPG +28400,3649,982,17,0,capped,DSC_0840.JPG +28412,4261,562,15,0,capped,DSC_0840.JPG +28419,2806,487,15,0,capped,DSC_0840.JPG +28427,3001,1813,17,0,capped,DSC_0840.JPG +2843,1969,2395,17,0,capped,DSC_0844.JPG +28456,4093,1879,17,0,capped,DSC_0840.JPG +2846,5101,2164,17,0,capped,DSC_0844.JPG +28465,814,1309,15,0,capped,DSC_0840.JPG +28467,3214,1930,15,0,capped,DSC_0840.JPG +28472,3364,982,17,0,capped,DSC_0840.JPG +28476,4348,1465,15,0,capped,DSC_0840.JPG +28483,1456,1084,15,0,capped,DSC_0840.JPG +28487,847,1483,15,0,capped,DSC_0840.JPG +28488,2263,1741,15,0,capped,DSC_0840.JPG +28491,3811,2116,15,0,capped,DSC_0840.JPG +28493,3454,2233,17,0,capped,DSC_0840.JPG +28495,4264,2299,15,0,capped,DSC_0840.JPG +2850,3982,2539,17,0,capped,DSC_0844.JPG +28500,388,1063,15,0,capped,DSC_0840.JPG +28507,319,1648,15,0,capped,DSC_0840.JPG +28522,3721,742,17,0,capped,DSC_0840.JPG +28523,1852,784,17,0,capped,DSC_0840.JPG +28524,169,931,15,0,capped,DSC_0840.JPG +28526,4597,1180,15,0,capped,DSC_0840.JPG +2853,1594,2419,17,0,capped,DSC_0844.JPG +28530,2830,1393,17,0,capped,DSC_0840.JPG +28531,352,1588,17,0,capped,DSC_0840.JPG +2854,1162,211,17,0,capped,DSC_0844.JPG +28545,3961,925,15,0,capped,DSC_0840.JPG +28556,2455,607,15,0,capped,DSC_0840.JPG +28560,274,1234,16,0,capped,DSC_0840.JPG +28572,4705,1237,15,0,capped,DSC_0840.JPG +28575,2896,1873,15,0,capped,DSC_0840.JPG +28576,1630,1972,15,0,capped,DSC_0840.JPG +28577,4861,2122,15,0,capped,DSC_0840.JPG +28580,640,523,15,0,capped,DSC_0840.JPG +28583,1885,727,17,0,capped,DSC_0840.JPG +28584,1603,838,17,0,capped,DSC_0840.JPG +28585,241,1057,17,0,capped,DSC_0840.JPG +28592,4363,625,15,0,capped,DSC_0840.JPG +28594,784,892,17,0,capped,DSC_0840.JPG +28599,883,1309,15,0,capped,DSC_0840.JPG +2860,2173,2500,15,0,capped,DSC_0844.JPG +28600,523,1420,17,0,capped,DSC_0840.JPG +28603,3355,1810,17,0,capped,DSC_0840.JPG +28605,3778,2173,17,0,capped,DSC_0840.JPG +28609,1102,715,15,0,capped,DSC_0840.JPG +2861,925,2521,17,0,capped,DSC_0844.JPG +28610,679,829,15,0,capped,DSC_0840.JPG +28612,4456,1057,15,0,capped,DSC_0840.JPG +28617,2662,610,17,0,capped,DSC_0840.JPG +2862,1009,2524,15,0,capped,DSC_0844.JPG +28622,745,1072,15,0,capped,DSC_0840.JPG +28623,1591,1435,15,0,capped,DSC_0840.JPG +2863,943,346,15,0,capped,DSC_0844.JPG +28631,3841,427,17,0,capped,DSC_0840.JPG +28632,1069,655,17,0,capped,DSC_0840.JPG +28633,4495,997,15,0,capped,DSC_0840.JPG +28635,4669,1294,17,0,capped,DSC_0840.JPG +28636,1381,1669,17,0,capped,DSC_0840.JPG +28637,3424,1690,15,0,capped,DSC_0840.JPG +28639,4447,2002,15,0,capped,DSC_0840.JPG +28640,3139,2053,15,0,capped,DSC_0840.JPG +28642,4126,433,15,0,capped,DSC_0840.JPG +28646,925,1015,15,0,capped,DSC_0840.JPG +28647,1351,1141,15,0,capped,DSC_0840.JPG +28648,4771,1471,15,0,capped,DSC_0840.JPG +28650,3811,1759,15,0,capped,DSC_0840.JPG +28651,5011,1765,15,0,capped,DSC_0840.JPG +28652,3139,2170,17,0,capped,DSC_0840.JPG +28660,3901,556,17,0,capped,DSC_0840.JPG +28661,1348,778,15,0,capped,DSC_0840.JPG +28663,4354,991,17,0,capped,DSC_0840.JPG +28666,2440,1447,15,0,capped,DSC_0840.JPG +2867,1468,2335,15,0,capped,DSC_0844.JPG +28673,4735,1183,17,0,capped,DSC_0840.JPG +28674,1807,1204,17,0,capped,DSC_0840.JPG +28678,283,997,15,0,capped,DSC_0840.JPG +2868,904,286,15,0,capped,DSC_0844.JPG +28681,1204,1258,15,0,capped,DSC_0840.JPG +28685,280,1465,15,0,capped,DSC_0840.JPG +28688,1417,1972,15,0,capped,DSC_0840.JPG +2869,2134,2443,15,0,capped,DSC_0844.JPG +28692,3838,298,15,0,capped,DSC_0840.JPG +28693,3940,496,15,0,capped,DSC_0840.JPG +28696,1387,841,15,0,capped,DSC_0840.JPG +28697,709,889,15,0,capped,DSC_0840.JPG +28698,4672,937,15,0,capped,DSC_0840.JPG +2870,1261,280,17,0,capped,DSC_0844.JPG +28701,811,1540,15,0,capped,DSC_0840.JPG +28702,955,1543,15,0,capped,DSC_0840.JPG +28703,427,1708,15,0,capped,DSC_0840.JPG +28704,598,1771,15,0,capped,DSC_0840.JPG +28706,286,1822,15,0,capped,DSC_0840.JPG +28707,4021,1879,17,0,capped,DSC_0840.JPG +28709,3727,493,17,0,capped,DSC_0840.JPG +2871,5230,1501,17,0,capped,DSC_0844.JPG +28710,1495,532,17,0,capped,DSC_0840.JPG +28713,1315,841,17,0,capped,DSC_0840.JPG +28714,4666,1060,17,0,capped,DSC_0840.JPG +28720,3979,2176,15,0,capped,DSC_0840.JPG +28724,2065,418,15,0,capped,DSC_0840.JPG +28725,1534,718,17,0,capped,DSC_0840.JPG +28726,1816,847,15,0,capped,DSC_0840.JPG +28727,997,895,15,0,capped,DSC_0840.JPG +28728,4318,1054,16,0,capped,DSC_0840.JPG +2873,2077,2482,17,0,capped,DSC_0844.JPG +28730,154,1291,15,0,capped,DSC_0840.JPG +28731,1450,1552,15,0,capped,DSC_0840.JPG +28732,1732,1558,15,0,capped,DSC_0840.JPG +28734,3109,1630,15,0,capped,DSC_0840.JPG +28736,3913,2179,15,0,capped,DSC_0840.JPG +28739,748,706,15,0,capped,DSC_0840.JPG +2874,5071,1090,15,0,capped,DSC_0844.JPG +28740,529,949,15,0,capped,DSC_0840.JPG +28742,679,1072,15,0,capped,DSC_0840.JPG +28743,4207,1114,15,0,capped,DSC_0840.JPG +28744,925,1252,15,0,capped,DSC_0840.JPG +28745,4303,1759,15,0,capped,DSC_0840.JPG +28746,4483,1825,17,0,capped,DSC_0840.JPG +28747,3883,1999,15,0,capped,DSC_0840.JPG +28748,3703,2053,17,0,capped,DSC_0840.JPG +2875,5026,1156,17,0,capped,DSC_0844.JPG +28752,1492,661,17,0,capped,DSC_0840.JPG +28753,1318,721,17,0,capped,DSC_0840.JPG +28754,3934,745,17,0,capped,DSC_0840.JPG +28755,1456,844,17,0,capped,DSC_0840.JPG +28756,3652,865,15,0,capped,DSC_0840.JPG +28758,4564,1117,17,0,capped,DSC_0840.JPG +28759,2299,1213,17,0,capped,DSC_0840.JPG +2876,5128,1327,15,0,capped,DSC_0844.JPG +28761,922,1369,17,0,capped,DSC_0840.JPG +28762,4030,1402,15,0,capped,DSC_0840.JPG +28763,4735,1414,17,0,capped,DSC_0840.JPG +28765,3814,1633,17,0,capped,DSC_0840.JPG +28768,3490,1810,17,0,capped,DSC_0840.JPG +28771,4582,2002,15,0,capped,DSC_0840.JPG +28772,3388,2230,15,0,capped,DSC_0840.JPG +28774,2353,2443,15,0,capped,DSC_0840.JPG +28776,4045,556,16,0,capped,DSC_0840.JPG +28778,1138,898,15,0,capped,DSC_0840.JPG +2878,4915,2326,15,0,capped,DSC_0844.JPG +28780,4636,1240,15,0,capped,DSC_0840.JPG +28782,1630,1378,15,0,capped,DSC_0840.JPG +28783,958,1426,15,0,capped,DSC_0840.JPG +28784,3565,1690,17,0,capped,DSC_0840.JPG +28785,5038,1822,17,0,capped,DSC_0840.JPG +28787,598,1891,15,0,capped,DSC_0840.JPG +28788,4342,1945,15,0,capped,DSC_0840.JPG +28789,4933,2005,17,0,capped,DSC_0840.JPG +2879,1075,2446,17,0,capped,DSC_0844.JPG +28790,4372,2119,15,0,capped,DSC_0840.JPG +28791,2086,2155,15,0,capped,DSC_0840.JPG +28794,3700,2344,17,0,capped,DSC_0840.JPG +28797,1708,541,17,0,capped,DSC_0840.JPG +28798,4468,691,15,0,capped,DSC_0840.JPG +28799,1669,724,16,0,capped,DSC_0840.JPG +2880,1219,2512,17,0,capped,DSC_0844.JPG +28800,4249,808,16,0,capped,DSC_0840.JPG +28801,3892,1042,16,0,capped,DSC_0840.JPG +28802,4564,1354,15,0,capped,DSC_0840.JPG +28803,4312,1405,15,0,capped,DSC_0840.JPG +28804,2020,1438,15,0,capped,DSC_0840.JPG +28806,4687,1939,17,0,capped,DSC_0840.JPG +28807,322,1996,17,0,capped,DSC_0840.JPG +28808,3457,2113,15,0,capped,DSC_0840.JPG +28812,3973,556,15,0,capped,DSC_0840.JPG +28813,427,637,15,0,capped,DSC_0840.JPG +28814,712,772,17,0,capped,DSC_0840.JPG +28815,4495,874,15,0,capped,DSC_0840.JPG +28816,4246,934,16,0,capped,DSC_0840.JPG +28817,4144,991,15,0,capped,DSC_0840.JPG +28819,961,1198,15,0,capped,DSC_0840.JPG +2882,217,1294,17,0,capped,DSC_0844.JPG +28820,4567,1237,17,0,capped,DSC_0840.JPG +28821,4699,1582,15,0,capped,DSC_0840.JPG +28822,847,1597,15,0,capped,DSC_0840.JPG +28823,955,1783,15,0,capped,DSC_0840.JPG +28824,4339,2059,15,0,capped,DSC_0840.JPG +28825,1870,2272,15,0,capped,DSC_0840.JPG +28829,3874,493,15,0,capped,DSC_0840.JPG +28830,4114,679,17,0,capped,DSC_0840.JPG +28831,1246,718,15,0,capped,DSC_0840.JPG +28835,385,946,17,0,capped,DSC_0840.JPG +28836,1033,958,15,0,capped,DSC_0840.JPG +28837,3856,1102,17,0,capped,DSC_0840.JPG +28838,235,1174,17,0,capped,DSC_0840.JPG +28839,4531,1177,15,0,capped,DSC_0840.JPG +2884,3817,2497,15,0,capped,DSC_0844.JPG +28840,1666,1555,15,0,capped,DSC_0840.JPG +28841,424,1597,17,0,capped,DSC_0840.JPG +28843,4786,2125,17,0,capped,DSC_0840.JPG +28846,1246,592,17,0,capped,DSC_0840.JPG +28847,1180,595,15,0,capped,DSC_0840.JPG +28848,4150,619,15,0,capped,DSC_0840.JPG +28850,4321,928,15,0,capped,DSC_0840.JPG +28851,4633,1123,15,0,capped,DSC_0840.JPG +28852,1492,1141,17,0,capped,DSC_0840.JPG +28854,1384,1318,15,0,capped,DSC_0840.JPG +28855,778,1363,15,0,capped,DSC_0840.JPG +28856,3073,1456,15,0,capped,DSC_0840.JPG +28857,4486,1465,17,0,capped,DSC_0840.JPG +28858,1063,1609,15,0,capped,DSC_0840.JPG +28859,4591,1645,15,0,capped,DSC_0840.JPG +28860,355,1708,15,0,capped,DSC_0840.JPG +28861,3988,1816,17,0,capped,DSC_0840.JPG +28862,4828,1828,15,0,capped,DSC_0840.JPG +28863,568,1831,15,0,capped,DSC_0840.JPG +28864,3706,1933,15,0,capped,DSC_0840.JPG +28865,4480,1942,17,0,capped,DSC_0840.JPG +28866,4897,1945,15,0,capped,DSC_0840.JPG +28867,3352,2053,15,0,capped,DSC_0840.JPG +28869,2650,2176,15,0,capped,DSC_0840.JPG +28870,3106,2227,15,0,capped,DSC_0840.JPG +28872,1810,601,15,0,capped,DSC_0840.JPG +28873,3757,679,15,0,capped,DSC_0840.JPG +28874,1174,838,16,0,capped,DSC_0840.JPG +28876,1069,895,15,0,capped,DSC_0840.JPG +28878,4213,994,15,0,capped,DSC_0840.JPG +2888,1729,2479,15,0,capped,DSC_0844.JPG +28880,1420,1258,15,0,capped,DSC_0840.JPG +28883,4630,1471,17,0,capped,DSC_0840.JPG +28884,4414,1585,15,0,capped,DSC_0840.JPG +28886,4552,1822,15,0,capped,DSC_0840.JPG +28887,3490,1933,15,0,capped,DSC_0840.JPG +28888,3247,1993,15,0,capped,DSC_0840.JPG +28889,4897,2065,15,0,capped,DSC_0840.JPG +28891,1693,2209,15,0,capped,DSC_0840.JPG +28893,463,700,15,0,capped,DSC_0840.JPG +28894,1423,898,15,0,capped,DSC_0840.JPG +28897,1318,1084,17,0,capped,DSC_0840.JPG +28898,196,1117,17,0,capped,DSC_0840.JPG +28899,1174,1198,15,0,capped,DSC_0840.JPG +2890,1087,355,15,0,capped,DSC_0844.JPG +28901,4774,1240,17,0,capped,DSC_0840.JPG +28902,4453,1414,17,0,capped,DSC_0840.JPG +28903,4276,1468,15,0,capped,DSC_0840.JPG +28905,4630,1705,17,0,capped,DSC_0840.JPG +28906,4726,1765,15,0,capped,DSC_0840.JPG +28907,3841,1819,17,0,capped,DSC_0840.JPG +28908,358,1825,15,0,capped,DSC_0840.JPG +28909,3601,1873,15,0,capped,DSC_0840.JPG +2891,1408,2362,15,0,capped,DSC_0844.JPG +28910,5005,1888,15,0,capped,DSC_0840.JPG +28911,4198,2056,15,0,capped,DSC_0840.JPG +28912,3172,2110,17,0,capped,DSC_0840.JPG +28915,3763,559,17,0,capped,DSC_0840.JPG +28916,1318,592,15,0,capped,DSC_0840.JPG +28917,1144,652,17,0,capped,DSC_0840.JPG +28918,1210,655,15,0,capped,DSC_0840.JPG +28919,3832,682,15,0,capped,DSC_0840.JPG +2892,1627,2485,15,0,capped,DSC_0844.JPG +28921,3616,922,17,0,capped,DSC_0840.JPG +28923,4420,1234,15,0,capped,DSC_0840.JPG +28924,4702,1357,17,0,capped,DSC_0840.JPG +28925,601,1417,15,0,capped,DSC_0840.JPG +28926,4840,1471,15,0,capped,DSC_0840.JPG +28927,4309,1525,15,0,capped,DSC_0840.JPG +28928,991,1606,15,0,capped,DSC_0840.JPG +28929,1204,1612,15,0,capped,DSC_0840.JPG +28930,3388,1633,15,0,capped,DSC_0840.JPG +28933,4513,1999,15,0,capped,DSC_0840.JPG +28934,3529,2113,17,0,capped,DSC_0840.JPG +28938,1600,481,15,0,capped,DSC_0840.JPG +28940,958,832,15,0,capped,DSC_0840.JPG +28941,1531,844,15,0,capped,DSC_0840.JPG +28942,238,931,17,0,capped,DSC_0840.JPG +28943,4813,1183,15,0,capped,DSC_0840.JPG +28944,4066,1225,15,0,capped,DSC_0840.JPG +28948,4801,1525,17,0,capped,DSC_0840.JPG +28949,3214,1570,15,0,capped,DSC_0840.JPG +28950,1171,1663,15,0,capped,DSC_0840.JPG +28951,3214,1813,15,0,capped,DSC_0840.JPG +28952,3070,2050,17,0,capped,DSC_0840.JPG +28955,4753,2287,15,0,capped,DSC_0840.JPG +28958,3697,430,15,0,capped,DSC_0840.JPG +28959,4330,436,17,0,capped,DSC_0840.JPG +28960,4225,499,15,0,capped,DSC_0840.JPG +28961,3937,622,17,0,capped,DSC_0840.JPG +28962,391,697,15,0,capped,DSC_0840.JPG +28963,4216,871,15,0,capped,DSC_0840.JPG +28964,4426,871,15,0,capped,DSC_0840.JPG +28965,3862,979,17,0,capped,DSC_0840.JPG +28967,2404,1387,15,0,capped,DSC_0840.JPG +28968,1099,1432,17,0,capped,DSC_0840.JPG +28969,4942,1762,15,0,capped,DSC_0840.JPG +28970,4627,1825,15,0,capped,DSC_0840.JPG +28971,286,1933,15,0,capped,DSC_0840.JPG +28972,2158,2041,15,0,capped,DSC_0840.JPG +28973,2122,2218,15,0,capped,DSC_0840.JPG +28975,3769,430,15,0,capped,DSC_0840.JPG +28976,535,580,15,0,capped,DSC_0840.JPG +28977,2518,604,17,0,capped,DSC_0840.JPG +28978,964,706,17,0,capped,DSC_0840.JPG +28979,889,709,17,0,capped,DSC_0840.JPG +2898,4993,973,17,0,capped,DSC_0844.JPG +28980,925,895,15,0,capped,DSC_0840.JPG +28981,4528,937,15,0,capped,DSC_0840.JPG +28982,4633,1000,15,0,capped,DSC_0840.JPG +28983,1243,1081,17,0,capped,DSC_0840.JPG +28984,4312,1174,15,0,capped,DSC_0840.JPG +28985,1171,1432,15,0,capped,DSC_0840.JPG +28986,637,1480,15,0,capped,DSC_0840.JPG +28987,2335,1504,15,0,capped,DSC_0840.JPG +28988,1525,1555,17,0,capped,DSC_0840.JPG +28989,493,1597,17,0,capped,DSC_0840.JPG +28990,2407,1624,15,0,capped,DSC_0840.JPG +28991,3322,1636,17,0,capped,DSC_0840.JPG +28992,2857,1693,15,0,capped,DSC_0840.JPG +28994,3037,1753,15,0,capped,DSC_0840.JPG +28995,3673,1753,15,0,capped,DSC_0840.JPG +28996,4090,1759,17,0,capped,DSC_0840.JPG +28997,3460,1870,15,0,capped,DSC_0840.JPG +28998,466,1885,15,0,capped,DSC_0840.JPG +28999,1522,1906,17,0,capped,DSC_0840.JPG +29000,1939,2155,17,0,capped,DSC_0840.JPG +29001,3493,2176,15,0,capped,DSC_0840.JPG +29006,4615,568,15,0,capped,DSC_0840.JPG +29007,1675,601,15,0,capped,DSC_0840.JPG +29008,2416,664,17,0,capped,DSC_0840.JPG +29009,4462,814,15,0,capped,DSC_0840.JPG +29010,817,832,15,0,capped,DSC_0840.JPG +29011,421,883,15,0,capped,DSC_0840.JPG +29013,274,1117,17,0,capped,DSC_0840.JPG +29014,4954,1180,17,0,capped,DSC_0840.JPG +29015,4351,1231,15,0,capped,DSC_0840.JPG +29016,955,1315,17,0,capped,DSC_0840.JPG +29017,277,1348,15,0,capped,DSC_0840.JPG +29018,634,1366,15,0,capped,DSC_0840.JPG +29019,1699,1381,15,0,capped,DSC_0840.JPG +29020,1027,1423,17,0,capped,DSC_0840.JPG +29021,319,1528,15,0,capped,DSC_0840.JPG +29022,280,1585,15,0,capped,DSC_0840.JPG +29023,3043,1627,15,0,capped,DSC_0840.JPG +29025,391,1654,17,0,capped,DSC_0840.JPG +29026,3214,1693,15,0,capped,DSC_0840.JPG +29027,283,1708,15,0,capped,DSC_0840.JPG +29028,3844,2173,15,0,capped,DSC_0840.JPG +29029,4159,2236,15,0,capped,DSC_0840.JPG +29032,1564,538,15,0,capped,DSC_0840.JPG +29033,2347,547,15,0,capped,DSC_0840.JPG +29035,1885,601,15,0,capped,DSC_0840.JPG +29036,1777,661,17,0,capped,DSC_0840.JPG +29037,2377,727,15,0,capped,DSC_0840.JPG +29038,283,757,15,0,capped,DSC_0840.JPG +29039,1282,778,15,0,capped,DSC_0840.JPG +29040,4147,871,15,0,capped,DSC_0840.JPG +29041,349,880,15,0,capped,DSC_0840.JPG +29042,3892,925,15,0,capped,DSC_0840.JPG +29043,1099,961,15,0,capped,DSC_0840.JPG +29045,4423,1114,17,0,capped,DSC_0840.JPG +29046,1102,1204,17,0,capped,DSC_0840.JPG +29047,1624,1264,17,0,capped,DSC_0840.JPG +29049,3706,1576,16,0,capped,DSC_0840.JPG +29050,2932,1693,15,0,capped,DSC_0840.JPG +29051,3148,1813,17,0,capped,DSC_0840.JPG +29052,5122,1822,17,0,capped,DSC_0840.JPG +29053,3145,1933,15,0,capped,DSC_0840.JPG +29055,4180,679,15,0,capped,DSC_0840.JPG +29056,820,709,15,0,capped,DSC_0840.JPG +29057,175,811,17,0,capped,DSC_0840.JPG +29058,352,1003,15,0,capped,DSC_0840.JPG +29059,1702,1147,17,0,capped,DSC_0840.JPG +2906,4798,2392,15,0,capped,DSC_0844.JPG +29060,3184,1159,15,0,capped,DSC_0840.JPG +29061,4669,1177,17,0,capped,DSC_0840.JPG +29062,2227,1210,15,0,capped,DSC_0840.JPG +29063,346,1351,15,0,capped,DSC_0840.JPG +29064,4771,1357,15,0,capped,DSC_0840.JPG +29065,2479,1390,15,0,capped,DSC_0840.JPG +29066,745,1543,17,0,capped,DSC_0840.JPG +29067,457,1651,15,0,capped,DSC_0840.JPG +29068,3145,1696,15,0,capped,DSC_0840.JPG +2907,712,2479,16,0,capped,DSC_0844.JPG +29070,3952,1879,15,0,capped,DSC_0840.JPG +29071,4162,1882,15,0,capped,DSC_0840.JPG +29072,3286,2053,15,0,capped,DSC_0840.JPG +29073,1462,718,15,0,capped,DSC_0840.JPG +29075,706,1249,17,0,capped,DSC_0840.JPG +29076,2338,1270,15,0,capped,DSC_0840.JPG +29077,4312,1294,15,0,capped,DSC_0840.JPG +29078,1309,1315,15,0,capped,DSC_0840.JPG +29079,2866,1336,17,0,capped,DSC_0840.JPG +2908,3715,2485,17,0,capped,DSC_0844.JPG +29080,3817,1396,15,0,capped,DSC_0840.JPG +29081,4702,1471,15,0,capped,DSC_0840.JPG +29082,1486,1492,15,0,capped,DSC_0840.JPG +29083,1345,1495,15,0,capped,DSC_0840.JPG +29086,3106,1759,17,0,capped,DSC_0840.JPG +29087,4123,1822,17,0,capped,DSC_0840.JPG +29089,3775,1939,15,0,capped,DSC_0840.JPG +29090,3565,2050,17,0,capped,DSC_0840.JPG +29091,4549,2062,15,0,capped,DSC_0840.JPG +29092,958,2131,17,0,capped,DSC_0840.JPG +29093,3994,2299,15,0,capped,DSC_0840.JPG +29094,4150,496,15,0,capped,DSC_0840.JPG +29095,4642,751,17,0,capped,DSC_0840.JPG +29096,745,829,15,0,capped,DSC_0840.JPG +29097,4291,871,17,0,capped,DSC_0840.JPG +29099,3325,1279,15,0,capped,DSC_0840.JPG +2910,190,1471,17,0,capped,DSC_0844.JPG +29100,4456,1294,15,0,capped,DSC_0840.JPG +29101,1243,1312,17,0,capped,DSC_0840.JPG +29102,1453,1318,15,0,capped,DSC_0840.JPG +29103,2125,1384,17,0,capped,DSC_0840.JPG +29104,2404,1510,17,0,capped,DSC_0840.JPG +29105,1807,1558,15,0,capped,DSC_0840.JPG +29106,1558,1615,15,0,capped,DSC_0840.JPG +29107,2824,1633,17,0,capped,DSC_0840.JPG +29109,2758,1753,15,0,capped,DSC_0840.JPG +29111,3634,1816,15,0,capped,DSC_0840.JPG +29113,4270,1822,17,0,capped,DSC_0840.JPG +29114,3070,1933,15,0,capped,DSC_0840.JPG +29115,2302,2161,17,0,capped,DSC_0840.JPG +29116,2893,2233,15,0,capped,DSC_0840.JPG +29118,4264,433,17,0,capped,DSC_0840.JPG +29119,4432,628,15,0,capped,DSC_0840.JPG +2912,4099,202,17,0,capped,DSC_0844.JPG +29120,2629,673,17,0,capped,DSC_0840.JPG +29122,4075,742,17,0,capped,DSC_0840.JPG +29123,1102,841,15,0,capped,DSC_0840.JPG +29124,4000,862,15,0,capped,DSC_0840.JPG +29125,4069,862,17,0,capped,DSC_0840.JPG +29126,4561,877,17,0,capped,DSC_0840.JPG +29127,1738,1084,15,0,capped,DSC_0840.JPG +29128,424,1126,15,0,capped,DSC_0840.JPG +29129,382,1180,15,0,capped,DSC_0840.JPG +29130,1279,1258,17,0,capped,DSC_0840.JPG +29131,4669,1411,15,0,capped,DSC_0840.JPG +29132,3568,1456,15,0,capped,DSC_0840.JPG +29133,4453,1525,17,0,capped,DSC_0840.JPG +29134,4738,1525,15,0,capped,DSC_0840.JPG +29135,529,1534,15,0,capped,DSC_0840.JPG +29136,922,1603,15,0,capped,DSC_0840.JPG +29137,3529,1747,17,0,capped,DSC_0840.JPG +29138,391,1768,15,0,capped,DSC_0840.JPG +29139,3112,1873,15,0,capped,DSC_0840.JPG +29140,3421,1936,15,0,capped,DSC_0840.JPG +29141,3565,1936,17,0,capped,DSC_0840.JPG +29142,3844,1939,15,0,capped,DSC_0840.JPG +29143,4372,2002,15,0,capped,DSC_0840.JPG +29148,4540,691,15,0,capped,DSC_0840.JPG +29149,1033,709,17,0,capped,DSC_0840.JPG +29151,496,766,15,0,capped,DSC_0840.JPG +29152,3688,805,15,0,capped,DSC_0840.JPG +29153,676,955,17,0,capped,DSC_0840.JPG +29154,1282,1021,15,0,capped,DSC_0840.JPG +29155,3853,1219,15,0,capped,DSC_0840.JPG +29156,850,1363,17,0,capped,DSC_0840.JPG +29157,382,1417,15,0,capped,DSC_0840.JPG +29158,3037,1513,17,0,capped,DSC_0840.JPG +29159,2227,1564,15,0,capped,DSC_0840.JPG +29161,4519,1768,17,0,capped,DSC_0840.JPG +29162,2659,1810,15,0,capped,DSC_0840.JPG +29163,880,1903,17,0,capped,DSC_0840.JPG +29164,2449,1927,15,0,capped,DSC_0840.JPG +29165,3283,1933,15,0,capped,DSC_0840.JPG +29167,3493,2056,15,0,capped,DSC_0840.JPG +29169,4201,301,17,0,capped,DSC_0840.JPG +29170,2731,484,15,0,capped,DSC_0840.JPG +29172,1144,532,15,0,capped,DSC_0840.JPG +29173,1207,532,17,0,capped,DSC_0840.JPG +29174,460,577,15,0,capped,DSC_0840.JPG +29175,1105,592,15,0,capped,DSC_0840.JPG +29176,3475,802,17,0,capped,DSC_0840.JPG +29177,4321,805,15,0,capped,DSC_0840.JPG +29178,1492,904,15,0,capped,DSC_0840.JPG +29179,4564,997,15,0,capped,DSC_0840.JPG +2918,4054,2392,15,0,capped,DSC_0844.JPG +29181,595,1183,15,0,capped,DSC_0840.JPG +29182,4849,1243,15,0,capped,DSC_0840.JPG +29183,4843,1357,15,0,capped,DSC_0840.JPG +29184,1666,1432,15,0,capped,DSC_0840.JPG +29186,1597,1555,17,0,capped,DSC_0840.JPG +29187,4768,1582,17,0,capped,DSC_0840.JPG +29188,4348,1585,15,0,capped,DSC_0840.JPG +29189,640,1594,15,0,capped,DSC_0840.JPG +29190,1948,1678,15,0,capped,DSC_0840.JPG +29191,2227,1921,15,0,capped,DSC_0840.JPG +29192,3352,1930,15,0,capped,DSC_0840.JPG +29193,781,1951,15,0,capped,DSC_0840.JPG +29194,3847,2059,15,0,capped,DSC_0840.JPG +29195,3319,2110,17,0,capped,DSC_0840.JPG +29196,3532,2230,15,0,capped,DSC_0840.JPG +29198,3640,2290,17,0,capped,DSC_0840.JPG +29203,3091,490,15,0,capped,DSC_0840.JPG +29204,2311,604,15,0,capped,DSC_0840.JPG +29206,892,952,17,0,capped,DSC_0840.JPG +29207,1459,961,15,0,capped,DSC_0840.JPG +29209,4246,1051,17,0,capped,DSC_0840.JPG +2921,5029,2272,15,0,capped,DSC_0844.JPG +29210,820,1075,15,0,capped,DSC_0840.JPG +29212,1171,1315,17,0,capped,DSC_0840.JPG +29213,3886,1396,17,0,capped,DSC_0840.JPG +29214,2368,1444,17,0,capped,DSC_0840.JPG +29215,2923,1573,15,0,capped,DSC_0840.JPG +29216,3532,1633,15,0,capped,DSC_0840.JPG +29217,2155,1681,15,0,capped,DSC_0840.JPG +29218,2722,1696,15,0,capped,DSC_0840.JPG +29219,3880,1759,15,0,capped,DSC_0840.JPG +2922,1675,2455,17,0,capped,DSC_0844.JPG +29220,4027,1762,15,0,capped,DSC_0840.JPG +29221,3559,1810,15,0,capped,DSC_0840.JPG +29223,847,1843,15,0,capped,DSC_0840.JPG +29224,4456,1885,17,0,capped,DSC_0840.JPG +29225,1909,1975,15,0,capped,DSC_0840.JPG +29226,2191,1981,15,0,capped,DSC_0840.JPG +29227,3454,1996,15,0,capped,DSC_0840.JPG +29228,5077,1999,17,0,capped,DSC_0840.JPG +29229,3424,2053,15,0,capped,DSC_0840.JPG +29231,3949,2233,17,0,capped,DSC_0840.JPG +29233,3058,424,17,0,capped,DSC_0840.JPG +29234,1318,469,17,0,capped,DSC_0840.JPG +29236,1033,838,17,0,capped,DSC_0840.JPG +29237,1312,961,15,0,capped,DSC_0840.JPG +29238,706,1129,15,0,capped,DSC_0840.JPG +29239,781,1135,15,0,capped,DSC_0840.JPG +29240,313,1177,15,0,capped,DSC_0840.JPG +29241,3712,1213,15,0,capped,DSC_0840.JPG +29242,232,1285,17,0,capped,DSC_0840.JPG +29243,4492,1351,15,0,capped,DSC_0840.JPG +29244,4417,1354,17,0,capped,DSC_0840.JPG +29246,2263,1507,15,0,capped,DSC_0840.JPG +29247,2551,1507,17,0,capped,DSC_0840.JPG +29248,4600,1528,15,0,capped,DSC_0840.JPG +29249,1945,1558,15,0,capped,DSC_0840.JPG +29250,4093,1642,17,0,capped,DSC_0840.JPG +29251,4591,1768,15,0,capped,DSC_0840.JPG +29252,3706,1816,17,0,capped,DSC_0840.JPG +29253,1345,1849,15,0,capped,DSC_0840.JPG +29254,2758,1879,15,0,capped,DSC_0840.JPG +29255,391,1882,17,0,capped,DSC_0840.JPG +29256,4123,1942,17,0,capped,DSC_0840.JPG +29257,2722,2053,17,0,capped,DSC_0840.JPG +29258,850,2071,15,0,capped,DSC_0840.JPG +29259,4789,2236,17,0,capped,DSC_0840.JPG +2926,5248,1804,17,0,capped,DSC_0844.JPG +29261,3277,2281,17,0,capped,DSC_0840.JPG +29262,3841,2305,17,0,capped,DSC_0840.JPG +29263,3454,2449,17,0,capped,DSC_0840.JPG +29267,1957,484,15,0,capped,DSC_0840.JPG +29269,1852,538,15,0,capped,DSC_0840.JPG +29271,997,652,17,0,capped,DSC_0840.JPG +29273,4150,742,15,0,capped,DSC_0840.JPG +29275,316,940,15,0,capped,DSC_0840.JPG +29276,1249,964,15,0,capped,DSC_0840.JPG +29277,4177,1048,15,0,capped,DSC_0840.JPG +29278,2122,1144,15,0,capped,DSC_0840.JPG +29279,3994,1222,15,0,capped,DSC_0840.JPG +2928,3622,2530,17,0,capped,DSC_0844.JPG +29280,4489,1588,17,0,capped,DSC_0840.JPG +29281,4129,1705,17,0,capped,DSC_0840.JPG +29282,4870,1762,15,0,capped,DSC_0840.JPG +29283,4975,1828,17,0,capped,DSC_0840.JPG +29284,4060,1942,15,0,capped,DSC_0840.JPG +29285,2413,1984,15,0,capped,DSC_0840.JPG +29286,4792,2005,17,0,capped,DSC_0840.JPG +29287,3070,2167,15,0,capped,DSC_0840.JPG +29289,1714,415,15,0,capped,DSC_0840.JPG +29290,4048,430,17,0,capped,DSC_0840.JPG +29291,2059,661,17,0,capped,DSC_0840.JPG +29292,358,757,17,0,capped,DSC_0840.JPG +29293,1138,775,15,0,capped,DSC_0840.JPG +29294,208,880,17,0,capped,DSC_0840.JPG +29295,856,898,17,0,capped,DSC_0840.JPG +29296,958,955,15,0,capped,DSC_0840.JPG +29297,820,958,17,0,capped,DSC_0840.JPG +29298,3535,1039,17,0,capped,DSC_0840.JPG +29299,457,1069,15,0,capped,DSC_0840.JPG +29300,3433,1099,15,0,capped,DSC_0840.JPG +29301,4348,1114,15,0,capped,DSC_0840.JPG +29302,991,1249,17,0,capped,DSC_0840.JPG +29304,1066,1369,15,0,capped,DSC_0840.JPG +29305,313,1411,17,0,capped,DSC_0840.JPG +29306,2476,1507,15,0,capped,DSC_0840.JPG +29307,3526,1516,17,0,capped,DSC_0840.JPG +29308,2266,1624,15,0,capped,DSC_0840.JPG +29309,2332,1627,17,0,capped,DSC_0840.JPG +29310,2896,1633,15,0,capped,DSC_0840.JPG +29311,4342,1705,15,0,capped,DSC_0840.JPG +29312,1201,1729,15,0,capped,DSC_0840.JPG +29313,5083,1759,15,0,capped,DSC_0840.JPG +29314,499,1945,15,0,capped,DSC_0840.JPG +29315,991,1957,15,0,capped,DSC_0840.JPG +29316,4159,2005,17,0,capped,DSC_0840.JPG +29317,4408,2056,15,0,capped,DSC_0840.JPG +29318,3664,2236,17,0,capped,DSC_0840.JPG +29325,4300,499,17,0,capped,DSC_0840.JPG +29327,1462,598,17,0,capped,DSC_0840.JPG +29328,859,652,15,0,capped,DSC_0840.JPG +29329,4426,754,17,0,capped,DSC_0840.JPG +29331,1207,898,15,0,capped,DSC_0840.JPG +29332,745,949,15,0,capped,DSC_0840.JPG +29333,1135,1021,17,0,capped,DSC_0840.JPG +29334,1207,1024,17,0,capped,DSC_0840.JPG +29335,4810,1063,15,0,capped,DSC_0840.JPG +29336,634,1132,17,0,capped,DSC_0840.JPG +29337,1912,1147,17,0,capped,DSC_0840.JPG +29338,3538,1156,15,0,capped,DSC_0840.JPG +29339,3427,1222,15,0,capped,DSC_0840.JPG +2934,2341,1144,17,0,capped,DSC_0844.JPG +29340,187,1228,15,0,capped,DSC_0840.JPG +29342,1243,1435,17,0,capped,DSC_0840.JPG +29343,1456,1438,17,0,capped,DSC_0840.JPG +29344,1027,1549,17,0,capped,DSC_0840.JPG +29345,3529,1870,15,0,capped,DSC_0840.JPG +29346,4234,1882,15,0,capped,DSC_0840.JPG +29347,3736,1996,15,0,capped,DSC_0840.JPG +29348,4300,2002,17,0,capped,DSC_0840.JPG +29349,2230,2041,17,0,capped,DSC_0840.JPG +2935,2125,2380,17,0,capped,DSC_0844.JPG +29350,568,2065,15,0,capped,DSC_0840.JPG +29351,2053,2098,15,0,capped,DSC_0840.JPG +29352,2968,2110,15,0,capped,DSC_0840.JPG +29353,3670,2116,17,0,capped,DSC_0840.JPG +29354,3880,2119,15,0,capped,DSC_0840.JPG +29355,3976,2368,15,0,capped,DSC_0840.JPG +29357,604,457,15,0,capped,DSC_0840.JPG +29359,4192,562,15,0,capped,DSC_0840.JPG +29360,1531,595,15,0,capped,DSC_0840.JPG +29361,928,655,15,0,capped,DSC_0840.JPG +29362,322,817,15,0,capped,DSC_0840.JPG +29363,4639,880,17,0,capped,DSC_0840.JPG +29364,643,892,17,0,capped,DSC_0840.JPG +29365,3397,1036,15,0,capped,DSC_0840.JPG +29366,886,1072,15,0,capped,DSC_0840.JPG +29367,4918,1126,17,0,capped,DSC_0840.JPG +29368,925,1129,17,0,capped,DSC_0840.JPG +29369,529,1300,15,0,capped,DSC_0840.JPG +2937,4201,1378,15,0,capped,DSC_0844.JPG +29370,3643,1336,17,0,capped,DSC_0840.JPG +29371,4132,1339,17,0,capped,DSC_0840.JPG +29372,4987,1354,17,0,capped,DSC_0840.JPG +29373,706,1360,15,0,capped,DSC_0840.JPG +29374,670,1420,15,0,capped,DSC_0840.JPG +29375,424,1480,17,0,capped,DSC_0840.JPG +29376,778,1483,15,0,capped,DSC_0840.JPG +29377,2368,1561,15,0,capped,DSC_0840.JPG +29378,3775,1822,17,0,capped,DSC_0840.JPG +29379,4693,1822,16,0,capped,DSC_0840.JPG +2938,1003,2422,15,0,capped,DSC_0844.JPG +29381,3667,1996,15,0,capped,DSC_0840.JPG +29382,3598,2233,15,0,capped,DSC_0840.JPG +29384,3352,2287,15,0,capped,DSC_0840.JPG +29385,4087,493,15,0,capped,DSC_0840.JPG +29386,1279,532,15,0,capped,DSC_0840.JPG +29387,2698,544,15,0,capped,DSC_0840.JPG +29388,4471,565,16,0,capped,DSC_0840.JPG +29389,2095,598,17,0,capped,DSC_0840.JPG +2939,1930,2446,17,0,capped,DSC_0844.JPG +29390,3688,676,17,0,capped,DSC_0840.JPG +29391,1243,835,17,0,capped,DSC_0840.JPG +29392,4600,943,17,0,capped,DSC_0840.JPG +29393,457,949,15,0,capped,DSC_0840.JPG +29394,1138,1141,17,0,capped,DSC_0840.JPG +29397,4345,1351,17,0,capped,DSC_0840.JPG +29398,412,1354,15,0,capped,DSC_0840.JPG +29399,493,1474,17,0,capped,DSC_0840.JPG +29400,1132,1492,17,0,capped,DSC_0840.JPG +29401,1630,1495,17,0,capped,DSC_0840.JPG +29402,2197,1504,17,0,capped,DSC_0840.JPG +29403,2692,1507,17,0,capped,DSC_0840.JPG +29404,4525,1645,17,0,capped,DSC_0840.JPG +29405,526,1771,17,0,capped,DSC_0840.JPG +29406,1018,1780,15,0,capped,DSC_0840.JPG +29407,3247,1873,15,0,capped,DSC_0840.JPG +29408,3736,1876,17,0,capped,DSC_0840.JPG +29409,2518,1930,17,0,capped,DSC_0840.JPG +29411,2158,2161,17,0,capped,DSC_0840.JPG +29412,2713,2179,17,0,capped,DSC_0840.JPG +29413,850,2191,15,0,capped,DSC_0840.JPG +29415,1342,2197,17,0,capped,DSC_0840.JPG +29416,3316,2230,15,0,capped,DSC_0840.JPG +29417,2755,2233,17,0,capped,DSC_0840.JPG +29418,1798,2275,15,0,capped,DSC_0840.JPG +29419,784,772,15,0,capped,DSC_0840.JPG +29420,1420,781,15,0,capped,DSC_0840.JPG +29422,4597,1057,17,0,capped,DSC_0840.JPG +29423,4174,1171,17,0,capped,DSC_0840.JPG +29424,4456,1174,15,0,capped,DSC_0840.JPG +29425,742,1306,15,0,capped,DSC_0840.JPG +29426,808,1420,15,0,capped,DSC_0840.JPG +29427,454,1534,17,0,capped,DSC_0840.JPG +29428,3184,1753,17,0,capped,DSC_0840.JPG +29429,3385,1879,15,0,capped,DSC_0840.JPG +2943,1321,2350,17,0,capped,DSC_0844.JPG +29430,1381,1909,15,0,capped,DSC_0840.JPG +29431,4093,1999,17,0,capped,DSC_0840.JPG +29432,3916,2062,15,0,capped,DSC_0840.JPG +29433,2932,2167,17,0,capped,DSC_0840.JPG +29434,4126,2176,15,0,capped,DSC_0840.JPG +29435,3487,2284,15,0,capped,DSC_0840.JPG +29436,4192,2299,15,0,capped,DSC_0840.JPG +29438,4021,2455,17,0,capped,DSC_0840.JPG +29439,1246,466,15,0,capped,DSC_0840.JPG +29440,1387,589,15,0,capped,DSC_0840.JPG +29441,1951,595,17,0,capped,DSC_0840.JPG +29442,1747,601,15,0,capped,DSC_0840.JPG +29443,2590,610,17,0,capped,DSC_0840.JPG +29445,598,706,17,0,capped,DSC_0840.JPG +29446,1210,781,17,0,capped,DSC_0840.JPG +29447,4360,874,17,0,capped,DSC_0840.JPG +29448,1276,904,15,0,capped,DSC_0840.JPG +29449,604,943,17,0,capped,DSC_0840.JPG +29450,1555,1264,17,0,capped,DSC_0840.JPG +29451,676,1306,15,0,capped,DSC_0840.JPG +29452,3220,1339,15,0,capped,DSC_0840.JPG +29453,4204,1345,15,0,capped,DSC_0840.JPG +29454,1840,1378,15,0,capped,DSC_0840.JPG +29455,3742,1402,17,0,capped,DSC_0840.JPG +29456,4384,1405,15,0,capped,DSC_0840.JPG +29458,4561,1465,17,0,capped,DSC_0840.JPG +29459,4378,1522,17,0,capped,DSC_0840.JPG +29460,4663,1528,17,0,capped,DSC_0840.JPG +29461,1381,1549,15,0,capped,DSC_0840.JPG +29462,1165,1552,17,0,capped,DSC_0840.JPG +29463,3571,1570,17,0,capped,DSC_0840.JPG +29464,4243,1639,17,0,capped,DSC_0840.JPG +29465,1132,1729,17,0,capped,DSC_0840.JPG +29466,3247,1750,15,0,capped,DSC_0840.JPG +29467,4660,1762,15,0,capped,DSC_0840.JPG +29468,2449,1810,15,0,capped,DSC_0840.JPG +29469,4903,1819,15,0,capped,DSC_0840.JPG +29470,3595,1996,15,0,capped,DSC_0840.JPG +29471,391,1999,15,0,capped,DSC_0840.JPG +29472,1945,2038,15,0,capped,DSC_0840.JPG +29473,3250,2110,15,0,capped,DSC_0840.JPG +29474,1591,2152,15,0,capped,DSC_0840.JPG +29476,3421,2287,17,0,capped,DSC_0840.JPG +29477,4120,2293,17,0,capped,DSC_0840.JPG +29479,1351,529,17,0,capped,DSC_0840.JPG +2948,2176,2404,17,0,capped,DSC_0844.JPG +29480,2413,538,15,0,capped,DSC_0840.JPG +29481,1642,541,17,0,capped,DSC_0840.JPG +29482,2488,541,17,0,capped,DSC_0840.JPG +29483,1285,661,17,0,capped,DSC_0840.JPG +29484,4039,805,15,0,capped,DSC_0840.JPG +29485,4672,820,17,0,capped,DSC_0840.JPG +29486,538,826,17,0,capped,DSC_0840.JPG +29487,3715,982,15,0,capped,DSC_0840.JPG +29488,4426,997,17,0,capped,DSC_0840.JPG +29489,4738,1060,15,0,capped,DSC_0840.JPG +29490,4774,1123,15,0,capped,DSC_0840.JPG +29491,886,1198,17,0,capped,DSC_0840.JPG +29492,2161,1210,15,0,capped,DSC_0840.JPG +29494,4033,1282,17,0,capped,DSC_0840.JPG +29495,3607,1396,17,0,capped,DSC_0840.JPG +29496,3103,1402,17,0,capped,DSC_0840.JPG +29497,3706,1456,15,0,capped,DSC_0840.JPG +29498,1066,1483,15,0,capped,DSC_0840.JPG +29499,1204,1492,15,0,capped,DSC_0840.JPG +29500,235,1525,15,0,capped,DSC_0840.JPG +29501,1876,1558,15,0,capped,DSC_0840.JPG +29502,3352,1567,17,0,capped,DSC_0840.JPG +29504,4309,1645,15,0,capped,DSC_0840.JPG +29505,3355,1690,15,0,capped,DSC_0840.JPG +29506,2788,1699,17,0,capped,DSC_0840.JPG +29508,4906,1708,15,0,capped,DSC_0840.JPG +29509,994,1723,15,0,capped,DSC_0840.JPG +29510,2929,1813,15,0,capped,DSC_0840.JPG +29512,4198,1942,15,0,capped,DSC_0840.JPG +29514,4720,2005,15,0,capped,DSC_0840.JPG +29515,4303,2119,15,0,capped,DSC_0840.JPG +29516,4483,2179,17,0,capped,DSC_0840.JPG +29517,2329,2218,15,0,capped,DSC_0840.JPG +29518,2416,2224,15,0,capped,DSC_0840.JPG +29519,2134,2359,17,0,capped,DSC_0840.JPG +29522,2203,418,17,0,capped,DSC_0840.JPG +29523,1003,526,15,0,capped,DSC_0840.JPG +29524,2557,544,17,0,capped,DSC_0840.JPG +29525,2770,550,15,0,capped,DSC_0840.JPG +29526,601,580,17,0,capped,DSC_0840.JPG +29527,967,592,15,0,capped,DSC_0840.JPG +29528,1069,778,15,0,capped,DSC_0840.JPG +29529,4705,1000,17,0,capped,DSC_0840.JPG +29530,4108,1048,17,0,capped,DSC_0840.JPG +29531,100,1102,17,0,capped,DSC_0840.JPG +29532,4489,1126,17,0,capped,DSC_0840.JPG +29533,3670,1156,17,0,capped,DSC_0840.JPG +29534,1240,1195,15,0,capped,DSC_0840.JPG +29535,1138,1255,17,0,capped,DSC_0840.JPG +29536,1102,1312,17,0,capped,DSC_0840.JPG +29537,565,1363,15,0,capped,DSC_0840.JPG +29538,1210,1372,15,0,capped,DSC_0840.JPG +29539,2965,1393,17,0,capped,DSC_0840.JPG +29540,3955,1399,17,0,capped,DSC_0840.JPG +29541,2656,1447,15,0,capped,DSC_0840.JPG +29542,883,1543,15,0,capped,DSC_0840.JPG +29543,3844,1576,15,0,capped,DSC_0840.JPG +29544,4909,1588,17,0,capped,DSC_0840.JPG +29545,706,1600,17,0,capped,DSC_0840.JPG +29546,4273,1699,15,0,capped,DSC_0840.JPG +29547,1984,1741,17,0,capped,DSC_0840.JPG +29548,4162,1762,15,0,capped,DSC_0840.JPG +29549,427,1828,15,0,capped,DSC_0840.JPG +29550,1273,1852,17,0,capped,DSC_0840.JPG +29551,1522,2035,17,0,capped,DSC_0840.JPG +29552,3631,2056,15,0,capped,DSC_0840.JPG +29553,4477,2062,17,0,capped,DSC_0840.JPG +29554,2338,2104,15,0,capped,DSC_0840.JPG +29555,811,2131,15,0,capped,DSC_0840.JPG +29556,1909,2209,17,0,capped,DSC_0840.JPG +29557,4159,370,17,0,capped,DSC_0840.JPG +29558,1000,400,15,0,capped,DSC_0840.JPG +29559,4366,502,15,0,capped,DSC_0840.JPG +29560,391,580,15,0,capped,DSC_0840.JPG +29561,3160,610,17,0,capped,DSC_0840.JPG +29562,1924,661,17,0,capped,DSC_0840.JPG +29565,3967,805,17,0,capped,DSC_0840.JPG +29566,529,1183,15,0,capped,DSC_0840.JPG +29567,775,1255,17,0,capped,DSC_0840.JPG +29568,3112,1279,15,0,capped,DSC_0840.JPG +29569,2089,1441,15,0,capped,DSC_0840.JPG +29570,3139,1462,17,0,capped,DSC_0840.JPG +29571,1909,1498,17,0,capped,DSC_0840.JPG +29572,673,1537,15,0,capped,DSC_0840.JPG +29573,1804,1675,15,0,capped,DSC_0840.JPG +29574,4417,1699,15,0,capped,DSC_0840.JPG +29575,3316,1750,17,0,capped,DSC_0840.JPG +29576,742,1780,15,0,capped,DSC_0840.JPG +29577,712,1837,17,0,capped,DSC_0840.JPG +29578,2083,1918,17,0,capped,DSC_0840.JPG +29579,3628,1930,17,0,capped,DSC_0840.JPG +2958,1810,2386,17,0,capped,DSC_0844.JPG +29580,4234,2002,15,0,capped,DSC_0840.JPG +29581,463,2005,15,0,capped,DSC_0840.JPG +29582,3211,2053,15,0,capped,DSC_0840.JPG +29583,4828,2065,15,0,capped,DSC_0840.JPG +29584,700,2185,17,0,capped,DSC_0840.JPG +29586,4540,2302,15,0,capped,DSC_0840.JPG +29589,2545,2446,15,0,capped,DSC_0840.JPG +29594,2311,352,17,0,capped,DSC_0840.JPG +29595,2911,418,17,0,capped,DSC_0840.JPG +29596,1672,475,15,0,capped,DSC_0840.JPG +29597,2377,484,15,0,capped,DSC_0840.JPG +29598,358,511,15,0,capped,DSC_0840.JPG +29599,709,649,17,0,capped,DSC_0840.JPG +29601,493,892,15,0,capped,DSC_0840.JPG +29602,1351,901,17,0,capped,DSC_0840.JPG +29603,4705,1117,17,0,capped,DSC_0840.JPG +29604,496,1243,15,0,capped,DSC_0840.JPG +29605,1069,1255,17,0,capped,DSC_0840.JPG +29606,4879,1297,17,0,capped,DSC_0840.JPG +29607,3037,1393,15,0,capped,DSC_0840.JPG +29608,244,1414,15,0,capped,DSC_0840.JPG +29609,1876,1441,17,0,capped,DSC_0840.JPG +29610,985,1489,15,0,capped,DSC_0840.JPG +29611,4876,1531,17,0,capped,DSC_0840.JPG +29612,4276,1585,15,0,capped,DSC_0840.JPG +29613,2692,1633,15,0,capped,DSC_0840.JPG +29614,4765,1705,17,0,capped,DSC_0840.JPG +29615,3424,1810,15,0,capped,DSC_0840.JPG +29616,4414,1819,15,0,capped,DSC_0840.JPG +29617,4969,1951,15,0,capped,DSC_0840.JPG +29618,3313,1990,15,0,capped,DSC_0840.JPG +29619,247,1996,17,0,capped,DSC_0840.JPG +29620,3814,1999,15,0,capped,DSC_0840.JPG +29621,4972,2065,15,0,capped,DSC_0840.JPG +29622,1762,2086,17,0,capped,DSC_0840.JPG +29623,4519,2125,17,0,capped,DSC_0840.JPG +29624,3703,2170,17,0,capped,DSC_0840.JPG +29626,4555,2176,17,0,capped,DSC_0840.JPG +29627,2611,2230,15,0,capped,DSC_0840.JPG +29629,2647,2293,17,0,capped,DSC_0840.JPG +29630,4615,2299,17,0,capped,DSC_0840.JPG +29632,4312,2362,15,0,capped,DSC_0840.JPG +29634,4024,367,17,0,capped,DSC_0840.JPG +29635,2170,484,17,0,capped,DSC_0840.JPG +29636,2062,547,15,0,capped,DSC_0840.JPG +29637,1033,592,15,0,capped,DSC_0840.JPG +29638,1177,718,17,0,capped,DSC_0840.JPG +29639,853,772,15,0,capped,DSC_0840.JPG +2964,1246,2455,17,0,capped,DSC_0844.JPG +29640,1069,1012,15,0,capped,DSC_0840.JPG +29641,994,1021,15,0,capped,DSC_0840.JPG +29642,316,1066,17,0,capped,DSC_0840.JPG +29643,3601,1285,17,0,capped,DSC_0840.JPG +29644,1522,1318,15,0,capped,DSC_0840.JPG +29645,4525,1408,17,0,capped,DSC_0840.JPG +29646,1798,1438,17,0,capped,DSC_0840.JPG +29647,4414,1465,17,0,capped,DSC_0840.JPG +29648,1276,1492,15,0,capped,DSC_0840.JPG +29649,1981,1498,16,0,capped,DSC_0840.JPG +29650,4837,1585,17,0,capped,DSC_0840.JPG +29651,4450,1642,15,0,capped,DSC_0840.JPG +29652,3493,1696,17,0,capped,DSC_0840.JPG +29653,4207,1702,15,0,capped,DSC_0840.JPG +29654,2158,1918,15,0,capped,DSC_0840.JPG +29655,4441,2236,15,0,capped,DSC_0840.JPG +29658,2083,2431,17,0,capped,DSC_0840.JPG +29660,2947,2455,17,0,capped,DSC_0840.JPG +29661,4198,430,15,0,capped,DSC_0840.JPG +29662,4186,811,17,0,capped,DSC_0840.JPG +29663,601,1075,17,0,capped,DSC_0840.JPG +29664,3361,1099,17,0,capped,DSC_0840.JPG +29665,565,1240,15,0,capped,DSC_0840.JPG +29666,1987,1384,15,0,capped,DSC_0840.JPG +29667,3181,1396,15,0,capped,DSC_0840.JPG +29668,4804,1414,17,0,capped,DSC_0840.JPG +29669,3181,1513,17,0,capped,DSC_0840.JPG +29670,3745,1516,17,0,capped,DSC_0840.JPG +29671,2722,1570,17,0,capped,DSC_0840.JPG +29672,1696,1615,15,0,capped,DSC_0840.JPG +29673,1912,1618,15,0,capped,DSC_0840.JPG +29674,778,1720,15,0,capped,DSC_0840.JPG +29675,916,1720,15,0,capped,DSC_0840.JPG +29676,2302,1924,17,0,capped,DSC_0840.JPG +29677,355,1939,17,0,capped,DSC_0840.JPG +29678,673,2008,15,0,capped,DSC_0840.JPG +29679,2452,2047,17,0,capped,DSC_0840.JPG +2968,949,2458,17,0,capped,DSC_0844.JPG +29680,2518,2164,15,0,capped,DSC_0840.JPG +29681,3277,2173,17,0,capped,DSC_0840.JPG +29686,1030,463,17,0,capped,DSC_0840.JPG +29687,4396,691,17,0,capped,DSC_0840.JPG +29688,4609,694,15,0,capped,DSC_0840.JPG +29689,388,823,15,0,capped,DSC_0840.JPG +29691,1177,1081,15,0,capped,DSC_0840.JPG +29692,1135,1372,17,0,capped,DSC_0840.JPG +29693,3529,1396,17,0,capped,DSC_0840.JPG +29694,4879,1417,15,0,capped,DSC_0840.JPG +29695,3991,1576,17,0,capped,DSC_0840.JPG +29696,850,1723,15,0,capped,DSC_0840.JPG +29697,253,1870,17,0,capped,DSC_0840.JPG +29698,325,1879,15,0,capped,DSC_0840.JPG +29699,4726,1888,17,0,capped,DSC_0840.JPG +29700,1981,2092,15,0,capped,DSC_0840.JPG +29701,4897,2182,17,0,capped,DSC_0840.JPG +29702,1840,2326,17,0,capped,DSC_0840.JPG +29704,1786,2437,17,0,capped,DSC_0840.JPG +29705,3907,301,15,0,capped,DSC_0840.JPG +29706,3985,304,15,0,capped,DSC_0840.JPG +29707,2140,415,17,0,capped,DSC_0840.JPG +29708,967,460,17,0,capped,DSC_0840.JPG +29709,1099,469,15,0,capped,DSC_0840.JPG +29710,4009,499,17,0,capped,DSC_0840.JPG +29711,319,571,17,0,capped,DSC_0840.JPG +29712,1708,664,17,0,capped,DSC_0840.JPG +29713,4255,682,15,0,capped,DSC_0840.JPG +29714,535,694,17,0,capped,DSC_0840.JPG +29715,4357,748,15,0,capped,DSC_0840.JPG +29716,4498,751,15,0,capped,DSC_0840.JPG +29717,859,1012,15,0,capped,DSC_0840.JPG +29718,3745,1036,17,0,capped,DSC_0840.JPG +29720,4273,1225,17,0,capped,DSC_0840.JPG +29722,4072,1336,15,0,capped,DSC_0840.JPG +29723,4636,1351,15,0,capped,DSC_0840.JPG +29724,460,1414,17,0,capped,DSC_0840.JPG +29725,2794,1453,15,0,capped,DSC_0840.JPG +29726,1768,1501,17,0,capped,DSC_0840.JPG +29727,3181,1630,17,0,capped,DSC_0840.JPG +29728,4165,1639,17,0,capped,DSC_0840.JPG +29729,5020,1642,17,0,capped,DSC_0840.JPG +29730,3292,1684,15,0,capped,DSC_0840.JPG +29731,3700,1693,17,0,capped,DSC_0840.JPG +29732,3847,1696,15,0,capped,DSC_0840.JPG +29733,4699,1705,17,0,capped,DSC_0840.JPG +29734,4234,1762,15,0,capped,DSC_0840.JPG +29735,4450,1765,17,0,capped,DSC_0840.JPG +29736,883,1780,15,0,capped,DSC_0840.JPG +29737,3076,1819,17,0,capped,DSC_0840.JPG +29738,4588,1882,15,0,capped,DSC_0840.JPG +29739,1312,1915,17,0,capped,DSC_0840.JPG +29740,2590,1936,17,0,capped,DSC_0840.JPG +29741,5005,2002,15,0,capped,DSC_0840.JPG +29742,2374,2158,15,0,capped,DSC_0840.JPG +29743,4198,2176,17,0,capped,DSC_0840.JPG +29744,4831,2182,17,0,capped,DSC_0840.JPG +29745,3919,2293,15,0,capped,DSC_0840.JPG +29746,2461,2452,15,0,capped,DSC_0840.JPG +29747,1780,412,17,0,capped,DSC_0840.JPG +29748,2278,421,15,0,capped,DSC_0840.JPG +29749,1462,475,15,0,capped,DSC_0840.JPG +29751,925,769,17,0,capped,DSC_0840.JPG +29752,4777,877,17,0,capped,DSC_0840.JPG +29754,4921,997,17,0,capped,DSC_0840.JPG +29755,502,1003,15,0,capped,DSC_0840.JPG +29756,571,1009,15,0,capped,DSC_0840.JPG +29757,1096,1075,15,0,capped,DSC_0840.JPG +29758,343,1237,15,0,capped,DSC_0840.JPG +29759,4522,1294,15,0,capped,DSC_0840.JPG +29760,2080,1321,15,0,capped,DSC_0840.JPG +29761,988,1366,15,0,capped,DSC_0840.JPG +29762,1771,1375,15,0,capped,DSC_0840.JPG +29763,4237,1408,16,0,capped,DSC_0840.JPG +29764,1735,1432,15,0,capped,DSC_0840.JPG +29765,2587,1447,15,0,capped,DSC_0840.JPG +29766,919,1492,15,0,capped,DSC_0840.JPG +29767,4630,1585,17,0,capped,DSC_0840.JPG +29768,4942,1651,17,0,capped,DSC_0840.JPG +29769,4837,1708,15,0,capped,DSC_0840.JPG +29770,1132,1849,16,0,capped,DSC_0840.JPG +29771,2857,2059,17,0,capped,DSC_0840.JPG +29772,3595,2116,15,0,capped,DSC_0840.JPG +29773,4936,2122,17,0,capped,DSC_0840.JPG +29774,598,2125,15,0,capped,DSC_0840.JPG +29775,2020,2155,15,0,capped,DSC_0840.JPG +29776,2293,2275,15,0,capped,DSC_0840.JPG +29777,3943,2458,17,0,capped,DSC_0840.JPG +29779,2170,364,17,0,capped,DSC_0840.JPG +29780,1846,415,17,0,capped,DSC_0840.JPG +29781,1741,478,15,0,capped,DSC_0840.JPG +29782,712,523,15,0,capped,DSC_0840.JPG +29783,4327,682,15,0,capped,DSC_0840.JPG +29784,247,817,15,0,capped,DSC_0840.JPG +29785,607,832,15,0,capped,DSC_0840.JPG +29786,4459,934,15,0,capped,DSC_0840.JPG +29787,1027,1075,17,0,capped,DSC_0840.JPG +29788,4066,1102,15,0,capped,DSC_0840.JPG +29789,2371,1333,17,0,capped,DSC_0840.JPG +29790,745,1426,15,0,capped,DSC_0840.JPG +29791,4240,1522,15,0,capped,DSC_0840.JPG +29793,2440,1564,15,0,capped,DSC_0840.JPG +29794,4561,1582,15,0,capped,DSC_0840.JPG +29795,1744,1678,15,0,capped,DSC_0840.JPG +29796,2299,1684,15,0,capped,DSC_0840.JPG +29797,2440,1687,15,0,capped,DSC_0840.JPG +29798,3001,1687,17,0,capped,DSC_0840.JPG +29800,4483,1705,15,0,capped,DSC_0840.JPG +29801,706,1717,15,0,capped,DSC_0840.JPG +29802,2269,1861,17,0,capped,DSC_0840.JPG +29803,3034,1876,17,0,capped,DSC_0840.JPG +29804,4522,1885,15,0,capped,DSC_0840.JPG +29805,2485,1984,17,0,capped,DSC_0840.JPG +29806,2560,1990,15,0,capped,DSC_0840.JPG +29807,4861,2008,15,0,capped,DSC_0840.JPG +29808,3772,2062,17,0,capped,DSC_0840.JPG +29809,4618,2065,17,0,capped,DSC_0840.JPG +29810,2266,2101,15,0,capped,DSC_0840.JPG +29811,4372,2236,15,0,capped,DSC_0840.JPG +29812,3808,2239,15,0,capped,DSC_0840.JPG +29813,1585,2263,15,0,capped,DSC_0840.JPG +29814,2416,2329,17,0,capped,DSC_0840.JPG +29817,1813,466,17,0,capped,DSC_0840.JPG +29818,2170,850,17,0,capped,DSC_0840.JPG +29819,3727,1093,17,0,capped,DSC_0840.JPG +29820,3499,1225,15,0,capped,DSC_0840.JPG +29821,4594,1300,15,0,capped,DSC_0840.JPG +29822,352,1477,17,0,capped,DSC_0840.JPG +29823,1141,1609,15,0,capped,DSC_0840.JPG +29824,736,1651,15,0,capped,DSC_0840.JPG +29825,3454,1747,15,0,capped,DSC_0840.JPG +29826,3385,1756,17,0,capped,DSC_0840.JPG +29827,814,1774,15,0,capped,DSC_0840.JPG +29828,1228,1789,15,0,capped,DSC_0840.JPG +29829,3988,1942,15,0,capped,DSC_0840.JPG +29830,4267,1945,15,0,capped,DSC_0840.JPG +29832,2014,2038,15,0,capped,DSC_0840.JPG +29833,4018,2119,15,0,capped,DSC_0840.JPG +29834,2230,2155,15,0,capped,DSC_0840.JPG +29835,775,2188,15,0,capped,DSC_0840.JPG +29836,2905,2353,17,0,capped,DSC_0840.JPG +29837,1906,2437,17,0,capped,DSC_0840.JPG +29840,4330,568,17,0,capped,DSC_0840.JPG +29841,736,586,17,0,capped,DSC_0840.JPG +29842,568,637,17,0,capped,DSC_0840.JPG +29843,3121,679,15,0,capped,DSC_0840.JPG +29844,1813,721,15,0,capped,DSC_0840.JPG +29846,3796,748,17,0,capped,DSC_0840.JPG +29847,571,886,15,0,capped,DSC_0840.JPG +29848,850,1132,17,0,capped,DSC_0840.JPG +29850,3289,1216,17,0,capped,DSC_0840.JPG +29851,3469,1279,17,0,capped,DSC_0840.JPG +29852,4984,1465,17,0,capped,DSC_0840.JPG +29853,3943,1519,17,0,capped,DSC_0840.JPG +29854,1099,1546,17,0,capped,DSC_0840.JPG +29855,2086,1564,17,0,capped,DSC_0840.JPG +29856,3637,1693,15,0,capped,DSC_0840.JPG +29857,3988,1696,15,0,capped,DSC_0840.JPG +29858,4975,1705,15,0,capped,DSC_0840.JPG +29859,1171,1783,17,0,capped,DSC_0840.JPG +29860,1099,1792,17,0,capped,DSC_0840.JPG +29861,4753,1828,17,0,capped,DSC_0840.JPG +29863,880,2011,17,0,capped,DSC_0840.JPG +29864,2413,2098,17,0,capped,DSC_0840.JPG +29865,2614,2119,15,0,capped,DSC_0840.JPG +29866,4228,2122,17,0,capped,DSC_0840.JPG +29867,1456,2152,15,0,capped,DSC_0840.JPG +29868,2224,2269,15,0,capped,DSC_0840.JPG +29869,3142,2287,17,0,capped,DSC_0840.JPG +29870,3562,2290,17,0,capped,DSC_0840.JPG +29871,4690,2290,15,0,capped,DSC_0840.JPG +29872,1531,2353,17,0,capped,DSC_0840.JPG +29873,1681,2401,17,0,capped,DSC_0840.JPG +29876,1885,481,15,0,capped,DSC_0840.JPG +29877,673,700,17,0,capped,DSC_0840.JPG +29878,4390,811,15,0,capped,DSC_0840.JPG +29880,4030,1048,15,0,capped,DSC_0840.JPG +29881,568,1132,15,0,capped,DSC_0840.JPG +29882,4882,1183,15,0,capped,DSC_0840.JPG +29883,4810,1303,15,0,capped,DSC_0840.JPG +29884,1951,1438,17,0,capped,DSC_0840.JPG +29885,4210,1456,17,0,capped,DSC_0840.JPG +29886,4948,1528,17,0,capped,DSC_0840.JPG +29887,3916,1576,15,0,capped,DSC_0840.JPG +29888,1489,1612,17,0,capped,DSC_0840.JPG +29889,250,1642,17,0,capped,DSC_0840.JPG +29890,4879,1651,15,0,capped,DSC_0840.JPG +29891,802,1657,15,0,capped,DSC_0840.JPG +29892,3070,1696,17,0,capped,DSC_0840.JPG +29893,4564,1708,15,0,capped,DSC_0840.JPG +29894,211,1711,15,0,capped,DSC_0840.JPG +29895,499,1831,15,0,capped,DSC_0840.JPG +29896,3385,1990,15,0,capped,DSC_0840.JPG +29897,601,2011,17,0,capped,DSC_0840.JPG +29898,4759,2071,15,0,capped,DSC_0840.JPG +29899,1555,2089,15,0,capped,DSC_0840.JPG +29900,1909,2092,15,0,capped,DSC_0840.JPG +29901,2449,2161,15,0,capped,DSC_0840.JPG +29902,1837,2212,17,0,capped,DSC_0840.JPG +29903,1978,2215,15,0,capped,DSC_0840.JPG +29904,3772,2290,17,0,capped,DSC_0840.JPG +29906,2191,2446,15,0,capped,DSC_0840.JPG +29908,1429,535,15,0,capped,DSC_0840.JPG +29909,673,586,15,0,capped,DSC_0840.JPG +29910,1354,658,17,0,capped,DSC_0840.JPG +29912,4570,748,17,0,capped,DSC_0840.JPG +29913,1558,784,15,0,capped,DSC_0840.JPG +29914,4708,877,17,0,capped,DSC_0840.JPG +29915,4771,1000,17,0,capped,DSC_0840.JPG +29916,3619,1039,17,0,capped,DSC_0840.JPG +29917,3961,1042,15,0,capped,DSC_0840.JPG +29918,3919,1219,17,0,capped,DSC_0840.JPG +29919,640,1240,15,0,capped,DSC_0840.JPG +29920,4174,1282,15,0,capped,DSC_0840.JPG +29921,3430,1456,15,0,capped,DSC_0840.JPG +29922,4138,1459,17,0,capped,DSC_0840.JPG +29923,4912,1468,17,0,capped,DSC_0840.JPG +29924,3601,1516,15,0,capped,DSC_0840.JPG +29925,4159,1519,17,0,capped,DSC_0840.JPG +29926,3880,1522,17,0,capped,DSC_0840.JPG +29927,3418,1576,15,0,capped,DSC_0840.JPG +29928,1909,1735,15,0,capped,DSC_0840.JPG +29929,1417,1738,15,0,capped,DSC_0840.JPG +29930,1063,1843,15,0,capped,DSC_0840.JPG +29931,670,1888,15,0,capped,DSC_0840.JPG +29932,4615,1948,17,0,capped,DSC_0840.JPG +29933,529,2008,17,0,capped,DSC_0840.JPG +29934,2518,2047,17,0,capped,DSC_0840.JPG +29935,2584,2173,15,0,capped,DSC_0840.JPG +29936,4336,2182,17,0,capped,DSC_0840.JPG +29937,4753,2182,17,0,capped,DSC_0840.JPG +29938,3247,2233,15,0,capped,DSC_0840.JPG +29939,4231,2233,15,0,capped,DSC_0840.JPG +29940,4828,2302,15,0,capped,DSC_0840.JPG +29941,3229,2338,17,0,capped,DSC_0840.JPG +29942,4570,2362,17,0,capped,DSC_0840.JPG +29945,1981,2425,17,0,capped,DSC_0840.JPG +29946,2833,2452,17,0,capped,DSC_0840.JPG +29947,1492,412,17,0,capped,DSC_0840.JPG +29948,640,643,15,0,capped,DSC_0840.JPG +29949,4003,745,15,0,capped,DSC_0840.JPG +29950,424,763,17,0,capped,DSC_0840.JPG +29951,4105,805,15,0,capped,DSC_0840.JPG +29952,4105,928,17,0,capped,DSC_0840.JPG +29953,4279,994,15,0,capped,DSC_0840.JPG +29954,4387,1054,15,0,capped,DSC_0840.JPG +29955,952,1072,17,0,capped,DSC_0840.JPG +29956,3892,1165,17,0,capped,DSC_0840.JPG +29957,3574,1219,15,0,capped,DSC_0840.JPG +29958,4492,1237,15,0,capped,DSC_0840.JPG +29959,2161,1327,15,0,capped,DSC_0840.JPG +29960,4273,1351,17,0,capped,DSC_0840.JPG +29961,2161,1561,15,0,capped,DSC_0840.JPG +29962,202,1588,15,0,capped,DSC_0840.JPG +29963,769,1594,15,0,capped,DSC_0840.JPG +29964,4810,1648,15,0,capped,DSC_0840.JPG +29965,3601,1750,17,0,capped,DSC_0840.JPG +29966,778,1834,15,0,capped,DSC_0840.JPG +29968,4654,1882,17,0,capped,DSC_0840.JPG +29969,4651,2125,15,0,capped,DSC_0840.JPG +29970,4012,2230,17,0,capped,DSC_0840.JPG +29971,1444,2263,15,0,capped,DSC_0840.JPG +29975,1177,466,15,0,capped,DSC_0840.JPG +29976,1924,541,15,0,capped,DSC_0840.JPG +29977,1390,709,15,0,capped,DSC_0840.JPG +29978,562,766,15,0,capped,DSC_0840.JPG +29979,133,874,15,0,capped,DSC_0840.JPG +29981,1351,1024,15,0,capped,DSC_0840.JPG +29982,457,1180,17,0,capped,DSC_0840.JPG +29983,739,1186,17,0,capped,DSC_0840.JPG +29984,4921,1351,17,0,capped,DSC_0840.JPG +29985,4165,1402,17,0,capped,DSC_0840.JPG +29986,3466,1405,17,0,capped,DSC_0840.JPG +29987,4207,1582,17,0,capped,DSC_0840.JPG +29988,4024,1639,15,0,capped,DSC_0840.JPG +29989,1312,1792,15,0,capped,DSC_0840.JPG +29990,2482,1867,15,0,capped,DSC_0840.JPG +29991,532,1888,15,0,capped,DSC_0840.JPG +29992,745,2128,17,0,capped,DSC_0840.JPG +29993,2569,2281,17,0,capped,DSC_0840.JPG +29995,3295,2446,15,0,capped,DSC_0840.JPG +29996,2734,2464,15,0,capped,DSC_0840.JPG +29997,2344,418,15,0,capped,DSC_0840.JPG +29998,4288,625,15,0,capped,DSC_0840.JPG +29999,637,772,17,0,capped,DSC_0840.JPG +30000,634,1009,15,0,capped,DSC_0840.JPG +30001,4519,1048,15,0,capped,DSC_0840.JPG +30002,3181,1273,17,0,capped,DSC_0840.JPG +30003,3289,1336,17,0,capped,DSC_0840.JPG +30004,3706,1342,17,0,capped,DSC_0840.JPG +30005,3682,1402,17,0,capped,DSC_0840.JPG +30006,2512,1453,15,0,capped,DSC_0840.JPG +30007,3109,1510,15,0,capped,DSC_0840.JPG +30008,382,1534,17,0,capped,DSC_0840.JPG +30009,3745,1636,15,0,capped,DSC_0840.JPG +30010,2047,1741,15,0,capped,DSC_0840.JPG +30011,3754,1744,17,0,capped,DSC_0840.JPG +30012,3181,1876,17,0,capped,DSC_0840.JPG +30013,628,1951,15,0,capped,DSC_0840.JPG +30014,2263,1981,17,0,capped,DSC_0840.JPG +30015,2299,2044,15,0,capped,DSC_0840.JPG +30016,2122,2104,17,0,capped,DSC_0840.JPG +30017,2197,2107,17,0,capped,DSC_0840.JPG +30018,3631,2170,17,0,capped,DSC_0840.JPG +30019,1624,2203,17,0,capped,DSC_0840.JPG +30020,1549,2209,17,0,capped,DSC_0840.JPG +30021,4513,2239,17,0,capped,DSC_0840.JPG +30022,2029,2359,15,0,capped,DSC_0840.JPG +30023,4120,2458,15,0,capped,DSC_0840.JPG +30024,2455,361,15,0,capped,DSC_0840.JPG +30025,3856,745,17,0,capped,DSC_0840.JPG +30026,4285,748,17,0,capped,DSC_0840.JPG +30027,4852,871,17,0,capped,DSC_0840.JPG +30028,3676,1045,17,0,capped,DSC_0840.JPG +30029,3817,1045,15,0,capped,DSC_0840.JPG +30030,808,1198,15,0,capped,DSC_0840.JPG +30031,3961,1279,15,0,capped,DSC_0840.JPG +30032,3391,1282,17,0,capped,DSC_0840.JPG +30033,601,1297,17,0,capped,DSC_0840.JPG +30034,4528,1522,17,0,capped,DSC_0840.JPG +30035,3499,1582,17,0,capped,DSC_0840.JPG +30036,1663,1672,15,0,capped,DSC_0840.JPG +30037,1105,1678,15,0,capped,DSC_0840.JPG +30038,2194,1744,15,0,capped,DSC_0840.JPG +30039,991,1831,15,0,capped,DSC_0840.JPG +30040,1204,1849,15,0,capped,DSC_0840.JPG +30041,2335,1990,15,0,capped,DSC_0840.JPG +30042,1450,2023,15,0,capped,DSC_0840.JPG +30043,2479,2104,15,0,capped,DSC_0840.JPG +30044,2824,2113,17,0,capped,DSC_0840.JPG +30045,2899,2119,17,0,capped,DSC_0840.JPG +30046,2191,2218,15,0,capped,DSC_0840.JPG +30047,4084,2236,15,0,capped,DSC_0840.JPG +30048,2725,2290,17,0,capped,DSC_0840.JPG +30049,4243,2371,17,0,capped,DSC_0840.JPG +30050,3568,2470,15,0,capped,DSC_0840.JPG +30053,2104,352,15,0,capped,DSC_0840.JPG +30054,2032,355,15,0,capped,DSC_0840.JPG +30055,1561,412,17,0,capped,DSC_0840.JPG +30056,4438,502,17,0,capped,DSC_0840.JPG +30057,1390,964,15,0,capped,DSC_0840.JPG +30058,4129,1105,17,0,capped,DSC_0840.JPG +30059,2197,1270,15,0,capped,DSC_0840.JPG +30060,529,1651,15,0,capped,DSC_0840.JPG +30061,1351,1735,15,0,capped,DSC_0840.JPG +30062,4801,1771,17,0,capped,DSC_0840.JPG +30063,3871,1885,17,0,capped,DSC_0840.JPG +30064,3037,1990,15,0,capped,DSC_0840.JPG +30065,2380,2053,17,0,capped,DSC_0840.JPG +30066,634,2068,15,0,capped,DSC_0840.JPG +30067,667,2128,15,0,capped,DSC_0840.JPG +30068,1936,2269,15,0,capped,DSC_0840.JPG +30070,2605,2353,17,0,capped,DSC_0840.JPG +30071,4795,2368,17,0,capped,DSC_0840.JPG +30073,1357,400,15,0,capped,DSC_0840.JPG +30074,784,532,17,0,capped,DSC_0840.JPG +30075,1075,535,15,0,capped,DSC_0840.JPG +30076,2269,547,15,0,capped,DSC_0840.JPG +30077,781,643,15,0,capped,DSC_0840.JPG +30078,1177,967,15,0,capped,DSC_0840.JPG +30079,1063,1135,17,0,capped,DSC_0840.JPG +30080,1030,1312,15,0,capped,DSC_0840.JPG +30081,3430,1339,17,0,capped,DSC_0840.JPG +30082,2893,1516,17,0,capped,DSC_0840.JPG +30084,1312,1546,17,0,capped,DSC_0840.JPG +30085,2962,1636,17,0,capped,DSC_0840.JPG +30086,3316,1876,17,0,capped,DSC_0840.JPG +30087,3811,1879,15,0,capped,DSC_0840.JPG +30088,3181,1993,17,0,capped,DSC_0840.JPG +30090,988,2071,15,0,capped,DSC_0840.JPG +30091,3946,2119,15,0,capped,DSC_0840.JPG +30092,4582,2122,15,0,capped,DSC_0840.JPG +30093,2050,2218,17,0,capped,DSC_0840.JPG +30094,1303,2254,15,0,capped,DSC_0840.JPG +30095,1729,2272,17,0,capped,DSC_0840.JPG +30096,2014,2272,15,0,capped,DSC_0840.JPG +30097,3898,679,15,0,capped,DSC_0840.JPG +30099,3760,808,15,0,capped,DSC_0840.JPG +30100,4030,925,17,0,capped,DSC_0840.JPG +30101,4069,997,15,0,capped,DSC_0840.JPG +30102,3673,1273,15,0,capped,DSC_0840.JPG +30103,3256,1282,15,0,capped,DSC_0840.JPG +30104,4732,1303,15,0,capped,DSC_0840.JPG +30105,3502,1339,17,0,capped,DSC_0840.JPG +30106,496,1348,15,0,capped,DSC_0840.JPG +30107,3496,1456,17,0,capped,DSC_0840.JPG +30108,3328,1507,15,0,capped,DSC_0840.JPG +30109,139,1510,17,0,capped,DSC_0840.JPG +30110,2791,1573,15,0,capped,DSC_0840.JPG +30111,2620,1627,15,0,capped,DSC_0840.JPG +30112,955,1663,15,0,capped,DSC_0840.JPG +30113,1444,1669,15,0,capped,DSC_0840.JPG +30118,2599,349,15,0,capped,DSC_0840.JPG +30119,2950,361,17,0,capped,DSC_0840.JPG +30120,1534,475,15,0,capped,DSC_0840.JPG +30121,4399,568,17,0,capped,DSC_0840.JPG +30122,1498,778,15,0,capped,DSC_0840.JPG +30123,358,1129,15,0,capped,DSC_0840.JPG +30124,4030,1171,17,0,capped,DSC_0840.JPG +30125,4207,1225,17,0,capped,DSC_0840.JPG +30126,4096,1282,17,0,capped,DSC_0840.JPG +30127,3922,1345,17,0,capped,DSC_0840.JPG +30128,3220,1453,17,0,capped,DSC_0840.JPG +30129,3913,1465,17,0,capped,DSC_0840.JPG +30130,712,1471,15,0,capped,DSC_0840.JPG +30131,3676,1513,17,0,capped,DSC_0840.JPG +30132,2575,1558,17,0,capped,DSC_0840.JPG +30133,4984,1579,15,0,capped,DSC_0840.JPG +30134,1837,1618,17,0,capped,DSC_0840.JPG +30135,172,1879,15,0,capped,DSC_0840.JPG +30136,4864,1885,17,0,capped,DSC_0840.JPG +30137,1594,2035,17,0,capped,DSC_0840.JPG +30138,4267,2059,16,0,capped,DSC_0840.JPG +30139,4090,2116,15,0,capped,DSC_0840.JPG +30140,1132,2191,17,0,capped,DSC_0840.JPG +30141,4297,2242,17,0,capped,DSC_0840.JPG +30142,2857,2284,15,0,capped,DSC_0840.JPG +30144,1690,2323,15,0,capped,DSC_0840.JPG +30148,4096,367,17,0,capped,DSC_0840.JPG +30149,1645,415,17,0,capped,DSC_0840.JPG +30150,1990,421,17,0,capped,DSC_0840.JPG +30151,2170,598,15,0,capped,DSC_0840.JPG +30152,2812,610,15,0,capped,DSC_0840.JPG +30153,283,868,15,0,capped,DSC_0840.JPG +30154,3637,1450,15,0,capped,DSC_0840.JPG +30155,1315,1666,15,0,capped,DSC_0840.JPG +30156,1378,1792,15,0,capped,DSC_0840.JPG +30157,1165,1906,17,0,capped,DSC_0840.JPG +30158,565,1951,15,0,capped,DSC_0840.JPG +30159,4651,2002,15,0,capped,DSC_0840.JPG +30162,1774,544,17,0,capped,DSC_0840.JPG +30163,1210,1138,17,0,capped,DSC_0840.JPG +30164,3466,1159,17,0,capped,DSC_0840.JPG +30165,1024,1192,15,0,capped,DSC_0840.JPG +30166,3775,1222,15,0,capped,DSC_0840.JPG +30167,3739,1273,15,0,capped,DSC_0840.JPG +30168,1378,1429,17,0,capped,DSC_0840.JPG +30169,2230,1447,17,0,capped,DSC_0840.JPG +30170,4792,1882,17,0,capped,DSC_0840.JPG +30171,1003,1888,17,0,capped,DSC_0840.JPG +30172,4549,1945,15,0,capped,DSC_0840.JPG +30173,4831,1948,15,0,capped,DSC_0840.JPG +30174,2086,2044,17,0,capped,DSC_0840.JPG +30175,4474,2290,15,0,capped,DSC_0840.JPG +30176,3091,2407,15,0,capped,DSC_0840.JPG +30177,2485,409,15,0,capped,DSC_0840.JPG +30178,2524,484,15,0,capped,DSC_0840.JPG +30179,2635,550,17,0,capped,DSC_0840.JPG +30180,4501,628,17,0,capped,DSC_0840.JPG +30181,355,631,15,0,capped,DSC_0840.JPG +30183,997,775,17,0,capped,DSC_0840.JPG +30185,154,1054,15,0,capped,DSC_0840.JPG +30186,4378,1636,15,0,capped,DSC_0840.JPG +30187,4378,1759,15,0,capped,DSC_0840.JPG +30188,247,1762,17,0,capped,DSC_0840.JPG +30189,5032,1939,15,0,capped,DSC_0840.JPG +30190,844,1951,15,0,capped,DSC_0840.JPG +30191,1735,2032,15,0,capped,DSC_0840.JPG +30192,3004,2056,15,0,capped,DSC_0840.JPG +30193,3034,2113,17,0,capped,DSC_0840.JPG +30195,1414,2209,17,0,capped,DSC_0840.JPG +30196,4057,2293,15,0,capped,DSC_0840.JPG +30197,4408,2293,15,0,capped,DSC_0840.JPG +30198,3388,2380,17,0,capped,DSC_0840.JPG +30201,2374,367,17,0,capped,DSC_0840.JPG +30203,4393,919,15,0,capped,DSC_0840.JPG +30204,4288,1111,17,0,capped,DSC_0840.JPG +30205,856,1255,17,0,capped,DSC_0840.JPG +30206,3889,1282,15,0,capped,DSC_0840.JPG +30207,1057,1732,15,0,capped,DSC_0840.JPG +30208,1705,1741,15,0,capped,DSC_0840.JPG +30209,634,1828,15,0,capped,DSC_0840.JPG +30210,4048,1831,17,0,capped,DSC_0840.JPG +30211,4705,2227,17,0,capped,DSC_0840.JPG +30215,3157,121,17,0,capped,DSC_0840.JPG +30216,3307,238,17,0,capped,DSC_0840.JPG +30218,4000,1111,17,0,capped,DSC_0840.JPG +30219,3400,1165,17,0,capped,DSC_0840.JPG +30220,4099,1165,15,0,capped,DSC_0840.JPG +30221,151,1171,17,0,capped,DSC_0840.JPG +30222,3565,1336,17,0,capped,DSC_0840.JPG +30223,3997,1351,17,0,capped,DSC_0840.JPG +30224,4609,1399,15,0,capped,DSC_0840.JPG +30225,2011,1564,17,0,capped,DSC_0840.JPG +30226,4732,1648,15,0,capped,DSC_0840.JPG +30227,427,2059,15,0,capped,DSC_0840.JPG +30228,499,2059,15,0,capped,DSC_0840.JPG +30229,4261,2173,17,0,capped,DSC_0840.JPG +30230,1939,2347,17,0,capped,DSC_0840.JPG +30231,3880,2368,17,0,capped,DSC_0840.JPG +30234,2200,544,17,0,capped,DSC_0840.JPG +30235,2503,1567,17,0,capped,DSC_0840.JPG +30236,3877,1642,15,0,capped,DSC_0840.JPG +30238,3913,1822,15,0,capped,DSC_0840.JPG +30239,352,2056,15,0,capped,DSC_0840.JPG +30240,4720,2128,15,0,capped,DSC_0840.JPG +30241,4573,2239,15,0,capped,DSC_0840.JPG +30242,2788,2338,17,0,capped,DSC_0840.JPG +30244,4288,2461,15,0,capped,DSC_0840.JPG +30248,4855,673,15,0,capped,DSC_0840.JPG +30249,463,1294,17,0,capped,DSC_0840.JPG +30250,3463,1630,15,0,capped,DSC_0840.JPG +30251,3535,1996,17,0,capped,DSC_0840.JPG +30252,4060,2059,17,0,capped,DSC_0840.JPG +30253,1693,2098,15,0,capped,DSC_0840.JPG +30254,3214,2461,15,0,capped,DSC_0840.JPG +30257,1591,349,15,0,capped,DSC_0840.JPG +30259,3781,994,15,0,capped,DSC_0840.JPG +30261,1240,1549,17,0,capped,DSC_0840.JPG +30262,3955,1624,15,0,capped,DSC_0840.JPG +30265,4870,2233,17,0,capped,DSC_0840.JPG +30266,3061,2281,17,0,capped,DSC_0840.JPG +30267,2632,2458,17,0,capped,DSC_0840.JPG +30269,3538,1279,15,0,capped,DSC_0840.JPG +30270,3463,1507,15,0,capped,DSC_0840.JPG +30271,1969,1624,15,0,capped,DSC_0840.JPG +30272,3667,1636,15,0,capped,DSC_0840.JPG +30273,103,1720,17,0,capped,DSC_0840.JPG +30274,3100,2116,15,0,capped,DSC_0840.JPG +30280,934,529,17,0,capped,DSC_0840.JPG +30281,898,601,15,0,capped,DSC_0840.JPG +30282,3226,982,17,0,capped,DSC_0840.JPG +30283,3790,1096,15,0,capped,DSC_0840.JPG +30285,67,1447,17,0,capped,DSC_0840.JPG +30286,3649,1573,17,0,capped,DSC_0840.JPG +30287,3781,1687,15,0,capped,DSC_0840.JPG +30288,1771,1738,17,0,capped,DSC_0840.JPG +30291,5008,2122,17,0,capped,DSC_0840.JPG +30297,3781,1336,17,0,capped,DSC_0840.JPG +30298,715,1957,15,0,capped,DSC_0840.JPG +30299,2554,2107,15,0,capped,DSC_0840.JPG +30300,4933,2239,17,0,capped,DSC_0840.JPG +30301,4375,2344,17,0,capped,DSC_0840.JPG +30302,4504,2365,15,0,capped,DSC_0840.JPG +30303,4141,2368,17,0,capped,DSC_0840.JPG +30304,4651,2371,17,0,capped,DSC_0840.JPG +30307,1747,343,17,0,capped,DSC_0840.JPG +30309,4786,727,17,0,capped,DSC_0840.JPG +30311,3955,1756,15,0,capped,DSC_0840.JPG +30314,3616,2359,15,0,capped,DSC_0840.JPG +30318,3274,427,17,0,capped,DSC_0840.JPG +30319,4408,442,15,0,capped,DSC_0840.JPG +30320,2026,466,17,0,capped,DSC_0840.JPG +30324,3775,1462,15,0,capped,DSC_0840.JPG +30325,808,2020,15,0,capped,DSC_0840.JPG +30330,2452,478,15,0,capped,DSC_0840.JPG +30331,2317,487,15,0,capped,DSC_0840.JPG +30332,2269,1027,17,0,capped,DSC_0840.JPG +30333,3706,2284,15,0,capped,DSC_0840.JPG +30334,1843,2410,17,0,capped,DSC_0840.JPG +30337,3295,1102,15,0,capped,DSC_0840.JPG +30339,2155,2266,15,0,capped,DSC_0840.JPG +30340,3544,2374,17,0,capped,DSC_0840.JPG +30343,3712,859,17,0,capped,DSC_0840.JPG +30345,166,1645,17,0,capped,DSC_0840.JPG +30346,2833,1876,15,0,capped,DSC_0840.JPG +30347,3946,1999,15,0,capped,DSC_0840.JPG +30348,2317,2368,15,0,capped,DSC_0840.JPG +30354,946,1906,15,0,capped,DSC_0840.JPG +30355,2443,2278,15,0,capped,DSC_0840.JPG +30359,1795,2380,15,0,capped,DSC_0840.JPG +30362,847,568,15,0,capped,DSC_0840.JPG +30364,3658,2458,15,0,capped,DSC_0840.JPG +30366,3046,172,17,0,capped,DSC_0840.JPG +30367,3448,370,17,0,capped,DSC_0840.JPG +30369,112,1939,17,0,capped,DSC_0840.JPG +30370,1768,2323,17,0,capped,DSC_0840.JPG +30376,2110,481,17,0,capped,DSC_0840.JPG +30377,4846,613,17,0,capped,DSC_0840.JPG +30378,4777,631,15,0,capped,DSC_0840.JPG +30379,2371,967,17,0,capped,DSC_0840.JPG +30384,4816,556,15,0,capped,DSC_0840.JPG +30385,3241,2398,17,0,capped,DSC_0840.JPG +30388,109,1345,17,0,capped,DSC_0840.JPG +30389,3520,2437,15,0,capped,DSC_0840.JPG +30399,2572,2398,15,0,capped,DSC_0840.JPG +30403,2830,2230,15,0,capped,DSC_0840.JPG +30406,2758,2410,15,0,capped,DSC_0840.JPG +30408,2827,2392,15,0,capped,DSC_0840.JPG +30410,223,1465,15,0,capped,DSC_0840.JPG +30416,2455,2389,17,0,capped,DSC_0840.JPG +30422,1894,2383,15,0,capped,DSC_0840.JPG +30423,3586,2410,15,0,capped,DSC_0840.JPG +30426,3205,2278,17,0,capped,DSC_0840.JPG +30430,3004,2278,15,0,capped,DSC_0840.JPG +30434,3325,2398,15,0,capped,DSC_0840.JPG +30444,1729,2362,17,0,capped,DSC_0840.JPG +30445,3928,2398,17,0,capped,DSC_0840.JPG +30472,1060,2296,17,0,capped,DSC_0840.JPG +30810,5224,988,15,0,capped,DSC_0820.JPG +31098,3973,1315,15,0,capped,DSC_0820.JPG +31121,4327,1552,15,0,capped,DSC_0820.JPG +31138,5068,994,15,0,capped,DSC_0820.JPG +31177,334,880,17,0,capped,DSC_0820.JPG +31329,1438,961,17,0,capped,DSC_0820.JPG +31361,4960,559,17,0,capped,DSC_0820.JPG +31383,3934,895,15,0,capped,DSC_0820.JPG +31386,5071,1231,16,0,capped,DSC_0820.JPG +31407,1477,1021,17,0,capped,DSC_0820.JPG +31409,3970,1435,15,0,capped,DSC_0820.JPG +31421,1162,1078,17,0,capped,DSC_0820.JPG +31422,4039,1195,15,0,capped,DSC_0820.JPG +31438,5188,1051,15,0,capped,DSC_0820.JPG +31456,4429,889,15,0,capped,DSC_0820.JPG +31459,2431,1324,17,0,capped,DSC_0820.JPG +31487,2674,1501,17,0,capped,DSC_0820.JPG +31499,5032,685,15,0,capped,DSC_0820.JPG +31500,442,697,17,0,capped,DSC_0820.JPG +31503,379,943,17,0,capped,DSC_0820.JPG +31506,2677,1144,15,0,capped,DSC_0820.JPG +31511,3025,1618,17,0,capped,DSC_0820.JPG +31513,3481,1675,15,0,capped,DSC_0820.JPG +31515,3976,2140,15,0,capped,DSC_0820.JPG +31524,1408,1258,15,0,capped,DSC_0820.JPG +31525,2536,1378,17,0,capped,DSC_0820.JPG +31527,2710,1438,17,0,capped,DSC_0820.JPG +31537,4996,622,17,0,capped,DSC_0820.JPG +31551,3403,715,15,0,capped,DSC_0820.JPG +31552,3655,1378,15,0,capped,DSC_0820.JPG +31564,3118,586,17,0,capped,DSC_0820.JPG +31565,3514,772,15,0,capped,DSC_0820.JPG +31566,1156,832,15,0,capped,DSC_0820.JPG +31575,3229,652,17,0,capped,DSC_0820.JPG +31579,2779,1444,15,0,capped,DSC_0820.JPG +31580,3235,1618,15,0,capped,DSC_0820.JPG +31592,3475,715,17,0,capped,DSC_0820.JPG +31593,2467,1261,17,0,capped,DSC_0820.JPG +31603,4855,499,17,0,capped,DSC_0820.JPG +31623,3865,649,15,0,capped,DSC_0820.JPG +31625,4255,1069,17,0,capped,DSC_0820.JPG +31628,4360,1372,15,0,capped,DSC_0820.JPG +31630,2503,1438,15,0,capped,DSC_0820.JPG +31638,5068,361,17,0,capped,DSC_0820.JPG +31640,3121,715,17,0,capped,DSC_0820.JPG +31641,5068,748,15,0,capped,DSC_0820.JPG +31644,4429,1249,15,0,capped,DSC_0820.JPG +31647,4039,1312,15,0,capped,DSC_0820.JPG +31651,3619,1558,15,0,capped,DSC_0820.JPG +31653,3865,1732,17,0,capped,DSC_0820.JPG +31661,3334,1318,17,0,capped,DSC_0820.JPG +31662,1903,1384,15,0,capped,DSC_0820.JPG +31664,3340,1798,17,0,capped,DSC_0820.JPG +31669,5107,421,17,0,capped,DSC_0820.JPG +31671,5137,745,17,0,capped,DSC_0820.JPG +31672,3052,838,15,0,capped,DSC_0820.JPG +31673,3691,1195,17,0,capped,DSC_0820.JPG +31675,4498,1606,15,0,capped,DSC_0820.JPG +31676,2326,1738,15,0,capped,DSC_0820.JPG +31681,3019,901,17,0,capped,DSC_0820.JPG +31682,3556,1204,17,0,capped,DSC_0820.JPG +31698,1162,1201,15,0,capped,DSC_0820.JPG +31699,5185,1279,17,0,capped,DSC_0820.JPG +31701,3937,1615,15,0,capped,DSC_0820.JPG +31702,3550,1675,15,0,capped,DSC_0820.JPG +31703,3199,1795,15,0,capped,DSC_0820.JPG +31706,4930,367,17,0,capped,DSC_0820.JPG +31707,259,751,17,0,capped,DSC_0820.JPG +31709,4003,1138,17,0,capped,DSC_0820.JPG +31711,1690,1255,15,0,capped,DSC_0820.JPG +31712,3478,1318,17,0,capped,DSC_0820.JPG +31714,2362,1324,17,0,capped,DSC_0820.JPG +31715,3898,1672,17,0,capped,DSC_0820.JPG +31717,3097,1855,15,0,capped,DSC_0820.JPG +31725,5035,430,15,0,capped,DSC_0820.JPG +31726,253,622,17,0,capped,DSC_0820.JPG +31727,946,706,15,0,capped,DSC_0820.JPG +31729,2080,1204,15,0,capped,DSC_0820.JPG +31732,3832,1435,15,0,capped,DSC_0820.JPG +31733,3406,1558,17,0,capped,DSC_0820.JPG +31741,3685,709,17,0,capped,DSC_0820.JPG +31742,3094,1258,17,0,capped,DSC_0820.JPG +31743,2182,1264,15,0,capped,DSC_0820.JPG +31744,4291,1369,15,0,capped,DSC_0820.JPG +31747,3304,1738,15,0,capped,DSC_0820.JPG +31748,2014,1801,15,0,capped,DSC_0820.JPG +31749,2050,1978,15,0,capped,DSC_0820.JPG +31756,1126,1015,17,0,capped,DSC_0820.JPG +31757,3757,1072,15,0,capped,DSC_0820.JPG +31758,3370,1501,15,0,capped,DSC_0820.JPG +31765,3934,772,15,0,capped,DSC_0820.JPG +31766,3865,1015,17,0,capped,DSC_0820.JPG +31767,4600,1066,16,0,capped,DSC_0820.JPG +31768,3127,1078,15,0,capped,DSC_0820.JPG +31769,3340,1438,15,0,capped,DSC_0820.JPG +31778,2917,967,15,0,capped,DSC_0820.JPG +31779,3793,1015,15,0,capped,DSC_0820.JPG +31780,3373,1615,15,0,capped,DSC_0820.JPG +31782,892,1672,15,0,capped,DSC_0820.JPG +31785,2467,1975,15,0,capped,DSC_0820.JPG +31792,3688,832,17,0,capped,DSC_0820.JPG +31794,4147,1012,15,0,capped,DSC_0820.JPG +31795,1546,1138,17,0,capped,DSC_0820.JPG +31796,3898,1312,15,0,capped,DSC_0820.JPG +31797,3937,1498,17,0,capped,DSC_0820.JPG +31798,2608,1501,17,0,capped,DSC_0820.JPG +31799,3268,1675,17,0,capped,DSC_0820.JPG +31800,3235,1735,17,0,capped,DSC_0820.JPG +31801,2503,1798,15,0,capped,DSC_0820.JPG +31807,367,439,15,0,capped,DSC_0820.JPG +31810,256,871,17,0,capped,DSC_0820.JPG +31811,1060,1021,17,0,capped,DSC_0820.JPG +31813,5146,1345,17,0,capped,DSC_0820.JPG +31821,511,445,17,0,capped,DSC_0820.JPG +31822,3403,457,17,0,capped,DSC_0820.JPG +31823,3652,646,15,0,capped,DSC_0820.JPG +31824,4072,646,17,0,capped,DSC_0820.JPG +31825,1090,832,15,0,capped,DSC_0820.JPG +31826,1123,1144,17,0,capped,DSC_0820.JPG +31827,1513,1198,17,0,capped,DSC_0820.JPG +31828,4147,1249,15,0,capped,DSC_0820.JPG +31833,3937,1969,17,0,capped,DSC_0820.JPG +31834,2959,2083,17,0,capped,DSC_0820.JPG +31841,295,688,16,0,capped,DSC_0820.JPG +31842,1684,772,17,0,capped,DSC_0820.JPG +31843,4672,823,15,0,capped,DSC_0820.JPG +31844,3970,832,15,0,capped,DSC_0820.JPG +31845,3193,838,17,0,capped,DSC_0820.JPG +31846,5137,865,15,0,capped,DSC_0820.JPG +31848,343,1003,17,0,capped,DSC_0820.JPG +31849,3337,1072,15,0,capped,DSC_0820.JPG +31850,3832,1078,15,0,capped,DSC_0820.JPG +31851,5071,1114,17,0,capped,DSC_0820.JPG +31852,1024,1195,15,0,capped,DSC_0820.JPG +31854,3868,1258,15,0,capped,DSC_0820.JPG +31855,3583,1261,17,0,capped,DSC_0820.JPG +31856,1552,1378,17,0,capped,DSC_0820.JPG +31857,3793,1378,15,0,capped,DSC_0820.JPG +31858,2851,1441,17,0,capped,DSC_0820.JPG +31859,1762,1498,17,0,capped,DSC_0820.JPG +31860,3301,1501,15,0,capped,DSC_0820.JPG +31861,4573,1720,15,0,capped,DSC_0820.JPG +31864,4894,304,17,0,capped,DSC_0820.JPG +31866,4036,580,15,0,capped,DSC_0820.JPG +31867,1654,1315,15,0,capped,DSC_0820.JPG +31870,4888,1417,15,0,capped,DSC_0820.JPG +31871,1978,1501,17,0,capped,DSC_0820.JPG +31873,3343,1558,15,0,capped,DSC_0820.JPG +31874,4114,1789,15,0,capped,DSC_0820.JPG +31875,3064,1795,15,0,capped,DSC_0820.JPG +31876,3235,1855,15,0,capped,DSC_0820.JPG +31877,1873,2041,17,0,capped,DSC_0820.JPG +31878,3373,2080,17,0,capped,DSC_0820.JPG +31882,4966,301,17,0,capped,DSC_0820.JPG +31884,469,376,15,0,capped,DSC_0820.JPG +31885,760,514,17,0,capped,DSC_0820.JPG +31886,5104,682,17,0,capped,DSC_0820.JPG +31887,409,757,17,0,capped,DSC_0820.JPG +31889,3688,955,17,0,capped,DSC_0820.JPG +31893,3934,1255,17,0,capped,DSC_0820.JPG +31895,3406,1441,15,0,capped,DSC_0820.JPG +31896,3652,1498,15,0,capped,DSC_0820.JPG +31897,4363,1606,15,0,capped,DSC_0820.JPG +31898,2608,1975,17,0,capped,DSC_0820.JPG +31899,2575,2035,15,0,capped,DSC_0820.JPG +31900,3445,2080,15,0,capped,DSC_0820.JPG +31906,3334,583,15,0,capped,DSC_0820.JPG +31907,2251,646,17,0,capped,DSC_0820.JPG +31908,3301,652,17,0,capped,DSC_0820.JPG +31909,4534,700,15,0,capped,DSC_0820.JPG +31910,4708,883,15,0,capped,DSC_0820.JPG +31911,5107,1051,17,0,capped,DSC_0820.JPG +31912,3163,1135,17,0,capped,DSC_0820.JPG +31914,1273,1261,17,0,capped,DSC_0820.JPG +31916,1978,1624,17,0,capped,DSC_0820.JPG +31917,1660,1678,15,0,capped,DSC_0820.JPG +31922,4894,433,17,0,capped,DSC_0820.JPG +31924,2392,529,15,0,capped,DSC_0820.JPG +31925,3337,712,16,0,capped,DSC_0820.JPG +31926,3085,775,17,0,capped,DSC_0820.JPG +31928,3229,892,15,0,capped,DSC_0820.JPG +31929,5254,928,15,0,capped,DSC_0820.JPG +31930,3829,955,15,0,capped,DSC_0820.JPG +31931,1300,958,17,0,capped,DSC_0820.JPG +31933,2989,1321,15,0,capped,DSC_0820.JPG +31935,1060,1498,17,0,capped,DSC_0820.JPG +31936,1483,1501,15,0,capped,DSC_0820.JPG +31937,2011,1681,17,0,capped,DSC_0820.JPG +31938,1732,1801,15,0,capped,DSC_0820.JPG +31942,547,382,17,0,capped,DSC_0820.JPG +31943,3118,460,15,0,capped,DSC_0820.JPG +31945,1753,523,17,0,capped,DSC_0820.JPG +31946,4183,577,15,0,capped,DSC_0820.JPG +31947,3865,772,15,0,capped,DSC_0820.JPG +31948,4462,826,15,0,capped,DSC_0820.JPG +31949,4042,955,17,0,capped,DSC_0820.JPG +31950,4324,1069,15,0,capped,DSC_0820.JPG +31951,1480,1141,15,0,capped,DSC_0820.JPG +31953,2713,1321,15,0,capped,DSC_0820.JPG +31954,925,1492,15,0,capped,DSC_0820.JPG +31955,3760,1555,15,0,capped,DSC_0820.JPG +31956,4081,1612,15,0,capped,DSC_0820.JPG +31958,1246,1798,17,0,capped,DSC_0820.JPG +31960,1840,2095,15,0,capped,DSC_0820.JPG +31964,3970,448,15,0,capped,DSC_0820.JPG +31965,4006,646,17,0,capped,DSC_0820.JPG +31966,2953,778,15,0,capped,DSC_0820.JPG +31967,3547,829,17,0,capped,DSC_0820.JPG +31968,1723,835,15,0,capped,DSC_0820.JPG +31969,3160,892,17,0,capped,DSC_0820.JPG +31970,4459,946,15,0,capped,DSC_0820.JPG +31971,3931,1009,17,0,capped,DSC_0820.JPG +31972,1261,1015,15,0,capped,DSC_0820.JPG +31973,3445,1015,17,0,capped,DSC_0820.JPG +31974,4396,1066,15,0,capped,DSC_0820.JPG +31975,3514,1135,15,0,capped,DSC_0820.JPG +31976,2605,1138,17,0,capped,DSC_0820.JPG +31978,4255,1432,15,0,capped,DSC_0820.JPG +31979,2992,1438,15,0,capped,DSC_0820.JPG +31980,4498,1486,15,0,capped,DSC_0820.JPG +31981,4390,1552,17,0,capped,DSC_0820.JPG +31982,3481,1558,17,0,capped,DSC_0820.JPG +31983,3166,1618,17,0,capped,DSC_0820.JPG +31984,2890,1621,17,0,capped,DSC_0820.JPG +31985,4531,1663,15,0,capped,DSC_0820.JPG +31986,1105,1675,17,0,capped,DSC_0820.JPG +31987,2926,1675,15,0,capped,DSC_0820.JPG +31988,1981,1741,15,0,capped,DSC_0820.JPG +31989,2752,1858,15,0,capped,DSC_0820.JPG +31990,1558,1978,17,0,capped,DSC_0820.JPG +31992,4996,493,17,0,capped,DSC_0820.JPG +31994,5254,550,17,0,capped,DSC_0820.JPG +31995,4540,574,17,0,capped,DSC_0820.JPG +31997,3052,715,17,0,capped,DSC_0820.JPG +31998,1969,778,17,0,capped,DSC_0820.JPG +32001,3796,1135,15,0,capped,DSC_0820.JPG +32002,1054,1138,17,0,capped,DSC_0820.JPG +32003,1756,1138,15,0,capped,DSC_0820.JPG +32004,3652,1258,17,0,capped,DSC_0820.JPG +32005,3583,1381,17,0,capped,DSC_0820.JPG +32006,1801,1444,15,0,capped,DSC_0820.JPG +32007,2365,1447,17,0,capped,DSC_0820.JPG +32008,2188,1735,15,0,capped,DSC_0820.JPG +32009,2155,1918,15,0,capped,DSC_0820.JPG +32013,403,502,15,0,capped,DSC_0820.JPG +32014,3583,772,17,0,capped,DSC_0820.JPG +32015,3118,835,17,0,capped,DSC_0820.JPG +32016,1762,898,17,0,capped,DSC_0820.JPG +32017,2674,1024,15,0,capped,DSC_0820.JPG +32018,2710,1084,15,0,capped,DSC_0820.JPG +32019,2812,1144,17,0,capped,DSC_0820.JPG +32020,3622,1198,17,0,capped,DSC_0820.JPG +32021,2572,1204,15,0,capped,DSC_0820.JPG +32023,2329,1267,15,0,capped,DSC_0820.JPG +32024,3724,1381,17,0,capped,DSC_0820.JPG +32025,3481,1438,17,0,capped,DSC_0820.JPG +32026,3517,1492,17,0,capped,DSC_0820.JPG +32027,3832,1555,17,0,capped,DSC_0820.JPG +32028,994,1612,15,0,capped,DSC_0820.JPG +32029,2116,1621,15,0,capped,DSC_0820.JPG +32030,3064,1675,15,0,capped,DSC_0820.JPG +32031,3760,2026,17,0,capped,DSC_0820.JPG +32032,3415,2140,17,0,capped,DSC_0820.JPG +32037,511,574,17,0,capped,DSC_0820.JPG +32038,3367,652,15,0,capped,DSC_0820.JPG +32039,2002,709,17,0,capped,DSC_0820.JPG +32040,3616,712,15,0,capped,DSC_0820.JPG +32041,1474,898,15,0,capped,DSC_0820.JPG +32042,3373,898,17,0,capped,DSC_0820.JPG +32044,4495,1006,15,0,capped,DSC_0820.JPG +32045,2569,1081,15,0,capped,DSC_0820.JPG +32046,3868,1135,15,0,capped,DSC_0820.JPG +32047,3514,1261,15,0,capped,DSC_0820.JPG +32048,1795,1321,17,0,capped,DSC_0820.JPG +32049,1132,1498,17,0,capped,DSC_0820.JPG +32051,2854,1915,16,0,capped,DSC_0820.JPG +32052,2887,2086,15,0,capped,DSC_0820.JPG +32053,1900,2338,15,0,capped,DSC_0820.JPG +32057,4717,235,17,0,capped,DSC_0820.JPG +32058,5182,424,15,0,capped,DSC_0820.JPG +32060,4075,511,17,0,capped,DSC_0820.JPG +32062,3190,712,17,0,capped,DSC_0820.JPG +32063,382,1063,17,0,capped,DSC_0820.JPG +32064,4708,1123,15,0,capped,DSC_0820.JPG +32065,3025,1141,15,0,capped,DSC_0820.JPG +32066,4147,1375,15,0,capped,DSC_0820.JPG +32067,2185,1384,17,0,capped,DSC_0820.JPG +32069,2992,1561,17,0,capped,DSC_0820.JPG +32071,3091,1621,15,0,capped,DSC_0820.JPG +32072,928,1735,17,0,capped,DSC_0820.JPG +32073,3028,1735,15,0,capped,DSC_0820.JPG +32074,4462,1783,15,0,capped,DSC_0820.JPG +32075,3904,1786,17,0,capped,DSC_0820.JPG +32076,3268,1792,17,0,capped,DSC_0820.JPG +32077,3688,1795,17,0,capped,DSC_0820.JPG +32078,3307,1852,17,0,capped,DSC_0820.JPG +32079,3688,1906,17,0,capped,DSC_0820.JPG +32080,1729,1921,15,0,capped,DSC_0820.JPG +32082,1984,1981,17,0,capped,DSC_0820.JPG +32086,583,448,15,0,capped,DSC_0820.JPG +32087,3622,580,17,0,capped,DSC_0820.JPG +32088,1648,838,15,0,capped,DSC_0820.JPG +32089,3868,889,15,0,capped,DSC_0820.JPG +32090,3967,946,15,0,capped,DSC_0820.JPG +32091,4003,1009,17,0,capped,DSC_0820.JPG +32092,5032,1051,17,0,capped,DSC_0820.JPG +32093,1198,1144,17,0,capped,DSC_0820.JPG +32094,4921,1156,15,0,capped,DSC_0820.JPG +32095,4216,1372,15,0,capped,DSC_0820.JPG +32096,2677,1381,17,0,capped,DSC_0820.JPG +32098,4111,1435,17,0,capped,DSC_0820.JPG +32099,3553,1438,15,0,capped,DSC_0820.JPG +32100,2011,1444,17,0,capped,DSC_0820.JPG +32102,2083,1801,15,0,capped,DSC_0820.JPG +32103,4288,1843,15,0,capped,DSC_0820.JPG +32104,3169,1972,17,0,capped,DSC_0820.JPG +32105,2923,2029,15,0,capped,DSC_0820.JPG +32106,1663,2035,15,0,capped,DSC_0820.JPG +32111,1759,652,15,0,capped,DSC_0820.JPG +32112,1087,700,15,0,capped,DSC_0820.JPG +32113,3619,832,15,0,capped,DSC_0820.JPG +32114,4186,952,15,0,capped,DSC_0820.JPG +32115,3655,1021,15,0,capped,DSC_0820.JPG +32116,3271,1072,15,0,capped,DSC_0820.JPG +32117,1336,1144,17,0,capped,DSC_0820.JPG +32118,2047,1264,15,0,capped,DSC_0820.JPG +32119,955,1312,15,0,capped,DSC_0820.JPG +32120,2644,1321,17,0,capped,DSC_0820.JPG +32121,4009,1375,17,0,capped,DSC_0820.JPG +32122,3163,1378,17,0,capped,DSC_0820.JPG +32123,4324,1429,17,0,capped,DSC_0820.JPG +32124,1660,1438,15,0,capped,DSC_0820.JPG +32125,3199,1438,17,0,capped,DSC_0820.JPG +32126,1273,1495,17,0,capped,DSC_0820.JPG +32127,1762,1621,15,0,capped,DSC_0820.JPG +32128,2182,1621,17,0,capped,DSC_0820.JPG +32129,3130,1678,15,0,capped,DSC_0820.JPG +32130,4078,1729,15,0,capped,DSC_0820.JPG +32131,3799,1732,15,0,capped,DSC_0820.JPG +32132,4009,1732,15,0,capped,DSC_0820.JPG +32133,2464,1741,17,0,capped,DSC_0820.JPG +32137,2536,1978,17,0,capped,DSC_0820.JPG +32142,5068,622,15,0,capped,DSC_0820.JPG +32143,3793,646,15,0,capped,DSC_0820.JPG +32144,3652,769,17,0,capped,DSC_0820.JPG +32145,4603,823,15,0,capped,DSC_0820.JPG +32146,2428,835,15,0,capped,DSC_0820.JPG +32147,3442,895,15,0,capped,DSC_0820.JPG +32148,3055,964,17,0,capped,DSC_0820.JPG +32149,1513,1078,15,0,capped,DSC_0820.JPG +32150,3445,1258,15,0,capped,DSC_0820.JPG +32151,1237,1321,15,0,capped,DSC_0820.JPG +32152,5074,1342,17,0,capped,DSC_0820.JPG +32153,1240,1432,17,0,capped,DSC_0820.JPG +32155,1099,1552,15,0,capped,DSC_0820.JPG +32156,3658,1618,17,0,capped,DSC_0820.JPG +32158,1912,1741,17,0,capped,DSC_0820.JPG +32159,1627,1864,17,0,capped,DSC_0820.JPG +32160,3100,2086,17,0,capped,DSC_0820.JPG +32164,3793,382,17,0,capped,DSC_0820.JPG +32165,331,499,17,0,capped,DSC_0820.JPG +32166,406,634,17,0,capped,DSC_0820.JPG +32168,4363,886,17,0,capped,DSC_0820.JPG +32169,3724,892,17,0,capped,DSC_0820.JPG +32170,1615,904,17,0,capped,DSC_0820.JPG +32171,3088,1018,15,0,capped,DSC_0820.JPG +32172,3514,1018,17,0,capped,DSC_0820.JPG +32174,1936,1081,15,0,capped,DSC_0820.JPG +32175,3934,1132,17,0,capped,DSC_0820.JPG +32176,3586,1138,17,0,capped,DSC_0820.JPG +32177,1414,1378,17,0,capped,DSC_0820.JPG +32178,1762,1378,17,0,capped,DSC_0820.JPG +32179,2083,1444,15,0,capped,DSC_0820.JPG +32180,3271,1555,15,0,capped,DSC_0820.JPG +32181,1522,1558,15,0,capped,DSC_0820.JPG +32182,1873,1561,15,0,capped,DSC_0820.JPG +32183,2326,1624,15,0,capped,DSC_0820.JPG +32184,2293,1681,15,0,capped,DSC_0820.JPG +32186,1837,1738,15,0,capped,DSC_0820.JPG +32187,2575,1798,15,0,capped,DSC_0820.JPG +32188,2644,1801,15,0,capped,DSC_0820.JPG +32189,3973,1909,15,0,capped,DSC_0820.JPG +32190,2857,2029,15,0,capped,DSC_0820.JPG +32191,2503,2035,15,0,capped,DSC_0820.JPG +32195,4009,379,17,0,capped,DSC_0820.JPG +32196,2143,451,17,0,capped,DSC_0820.JPG +32198,4006,511,15,0,capped,DSC_0820.JPG +32199,586,574,17,0,capped,DSC_0820.JPG +32200,5218,619,17,0,capped,DSC_0820.JPG +32202,4003,769,17,0,capped,DSC_0820.JPG +32203,4219,769,17,0,capped,DSC_0820.JPG +32204,4636,883,17,0,capped,DSC_0820.JPG +32205,220,934,15,0,capped,DSC_0820.JPG +32206,262,994,17,0,capped,DSC_0820.JPG +32207,2500,1078,15,0,capped,DSC_0820.JPG +32208,2287,1081,15,0,capped,DSC_0820.JPG +32209,3382,1138,17,0,capped,DSC_0820.JPG +32210,2320,1141,15,0,capped,DSC_0820.JPG +32211,2917,1198,15,0,capped,DSC_0820.JPG +32212,1339,1261,17,0,capped,DSC_0820.JPG +32213,1303,1315,15,0,capped,DSC_0820.JPG +32214,2611,1378,17,0,capped,DSC_0820.JPG +32215,2884,1381,17,0,capped,DSC_0820.JPG +32216,4393,1432,17,0,capped,DSC_0820.JPG +32217,2569,1441,15,0,capped,DSC_0820.JPG +32218,2044,1507,17,0,capped,DSC_0820.JPG +32219,4642,1597,15,0,capped,DSC_0820.JPG +32220,1591,1681,15,0,capped,DSC_0820.JPG +32221,3097,1735,17,0,capped,DSC_0820.JPG +32222,2959,1855,17,0,capped,DSC_0820.JPG +32223,1912,1978,15,0,capped,DSC_0820.JPG +32229,5104,292,15,0,capped,DSC_0820.JPG +32231,4642,757,17,0,capped,DSC_0820.JPG +32232,5179,805,17,0,capped,DSC_0820.JPG +32233,2353,838,17,0,capped,DSC_0820.JPG +32234,3655,895,15,0,capped,DSC_0820.JPG +32235,1372,1081,15,0,capped,DSC_0820.JPG +32237,1408,1138,15,0,capped,DSC_0820.JPG +32238,1687,1141,17,0,capped,DSC_0820.JPG +32239,4465,1192,17,0,capped,DSC_0820.JPG +32240,2641,1204,17,0,capped,DSC_0820.JPG +32241,415,1249,17,0,capped,DSC_0820.JPG +32242,2815,1264,15,0,capped,DSC_0820.JPG +32243,3442,1378,17,0,capped,DSC_0820.JPG +32244,4603,1423,15,0,capped,DSC_0820.JPG +32245,2713,1558,15,0,capped,DSC_0820.JPG +32246,1483,1612,15,0,capped,DSC_0820.JPG +32247,4393,1663,15,0,capped,DSC_0820.JPG +32248,3763,1675,17,0,capped,DSC_0820.JPG +32249,1801,1681,17,0,capped,DSC_0820.JPG +32250,4147,1729,15,0,capped,DSC_0820.JPG +32255,3865,385,15,0,capped,DSC_0820.JPG +32256,799,454,17,0,capped,DSC_0820.JPG +32257,3154,523,15,0,capped,DSC_0820.JPG +32258,5035,562,17,0,capped,DSC_0820.JPG +32259,1972,655,15,0,capped,DSC_0820.JPG +32260,1648,715,15,0,capped,DSC_0820.JPG +32261,1723,715,17,0,capped,DSC_0820.JPG +32262,3229,778,17,0,capped,DSC_0820.JPG +32263,4216,886,17,0,capped,DSC_0820.JPG +32264,1021,955,17,0,capped,DSC_0820.JPG +32265,4078,1012,17,0,capped,DSC_0820.JPG +32266,4180,1069,15,0,capped,DSC_0820.JPG +32267,3409,1075,17,0,capped,DSC_0820.JPG +32268,1582,1081,17,0,capped,DSC_0820.JPG +32270,4921,1357,15,0,capped,DSC_0820.JPG +32271,3088,1369,17,0,capped,DSC_0820.JPG +32272,2917,1441,15,0,capped,DSC_0820.JPG +32274,1660,1801,15,0,capped,DSC_0820.JPG +32275,3163,1855,15,0,capped,DSC_0820.JPG +32276,1135,1858,15,0,capped,DSC_0820.JPG +32277,3133,2029,15,0,capped,DSC_0820.JPG +32278,3904,2029,15,0,capped,DSC_0820.JPG +32279,2779,2032,17,0,capped,DSC_0820.JPG +32280,2710,2143,15,0,capped,DSC_0820.JPG +32283,4750,301,15,0,capped,DSC_0820.JPG +32284,3232,388,17,0,capped,DSC_0820.JPG +32285,1573,457,17,0,capped,DSC_0820.JPG +32287,1534,646,17,0,capped,DSC_0820.JPG +32288,2041,655,15,0,capped,DSC_0820.JPG +32291,4285,769,15,0,capped,DSC_0820.JPG +32292,3019,781,17,0,capped,DSC_0820.JPG +32293,4252,829,15,0,capped,DSC_0820.JPG +32294,2215,835,17,0,capped,DSC_0820.JPG +32295,2986,841,17,0,capped,DSC_0820.JPG +32297,2041,892,17,0,capped,DSC_0820.JPG +32298,2251,898,15,0,capped,DSC_0820.JPG +32299,3163,1018,17,0,capped,DSC_0820.JPG +32300,1900,1021,15,0,capped,DSC_0820.JPG +32301,1795,1078,15,0,capped,DSC_0820.JPG +32302,3967,1195,15,0,capped,DSC_0820.JPG +32303,1369,1198,17,0,capped,DSC_0820.JPG +32304,3724,1258,15,0,capped,DSC_0820.JPG +32305,3160,1261,17,0,capped,DSC_0820.JPG +32306,3268,1318,15,0,capped,DSC_0820.JPG +32307,3586,1498,17,0,capped,DSC_0820.JPG +32308,3976,1552,17,0,capped,DSC_0820.JPG +32309,2011,1558,15,0,capped,DSC_0820.JPG +32311,4114,1669,17,0,capped,DSC_0820.JPG +32312,1627,1741,17,0,capped,DSC_0820.JPG +32313,2989,1912,17,0,capped,DSC_0820.JPG +32314,2713,1915,15,0,capped,DSC_0820.JPG +32315,3313,2320,17,0,capped,DSC_0820.JPG +32319,5140,355,15,0,capped,DSC_0820.JPG +32320,4855,370,17,0,capped,DSC_0820.JPG +32323,5107,808,17,0,capped,DSC_0820.JPG +32324,3514,892,15,0,capped,DSC_0820.JPG +32325,2674,904,17,0,capped,DSC_0820.JPG +32326,5143,991,16,0,capped,DSC_0820.JPG +32327,2533,1018,15,0,capped,DSC_0820.JPG +32328,3094,1135,17,0,capped,DSC_0820.JPG +32330,4327,1189,15,0,capped,DSC_0820.JPG +32331,1306,1201,17,0,capped,DSC_0820.JPG +32332,3901,1201,17,0,capped,DSC_0820.JPG +32333,3376,1258,15,0,capped,DSC_0820.JPG +32334,3520,1381,17,0,capped,DSC_0820.JPG +32335,1549,1498,15,0,capped,DSC_0820.JPG +32337,3127,1555,17,0,capped,DSC_0820.JPG +32338,1735,1558,15,0,capped,DSC_0820.JPG +32339,3586,1615,15,0,capped,DSC_0820.JPG +32340,1312,1675,15,0,capped,DSC_0820.JPG +32341,1729,1681,15,0,capped,DSC_0820.JPG +32342,2539,1741,15,0,capped,DSC_0820.JPG +32343,1381,1795,17,0,capped,DSC_0820.JPG +32344,3133,1798,17,0,capped,DSC_0820.JPG +32345,2260,1861,15,0,capped,DSC_0820.JPG +32346,3271,1915,17,0,capped,DSC_0820.JPG +32347,2680,1972,15,0,capped,DSC_0820.JPG +32348,2293,2035,15,0,capped,DSC_0820.JPG +32349,3514,2080,15,0,capped,DSC_0820.JPG +32355,4081,379,17,0,capped,DSC_0820.JPG +32356,1537,385,17,0,capped,DSC_0820.JPG +32357,1579,586,17,0,capped,DSC_0820.JPG +32359,3442,772,15,0,capped,DSC_0820.JPG +32360,3475,832,17,0,capped,DSC_0820.JPG +32361,1060,895,15,0,capped,DSC_0820.JPG +32362,2845,961,17,0,capped,DSC_0820.JPG +32363,2152,1084,17,0,capped,DSC_0820.JPG +32364,2467,1141,15,0,capped,DSC_0820.JPG +32365,1582,1201,15,0,capped,DSC_0820.JPG +32366,1126,1258,16,0,capped,DSC_0820.JPG +32367,4084,1258,15,0,capped,DSC_0820.JPG +32368,4534,1303,15,0,capped,DSC_0820.JPG +32369,985,1372,17,0,capped,DSC_0820.JPG +32370,3022,1375,15,0,capped,DSC_0820.JPG +32371,2851,1558,15,0,capped,DSC_0820.JPG +32372,2680,1615,15,0,capped,DSC_0820.JPG +32373,3337,1675,15,0,capped,DSC_0820.JPG +32375,859,1729,17,0,capped,DSC_0820.JPG +32376,3970,1792,17,0,capped,DSC_0820.JPG +32377,1486,1975,15,0,capped,DSC_0820.JPG +32380,3832,442,17,0,capped,DSC_0820.JPG +32381,1786,454,17,0,capped,DSC_0820.JPG +32382,5173,553,15,0,capped,DSC_0820.JPG +32383,3550,580,15,0,capped,DSC_0820.JPG +32385,1363,706,15,0,capped,DSC_0820.JPG +32386,3898,709,16,0,capped,DSC_0820.JPG +32387,1324,769,17,0,capped,DSC_0820.JPG +32388,3298,772,15,0,capped,DSC_0820.JPG +32389,4534,826,15,0,capped,DSC_0820.JPG +32390,3826,829,17,0,capped,DSC_0820.JPG +32391,1435,835,15,0,capped,DSC_0820.JPG +32392,1795,838,17,0,capped,DSC_0820.JPG +32393,3262,838,15,0,capped,DSC_0820.JPG +32394,1402,895,15,0,capped,DSC_0820.JPG +32395,4111,952,15,0,capped,DSC_0820.JPG +32396,1861,955,15,0,capped,DSC_0820.JPG +32397,3268,955,15,0,capped,DSC_0820.JPG +32398,4039,1075,16,0,capped,DSC_0820.JPG +32400,2779,1318,17,0,capped,DSC_0820.JPG +32401,3613,1321,17,0,capped,DSC_0820.JPG +32403,1936,1441,17,0,capped,DSC_0820.JPG +32404,5149,1471,17,0,capped,DSC_0820.JPG +32405,1414,1495,15,0,capped,DSC_0820.JPG +32406,3442,1501,17,0,capped,DSC_0820.JPG +32407,1066,1615,15,0,capped,DSC_0820.JPG +32408,2044,1621,15,0,capped,DSC_0820.JPG +32409,2254,1621,15,0,capped,DSC_0820.JPG +32410,2749,1621,15,0,capped,DSC_0820.JPG +32412,1873,1681,17,0,capped,DSC_0820.JPG +32413,2080,1684,15,0,capped,DSC_0820.JPG +32414,1207,1738,15,0,capped,DSC_0820.JPG +32415,3721,1855,17,0,capped,DSC_0820.JPG +32416,1840,1978,15,0,capped,DSC_0820.JPG +32417,2716,2272,17,0,capped,DSC_0820.JPG +32421,4180,448,15,0,capped,DSC_0820.JPG +32422,5143,490,17,0,capped,DSC_0820.JPG +32423,4291,508,15,0,capped,DSC_0820.JPG +32424,1462,511,17,0,capped,DSC_0820.JPG +32425,1687,652,17,0,capped,DSC_0820.JPG +32426,3547,712,15,0,capped,DSC_0820.JPG +32427,5290,739,17,0,capped,DSC_0820.JPG +32428,2914,844,15,0,capped,DSC_0820.JPG +32429,3334,844,15,0,capped,DSC_0820.JPG +32430,4252,952,17,0,capped,DSC_0820.JPG +32431,2221,961,15,0,capped,DSC_0820.JPG +32432,2290,964,17,0,capped,DSC_0820.JPG +32433,3583,1018,17,0,capped,DSC_0820.JPG +32434,2740,1024,15,0,capped,DSC_0820.JPG +32435,1864,1081,15,0,capped,DSC_0820.JPG +32436,2983,1081,17,0,capped,DSC_0820.JPG +32437,2428,1084,17,0,capped,DSC_0820.JPG +32438,4291,1129,15,0,capped,DSC_0820.JPG +32439,3199,1198,17,0,capped,DSC_0820.JPG +32440,1054,1264,15,0,capped,DSC_0820.JPG +32441,3061,1318,15,0,capped,DSC_0820.JPG +32442,2257,1384,15,0,capped,DSC_0820.JPG +32443,4564,1486,15,0,capped,DSC_0820.JPG +32445,1657,1564,17,0,capped,DSC_0820.JPG +32446,2959,1618,15,0,capped,DSC_0820.JPG +32447,2782,1672,15,0,capped,DSC_0820.JPG +32448,3619,1675,15,0,capped,DSC_0820.JPG +32449,3064,2032,17,0,capped,DSC_0820.JPG +32452,3652,385,15,0,capped,DSC_0820.JPG +32453,3442,523,15,0,capped,DSC_0820.JPG +32454,5113,556,15,0,capped,DSC_0820.JPG +32455,3970,703,17,0,capped,DSC_0820.JPG +32456,1471,769,17,0,capped,DSC_0820.JPG +32457,982,892,17,0,capped,DSC_0820.JPG +32458,3088,895,17,0,capped,DSC_0820.JPG +32459,4675,1060,15,0,capped,DSC_0820.JPG +32460,916,1255,17,0,capped,DSC_0820.JPG +32461,4111,1312,17,0,capped,DSC_0820.JPG +32462,1690,1375,15,0,capped,DSC_0820.JPG +32463,2953,1384,15,0,capped,DSC_0820.JPG +32464,2821,1504,15,0,capped,DSC_0820.JPG +32465,4039,1555,15,0,capped,DSC_0820.JPG +32466,2785,1558,17,0,capped,DSC_0820.JPG +32467,2149,1564,15,0,capped,DSC_0820.JPG +32468,1696,1741,15,0,capped,DSC_0820.JPG +32469,4042,1792,17,0,capped,DSC_0820.JPG +32470,4144,1843,17,0,capped,DSC_0820.JPG +32471,3838,2023,17,0,capped,DSC_0820.JPG +32472,4858,232,17,0,capped,DSC_0820.JPG +32474,1825,514,17,0,capped,DSC_0820.JPG +32475,3475,586,15,0,capped,DSC_0820.JPG +32476,4141,637,17,0,capped,DSC_0820.JPG +32477,3718,649,17,0,capped,DSC_0820.JPG +32478,220,814,17,0,capped,DSC_0820.JPG +32479,370,820,17,0,capped,DSC_0820.JPG +32480,5068,868,17,0,capped,DSC_0820.JPG +32481,4150,895,15,0,capped,DSC_0820.JPG +32482,4324,946,17,0,capped,DSC_0820.JPG +32483,1231,958,17,0,capped,DSC_0820.JPG +32484,3403,964,17,0,capped,DSC_0820.JPG +32485,5296,985,15,0,capped,DSC_0820.JPG +32486,4291,1009,15,0,capped,DSC_0820.JPG +32487,1618,1024,17,0,capped,DSC_0820.JPG +32488,2602,1024,15,0,capped,DSC_0820.JPG +32489,220,1057,15,0,capped,DSC_0820.JPG +32490,1726,1081,15,0,capped,DSC_0820.JPG +32491,4150,1135,17,0,capped,DSC_0820.JPG +32493,1093,1198,17,0,capped,DSC_0820.JPG +32494,4360,1252,16,0,capped,DSC_0820.JPG +32495,3310,1261,17,0,capped,DSC_0820.JPG +32496,2680,1264,15,0,capped,DSC_0820.JPG +32497,2251,1267,17,0,capped,DSC_0820.JPG +32498,1588,1312,15,0,capped,DSC_0820.JPG +32499,2149,1324,15,0,capped,DSC_0820.JPG +32500,3370,1381,15,0,capped,DSC_0820.JPG +32501,1729,1441,15,0,capped,DSC_0820.JPG +32502,2428,1441,15,0,capped,DSC_0820.JPG +32503,2887,1495,15,0,capped,DSC_0820.JPG +32504,1342,1498,15,0,capped,DSC_0820.JPG +32506,1312,1555,17,0,capped,DSC_0820.JPG +32507,3694,1555,17,0,capped,DSC_0820.JPG +32508,1942,1558,17,0,capped,DSC_0820.JPG +32509,469,1663,17,0,capped,DSC_0820.JPG +32510,4603,1663,15,0,capped,DSC_0820.JPG +32511,2149,1687,17,0,capped,DSC_0820.JPG +32512,3934,1732,17,0,capped,DSC_0820.JPG +32513,3442,1735,15,0,capped,DSC_0820.JPG +32514,2713,1801,15,0,capped,DSC_0820.JPG +32515,1696,1861,15,0,capped,DSC_0820.JPG +32516,4183,1903,15,0,capped,DSC_0820.JPG +32517,4216,1960,17,0,capped,DSC_0820.JPG +32518,2020,2038,17,0,capped,DSC_0820.JPG +32519,2608,2092,15,0,capped,DSC_0820.JPG +32523,3436,388,17,0,capped,DSC_0820.JPG +32524,4966,427,15,0,capped,DSC_0820.JPG +32525,4042,445,17,0,capped,DSC_0820.JPG +32526,2038,514,15,0,capped,DSC_0820.JPG +32527,4891,565,15,0,capped,DSC_0820.JPG +32528,3826,580,15,0,capped,DSC_0820.JPG +32529,1933,583,15,0,capped,DSC_0820.JPG +32530,4501,634,17,0,capped,DSC_0820.JPG +32531,3901,835,17,0,capped,DSC_0820.JPG +32532,178,868,17,0,capped,DSC_0820.JPG +32533,4498,886,17,0,capped,DSC_0820.JPG +32534,1507,964,15,0,capped,DSC_0820.JPG +32535,3724,1021,15,0,capped,DSC_0820.JPG +32536,4426,1129,17,0,capped,DSC_0820.JPG +32537,2395,1255,15,0,capped,DSC_0820.JPG +32538,1093,1315,17,0,capped,DSC_0820.JPG +32539,2221,1324,17,0,capped,DSC_0820.JPG +32540,4669,1426,17,0,capped,DSC_0820.JPG +32541,4084,1495,17,0,capped,DSC_0820.JPG +32542,4465,1546,15,0,capped,DSC_0820.JPG +32543,3907,1558,17,0,capped,DSC_0820.JPG +32544,1378,1678,17,0,capped,DSC_0820.JPG +32545,1816,1912,15,0,capped,DSC_0820.JPG +32546,3862,1966,15,0,capped,DSC_0820.JPG +32547,2191,1984,15,0,capped,DSC_0820.JPG +32548,4117,2023,17,0,capped,DSC_0820.JPG +32549,3592,2320,17,0,capped,DSC_0820.JPG +32553,3829,313,16,0,capped,DSC_0820.JPG +32554,1294,574,17,0,capped,DSC_0820.JPG +32555,4105,577,15,0,capped,DSC_0820.JPG +32556,1999,580,17,0,capped,DSC_0820.JPG +32557,1432,583,17,0,capped,DSC_0820.JPG +32558,3088,655,17,0,capped,DSC_0820.JPG +32559,370,697,15,0,capped,DSC_0820.JPG +32560,4432,760,15,0,capped,DSC_0820.JPG +32561,5254,802,15,0,capped,DSC_0820.JPG +32562,307,940,17,0,capped,DSC_0820.JPG +32563,1159,958,15,0,capped,DSC_0820.JPG +32564,1441,1078,15,0,capped,DSC_0820.JPG +32565,1651,1084,17,0,capped,DSC_0820.JPG +32566,3130,1198,15,0,capped,DSC_0820.JPG +32568,1618,1255,15,0,capped,DSC_0820.JPG +32569,1900,1258,17,0,capped,DSC_0820.JPG +32570,4678,1300,17,0,capped,DSC_0820.JPG +32571,4603,1303,15,0,capped,DSC_0820.JPG +32572,3127,1318,17,0,capped,DSC_0820.JPG +32573,1723,1321,15,0,capped,DSC_0820.JPG +32574,925,1372,17,0,capped,DSC_0820.JPG +32575,1975,1381,17,0,capped,DSC_0820.JPG +32576,2116,1384,15,0,capped,DSC_0820.JPG +32577,3862,1384,15,0,capped,DSC_0820.JPG +32578,889,1429,17,0,capped,DSC_0820.JPG +32579,3622,1435,15,0,capped,DSC_0820.JPG +32580,4921,1480,17,0,capped,DSC_0820.JPG +32581,4363,1495,17,0,capped,DSC_0820.JPG +32582,1240,1558,17,0,capped,DSC_0820.JPG +32583,2359,1564,15,0,capped,DSC_0820.JPG +32584,4147,1615,17,0,capped,DSC_0820.JPG +32585,2818,1618,15,0,capped,DSC_0820.JPG +32586,3730,1729,15,0,capped,DSC_0820.JPG +32587,2608,1741,15,0,capped,DSC_0820.JPG +32588,1525,1795,15,0,capped,DSC_0820.JPG +32589,1486,1858,17,0,capped,DSC_0820.JPG +32590,2959,1963,17,0,capped,DSC_0820.JPG +32595,3898,448,17,0,capped,DSC_0820.JPG +32597,1123,634,15,0,capped,DSC_0820.JPG +32598,4567,637,15,0,capped,DSC_0820.JPG +32599,4039,709,17,0,capped,DSC_0820.JPG +32600,3553,955,15,0,capped,DSC_0820.JPG +32601,3901,955,17,0,capped,DSC_0820.JPG +32602,3763,958,15,0,capped,DSC_0820.JPG +32603,4429,1006,16,0,capped,DSC_0820.JPG +32604,4732,1066,17,0,capped,DSC_0820.JPG +32605,4462,1069,15,0,capped,DSC_0820.JPG +32606,1303,1078,17,0,capped,DSC_0820.JPG +32607,1090,1081,15,0,capped,DSC_0820.JPG +32608,4186,1192,15,0,capped,DSC_0820.JPG +32609,4252,1195,17,0,capped,DSC_0820.JPG +32610,1798,1201,15,0,capped,DSC_0820.JPG +32611,2536,1258,15,0,capped,DSC_0820.JPG +32612,2884,1258,17,0,capped,DSC_0820.JPG +32613,1480,1261,17,0,capped,DSC_0820.JPG +32614,1762,1264,15,0,capped,DSC_0820.JPG +32615,3553,1318,17,0,capped,DSC_0820.JPG +32616,1621,1378,17,0,capped,DSC_0820.JPG +32617,4036,1438,17,0,capped,DSC_0820.JPG +32618,3022,1501,15,0,capped,DSC_0820.JPG +32619,2920,1558,15,0,capped,DSC_0820.JPG +32620,2431,1561,15,0,capped,DSC_0820.JPG +32621,4258,1669,15,0,capped,DSC_0820.JPG +32622,964,1672,15,0,capped,DSC_0820.JPG +32623,2500,1678,15,0,capped,DSC_0820.JPG +32624,2110,1735,17,0,capped,DSC_0820.JPG +32625,1279,1741,17,0,capped,DSC_0820.JPG +32627,1348,1858,15,0,capped,DSC_0820.JPG +32628,1945,1921,17,0,capped,DSC_0820.JPG +32629,1978,2095,17,0,capped,DSC_0820.JPG +32630,3655,2197,15,0,capped,DSC_0820.JPG +32631,3100,2206,15,0,capped,DSC_0820.JPG +32634,5218,487,17,0,capped,DSC_0820.JPG +32636,1327,637,17,0,capped,DSC_0820.JPG +32637,2881,778,15,0,capped,DSC_0820.JPG +32638,3409,832,15,0,capped,DSC_0820.JPG +32639,1684,901,15,0,capped,DSC_0820.JPG +32640,4678,946,17,0,capped,DSC_0820.JPG +32641,1546,1018,15,0,capped,DSC_0820.JPG +32642,3481,1078,17,0,capped,DSC_0820.JPG +32643,4498,1126,15,0,capped,DSC_0820.JPG +32644,3238,1141,17,0,capped,DSC_0820.JPG +32645,2851,1198,15,0,capped,DSC_0820.JPG +32646,2500,1204,15,0,capped,DSC_0820.JPG +32647,4222,1249,17,0,capped,DSC_0820.JPG +32648,1831,1264,17,0,capped,DSC_0820.JPG +32649,2743,1264,17,0,capped,DSC_0820.JPG +32650,4537,1426,15,0,capped,DSC_0820.JPG +32651,1378,1438,15,0,capped,DSC_0820.JPG +32652,1447,1438,15,0,capped,DSC_0820.JPG +32653,2149,1441,17,0,capped,DSC_0820.JPG +32654,3274,1444,15,0,capped,DSC_0820.JPG +32655,1699,1501,15,0,capped,DSC_0820.JPG +32656,3160,1504,17,0,capped,DSC_0820.JPG +32657,4216,1606,15,0,capped,DSC_0820.JPG +32658,3301,1621,15,0,capped,DSC_0820.JPG +32659,2428,1684,15,0,capped,DSC_0820.JPG +32660,1066,1735,15,0,capped,DSC_0820.JPG +32661,3475,1792,17,0,capped,DSC_0820.JPG +32662,1942,1795,15,0,capped,DSC_0820.JPG +32663,4498,1840,15,0,capped,DSC_0820.JPG +32664,2086,1924,17,0,capped,DSC_0820.JPG +32665,2899,1969,17,0,capped,DSC_0820.JPG +32666,2431,2032,15,0,capped,DSC_0820.JPG +32667,3307,2080,15,0,capped,DSC_0820.JPG +32668,2569,2152,15,0,capped,DSC_0820.JPG +32674,5068,496,15,0,capped,DSC_0820.JPG +32675,3373,523,17,0,capped,DSC_0820.JPG +32676,4459,700,15,0,capped,DSC_0820.JPG +32677,4393,706,17,0,capped,DSC_0820.JPG +32678,4183,832,17,0,capped,DSC_0820.JPG +32679,1225,835,17,0,capped,DSC_0820.JPG +32680,1936,964,17,0,capped,DSC_0820.JPG +32681,2215,1078,17,0,capped,DSC_0820.JPG +32682,988,1138,15,0,capped,DSC_0820.JPG +32683,3415,1198,15,0,capped,DSC_0820.JPG +32684,4744,1303,15,0,capped,DSC_0820.JPG +32685,4393,1309,15,0,capped,DSC_0820.JPG +32686,3406,1315,17,0,capped,DSC_0820.JPG +32688,1831,1378,15,0,capped,DSC_0820.JPG +32690,4003,1498,17,0,capped,DSC_0820.JPG +32691,2752,1501,15,0,capped,DSC_0820.JPG +32692,1696,1618,17,0,capped,DSC_0820.JPG +32693,1831,1618,15,0,capped,DSC_0820.JPG +32694,1909,1618,17,0,capped,DSC_0820.JPG +32695,3832,1672,15,0,capped,DSC_0820.JPG +32696,1240,1675,17,0,capped,DSC_0820.JPG +32697,1279,1855,17,0,capped,DSC_0820.JPG +32698,2398,1972,15,0,capped,DSC_0820.JPG +32699,4399,2017,17,0,capped,DSC_0820.JPG +32700,2710,2035,17,0,capped,DSC_0820.JPG +32701,3175,2086,17,0,capped,DSC_0820.JPG +32702,2188,2101,17,0,capped,DSC_0820.JPG +32706,1642,454,17,0,capped,DSC_0820.JPG +32709,4432,505,17,0,capped,DSC_0820.JPG +32710,3898,586,15,0,capped,DSC_0820.JPG +32711,1615,652,17,0,capped,DSC_0820.JPG +32712,4327,706,15,0,capped,DSC_0820.JPG +32713,1792,712,17,0,capped,DSC_0820.JPG +32714,334,754,17,0,capped,DSC_0820.JPG +32715,142,805,17,0,capped,DSC_0820.JPG +32716,4039,829,17,0,capped,DSC_0820.JPG +32717,3757,832,17,0,capped,DSC_0820.JPG +32718,2389,892,17,0,capped,DSC_0820.JPG +32719,3583,892,15,0,capped,DSC_0820.JPG +32720,3301,901,17,0,capped,DSC_0820.JPG +32721,4528,946,15,0,capped,DSC_0820.JPG +32722,2917,1090,17,0,capped,DSC_0820.JPG +32723,1438,1195,17,0,capped,DSC_0820.JPG +32724,3760,1195,15,0,capped,DSC_0820.JPG +32725,2221,1204,15,0,capped,DSC_0820.JPG +32726,4288,1252,17,0,capped,DSC_0820.JPG +32727,1375,1315,15,0,capped,DSC_0820.JPG +32728,1516,1321,17,0,capped,DSC_0820.JPG +32729,3238,1501,15,0,capped,DSC_0820.JPG +32730,2575,1561,15,0,capped,DSC_0820.JPG +32731,2641,1561,15,0,capped,DSC_0820.JPG +32732,4288,1606,15,0,capped,DSC_0820.JPG +32733,4330,1783,17,0,capped,DSC_0820.JPG +32734,3622,1789,15,0,capped,DSC_0820.JPG +32735,3655,1852,17,0,capped,DSC_0820.JPG +32736,1912,1861,17,0,capped,DSC_0820.JPG +32737,1978,1861,15,0,capped,DSC_0820.JPG +32738,2788,1915,17,0,capped,DSC_0820.JPG +32739,2365,1918,17,0,capped,DSC_0820.JPG +32740,1801,2035,15,0,capped,DSC_0820.JPG +32741,3691,2137,17,0,capped,DSC_0820.JPG +32746,4921,226,17,0,capped,DSC_0820.JPG +32747,4789,370,15,0,capped,DSC_0820.JPG +32748,3196,457,17,0,capped,DSC_0820.JPG +32749,2326,523,17,0,capped,DSC_0820.JPG +32750,436,571,15,0,capped,DSC_0820.JPG +32751,1468,646,15,0,capped,DSC_0820.JPG +32752,4192,709,17,0,capped,DSC_0820.JPG +32753,4504,760,17,0,capped,DSC_0820.JPG +32754,4069,772,15,0,capped,DSC_0820.JPG +32755,1021,838,17,0,capped,DSC_0820.JPG +32756,2008,841,15,0,capped,DSC_0820.JPG +32757,412,880,17,0,capped,DSC_0820.JPG +32758,4288,892,17,0,capped,DSC_0820.JPG +32759,2530,895,17,0,capped,DSC_0820.JPG +32760,4528,1060,15,0,capped,DSC_0820.JPG +32761,1732,1201,17,0,capped,DSC_0820.JPG +32762,3064,1201,17,0,capped,DSC_0820.JPG +32763,1864,1321,15,0,capped,DSC_0820.JPG +32764,4426,1369,15,0,capped,DSC_0820.JPG +32765,4075,1378,17,0,capped,DSC_0820.JPG +32766,1309,1435,17,0,capped,DSC_0820.JPG +32767,2221,1441,15,0,capped,DSC_0820.JPG +32768,1198,1495,15,0,capped,DSC_0820.JPG +32769,4537,1549,15,0,capped,DSC_0820.JPG +32770,1165,1552,15,0,capped,DSC_0820.JPG +32771,1369,1555,15,0,capped,DSC_0820.JPG +32772,1453,1675,15,0,capped,DSC_0820.JPG +32773,3688,1675,15,0,capped,DSC_0820.JPG +32774,2674,1738,15,0,capped,DSC_0820.JPG +32775,3163,1738,17,0,capped,DSC_0820.JPG +32776,1030,1792,15,0,capped,DSC_0820.JPG +32777,2644,1915,15,0,capped,DSC_0820.JPG +32782,4108,448,17,0,capped,DSC_0820.JPG +32783,478,508,17,0,capped,DSC_0820.JPG +32784,2143,589,15,0,capped,DSC_0820.JPG +32785,1054,640,15,0,capped,DSC_0820.JPG +32786,2257,775,15,0,capped,DSC_0820.JPG +32787,298,817,17,0,capped,DSC_0820.JPG +32788,5179,925,17,0,capped,DSC_0820.JPG +32789,2422,961,15,0,capped,DSC_0820.JPG +32790,301,1057,17,0,capped,DSC_0820.JPG +32791,3898,1075,15,0,capped,DSC_0820.JPG +32792,5149,1114,17,0,capped,DSC_0820.JPG +32793,343,1120,17,0,capped,DSC_0820.JPG +32794,2884,1141,17,0,capped,DSC_0820.JPG +32795,4750,1177,17,0,capped,DSC_0820.JPG +32797,382,1186,17,0,capped,DSC_0820.JPG +32798,4108,1195,17,0,capped,DSC_0820.JPG +32799,1276,1375,15,0,capped,DSC_0820.JPG +32800,4252,1549,17,0,capped,DSC_0820.JPG +32801,3061,1561,17,0,capped,DSC_0820.JPG +32802,2746,1741,15,0,capped,DSC_0820.JPG +32803,4120,1909,15,0,capped,DSC_0820.JPG +32804,2221,1918,15,0,capped,DSC_0820.JPG +32805,2014,1921,15,0,capped,DSC_0820.JPG +32806,2575,1921,17,0,capped,DSC_0820.JPG +32807,4429,1963,17,0,capped,DSC_0820.JPG +32808,3688,2020,15,0,capped,DSC_0820.JPG +32809,1903,2095,17,0,capped,DSC_0820.JPG +32816,4615,301,17,0,capped,DSC_0820.JPG +32817,646,322,17,0,capped,DSC_0820.JPG +32818,4822,436,16,0,capped,DSC_0820.JPG +32819,1225,577,17,0,capped,DSC_0820.JPG +32820,2077,583,15,0,capped,DSC_0820.JPG +32821,1399,640,15,0,capped,DSC_0820.JPG +32822,2569,712,15,0,capped,DSC_0820.JPG +32823,4738,817,17,0,capped,DSC_0820.JPG +32824,4387,829,17,0,capped,DSC_0820.JPG +32825,2356,958,15,0,capped,DSC_0820.JPG +32826,982,1015,15,0,capped,DSC_0820.JPG +32827,3295,1021,15,0,capped,DSC_0820.JPG +32828,1267,1138,15,0,capped,DSC_0820.JPG +32829,2146,1201,17,0,capped,DSC_0820.JPG +32830,1129,1375,15,0,capped,DSC_0820.JPG +32831,958,1552,15,0,capped,DSC_0820.JPG +32832,2611,1618,15,0,capped,DSC_0820.JPG +32833,4669,1660,17,0,capped,DSC_0820.JPG +32834,1030,1669,17,0,capped,DSC_0820.JPG +32835,2995,1675,17,0,capped,DSC_0820.JPG +32836,1939,1684,15,0,capped,DSC_0820.JPG +32837,1342,1738,15,0,capped,DSC_0820.JPG +32838,1801,1795,15,0,capped,DSC_0820.JPG +32839,3799,1852,17,0,capped,DSC_0820.JPG +32840,1762,1858,15,0,capped,DSC_0820.JPG +32841,1558,1861,17,0,capped,DSC_0820.JPG +32842,3478,1912,15,0,capped,DSC_0820.JPG +32843,2257,1975,17,0,capped,DSC_0820.JPG +32844,3337,2023,15,0,capped,DSC_0820.JPG +32845,3094,2323,17,0,capped,DSC_0820.JPG +32846,3055,2386,17,0,capped,DSC_0820.JPG +32848,1891,388,17,0,capped,DSC_0820.JPG +32849,439,445,17,0,capped,DSC_0820.JPG +32850,1714,463,17,0,capped,DSC_0820.JPG +32851,4366,511,17,0,capped,DSC_0820.JPG +32853,292,562,17,0,capped,DSC_0820.JPG +32854,4213,640,17,0,capped,DSC_0820.JPG +32855,1891,643,17,0,capped,DSC_0820.JPG +32856,2107,649,15,0,capped,DSC_0820.JPG +32857,3436,658,17,0,capped,DSC_0820.JPG +32858,1582,706,17,0,capped,DSC_0820.JPG +32859,1051,769,17,0,capped,DSC_0820.JPG +32860,1126,895,17,0,capped,DSC_0820.JPG +32861,1093,952,17,0,capped,DSC_0820.JPG +32862,3199,952,15,0,capped,DSC_0820.JPG +32863,2461,1021,17,0,capped,DSC_0820.JPG +32864,4369,1132,17,0,capped,DSC_0820.JPG +32865,3724,1138,17,0,capped,DSC_0820.JPG +32866,1831,1141,15,0,capped,DSC_0820.JPG +32867,4996,1348,15,0,capped,DSC_0820.JPG +32868,4639,1366,15,0,capped,DSC_0820.JPG +32869,4492,1372,17,0,capped,DSC_0820.JPG +32871,2398,1381,15,0,capped,DSC_0820.JPG +32872,5107,1408,17,0,capped,DSC_0820.JPG +32873,4462,1429,15,0,capped,DSC_0820.JPG +32874,1870,1438,17,0,capped,DSC_0820.JPG +32875,3865,1495,15,0,capped,DSC_0820.JPG +32876,4147,1495,15,0,capped,DSC_0820.JPG +32877,2185,1510,17,0,capped,DSC_0820.JPG +32878,2080,1561,15,0,capped,DSC_0820.JPG +32879,4363,1726,15,0,capped,DSC_0820.JPG +32880,1489,1741,15,0,capped,DSC_0820.JPG +32881,2323,1864,15,0,capped,DSC_0820.JPG +32882,2428,1918,17,0,capped,DSC_0820.JPG +32883,3376,1972,17,0,capped,DSC_0820.JPG +32884,2755,1978,15,0,capped,DSC_0820.JPG +32885,3727,2080,15,0,capped,DSC_0820.JPG +32886,2536,2206,17,0,capped,DSC_0820.JPG +32888,3061,2263,15,0,capped,DSC_0820.JPG +32892,1747,385,17,0,capped,DSC_0820.JPG +32893,1606,514,17,0,capped,DSC_0820.JPG +32894,2254,514,15,0,capped,DSC_0820.JPG +32895,4213,514,17,0,capped,DSC_0820.JPG +32897,3757,709,15,0,capped,DSC_0820.JPG +32898,4147,775,17,0,capped,DSC_0820.JPG +32899,2461,895,17,0,capped,DSC_0820.JPG +32900,2734,898,15,0,capped,DSC_0820.JPG +32901,4606,949,17,0,capped,DSC_0820.JPG +32902,2638,967,15,0,capped,DSC_0820.JPG +32903,4708,1003,15,0,capped,DSC_0820.JPG +32904,1756,1021,17,0,capped,DSC_0820.JPG +32905,3694,1075,15,0,capped,DSC_0820.JPG +32906,2356,1081,15,0,capped,DSC_0820.JPG +32907,181,1114,17,0,capped,DSC_0820.JPG +32908,3658,1135,15,0,capped,DSC_0820.JPG +32909,3451,1138,15,0,capped,DSC_0820.JPG +32910,958,1195,17,0,capped,DSC_0820.JPG +32911,2431,1201,15,0,capped,DSC_0820.JPG +32912,2707,1204,17,0,capped,DSC_0820.JPG +32913,5107,1282,15,0,capped,DSC_0820.JPG +32914,4327,1309,15,0,capped,DSC_0820.JPG +32915,3757,1318,15,0,capped,DSC_0820.JPG +32916,3130,1444,17,0,capped,DSC_0820.JPG +32917,5071,1474,17,0,capped,DSC_0820.JPG +32918,2395,1504,17,0,capped,DSC_0820.JPG +32919,2113,1507,17,0,capped,DSC_0820.JPG +32920,1453,1558,17,0,capped,DSC_0820.JPG +32921,2536,1618,15,0,capped,DSC_0820.JPG +32922,4429,1720,17,0,capped,DSC_0820.JPG +32923,2224,1801,15,0,capped,DSC_0820.JPG +32924,2887,1855,15,0,capped,DSC_0820.JPG +32925,2614,1858,17,0,capped,DSC_0820.JPG +32926,3550,1909,15,0,capped,DSC_0820.JPG +32927,3901,1912,17,0,capped,DSC_0820.JPG +32928,1657,1918,15,0,capped,DSC_0820.JPG +32930,4288,1963,17,0,capped,DSC_0820.JPG +32931,1774,1978,17,0,capped,DSC_0820.JPG +32933,3478,2140,17,0,capped,DSC_0820.JPG +32937,5005,223,17,0,capped,DSC_0820.JPG +32938,5035,295,17,0,capped,DSC_0820.JPG +32939,3613,451,15,0,capped,DSC_0820.JPG +32940,979,643,17,0,capped,DSC_0820.JPG +32941,181,745,17,0,capped,DSC_0820.JPG +32942,1543,766,15,0,capped,DSC_0820.JPG +32943,2533,772,15,0,capped,DSC_0820.JPG +32944,1606,775,17,0,capped,DSC_0820.JPG +32945,1504,838,17,0,capped,DSC_0820.JPG +32946,4075,892,15,0,capped,DSC_0820.JPG +32947,2812,904,15,0,capped,DSC_0820.JPG +32948,1327,1021,15,0,capped,DSC_0820.JPG +32949,3340,1201,15,0,capped,DSC_0820.JPG +32950,3196,1318,15,0,capped,DSC_0820.JPG +32951,1444,1321,17,0,capped,DSC_0820.JPG +32952,4957,1417,17,0,capped,DSC_0820.JPG +32953,1414,1618,15,0,capped,DSC_0820.JPG +32954,1168,1672,15,0,capped,DSC_0820.JPG +32955,2572,1684,15,0,capped,DSC_0820.JPG +32957,1876,1798,15,0,capped,DSC_0820.JPG +32958,2119,1864,17,0,capped,DSC_0820.JPG +32959,3202,1909,15,0,capped,DSC_0820.JPG +32960,4534,2011,17,0,capped,DSC_0820.JPG +32965,2281,592,17,0,capped,DSC_0820.JPG +32966,2179,646,16,0,capped,DSC_0820.JPG +32967,1831,649,15,0,capped,DSC_0820.JPG +32968,2350,709,15,0,capped,DSC_0820.JPG +32969,2461,781,15,0,capped,DSC_0820.JPG +32970,5335,793,15,0,capped,DSC_0820.JPG +32971,4327,832,17,0,capped,DSC_0820.JPG +32972,1366,835,15,0,capped,DSC_0820.JPG +32973,2008,1078,17,0,capped,DSC_0820.JPG +32974,3547,1078,17,0,capped,DSC_0820.JPG +32975,2743,1144,15,0,capped,DSC_0820.JPG +32976,1654,1195,17,0,capped,DSC_0820.JPG +32977,3478,1198,17,0,capped,DSC_0820.JPG +32978,2290,1201,15,0,capped,DSC_0820.JPG +32979,2287,1318,15,0,capped,DSC_0820.JPG +32980,2467,1501,17,0,capped,DSC_0820.JPG +32981,1795,1558,15,0,capped,DSC_0820.JPG +32982,787,1612,17,0,capped,DSC_0820.JPG +32983,1129,1612,15,0,capped,DSC_0820.JPG +32984,3790,1615,17,0,capped,DSC_0820.JPG +32985,2395,1630,15,0,capped,DSC_0820.JPG +32986,2719,1678,17,0,capped,DSC_0820.JPG +32987,2854,1681,15,0,capped,DSC_0820.JPG +32988,3583,1735,17,0,capped,DSC_0820.JPG +32989,1765,1738,15,0,capped,DSC_0820.JPG +32990,2257,1738,15,0,capped,DSC_0820.JPG +32991,3409,1792,17,0,capped,DSC_0820.JPG +32992,3550,1792,15,0,capped,DSC_0820.JPG +32993,2365,2032,17,0,capped,DSC_0820.JPG +32994,2644,2146,15,0,capped,DSC_0820.JPG +32997,5005,364,17,0,capped,DSC_0820.JPG +32999,1789,589,15,0,capped,DSC_0820.JPG +33000,4426,634,17,0,capped,DSC_0820.JPG +33001,4291,640,15,0,capped,DSC_0820.JPG +33002,1261,763,17,0,capped,DSC_0820.JPG +33003,1828,769,17,0,capped,DSC_0820.JPG +33004,2497,835,17,0,capped,DSC_0820.JPG +33006,1408,1015,17,0,capped,DSC_0820.JPG +33007,1834,1030,15,0,capped,DSC_0820.JPG +33008,3619,1072,17,0,capped,DSC_0820.JPG +33009,4639,1129,17,0,capped,DSC_0820.JPG +33010,2041,1141,15,0,capped,DSC_0820.JPG +33011,5110,1171,17,0,capped,DSC_0820.JPG +33012,3829,1201,17,0,capped,DSC_0820.JPG +33013,1936,1321,15,0,capped,DSC_0820.JPG +33014,1099,1429,17,0,capped,DSC_0820.JPG +33015,3757,1435,15,0,capped,DSC_0820.JPG +33016,985,1489,17,0,capped,DSC_0820.JPG +33017,3724,1498,17,0,capped,DSC_0820.JPG +33018,3802,1501,17,0,capped,DSC_0820.JPG +33019,4888,1537,17,0,capped,DSC_0820.JPG +33020,2218,1564,15,0,capped,DSC_0820.JPG +33021,1552,1615,17,0,capped,DSC_0820.JPG +33022,3865,1618,17,0,capped,DSC_0820.JPG +33023,3376,1735,17,0,capped,DSC_0820.JPG +33024,4393,1786,15,0,capped,DSC_0820.JPG +33025,2149,1795,17,0,capped,DSC_0820.JPG +33026,3865,1852,15,0,capped,DSC_0820.JPG +33027,4078,1960,17,0,capped,DSC_0820.JPG +33028,3793,1969,17,0,capped,DSC_0820.JPG +33030,3964,2020,17,0,capped,DSC_0820.JPG +33031,3406,2026,15,0,capped,DSC_0820.JPG +33032,1942,2032,17,0,capped,DSC_0820.JPG +33035,4687,304,17,0,capped,DSC_0820.JPG +33038,3298,523,15,0,capped,DSC_0820.JPG +33039,3832,706,15,0,capped,DSC_0820.JPG +33040,2392,781,17,0,capped,DSC_0820.JPG +33041,3481,961,15,0,capped,DSC_0820.JPG +33042,1648,964,17,0,capped,DSC_0820.JPG +33043,3238,1021,17,0,capped,DSC_0820.JPG +33044,2185,1027,17,0,capped,DSC_0820.JPG +33045,3202,1078,17,0,capped,DSC_0820.JPG +33046,1231,1081,15,0,capped,DSC_0820.JPG +33047,4855,1096,15,0,capped,DSC_0820.JPG +33048,3304,1135,15,0,capped,DSC_0820.JPG +33049,886,1192,15,0,capped,DSC_0820.JPG +33050,1864,1201,15,0,capped,DSC_0820.JPG +33051,3274,1201,15,0,capped,DSC_0820.JPG +33052,1936,1204,15,0,capped,DSC_0820.JPG +33053,1624,1504,17,0,capped,DSC_0820.JPG +33054,3553,1555,15,0,capped,DSC_0820.JPG +33055,2467,1624,17,0,capped,DSC_0820.JPG +33056,4324,1663,15,0,capped,DSC_0820.JPG +33057,994,1732,17,0,capped,DSC_0820.JPG +33058,1102,1795,17,0,capped,DSC_0820.JPG +33059,4462,1903,15,0,capped,DSC_0820.JPG +33060,610,1909,15,0,capped,DSC_0820.JPG +33061,3514,1966,15,0,capped,DSC_0820.JPG +33062,4183,2017,17,0,capped,DSC_0820.JPG +33063,2992,2026,17,0,capped,DSC_0820.JPG +33068,3931,385,17,0,capped,DSC_0820.JPG +33069,3262,592,15,0,capped,DSC_0820.JPG +33070,2074,715,15,0,capped,DSC_0820.JPG +33071,1867,841,17,0,capped,DSC_0820.JPG +33072,2845,844,15,0,capped,DSC_0820.JPG +33073,2590,889,15,0,capped,DSC_0820.JPG +33074,4009,889,17,0,capped,DSC_0820.JPG +33075,1897,892,17,0,capped,DSC_0820.JPG +33076,2638,1084,15,0,capped,DSC_0820.JPG +33077,4570,1129,15,0,capped,DSC_0820.JPG +33078,4078,1132,17,0,capped,DSC_0820.JPG +33079,1198,1258,15,0,capped,DSC_0820.JPG +33080,4003,1258,17,0,capped,DSC_0820.JPG +33081,2110,1264,15,0,capped,DSC_0820.JPG +33082,3940,1375,15,0,capped,DSC_0820.JPG +33083,1207,1378,17,0,capped,DSC_0820.JPG +33084,1027,1438,15,0,capped,DSC_0820.JPG +33085,4702,1486,17,0,capped,DSC_0820.JPG +33086,1027,1549,15,0,capped,DSC_0820.JPG +33087,4567,1603,15,0,capped,DSC_0820.JPG +33088,4426,1609,17,0,capped,DSC_0820.JPG +33089,1342,1615,15,0,capped,DSC_0820.JPG +33090,1282,1621,17,0,capped,DSC_0820.JPG +33091,2644,1678,15,0,capped,DSC_0820.JPG +33092,1309,1795,15,0,capped,DSC_0820.JPG +33093,2539,1858,15,0,capped,DSC_0820.JPG +33095,1585,1915,15,0,capped,DSC_0820.JPG +33096,4150,1963,17,0,capped,DSC_0820.JPG +33097,3796,2083,17,0,capped,DSC_0820.JPG +33098,1174,2149,15,0,capped,DSC_0820.JPG +33099,3061,2149,17,0,capped,DSC_0820.JPG +33101,1732,2272,17,0,capped,DSC_0820.JPG +33104,4822,301,15,0,capped,DSC_0820.JPG +33106,1609,391,15,0,capped,DSC_0820.JPG +33107,550,508,15,0,capped,DSC_0820.JPG +33108,1714,586,15,0,capped,DSC_0820.JPG +33109,3931,643,15,0,capped,DSC_0820.JPG +33110,1222,706,17,0,capped,DSC_0820.JPG +33111,1438,706,17,0,capped,DSC_0820.JPG +33112,2428,718,17,0,capped,DSC_0820.JPG +33113,1123,763,17,0,capped,DSC_0820.JPG +33114,1762,781,17,0,capped,DSC_0820.JPG +33116,4750,946,15,0,capped,DSC_0820.JPG +33117,2014,952,15,0,capped,DSC_0820.JPG +33118,4567,1006,15,0,capped,DSC_0820.JPG +33119,1612,1138,17,0,capped,DSC_0820.JPG +33120,1021,1315,17,0,capped,DSC_0820.JPG +33121,3904,1435,15,0,capped,DSC_0820.JPG +33122,1597,1447,17,0,capped,DSC_0820.JPG +33123,4996,1477,17,0,capped,DSC_0820.JPG +33125,2962,1735,15,0,capped,DSC_0820.JPG +33126,2920,1798,15,0,capped,DSC_0820.JPG +33127,2431,1801,17,0,capped,DSC_0820.JPG +33128,3514,1852,15,0,capped,DSC_0820.JPG +33129,2503,1915,15,0,capped,DSC_0820.JPG +33130,3238,1969,15,0,capped,DSC_0820.JPG +33131,2128,1975,15,0,capped,DSC_0820.JPG +33132,2470,2092,15,0,capped,DSC_0820.JPG +33135,688,382,15,0,capped,DSC_0820.JPG +33136,3013,391,15,0,capped,DSC_0820.JPG +33137,217,682,17,0,capped,DSC_0820.JPG +33138,1405,778,15,0,capped,DSC_0820.JPG +33139,2953,901,15,0,capped,DSC_0820.JPG +33140,1588,964,17,0,capped,DSC_0820.JPG +33141,2041,1018,15,0,capped,DSC_0820.JPG +33142,2386,1138,15,0,capped,DSC_0820.JPG +33143,4249,1306,17,0,capped,DSC_0820.JPG +33144,3232,1381,17,0,capped,DSC_0820.JPG +33145,781,1492,15,0,capped,DSC_0820.JPG +33146,3088,1501,15,0,capped,DSC_0820.JPG +33147,1588,1555,17,0,capped,DSC_0820.JPG +33148,4468,1666,17,0,capped,DSC_0820.JPG +33149,4186,1669,17,0,capped,DSC_0820.JPG +33150,4288,1729,17,0,capped,DSC_0820.JPG +33151,3379,1855,15,0,capped,DSC_0820.JPG +33152,4393,1900,15,0,capped,DSC_0820.JPG +33154,2746,2092,15,0,capped,DSC_0820.JPG +33156,1627,2335,15,0,capped,DSC_0820.JPG +33159,724,319,17,0,capped,DSC_0820.JPG +33160,583,322,15,0,capped,DSC_0820.JPG +33161,1681,517,17,0,capped,DSC_0820.JPG +33162,4354,649,15,0,capped,DSC_0820.JPG +33163,2812,781,15,0,capped,DSC_0820.JPG +33164,1264,898,15,0,capped,DSC_0820.JPG +33165,4645,997,17,0,capped,DSC_0820.JPG +33166,1684,1021,15,0,capped,DSC_0820.JPG +33167,2329,1027,15,0,capped,DSC_0820.JPG +33168,2950,1141,15,0,capped,DSC_0820.JPG +33170,2080,1327,17,0,capped,DSC_0820.JPG +33171,1336,1381,17,0,capped,DSC_0820.JPG +33172,4291,1489,15,0,capped,DSC_0820.JPG +33173,2500,1558,15,0,capped,DSC_0820.JPG +33174,4006,1609,17,0,capped,DSC_0820.JPG +33176,4222,1726,15,0,capped,DSC_0820.JPG +33177,1417,1738,15,0,capped,DSC_0820.JPG +33178,2887,1741,15,0,capped,DSC_0820.JPG +33179,4429,1837,15,0,capped,DSC_0820.JPG +33180,4570,1837,15,0,capped,DSC_0820.JPG +33181,4360,1843,15,0,capped,DSC_0820.JPG +33182,3820,1909,17,0,capped,DSC_0820.JPG +33183,2923,1912,15,0,capped,DSC_0820.JPG +33187,1075,322,17,0,capped,DSC_0820.JPG +33188,4714,370,17,0,capped,DSC_0820.JPG +33189,4144,511,17,0,capped,DSC_0820.JPG +33190,5290,616,17,0,capped,DSC_0820.JPG +33191,2743,649,15,0,capped,DSC_0820.JPG +33192,1294,703,15,0,capped,DSC_0820.JPG +33193,3721,769,15,0,capped,DSC_0820.JPG +33194,4114,835,15,0,capped,DSC_0820.JPG +33195,2290,841,17,0,capped,DSC_0820.JPG +33196,5218,865,17,0,capped,DSC_0820.JPG +33198,2497,955,15,0,capped,DSC_0820.JPG +33199,2572,961,15,0,capped,DSC_0820.JPG +33200,4465,1312,17,0,capped,DSC_0820.JPG +33201,4183,1426,15,0,capped,DSC_0820.JPG +33202,964,1438,17,0,capped,DSC_0820.JPG +33203,3514,1618,17,0,capped,DSC_0820.JPG +33204,1621,1621,17,0,capped,DSC_0820.JPG +33205,4042,1666,17,0,capped,DSC_0820.JPG +33208,3481,2026,15,0,capped,DSC_0820.JPG +33209,3802,2200,17,0,capped,DSC_0820.JPG +33210,1894,529,17,0,capped,DSC_0820.JPG +33211,3163,649,15,0,capped,DSC_0820.JPG +33212,4123,700,15,0,capped,DSC_0820.JPG +33213,2884,910,15,0,capped,DSC_0820.JPG +33214,3019,1027,17,0,capped,DSC_0820.JPG +33215,1168,1315,15,0,capped,DSC_0820.JPG +33216,1054,1375,15,0,capped,DSC_0820.JPG +33217,1474,1384,15,0,capped,DSC_0820.JPG +33218,4219,1489,15,0,capped,DSC_0820.JPG +33219,1192,1606,17,0,capped,DSC_0820.JPG +33220,2293,1915,15,0,capped,DSC_0820.JPG +33221,1171,1918,17,0,capped,DSC_0820.JPG +33222,577,1963,17,0,capped,DSC_0820.JPG +33223,1705,1981,17,0,capped,DSC_0820.JPG +33224,3526,2323,17,0,capped,DSC_0820.JPG +33227,622,514,17,0,capped,DSC_0820.JPG +33228,2179,520,15,0,capped,DSC_0820.JPG +33229,3964,574,17,0,capped,DSC_0820.JPG +33230,3583,640,17,0,capped,DSC_0820.JPG +33231,1333,898,15,0,capped,DSC_0820.JPG +33232,1240,1192,17,0,capped,DSC_0820.JPG +33233,2011,1324,15,0,capped,DSC_0820.JPG +33234,4426,1492,17,0,capped,DSC_0820.JPG +33235,4180,1564,17,0,capped,DSC_0820.JPG +33236,1558,1738,15,0,capped,DSC_0820.JPG +33237,2815,1858,17,0,capped,DSC_0820.JPG +33238,4327,1900,15,0,capped,DSC_0820.JPG +33239,4255,1903,15,0,capped,DSC_0820.JPG +33240,3028,1978,17,0,capped,DSC_0820.JPG +33241,4042,2026,15,0,capped,DSC_0820.JPG +33242,3865,2086,17,0,capped,DSC_0820.JPG +33244,2779,2149,17,0,capped,DSC_0820.JPG +33249,4429,229,17,0,capped,DSC_0820.JPG +33251,2311,391,17,0,capped,DSC_0820.JPG +33252,4327,562,17,0,capped,DSC_0820.JPG +33253,4567,883,17,0,capped,DSC_0820.JPG +33254,4360,1012,17,0,capped,DSC_0820.JPG +33255,1972,1264,15,0,capped,DSC_0820.JPG +33257,850,1615,15,0,capped,DSC_0820.JPG +33258,2359,1684,17,0,capped,DSC_0820.JPG +33259,3343,1906,15,0,capped,DSC_0820.JPG +33260,1597,2032,15,0,capped,DSC_0820.JPG +33261,1486,2098,15,0,capped,DSC_0820.JPG +33263,2608,2209,17,0,capped,DSC_0820.JPG +33264,2896,2323,15,0,capped,DSC_0820.JPG +33267,3091,388,17,0,capped,DSC_0820.JPG +33268,4255,577,15,0,capped,DSC_0820.JPG +33269,2638,592,17,0,capped,DSC_0820.JPG +33270,2110,769,17,0,capped,DSC_0820.JPG +33271,1573,838,17,0,capped,DSC_0820.JPG +33272,4558,1252,15,0,capped,DSC_0820.JPG +33273,4636,1489,17,0,capped,DSC_0820.JPG +33274,3517,1735,15,0,capped,DSC_0820.JPG +33275,1588,1795,15,0,capped,DSC_0820.JPG +33276,4081,1849,15,0,capped,DSC_0820.JPG +33277,1840,1855,17,0,capped,DSC_0820.JPG +33278,3547,2017,15,0,capped,DSC_0820.JPG +33279,2155,2035,15,0,capped,DSC_0820.JPG +33280,2683,2089,15,0,capped,DSC_0820.JPG +33281,2536,2095,15,0,capped,DSC_0820.JPG +33282,1702,2098,17,0,capped,DSC_0820.JPG +33283,3277,2137,15,0,capped,DSC_0820.JPG +33284,2005,2146,17,0,capped,DSC_0820.JPG +33285,3841,2254,17,0,capped,DSC_0820.JPG +33286,3268,2257,15,0,capped,DSC_0820.JPG +33289,4582,244,15,0,capped,DSC_0820.JPG +33290,793,316,17,0,capped,DSC_0820.JPG +33293,367,571,17,0,capped,DSC_0820.JPG +33294,2038,772,15,0,capped,DSC_0820.JPG +33295,4393,1186,15,0,capped,DSC_0820.JPG +33297,1129,1741,17,0,capped,DSC_0820.JPG +33298,2050,1744,17,0,capped,DSC_0820.JPG +33299,3832,1789,15,0,capped,DSC_0820.JPG +33300,4180,1795,17,0,capped,DSC_0820.JPG +33301,3937,1867,17,0,capped,DSC_0820.JPG +33302,1876,1921,17,0,capped,DSC_0820.JPG +33304,3097,1972,17,0,capped,DSC_0820.JPG +33305,3031,2077,15,0,capped,DSC_0820.JPG +33306,4153,2080,15,0,capped,DSC_0820.JPG +33308,2248,394,17,0,capped,DSC_0820.JPG +33310,3154,772,17,0,capped,DSC_0820.JPG +33311,1726,961,17,0,capped,DSC_0820.JPG +33313,3976,1075,15,0,capped,DSC_0820.JPG +33314,1513,1435,17,0,capped,DSC_0820.JPG +33315,4105,1552,15,0,capped,DSC_0820.JPG +33316,2854,1807,17,0,capped,DSC_0820.JPG +33317,2188,1858,17,0,capped,DSC_0820.JPG +33318,4372,1963,15,0,capped,DSC_0820.JPG +33319,3304,1969,17,0,capped,DSC_0820.JPG +33320,2089,2032,15,0,capped,DSC_0820.JPG +33324,4495,235,17,0,capped,DSC_0820.JPG +33326,331,631,15,0,capped,DSC_0820.JPG +33327,4711,760,15,0,capped,DSC_0820.JPG +33328,4501,1258,17,0,capped,DSC_0820.JPG +33329,4189,1303,17,0,capped,DSC_0820.JPG +33330,2320,1501,15,0,capped,DSC_0820.JPG +33331,3661,1729,17,0,capped,DSC_0820.JPG +33332,1207,1852,15,0,capped,DSC_0820.JPG +33333,2917,2152,17,0,capped,DSC_0820.JPG +33334,3307,2200,15,0,capped,DSC_0820.JPG +33336,2980,460,15,0,capped,DSC_0820.JPG +33337,1300,832,17,0,capped,DSC_0820.JPG +33338,4222,1009,15,0,capped,DSC_0820.JPG +33339,1171,1435,17,0,capped,DSC_0820.JPG +33340,4534,1783,17,0,capped,DSC_0820.JPG +33341,4252,1792,15,0,capped,DSC_0820.JPG +33342,3619,1909,17,0,capped,DSC_0820.JPG +33343,3763,2134,15,0,capped,DSC_0820.JPG +33344,3199,2140,17,0,capped,DSC_0820.JPG +33345,1345,2209,15,0,capped,DSC_0820.JPG +33349,763,385,17,0,capped,DSC_0820.JPG +33350,4327,448,15,0,capped,DSC_0820.JPG +33352,3064,1081,15,0,capped,DSC_0820.JPG +33355,4252,2020,17,0,capped,DSC_0820.JPG +33356,3658,2083,15,0,capped,DSC_0820.JPG +33360,4468,160,17,0,capped,DSC_0820.JPG +33361,4264,694,17,0,capped,DSC_0820.JPG +33362,1933,712,15,0,capped,DSC_0820.JPG +33363,4579,1363,17,0,capped,DSC_0820.JPG +33365,4498,1723,15,0,capped,DSC_0820.JPG +33366,2686,1864,17,0,capped,DSC_0820.JPG +33367,541,1903,17,0,capped,DSC_0820.JPG +33368,1315,2152,15,0,capped,DSC_0820.JPG +33369,2848,2260,15,0,capped,DSC_0820.JPG +33370,1309,2269,15,0,capped,DSC_0820.JPG +33373,505,313,17,0,capped,DSC_0820.JPG +33374,2392,643,15,0,capped,DSC_0820.JPG +33376,2563,829,17,0,capped,DSC_0820.JPG +33377,5260,1051,17,0,capped,DSC_0820.JPG +33379,1897,1147,15,0,capped,DSC_0820.JPG +33380,2995,1207,15,0,capped,DSC_0820.JPG +33381,5179,1405,16,0,capped,DSC_0820.JPG +33382,2290,1441,17,0,capped,DSC_0820.JPG +33383,2401,2095,15,0,capped,DSC_0820.JPG +33384,1573,178,17,0,capped,DSC_0820.JPG +33387,1192,508,15,0,capped,DSC_0820.JPG +33388,3691,586,15,0,capped,DSC_0820.JPG +33389,2989,967,15,0,capped,DSC_0820.JPG +33390,175,991,17,0,capped,DSC_0820.JPG +33391,1192,889,17,0,capped,DSC_0820.JPG +33392,1972,1141,15,0,capped,DSC_0820.JPG +33393,2008,1195,17,0,capped,DSC_0820.JPG +33394,3757,1909,15,0,capped,DSC_0820.JPG +33395,2251,2095,15,0,capped,DSC_0820.JPG +33396,3895,310,17,0,capped,DSC_0820.JPG +33397,1507,703,17,0,capped,DSC_0820.JPG +33399,3589,2083,17,0,capped,DSC_0820.JPG +33400,3244,2089,17,0,capped,DSC_0820.JPG +33403,3757,463,17,0,capped,DSC_0820.JPG +33404,4534,1900,17,0,capped,DSC_0820.JPG +33405,2212,2044,17,0,capped,DSC_0820.JPG +33409,3937,517,15,0,capped,DSC_0820.JPG +33411,1282,2203,15,0,capped,DSC_0820.JPG +33414,3862,517,15,0,capped,DSC_0820.JPG +33416,4222,1846,17,0,capped,DSC_0820.JPG +33417,1519,1918,17,0,capped,DSC_0820.JPG +33418,1729,2041,15,0,capped,DSC_0820.JPG +33423,4504,1960,17,0,capped,DSC_0820.JPG +33424,3940,2083,17,0,capped,DSC_0820.JPG +33427,2494,715,15,0,capped,DSC_0820.JPG +33429,289,1480,15,0,capped,DSC_0820.JPG +33433,4636,1255,17,0,capped,DSC_0820.JPG +33434,1246,1909,17,0,capped,DSC_0820.JPG +33436,3475,2260,16,0,capped,DSC_0820.JPG +33439,3022,1270,17,0,capped,DSC_0820.JPG +33440,3586,1960,17,0,capped,DSC_0820.JPG +33451,1240,2140,15,0,capped,DSC_0820.JPG +33455,1486,2206,15,0,capped,DSC_0820.JPG +33457,1822,1510,17,0,capped,DSC_0820.JPG +33460,1183,1012,15,0,capped,DSC_0820.JPG +33467,3787,514,17,0,capped,DSC_0820.JPG +33478,2056,1390,15,0,capped,DSC_0820.JPG +33500,1255,259,17,0,capped,DSC_0820.JPG +33974,3805,1732,15,0,capped,DSC_0841.JPG +34009,4279,838,15,0,capped,DSC_0841.JPG +34012,5158,1249,17,0,capped,DSC_0841.JPG +34016,2707,2125,15,0,capped,DSC_0841.JPG +34021,2968,643,17,0,capped,DSC_0841.JPG +34046,4141,718,15,0,capped,DSC_0841.JPG +34047,2683,763,15,0,capped,DSC_0841.JPG +34048,2116,1117,17,0,capped,DSC_0841.JPG +34090,2437,1063,17,0,capped,DSC_0841.JPG +34094,1339,868,15,0,capped,DSC_0841.JPG +34095,3994,1195,17,0,capped,DSC_0841.JPG +34096,3769,1906,17,0,capped,DSC_0841.JPG +34105,3892,1132,15,0,capped,DSC_0841.JPG +34117,2467,1603,15,0,capped,DSC_0841.JPG +34119,2182,2059,15,0,capped,DSC_0841.JPG +34128,4588,1249,15,0,capped,DSC_0841.JPG +34129,3496,1432,17,0,capped,DSC_0841.JPG +34136,2506,823,15,0,capped,DSC_0841.JPG +34145,3814,1495,17,0,capped,DSC_0841.JPG +34149,1726,691,15,0,capped,DSC_0841.JPG +34150,1054,1342,15,0,capped,DSC_0841.JPG +34162,4021,1612,15,0,capped,DSC_0841.JPG +34166,634,1801,15,0,capped,DSC_0841.JPG +34167,3514,2191,15,0,capped,DSC_0841.JPG +34176,2293,1654,15,0,capped,DSC_0841.JPG +34177,2113,1711,15,0,capped,DSC_0841.JPG +34182,3604,892,17,0,capped,DSC_0841.JPG +34183,1939,934,15,0,capped,DSC_0841.JPG +34184,1021,1162,15,0,capped,DSC_0841.JPG +34190,2002,2230,15,0,capped,DSC_0841.JPG +34191,3622,2254,17,0,capped,DSC_0841.JPG +34200,2539,766,15,0,capped,DSC_0841.JPG +34203,4414,1192,15,0,capped,DSC_0841.JPG +34204,4519,1372,15,0,capped,DSC_0841.JPG +34206,1303,1645,15,0,capped,DSC_0841.JPG +34209,2008,1885,17,0,capped,DSC_0841.JPG +34215,2578,823,15,0,capped,DSC_0841.JPG +34216,2542,880,17,0,capped,DSC_0841.JPG +34228,3178,1132,15,0,capped,DSC_0841.JPG +34229,1906,1228,15,0,capped,DSC_0841.JPG +34230,3955,1252,15,0,capped,DSC_0841.JPG +34231,1972,1594,15,0,capped,DSC_0841.JPG +34233,2041,1711,15,0,capped,DSC_0841.JPG +34234,2251,2059,15,0,capped,DSC_0841.JPG +34241,4030,898,15,0,capped,DSC_0841.JPG +34245,3703,1552,15,0,capped,DSC_0841.JPG +34246,1408,1930,15,0,capped,DSC_0841.JPG +34257,3853,958,15,0,capped,DSC_0841.JPG +34260,1057,1465,15,0,capped,DSC_0841.JPG +34268,4945,1255,17,0,capped,DSC_0841.JPG +34269,2110,1828,17,0,capped,DSC_0841.JPG +34270,1549,2047,15,0,capped,DSC_0841.JPG +34276,3961,781,15,0,capped,DSC_0841.JPG +34277,3673,1012,15,0,capped,DSC_0841.JPG +34279,2080,1171,15,0,capped,DSC_0841.JPG +34280,700,1336,15,0,capped,DSC_0841.JPG +34282,4546,1552,15,0,capped,DSC_0841.JPG +34283,739,1636,15,0,capped,DSC_0841.JPG +34285,4540,1669,15,0,capped,DSC_0841.JPG +34286,2782,1777,15,0,capped,DSC_0841.JPG +34287,1513,1990,15,0,capped,DSC_0841.JPG +34291,2791,709,15,0,capped,DSC_0841.JPG +34292,2473,883,15,0,capped,DSC_0841.JPG +34295,5017,1015,15,0,capped,DSC_0841.JPG +34296,3745,1132,15,0,capped,DSC_0841.JPG +34297,2434,1180,17,0,capped,DSC_0841.JPG +34299,4198,1669,15,0,capped,DSC_0841.JPG +34301,3841,1786,15,0,capped,DSC_0841.JPG +34302,2290,1888,15,0,capped,DSC_0841.JPG +34303,2605,1948,15,0,capped,DSC_0841.JPG +34304,1474,2287,15,0,capped,DSC_0841.JPG +34308,2473,760,17,0,capped,DSC_0841.JPG +34309,4102,781,15,0,capped,DSC_0841.JPG +34310,4594,781,15,0,capped,DSC_0841.JPG +34311,1591,811,15,0,capped,DSC_0841.JPG +34312,2296,817,17,0,capped,DSC_0841.JPG +34316,4345,1312,15,0,capped,DSC_0841.JPG +34317,4486,1312,15,0,capped,DSC_0841.JPG +34318,1408,1348,17,0,capped,DSC_0841.JPG +34319,1660,1762,15,0,capped,DSC_0841.JPG +34322,1972,1936,15,0,capped,DSC_0841.JPG +34329,1870,931,15,0,capped,DSC_0841.JPG +34330,1939,1054,17,0,capped,DSC_0841.JPG +34331,4657,1132,17,0,capped,DSC_0841.JPG +34333,1060,1813,15,0,capped,DSC_0841.JPG +34334,1690,1822,15,0,capped,DSC_0841.JPG +34336,3925,838,15,0,capped,DSC_0841.JPG +34338,1447,928,15,0,capped,DSC_0841.JPG +34339,3778,1075,15,0,capped,DSC_0841.JPG +34340,4063,1315,15,0,capped,DSC_0841.JPG +34341,2398,1483,15,0,capped,DSC_0841.JPG +34342,4237,1495,15,0,capped,DSC_0841.JPG +34343,4162,1612,15,0,capped,DSC_0841.JPG +34345,2674,2065,15,0,capped,DSC_0841.JPG +34348,2155,571,15,0,capped,DSC_0841.JPG +34350,2437,940,16,0,capped,DSC_0841.JPG +34351,4447,1138,17,0,capped,DSC_0841.JPG +34352,5050,1192,15,0,capped,DSC_0841.JPG +34354,736,1396,15,0,capped,DSC_0841.JPG +34357,2395,1714,15,0,capped,DSC_0841.JPG +34359,1090,2218,15,0,capped,DSC_0841.JPG +34360,2668,2305,15,0,capped,DSC_0841.JPG +34361,2500,2362,17,0,capped,DSC_0841.JPG +34366,4069,718,15,0,capped,DSC_0841.JPG +34367,2719,826,17,0,capped,DSC_0841.JPG +34368,4279,955,16,0,capped,DSC_0841.JPG +34369,4489,958,15,0,capped,DSC_0841.JPG +34370,1903,994,15,0,capped,DSC_0841.JPG +34371,3817,1132,17,0,capped,DSC_0841.JPG +34372,3322,1252,17,0,capped,DSC_0841.JPG +34373,1729,1288,15,0,capped,DSC_0841.JPG +34374,4417,1315,15,0,capped,DSC_0841.JPG +34375,3703,1432,15,0,capped,DSC_0841.JPG +34376,2572,1543,15,0,capped,DSC_0841.JPG +34377,1900,1594,15,0,capped,DSC_0841.JPG +34378,4123,1783,15,0,capped,DSC_0841.JPG +34379,1939,1996,17,0,capped,DSC_0841.JPG +34384,2083,697,15,0,capped,DSC_0841.JPG +34385,4699,841,15,0,capped,DSC_0841.JPG +34386,1129,865,15,0,capped,DSC_0841.JPG +34387,3709,958,15,0,capped,DSC_0841.JPG +34388,4693,1075,17,0,capped,DSC_0841.JPG +34389,5122,1192,16,0,capped,DSC_0841.JPG +34390,4303,1495,15,0,capped,DSC_0841.JPG +34391,4687,1669,15,0,capped,DSC_0841.JPG +34392,3775,1675,15,0,capped,DSC_0841.JPG +34393,2575,1774,15,0,capped,DSC_0841.JPG +34394,3736,1843,15,0,capped,DSC_0841.JPG +34396,1897,2293,15,0,capped,DSC_0841.JPG +34404,1588,688,15,0,capped,DSC_0841.JPG +34406,1309,925,15,0,capped,DSC_0841.JPG +34407,1591,931,15,0,capped,DSC_0841.JPG +34408,3742,1012,15,0,capped,DSC_0841.JPG +34409,3922,1312,16,0,capped,DSC_0841.JPG +34410,988,1465,17,0,capped,DSC_0841.JPG +34411,991,1579,17,0,capped,DSC_0841.JPG +34412,2575,1663,17,0,capped,DSC_0841.JPG +34413,2323,1828,15,0,capped,DSC_0841.JPG +34415,1684,2293,17,0,capped,DSC_0841.JPG +34417,1903,505,17,0,capped,DSC_0841.JPG +34418,3184,769,15,0,capped,DSC_0841.JPG +34419,1519,931,15,0,capped,DSC_0841.JPG +34422,1270,1102,17,0,capped,DSC_0841.JPG +34423,1906,1114,15,0,capped,DSC_0841.JPG +34424,4309,1132,17,0,capped,DSC_0841.JPG +34425,2368,1177,15,0,capped,DSC_0841.JPG +34426,4552,1189,15,0,capped,DSC_0841.JPG +34429,2044,1594,17,0,capped,DSC_0841.JPG +34430,3664,1843,15,0,capped,DSC_0841.JPG +34431,1729,1879,15,0,capped,DSC_0841.JPG +34432,2602,2065,17,0,capped,DSC_0841.JPG +34434,2425,2125,17,0,capped,DSC_0841.JPG +34436,3094,2188,15,0,capped,DSC_0841.JPG +34437,2425,2242,17,0,capped,DSC_0841.JPG +34442,2938,328,17,0,capped,DSC_0841.JPG +34446,3784,715,15,0,capped,DSC_0841.JPG +34447,2332,1000,15,0,capped,DSC_0841.JPG +34448,5158,1132,15,0,capped,DSC_0841.JPG +34449,4132,1192,15,0,capped,DSC_0841.JPG +34450,4099,1255,17,0,capped,DSC_0841.JPG +34451,2116,1360,17,0,capped,DSC_0841.JPG +34452,2008,1534,17,0,capped,DSC_0841.JPG +34453,4333,1669,15,0,capped,DSC_0841.JPG +34454,2710,1777,15,0,capped,DSC_0841.JPG +34455,2281,2119,15,0,capped,DSC_0841.JPG +34460,3397,397,15,0,capped,DSC_0841.JPG +34462,4954,778,17,0,capped,DSC_0841.JPG +34464,3814,1012,15,0,capped,DSC_0841.JPG +34465,1162,1045,17,0,capped,DSC_0841.JPG +34466,1696,1108,15,0,capped,DSC_0841.JPG +34467,2149,1174,15,0,capped,DSC_0841.JPG +34468,2818,1366,15,0,capped,DSC_0841.JPG +34470,2014,1414,15,0,capped,DSC_0841.JPG +34472,1762,1591,15,0,capped,DSC_0841.JPG +34473,3421,1666,17,0,capped,DSC_0841.JPG +34474,4123,1669,17,0,capped,DSC_0841.JPG +34475,1093,1759,15,0,capped,DSC_0841.JPG +34476,3772,1786,15,0,capped,DSC_0841.JPG +34477,2215,2002,15,0,capped,DSC_0841.JPG +34481,2293,574,15,0,capped,DSC_0841.JPG +34484,2011,1054,17,0,capped,DSC_0841.JPG +34485,3496,1072,15,0,capped,DSC_0841.JPG +34486,3388,1126,15,0,capped,DSC_0841.JPG +34487,3847,1312,15,0,capped,DSC_0841.JPG +34489,700,1573,15,0,capped,DSC_0841.JPG +34490,5110,1672,17,0,capped,DSC_0841.JPG +34491,3595,1729,17,0,capped,DSC_0841.JPG +34492,1657,1993,15,0,capped,DSC_0841.JPG +34496,2365,325,17,0,capped,DSC_0841.JPG +34499,2047,637,15,0,capped,DSC_0841.JPG +34500,4030,655,15,0,capped,DSC_0841.JPG +34501,4351,718,15,0,capped,DSC_0841.JPG +34502,3817,895,15,0,capped,DSC_0841.JPG +34504,4345,1192,15,0,capped,DSC_0841.JPG +34505,1414,1225,15,0,capped,DSC_0841.JPG +34506,1021,1282,16,0,capped,DSC_0841.JPG +34507,2323,1945,15,0,capped,DSC_0841.JPG +34510,2140,2236,17,0,capped,DSC_0841.JPG +34513,1696,505,15,0,capped,DSC_0841.JPG +34514,3325,643,15,0,capped,DSC_0841.JPG +34515,3997,718,15,0,capped,DSC_0841.JPG +34516,1201,754,15,0,capped,DSC_0841.JPG +34517,4066,838,15,0,capped,DSC_0841.JPG +34518,4663,901,17,0,capped,DSC_0841.JPG +34519,2116,994,17,0,capped,DSC_0841.JPG +34520,3394,1012,15,0,capped,DSC_0841.JPG +34521,3922,1075,15,0,capped,DSC_0841.JPG +34523,4732,1372,15,0,capped,DSC_0841.JPG +34524,952,1522,15,0,capped,DSC_0841.JPG +34525,2080,1537,17,0,capped,DSC_0841.JPG +34526,4975,1549,15,0,capped,DSC_0841.JPG +34527,2323,1717,17,0,capped,DSC_0841.JPG +34528,4468,1900,15,0,capped,DSC_0841.JPG +34534,3958,655,15,0,capped,DSC_0841.JPG +34536,4141,838,15,0,capped,DSC_0841.JPG +34537,2188,874,17,0,capped,DSC_0841.JPG +34538,5089,898,15,0,capped,DSC_0841.JPG +34539,2860,949,15,0,capped,DSC_0841.JPG +34540,3889,1021,17,0,capped,DSC_0841.JPG +34541,5089,1132,15,0,capped,DSC_0841.JPG +34542,4588,1135,17,0,capped,DSC_0841.JPG +34543,877,1279,15,0,capped,DSC_0841.JPG +34544,1372,1288,15,0,capped,DSC_0841.JPG +34545,1867,1291,15,0,capped,DSC_0841.JPG +34546,1972,1351,15,0,capped,DSC_0841.JPG +34547,4804,1372,15,0,capped,DSC_0841.JPG +34548,4552,1435,15,0,capped,DSC_0841.JPG +34549,3352,1552,17,0,capped,DSC_0841.JPG +34550,4720,1726,15,0,capped,DSC_0841.JPG +34552,4042,2014,17,0,capped,DSC_0841.JPG +34556,2719,580,15,0,capped,DSC_0841.JPG +34558,1690,628,17,0,capped,DSC_0841.JPG +34559,2221,817,15,0,capped,DSC_0841.JPG +34560,2149,820,15,0,capped,DSC_0841.JPG +34561,2437,823,15,0,capped,DSC_0841.JPG +34562,4138,955,15,0,capped,DSC_0841.JPG +34563,916,982,15,0,capped,DSC_0841.JPG +34564,2152,1054,15,0,capped,DSC_0841.JPG +34565,3355,1069,17,0,capped,DSC_0841.JPG +34566,2044,1114,15,0,capped,DSC_0841.JPG +34567,3637,1309,15,0,capped,DSC_0841.JPG +34568,1159,1525,15,0,capped,DSC_0841.JPG +34569,3916,1549,17,0,capped,DSC_0841.JPG +34571,808,1633,15,0,capped,DSC_0841.JPG +34572,1939,1657,17,0,capped,DSC_0841.JPG +34573,2638,1660,15,0,capped,DSC_0841.JPG +34574,4264,1669,15,0,capped,DSC_0841.JPG +34575,3985,1672,17,0,capped,DSC_0841.JPG +34576,4057,1672,15,0,capped,DSC_0841.JPG +34577,4327,1786,15,0,capped,DSC_0841.JPG +34578,1096,1987,17,0,capped,DSC_0841.JPG +34579,1408,2047,15,0,capped,DSC_0841.JPG +34580,3100,2074,17,0,capped,DSC_0841.JPG +34581,3514,2074,15,0,capped,DSC_0841.JPG +34584,2863,709,15,0,capped,DSC_0841.JPG +34585,2119,757,15,0,capped,DSC_0841.JPG +34586,3643,832,15,0,capped,DSC_0841.JPG +34587,2119,877,15,0,capped,DSC_0841.JPG +34588,4525,904,15,0,capped,DSC_0841.JPG +34589,4030,1015,15,0,capped,DSC_0841.JPG +34590,2680,1240,15,0,capped,DSC_0841.JPG +34591,4135,1312,16,0,capped,DSC_0841.JPG +34592,5230,1366,17,0,capped,DSC_0841.JPG +34593,1375,1408,15,0,capped,DSC_0841.JPG +34594,3283,1426,15,0,capped,DSC_0841.JPG +34595,3850,1429,17,0,capped,DSC_0841.JPG +34596,1759,1474,15,0,capped,DSC_0841.JPG +34597,1585,1531,15,0,capped,DSC_0841.JPG +34598,2851,1546,15,0,capped,DSC_0841.JPG +34599,4405,1555,15,0,capped,DSC_0841.JPG +34600,526,1627,16,0,capped,DSC_0841.JPG +34601,598,1750,15,0,capped,DSC_0841.JPG +34602,670,1750,17,0,capped,DSC_0841.JPG +34603,1900,1825,15,0,capped,DSC_0841.JPG +34604,2359,1888,15,0,capped,DSC_0841.JPG +34605,4396,1900,15,0,capped,DSC_0841.JPG +34606,3589,1960,15,0,capped,DSC_0841.JPG +34607,2038,2059,17,0,capped,DSC_0841.JPG +34608,3733,2074,15,0,capped,DSC_0841.JPG +34609,2638,2122,15,0,capped,DSC_0841.JPG +34610,1756,2170,17,0,capped,DSC_0841.JPG +34613,3571,589,15,0,capped,DSC_0841.JPG +34614,1198,868,15,0,capped,DSC_0841.JPG +34615,2683,886,15,0,capped,DSC_0841.JPG +34616,4201,1075,15,0,capped,DSC_0841.JPG +34617,5053,1075,15,0,capped,DSC_0841.JPG +34618,1480,1108,17,0,capped,DSC_0841.JPG +34619,1267,1225,15,0,capped,DSC_0841.JPG +34620,2050,1234,17,0,capped,DSC_0841.JPG +34621,4168,1249,15,0,capped,DSC_0841.JPG +34622,1513,1288,15,0,capped,DSC_0841.JPG +34623,4171,1375,15,0,capped,DSC_0841.JPG +34624,2185,1477,15,0,capped,DSC_0841.JPG +34625,1657,1531,15,0,capped,DSC_0841.JPG +34626,1726,1531,17,0,capped,DSC_0841.JPG +34627,706,1690,15,0,capped,DSC_0841.JPG +34628,2290,2005,15,0,capped,DSC_0841.JPG +34629,2569,2005,15,0,capped,DSC_0841.JPG +34630,2989,2128,15,0,capped,DSC_0841.JPG +34632,3763,2251,17,0,capped,DSC_0841.JPG +34636,3538,652,15,0,capped,DSC_0841.JPG +34637,3892,772,15,0,capped,DSC_0841.JPG +34639,1978,880,17,0,capped,DSC_0841.JPG +34640,1237,925,15,0,capped,DSC_0841.JPG +34641,949,928,17,0,capped,DSC_0841.JPG +34642,4834,955,15,0,capped,DSC_0841.JPG +34643,877,1042,15,0,capped,DSC_0841.JPG +34644,2857,1069,17,0,capped,DSC_0841.JPG +34645,1198,1228,15,0,capped,DSC_0841.JPG +34646,2188,1234,16,0,capped,DSC_0841.JPG +34647,3952,1372,15,0,capped,DSC_0841.JPG +34648,3811,1378,17,0,capped,DSC_0841.JPG +34650,3886,1492,15,0,capped,DSC_0841.JPG +34651,4447,1495,15,0,capped,DSC_0841.JPG +34652,1093,1525,15,0,capped,DSC_0841.JPG +34654,4231,1729,15,0,capped,DSC_0841.JPG +34655,2146,1768,15,0,capped,DSC_0841.JPG +34656,775,1810,17,0,capped,DSC_0841.JPG +34657,1342,1933,17,0,capped,DSC_0841.JPG +34658,1444,1990,15,0,capped,DSC_0841.JPG +34660,2863,586,15,0,capped,DSC_0841.JPG +34661,1657,691,15,0,capped,DSC_0841.JPG +34662,3610,772,15,0,capped,DSC_0841.JPG +34663,3751,772,15,0,capped,DSC_0841.JPG +34664,3853,838,15,0,capped,DSC_0841.JPG +34665,3499,955,15,0,capped,DSC_0841.JPG +34666,988,985,15,0,capped,DSC_0841.JPG +34667,4420,1075,15,0,capped,DSC_0841.JPG +34668,1414,1108,15,0,capped,DSC_0841.JPG +34669,5017,1135,15,0,capped,DSC_0841.JPG +34670,5194,1189,15,0,capped,DSC_0841.JPG +34671,910,1219,17,0,capped,DSC_0841.JPG +34672,1831,1228,15,0,capped,DSC_0841.JPG +34673,5233,1249,15,0,capped,DSC_0841.JPG +34674,736,1279,15,0,capped,DSC_0841.JPG +34675,877,1399,15,0,capped,DSC_0841.JPG +34676,3778,1432,15,0,capped,DSC_0841.JPG +34677,4339,1435,17,0,capped,DSC_0841.JPG +34678,1234,1525,15,0,capped,DSC_0841.JPG +34679,2608,1600,15,0,capped,DSC_0841.JPG +34680,1585,1651,17,0,capped,DSC_0841.JPG +34681,3847,1672,15,0,capped,DSC_0841.JPG +34683,1165,1870,15,0,capped,DSC_0841.JPG +34684,1618,1933,15,0,capped,DSC_0841.JPG +34685,883,2095,17,0,capped,DSC_0841.JPG +34686,2851,2131,15,0,capped,DSC_0841.JPG +34687,2386,2179,16,0,capped,DSC_0841.JPG +34688,2461,2179,15,0,capped,DSC_0841.JPG +34690,2044,508,17,0,capped,DSC_0841.JPG +34691,4417,718,15,0,capped,DSC_0841.JPG +34694,1450,811,15,0,capped,DSC_0841.JPG +34695,2050,877,17,0,capped,DSC_0841.JPG +34696,2398,883,15,0,capped,DSC_0841.JPG +34697,4243,898,15,0,capped,DSC_0841.JPG +34698,1132,988,15,0,capped,DSC_0841.JPG +34699,1627,991,15,0,capped,DSC_0841.JPG +34700,1447,1165,15,0,capped,DSC_0841.JPG +34701,847,1216,17,0,capped,DSC_0841.JPG +34702,1549,1228,15,0,capped,DSC_0841.JPG +34704,664,1396,15,0,capped,DSC_0841.JPG +34705,2149,1537,17,0,capped,DSC_0841.JPG +34706,2710,1663,15,0,capped,DSC_0841.JPG +34707,673,1861,15,0,capped,DSC_0841.JPG +34708,1936,1879,17,0,capped,DSC_0841.JPG +34709,1372,1987,15,0,capped,DSC_0841.JPG +34710,3622,2014,15,0,capped,DSC_0841.JPG +34711,2140,2116,17,0,capped,DSC_0841.JPG +34712,3904,2131,15,0,capped,DSC_0841.JPG +34713,3586,2188,15,0,capped,DSC_0841.JPG +34714,3025,2311,15,0,capped,DSC_0841.JPG +34719,3436,589,17,0,capped,DSC_0841.JPG +34720,1342,625,15,0,capped,DSC_0841.JPG +34722,2332,760,15,0,capped,DSC_0841.JPG +34723,3391,775,15,0,capped,DSC_0841.JPG +34724,2332,880,15,0,capped,DSC_0841.JPG +34725,2083,937,17,0,capped,DSC_0841.JPG +34726,1516,1048,15,0,capped,DSC_0841.JPG +34727,2293,1054,15,0,capped,DSC_0841.JPG +34728,4171,1135,15,0,capped,DSC_0841.JPG +34729,880,1159,15,0,capped,DSC_0841.JPG +34730,3781,1195,15,0,capped,DSC_0841.JPG +34731,3919,1195,15,0,capped,DSC_0841.JPG +34732,697,1216,17,0,capped,DSC_0841.JPG +34733,2257,1234,15,0,capped,DSC_0841.JPG +34734,2188,1360,15,0,capped,DSC_0841.JPG +34736,1408,1468,15,0,capped,DSC_0841.JPG +34737,2428,1660,17,0,capped,DSC_0841.JPG +34738,5041,1669,15,0,capped,DSC_0841.JPG +34739,811,1753,17,0,capped,DSC_0841.JPG +34740,2359,1774,15,0,capped,DSC_0841.JPG +34741,1411,1819,15,0,capped,DSC_0841.JPG +34742,1798,1882,17,0,capped,DSC_0841.JPG +34744,4465,2131,15,0,capped,DSC_0841.JPG +34745,2812,2182,15,0,capped,DSC_0841.JPG +34748,3148,709,15,0,capped,DSC_0841.JPG +34749,3676,895,15,0,capped,DSC_0841.JPG +34750,2257,1000,17,0,capped,DSC_0841.JPG +34751,4624,1075,15,0,capped,DSC_0841.JPG +34752,4903,1078,17,0,capped,DSC_0841.JPG +34753,2746,1243,15,0,capped,DSC_0841.JPG +34754,4243,1255,17,0,capped,DSC_0841.JPG +34755,664,1273,15,0,capped,DSC_0841.JPG +34756,1657,1285,15,0,capped,DSC_0841.JPG +34757,2152,1294,15,0,capped,DSC_0841.JPG +34758,1549,1342,15,0,capped,DSC_0841.JPG +34759,2611,1363,15,0,capped,DSC_0841.JPG +34760,1900,1477,15,0,capped,DSC_0841.JPG +34761,2323,1483,15,0,capped,DSC_0841.JPG +34762,1303,1528,17,0,capped,DSC_0841.JPG +34763,1267,1585,15,0,capped,DSC_0841.JPG +34764,2218,1657,15,0,capped,DSC_0841.JPG +34765,3454,1729,17,0,capped,DSC_0841.JPG +34766,1834,1825,15,0,capped,DSC_0841.JPG +34767,3874,1843,15,0,capped,DSC_0841.JPG +34769,3976,2131,15,0,capped,DSC_0841.JPG +34770,1480,2164,15,0,capped,DSC_0841.JPG +34773,1399,376,17,0,capped,DSC_0841.JPG +34774,3109,646,17,0,capped,DSC_0841.JPG +34775,3610,652,15,0,capped,DSC_0841.JPG +34776,3682,652,17,0,capped,DSC_0841.JPG +34777,2011,694,17,0,capped,DSC_0841.JPG +34778,1624,871,15,0,capped,DSC_0841.JPG +34779,3781,955,15,0,capped,DSC_0841.JPG +34780,5278,955,15,0,capped,DSC_0841.JPG +34781,5089,1012,17,0,capped,DSC_0841.JPG +34782,1870,1051,15,0,capped,DSC_0841.JPG +34783,1732,1054,15,0,capped,DSC_0841.JPG +34784,4135,1075,15,0,capped,DSC_0841.JPG +34785,1129,1105,15,0,capped,DSC_0841.JPG +34786,2329,1237,15,0,capped,DSC_0841.JPG +34787,5128,1309,15,0,capped,DSC_0841.JPG +34788,1126,1345,15,0,capped,DSC_0841.JPG +34789,1339,1351,15,0,capped,DSC_0841.JPG +34790,2392,1360,17,0,capped,DSC_0841.JPG +34791,3883,1375,15,0,capped,DSC_0841.JPG +34792,2149,1417,15,0,capped,DSC_0841.JPG +34793,4411,1435,15,0,capped,DSC_0841.JPG +34794,3175,1489,15,0,capped,DSC_0841.JPG +34796,4165,1498,15,0,capped,DSC_0841.JPG +34798,1795,1534,15,0,capped,DSC_0841.JPG +34799,3136,1663,17,0,capped,DSC_0841.JPG +34801,1939,1768,16,0,capped,DSC_0841.JPG +34802,1339,1819,15,0,capped,DSC_0841.JPG +34803,1513,1876,17,0,capped,DSC_0841.JPG +34804,1447,1879,17,0,capped,DSC_0841.JPG +34806,1903,1939,15,0,capped,DSC_0841.JPG +34807,4714,1957,17,0,capped,DSC_0841.JPG +34808,3733,1960,15,0,capped,DSC_0841.JPG +34809,3838,2017,15,0,capped,DSC_0841.JPG +34810,2323,2062,17,0,capped,DSC_0841.JPG +34811,3943,2074,15,0,capped,DSC_0841.JPG +34812,814,2098,16,0,capped,DSC_0841.JPG +34814,3004,580,15,0,capped,DSC_0841.JPG +34815,1903,634,15,0,capped,DSC_0841.JPG +34816,4384,661,15,0,capped,DSC_0841.JPG +34817,2653,703,15,0,capped,DSC_0841.JPG +34818,2998,709,15,0,capped,DSC_0841.JPG +34819,3502,712,15,0,capped,DSC_0841.JPG +34820,3112,769,15,0,capped,DSC_0841.JPG +34821,5131,832,17,0,capped,DSC_0841.JPG +34822,1906,871,17,0,capped,DSC_0841.JPG +34823,2401,1000,17,0,capped,DSC_0841.JPG +34824,2332,1120,15,0,capped,DSC_0841.JPG +34825,4801,1135,15,0,capped,DSC_0841.JPG +34826,4693,1192,15,0,capped,DSC_0841.JPG +34827,4024,1252,17,0,capped,DSC_0841.JPG +34828,4024,1372,15,0,capped,DSC_0841.JPG +34829,1582,1408,17,0,capped,DSC_0841.JPG +34830,1621,1588,15,0,capped,DSC_0841.JPG +34831,2887,1606,15,0,capped,DSC_0841.JPG +34832,4300,1612,15,0,capped,DSC_0841.JPG +34833,1516,1762,15,0,capped,DSC_0841.JPG +34834,1765,1822,15,0,capped,DSC_0841.JPG +34835,2710,1891,15,0,capped,DSC_0841.JPG +34836,2638,1894,15,0,capped,DSC_0841.JPG +34837,2743,2068,15,0,capped,DSC_0841.JPG +34838,2107,2173,15,0,capped,DSC_0841.JPG +34839,1303,2215,17,0,capped,DSC_0841.JPG +34841,2878,2311,15,0,capped,DSC_0841.JPG +34845,4384,775,15,0,capped,DSC_0841.JPG +34846,2719,949,17,0,capped,DSC_0841.JPG +34847,1414,988,15,0,capped,DSC_0841.JPG +34848,1237,1045,15,0,capped,DSC_0841.JPG +34849,1447,1048,15,0,capped,DSC_0841.JPG +34850,1804,1051,15,0,capped,DSC_0841.JPG +34851,2365,1060,15,0,capped,DSC_0841.JPG +34852,3001,1069,17,0,capped,DSC_0841.JPG +34853,2401,1120,15,0,capped,DSC_0841.JPG +34854,5230,1132,15,0,capped,DSC_0841.JPG +34855,2401,1243,17,0,capped,DSC_0841.JPG +34856,3388,1249,17,0,capped,DSC_0841.JPG +34857,2080,1417,15,0,capped,DSC_0841.JPG +34858,4129,1435,15,0,capped,DSC_0841.JPG +34859,1126,1465,15,0,capped,DSC_0841.JPG +34860,733,1516,15,0,capped,DSC_0841.JPG +34861,2221,1537,15,0,capped,DSC_0841.JPG +34862,844,1576,17,0,capped,DSC_0841.JPG +34863,4933,1726,15,0,capped,DSC_0841.JPG +34864,3667,1729,15,0,capped,DSC_0841.JPG +34865,4162,1729,15,0,capped,DSC_0841.JPG +34866,1165,1759,15,0,capped,DSC_0841.JPG +34867,1447,1759,15,0,capped,DSC_0841.JPG +34868,4159,1840,17,0,capped,DSC_0841.JPG +34869,601,1975,15,0,capped,DSC_0841.JPG +34870,883,1978,15,0,capped,DSC_0841.JPG +34871,2077,1999,15,0,capped,DSC_0841.JPG +34872,4327,2014,15,0,capped,DSC_0841.JPG +34873,2071,2113,17,0,capped,DSC_0841.JPG +34879,1549,631,17,0,capped,DSC_0841.JPG +34880,1939,697,15,0,capped,DSC_0841.JPG +34881,2437,703,15,0,capped,DSC_0841.JPG +34882,3640,718,17,0,capped,DSC_0841.JPG +34883,3571,832,15,0,capped,DSC_0841.JPG +34884,4420,835,15,0,capped,DSC_0841.JPG +34885,5236,895,15,0,capped,DSC_0841.JPG +34886,1804,934,17,0,capped,DSC_0841.JPG +34887,3922,955,15,0,capped,DSC_0841.JPG +34888,1483,985,17,0,capped,DSC_0841.JPG +34889,2752,1126,15,0,capped,DSC_0841.JPG +34890,1588,1168,15,0,capped,DSC_0841.JPG +34892,982,1219,15,0,capped,DSC_0841.JPG +34893,3886,1249,15,0,capped,DSC_0841.JPG +34894,3673,1252,15,0,capped,DSC_0841.JPG +34895,4273,1315,15,0,capped,DSC_0841.JPG +34896,1480,1348,15,0,capped,DSC_0841.JPG +34897,3604,1372,15,0,capped,DSC_0841.JPG +34898,3748,1372,15,0,capped,DSC_0841.JPG +34899,1795,1417,15,0,capped,DSC_0841.JPG +34900,2575,1423,15,0,capped,DSC_0841.JPG +34901,3919,1435,15,0,capped,DSC_0841.JPG +34902,4513,1495,15,0,capped,DSC_0841.JPG +34903,1024,1528,15,0,capped,DSC_0841.JPG +34904,2788,1546,15,0,capped,DSC_0841.JPG +34905,3847,1555,15,0,capped,DSC_0841.JPG +34906,2533,1720,17,0,capped,DSC_0841.JPG +34907,1588,1762,17,0,capped,DSC_0841.JPG +34908,1657,1876,15,0,capped,DSC_0841.JPG +34909,1585,1993,15,0,capped,DSC_0841.JPG +34910,4429,2074,15,0,capped,DSC_0841.JPG +34911,3868,2077,17,0,capped,DSC_0841.JPG +34912,1093,2098,15,0,capped,DSC_0841.JPG +34913,1585,2110,17,0,capped,DSC_0841.JPG +34914,1936,2113,17,0,capped,DSC_0841.JPG +34915,2278,2236,15,0,capped,DSC_0841.JPG +34916,3901,2254,15,0,capped,DSC_0841.JPG +34918,1762,631,15,0,capped,DSC_0841.JPG +34919,2116,637,15,0,capped,DSC_0841.JPG +34920,3250,652,15,0,capped,DSC_0841.JPG +34921,3214,709,15,0,capped,DSC_0841.JPG +34922,2896,769,15,0,capped,DSC_0841.JPG +34923,1729,814,15,0,capped,DSC_0841.JPG +34924,1801,814,15,0,capped,DSC_0841.JPG +34925,1378,925,17,0,capped,DSC_0841.JPG +34926,2932,943,15,0,capped,DSC_0841.JPG +34927,3283,949,15,0,capped,DSC_0841.JPG +34928,1096,1042,17,0,capped,DSC_0841.JPG +34929,3712,1075,17,0,capped,DSC_0841.JPG +34930,2467,1117,15,0,capped,DSC_0841.JPG +34931,1480,1225,15,0,capped,DSC_0841.JPG +34932,1621,1234,15,0,capped,DSC_0841.JPG +34933,949,1282,15,0,capped,DSC_0841.JPG +34934,3394,1369,15,0,capped,DSC_0841.JPG +34935,3568,1429,17,0,capped,DSC_0841.JPG +34936,1939,1540,17,0,capped,DSC_0841.JPG +34937,2749,1606,17,0,capped,DSC_0841.JPG +34938,4372,1609,15,0,capped,DSC_0841.JPG +34939,955,1639,15,0,capped,DSC_0841.JPG +34940,2005,1657,17,0,capped,DSC_0841.JPG +34941,2395,1831,15,0,capped,DSC_0841.JPG +34942,1723,1990,15,0,capped,DSC_0841.JPG +34943,988,2038,15,0,capped,DSC_0841.JPG +34944,2458,2299,15,0,capped,DSC_0841.JPG +34954,2080,817,15,0,capped,DSC_0841.JPG +34955,3958,898,15,0,capped,DSC_0841.JPG +34956,1765,991,16,0,capped,DSC_0841.JPG +34957,2896,1009,15,0,capped,DSC_0841.JPG +34958,4519,1129,15,0,capped,DSC_0841.JPG +34959,2611,1246,15,0,capped,DSC_0841.JPG +34960,4309,1249,15,0,capped,DSC_0841.JPG +34961,910,1342,15,0,capped,DSC_0841.JPG +34962,5020,1375,15,0,capped,DSC_0841.JPG +34963,2431,1420,15,0,capped,DSC_0841.JPG +34964,2782,1426,15,0,capped,DSC_0841.JPG +34965,4837,1429,17,0,capped,DSC_0841.JPG +34966,1975,1471,17,0,capped,DSC_0841.JPG +34968,2713,1543,15,0,capped,DSC_0841.JPG +34969,916,1579,15,0,capped,DSC_0841.JPG +34970,1408,1702,15,0,capped,DSC_0841.JPG +34971,883,1753,15,0,capped,DSC_0841.JPG +34972,3457,1843,17,0,capped,DSC_0841.JPG +34973,2503,1888,15,0,capped,DSC_0841.JPG +34974,4963,1900,16,0,capped,DSC_0841.JPG +34975,1831,2056,15,0,capped,DSC_0841.JPG +34976,4960,2134,15,0,capped,DSC_0841.JPG +34978,1156,2332,15,0,capped,DSC_0841.JPG +34981,2011,448,15,0,capped,DSC_0841.JPG +34982,3862,466,15,0,capped,DSC_0841.JPG +34983,3934,469,15,0,capped,DSC_0841.JPG +34984,1375,688,15,0,capped,DSC_0841.JPG +34985,1411,748,15,0,capped,DSC_0841.JPG +34986,2368,820,15,0,capped,DSC_0841.JPG +34987,1837,874,16,0,capped,DSC_0841.JPG +34988,4807,898,17,0,capped,DSC_0841.JPG +34989,1057,985,15,0,capped,DSC_0841.JPG +34990,4171,1015,15,0,capped,DSC_0841.JPG +34991,3286,1186,17,0,capped,DSC_0841.JPG +34992,1342,1225,15,0,capped,DSC_0841.JPG +34993,3712,1309,17,0,capped,DSC_0841.JPG +34994,1198,1351,17,0,capped,DSC_0841.JPG +34995,4873,1372,15,0,capped,DSC_0841.JPG +34996,1834,1474,15,0,capped,DSC_0841.JPG +34997,2041,1477,15,0,capped,DSC_0841.JPG +34998,2824,1486,15,0,capped,DSC_0841.JPG +34999,4477,1552,15,0,capped,DSC_0841.JPG +35001,4444,1609,15,0,capped,DSC_0841.JPG +35002,2074,1651,15,0,capped,DSC_0841.JPG +35003,5173,1669,15,0,capped,DSC_0841.JPG +35004,1198,1699,15,0,capped,DSC_0841.JPG +35006,4363,1840,15,0,capped,DSC_0841.JPG +35007,3841,1903,15,0,capped,DSC_0841.JPG +35009,3553,2017,15,0,capped,DSC_0841.JPG +35010,3799,2077,17,0,capped,DSC_0841.JPG +35011,982,2281,15,0,capped,DSC_0841.JPG +35013,3580,460,17,0,capped,DSC_0841.JPG +35015,2716,709,15,0,capped,DSC_0841.JPG +35016,1978,751,17,0,capped,DSC_0841.JPG +35017,1693,871,15,0,capped,DSC_0841.JPG +35018,1165,928,15,0,capped,DSC_0841.JPG +35019,2575,946,15,0,capped,DSC_0841.JPG +35020,3001,949,15,0,capped,DSC_0841.JPG +35021,4591,1015,15,0,capped,DSC_0841.JPG +35022,736,1042,17,0,capped,DSC_0841.JPG +35023,841,1099,15,0,capped,DSC_0841.JPG +35024,919,1102,17,0,capped,DSC_0841.JPG +35025,1627,1105,15,0,capped,DSC_0841.JPG +35026,2191,1114,15,0,capped,DSC_0841.JPG +35027,3424,1186,15,0,capped,DSC_0841.JPG +35028,4450,1249,15,0,capped,DSC_0841.JPG +35029,1942,1294,15,0,capped,DSC_0841.JPG +35030,982,1342,15,0,capped,DSC_0841.JPG +35031,3535,1375,17,0,capped,DSC_0841.JPG +35032,4693,1435,15,0,capped,DSC_0841.JPG +35033,2608,1483,15,0,capped,DSC_0841.JPG +35034,4024,1501,17,0,capped,DSC_0841.JPG +35036,3487,1789,17,0,capped,DSC_0841.JPG +35037,3805,1846,17,0,capped,DSC_0841.JPG +35038,2572,1888,15,0,capped,DSC_0841.JPG +35039,2674,1951,17,0,capped,DSC_0841.JPG +35040,1795,1996,15,0,capped,DSC_0841.JPG +35041,1762,2050,15,0,capped,DSC_0841.JPG +35042,988,2158,15,0,capped,DSC_0841.JPG +35043,2740,2182,15,0,capped,DSC_0841.JPG +35044,4471,2248,15,0,capped,DSC_0841.JPG +35047,2539,640,15,0,capped,DSC_0841.JPG +35048,3718,709,17,0,capped,DSC_0841.JPG +35049,1342,748,15,0,capped,DSC_0841.JPG +35050,2260,760,15,0,capped,DSC_0841.JPG +35051,2404,760,15,0,capped,DSC_0841.JPG +35052,4318,781,15,0,capped,DSC_0841.JPG +35053,1660,814,15,0,capped,DSC_0841.JPG +35054,2644,823,15,0,capped,DSC_0841.JPG +35055,4765,958,15,0,capped,DSC_0841.JPG +35056,4663,1018,15,0,capped,DSC_0841.JPG +35057,3676,1129,15,0,capped,DSC_0841.JPG +35058,4486,1192,15,0,capped,DSC_0841.JPG +35059,3289,1318,15,0,capped,DSC_0841.JPG +35060,841,1333,15,0,capped,DSC_0841.JPG +35061,2749,1363,15,0,capped,DSC_0841.JPG +35062,1156,1405,15,0,capped,DSC_0841.JPG +35063,1657,1411,15,0,capped,DSC_0841.JPG +35064,4903,1432,15,0,capped,DSC_0841.JPG +35065,2359,1543,15,0,capped,DSC_0841.JPG +35066,2431,1543,17,0,capped,DSC_0841.JPG +35067,3952,1615,17,0,capped,DSC_0841.JPG +35068,3706,1669,15,0,capped,DSC_0841.JPG +35069,2254,1711,15,0,capped,DSC_0841.JPG +35070,5143,1726,15,0,capped,DSC_0841.JPG +35071,2290,1771,15,0,capped,DSC_0841.JPG +35072,4540,1786,17,0,capped,DSC_0841.JPG +35073,2464,1834,15,0,capped,DSC_0841.JPG +35074,4009,1960,17,0,capped,DSC_0841.JPG +35075,2353,1999,15,0,capped,DSC_0841.JPG +35076,4888,2020,15,0,capped,DSC_0841.JPG +35077,1060,2044,17,0,capped,DSC_0841.JPG +35078,4573,2071,15,0,capped,DSC_0841.JPG +35079,3448,2074,15,0,capped,DSC_0841.JPG +35080,1726,2110,15,0,capped,DSC_0841.JPG +35081,2563,2122,15,0,capped,DSC_0841.JPG +35082,1195,2158,17,0,capped,DSC_0841.JPG +35083,1966,2173,15,0,capped,DSC_0841.JPG +35084,1057,2287,17,0,capped,DSC_0841.JPG +35087,2581,706,15,0,capped,DSC_0841.JPG +35088,3574,715,15,0,capped,DSC_0841.JPG +35089,3928,721,17,0,capped,DSC_0841.JPG +35091,1831,757,17,0,capped,DSC_0841.JPG +35092,2614,763,15,0,capped,DSC_0841.JPG +35093,3037,766,15,0,capped,DSC_0841.JPG +35094,4738,778,15,0,capped,DSC_0841.JPG +35095,4456,784,17,0,capped,DSC_0841.JPG +35096,2935,829,17,0,capped,DSC_0841.JPG +35097,2260,877,15,0,capped,DSC_0841.JPG +35098,3355,952,17,0,capped,DSC_0841.JPG +35099,5125,955,15,0,capped,DSC_0841.JPG +35100,1552,985,17,0,capped,DSC_0841.JPG +35101,949,1042,15,0,capped,DSC_0841.JPG +35102,1588,1051,15,0,capped,DSC_0841.JPG +35103,5275,1066,17,0,capped,DSC_0841.JPG +35104,4768,1072,17,0,capped,DSC_0841.JPG +35105,3712,1195,15,0,capped,DSC_0841.JPG +35107,1759,1228,15,0,capped,DSC_0841.JPG +35108,2968,1240,15,0,capped,DSC_0841.JPG +35109,2470,1243,17,0,capped,DSC_0841.JPG +35110,2779,1306,15,0,capped,DSC_0841.JPG +35112,2290,1417,17,0,capped,DSC_0841.JPG +35113,3457,1609,15,0,capped,DSC_0841.JPG +35114,1096,1642,17,0,capped,DSC_0841.JPG +35115,3631,1669,15,0,capped,DSC_0841.JPG +35116,1480,1705,15,0,capped,DSC_0841.JPG +35117,3877,1729,17,0,capped,DSC_0841.JPG +35118,2641,1777,15,0,capped,DSC_0841.JPG +35119,4399,1786,15,0,capped,DSC_0841.JPG +35120,4015,1846,15,0,capped,DSC_0841.JPG +35121,4606,1900,15,0,capped,DSC_0841.JPG +35122,2182,1942,15,0,capped,DSC_0841.JPG +35123,4225,1957,15,0,capped,DSC_0841.JPG +35124,1375,2104,15,0,capped,DSC_0841.JPG +35125,1192,2281,15,0,capped,DSC_0841.JPG +35128,3256,523,15,0,capped,DSC_0841.JPG +35129,3145,586,15,0,capped,DSC_0841.JPG +35130,4180,658,17,0,capped,DSC_0841.JPG +35131,2752,763,17,0,capped,DSC_0841.JPG +35132,1237,811,15,0,capped,DSC_0841.JPG +35133,3784,838,15,0,capped,DSC_0841.JPG +35134,4207,961,17,0,capped,DSC_0841.JPG +35135,2713,1063,15,0,capped,DSC_0841.JPG +35136,3568,1075,17,0,capped,DSC_0841.JPG +35137,1057,1105,15,0,capped,DSC_0841.JPG +35138,1765,1108,17,0,capped,DSC_0841.JPG +35139,2257,1117,17,0,capped,DSC_0841.JPG +35140,1375,1165,15,0,capped,DSC_0841.JPG +35141,2017,1171,15,0,capped,DSC_0841.JPG +35142,5272,1189,15,0,capped,DSC_0841.JPG +35143,4060,1195,17,0,capped,DSC_0841.JPG +35144,2083,1291,15,0,capped,DSC_0841.JPG +35145,3781,1318,17,0,capped,DSC_0841.JPG +35146,2257,1363,17,0,capped,DSC_0841.JPG +35148,877,1519,15,0,capped,DSC_0841.JPG +35149,2926,1546,15,0,capped,DSC_0841.JPG +35151,1552,1588,15,0,capped,DSC_0841.JPG +35152,1903,1711,15,0,capped,DSC_0841.JPG +35153,1801,1768,17,0,capped,DSC_0841.JPG +35154,4261,1783,15,0,capped,DSC_0841.JPG +35155,4996,1960,17,0,capped,DSC_0841.JPG +35156,814,1978,15,0,capped,DSC_0841.JPG +35157,2773,2128,15,0,capped,DSC_0841.JPG +35158,2881,2185,15,0,capped,DSC_0841.JPG +35159,1726,2233,17,0,capped,DSC_0841.JPG +35160,2593,2305,17,0,capped,DSC_0841.JPG +35163,1870,445,17,0,capped,DSC_0841.JPG +35164,3433,466,15,0,capped,DSC_0841.JPG +35165,2329,511,15,0,capped,DSC_0841.JPG +35166,2404,514,15,0,capped,DSC_0841.JPG +35167,2011,568,15,0,capped,DSC_0841.JPG +35168,2185,637,17,0,capped,DSC_0841.JPG +35169,2683,643,15,0,capped,DSC_0841.JPG +35170,1444,688,15,0,capped,DSC_0841.JPG +35171,4705,724,17,0,capped,DSC_0841.JPG +35172,3676,769,15,0,capped,DSC_0841.JPG +35173,2791,823,15,0,capped,DSC_0841.JPG +35174,1768,868,15,0,capped,DSC_0841.JPG +35175,4381,898,15,0,capped,DSC_0841.JPG +35176,2365,937,17,0,capped,DSC_0841.JPG +35177,1696,988,15,0,capped,DSC_0841.JPG +35178,3427,1069,15,0,capped,DSC_0841.JPG +35179,1834,1111,15,0,capped,DSC_0841.JPG +35180,4099,1135,15,0,capped,DSC_0841.JPG +35181,4942,1135,15,0,capped,DSC_0841.JPG +35182,1126,1228,17,0,capped,DSC_0841.JPG +35183,4378,1372,15,0,capped,DSC_0841.JPG +35184,2713,1426,15,0,capped,DSC_0841.JPG +35185,1270,1465,15,0,capped,DSC_0841.JPG +35186,667,1516,15,0,capped,DSC_0841.JPG +35187,2323,1600,17,0,capped,DSC_0841.JPG +35189,3697,1786,15,0,capped,DSC_0841.JPG +35190,1195,1924,15,0,capped,DSC_0841.JPG +35191,1762,1939,17,0,capped,DSC_0841.JPG +35192,2464,1948,15,0,capped,DSC_0841.JPG +35193,4501,1954,17,0,capped,DSC_0841.JPG +35194,1234,1981,17,0,capped,DSC_0841.JPG +35195,2923,2005,17,0,capped,DSC_0841.JPG +35196,3481,2017,15,0,capped,DSC_0841.JPG +35197,1903,2050,17,0,capped,DSC_0841.JPG +35198,4009,2077,17,0,capped,DSC_0841.JPG +35199,3232,2191,15,0,capped,DSC_0841.JPG +35200,877,2221,15,0,capped,DSC_0841.JPG +35201,3517,2311,15,0,capped,DSC_0841.JPG +35206,2365,448,17,0,capped,DSC_0841.JPG +35208,2257,511,15,0,capped,DSC_0841.JPG +35209,2971,523,15,0,capped,DSC_0841.JPG +35210,3541,529,17,0,capped,DSC_0841.JPG +35211,3754,529,15,0,capped,DSC_0841.JPG +35212,2932,586,15,0,capped,DSC_0841.JPG +35213,3358,592,15,0,capped,DSC_0841.JPG +35214,3889,652,15,0,capped,DSC_0841.JPG +35215,3355,703,15,0,capped,DSC_0841.JPG +35216,1693,751,15,0,capped,DSC_0841.JPG +35217,4030,781,15,0,capped,DSC_0841.JPG +35218,1024,805,15,0,capped,DSC_0841.JPG +35219,3397,892,15,0,capped,DSC_0841.JPG +35220,1273,985,15,0,capped,DSC_0841.JPG +35221,2614,1003,15,0,capped,DSC_0841.JPG +35222,3322,1018,15,0,capped,DSC_0841.JPG +35223,2575,1060,17,0,capped,DSC_0841.JPG +35224,2647,1063,15,0,capped,DSC_0841.JPG +35225,3637,1075,15,0,capped,DSC_0841.JPG +35226,2719,1177,17,0,capped,DSC_0841.JPG +35227,2857,1186,17,0,capped,DSC_0841.JPG +35228,4765,1195,15,0,capped,DSC_0841.JPG +35229,3034,1246,15,0,capped,DSC_0841.JPG +35230,2677,1360,15,0,capped,DSC_0841.JPG +35231,3247,1372,15,0,capped,DSC_0841.JPG +35232,4447,1375,15,0,capped,DSC_0841.JPG +35233,4483,1435,17,0,capped,DSC_0841.JPG +35234,697,1459,17,0,capped,DSC_0841.JPG +35235,4132,1555,15,0,capped,DSC_0841.JPG +35236,4201,1555,15,0,capped,DSC_0841.JPG +35237,1408,1585,15,0,capped,DSC_0841.JPG +35238,5074,1612,17,0,capped,DSC_0841.JPG +35239,1618,1708,15,0,capped,DSC_0841.JPG +35240,1240,1873,15,0,capped,DSC_0841.JPG +35241,1306,1876,15,0,capped,DSC_0841.JPG +35242,4891,1900,15,0,capped,DSC_0841.JPG +35243,2113,1942,15,0,capped,DSC_0841.JPG +35244,1867,1993,15,0,capped,DSC_0841.JPG +35245,2212,2113,15,0,capped,DSC_0841.JPG +35247,3367,328,15,0,capped,DSC_0841.JPG +35249,2260,634,15,0,capped,DSC_0841.JPG +35250,3184,649,17,0,capped,DSC_0841.JPG +35251,1909,757,15,0,capped,DSC_0841.JPG +35252,4840,835,17,0,capped,DSC_0841.JPG +35253,2968,889,15,0,capped,DSC_0841.JPG +35254,4732,895,17,0,capped,DSC_0841.JPG +35255,4876,898,15,0,capped,DSC_0841.JPG +35257,2008,934,17,0,capped,DSC_0841.JPG +35258,2785,949,15,0,capped,DSC_0841.JPG +35259,3571,952,15,0,capped,DSC_0841.JPG +35260,1978,994,15,0,capped,DSC_0841.JPG +35261,4945,1015,17,0,capped,DSC_0841.JPG +35262,3991,1075,15,0,capped,DSC_0841.JPG +35263,1975,1111,15,0,capped,DSC_0841.JPG +35264,4909,1192,15,0,capped,DSC_0841.JPG +35265,5083,1249,15,0,capped,DSC_0841.JPG +35266,4837,1312,15,0,capped,DSC_0841.JPG +35267,4660,1375,15,0,capped,DSC_0841.JPG +35268,1693,1474,15,0,capped,DSC_0841.JPG +35269,1516,1534,17,0,capped,DSC_0841.JPG +35270,1870,1534,15,0,capped,DSC_0841.JPG +35271,2539,1603,15,0,capped,DSC_0841.JPG +35272,1237,1651,17,0,capped,DSC_0841.JPG +35273,1657,1651,15,0,capped,DSC_0841.JPG +35274,2608,1720,15,0,capped,DSC_0841.JPG +35275,1126,1816,17,0,capped,DSC_0841.JPG +35276,1477,1816,17,0,capped,DSC_0841.JPG +35278,1549,1933,15,0,capped,DSC_0841.JPG +35279,4432,1954,15,0,capped,DSC_0841.JPG +35280,3097,1957,17,0,capped,DSC_0841.JPG +35281,3871,1957,15,0,capped,DSC_0841.JPG +35284,1897,2170,15,0,capped,DSC_0841.JPG +35285,2317,2173,17,0,capped,DSC_0841.JPG +35286,3727,2194,15,0,capped,DSC_0841.JPG +35290,3718,595,17,0,capped,DSC_0841.JPG +35291,3928,595,15,0,capped,DSC_0841.JPG +35292,3820,775,15,0,capped,DSC_0841.JPG +35293,1876,814,15,0,capped,DSC_0841.JPG +35294,4489,841,15,0,capped,DSC_0841.JPG +35295,4384,1012,15,0,capped,DSC_0841.JPG +35296,5155,1018,17,0,capped,DSC_0841.JPG +35297,2083,1054,15,0,capped,DSC_0841.JPG +35298,5119,1066,17,0,capped,DSC_0841.JPG +35299,3250,1123,15,0,capped,DSC_0841.JPG +35300,4381,1135,15,0,capped,DSC_0841.JPG +35301,811,1156,15,0,capped,DSC_0841.JPG +35302,1165,1165,15,0,capped,DSC_0841.JPG +35303,1057,1222,15,0,capped,DSC_0841.JPG +35304,2506,1300,15,0,capped,DSC_0841.JPG +35305,3361,1429,17,0,capped,DSC_0841.JPG +35306,2467,1483,15,0,capped,DSC_0841.JPG +35307,3532,1489,15,0,capped,DSC_0841.JPG +35308,5044,1549,15,0,capped,DSC_0841.JPG +35309,4267,1555,15,0,capped,DSC_0841.JPG +35310,628,1573,15,0,capped,DSC_0841.JPG +35311,3880,1615,15,0,capped,DSC_0841.JPG +35312,4405,1669,15,0,capped,DSC_0841.JPG +35313,2674,1720,15,0,capped,DSC_0841.JPG +35314,3946,1729,17,0,capped,DSC_0841.JPG +35315,3736,1732,15,0,capped,DSC_0841.JPG +35316,1024,1759,17,0,capped,DSC_0841.JPG +35317,2002,1771,15,0,capped,DSC_0841.JPG +35318,3631,1783,17,0,capped,DSC_0841.JPG +35319,4684,1783,15,0,capped,DSC_0841.JPG +35320,1549,1819,15,0,capped,DSC_0841.JPG +35321,3592,1840,15,0,capped,DSC_0841.JPG +35322,2539,1945,15,0,capped,DSC_0841.JPG +35323,4291,1957,15,0,capped,DSC_0841.JPG +35324,4639,1957,17,0,capped,DSC_0841.JPG +35326,955,1978,15,0,capped,DSC_0841.JPG +35327,3169,2071,17,0,capped,DSC_0841.JPG +35328,1864,2113,17,0,capped,DSC_0841.JPG +35329,2353,2236,15,0,capped,DSC_0841.JPG +35330,2704,2245,15,0,capped,DSC_0841.JPG +35331,2845,2245,15,0,capped,DSC_0841.JPG +35332,3448,2317,15,0,capped,DSC_0841.JPG +35333,4117,2374,15,0,capped,DSC_0841.JPG +35334,1906,2413,15,0,capped,DSC_0841.JPG +35338,3184,400,15,0,capped,DSC_0841.JPG +35339,3148,463,15,0,capped,DSC_0841.JPG +35340,3292,589,15,0,capped,DSC_0841.JPG +35341,1972,631,17,0,capped,DSC_0841.JPG +35342,2752,649,15,0,capped,DSC_0841.JPG +35343,4246,658,17,0,capped,DSC_0841.JPG +35344,1870,697,17,0,capped,DSC_0841.JPG +35345,4633,718,17,0,capped,DSC_0841.JPG +35346,1759,754,17,0,capped,DSC_0841.JPG +35347,1093,808,15,0,capped,DSC_0841.JPG +35348,4774,835,17,0,capped,DSC_0841.JPG +35349,847,868,15,0,capped,DSC_0841.JPG +35350,1057,868,15,0,capped,DSC_0841.JPG +35351,4318,895,17,0,capped,DSC_0841.JPG +35352,3961,1015,15,0,capped,DSC_0841.JPG +35353,4453,1015,17,0,capped,DSC_0841.JPG +35354,2788,1060,15,0,capped,DSC_0841.JPG +35355,2293,1177,15,0,capped,DSC_0841.JPG +35356,4663,1249,17,0,capped,DSC_0841.JPG +35357,5299,1255,17,0,capped,DSC_0841.JPG +35358,3430,1309,15,0,capped,DSC_0841.JPG +35359,4981,1432,15,0,capped,DSC_0841.JPG +35360,4660,1492,15,0,capped,DSC_0841.JPG +35362,4054,1558,15,0,capped,DSC_0841.JPG +35363,1060,1582,15,0,capped,DSC_0841.JPG +35364,2254,1600,17,0,capped,DSC_0841.JPG +35365,1273,1705,17,0,capped,DSC_0841.JPG +35366,4507,1729,17,0,capped,DSC_0841.JPG +35367,4189,1783,15,0,capped,DSC_0841.JPG +35368,3202,2011,15,0,capped,DSC_0841.JPG +35369,955,2098,15,0,capped,DSC_0841.JPG +35370,1513,2104,15,0,capped,DSC_0841.JPG +35371,1792,2107,15,0,capped,DSC_0841.JPG +35373,1339,2161,15,0,capped,DSC_0841.JPG +35374,2173,2173,15,0,capped,DSC_0841.JPG +35375,2248,2176,15,0,capped,DSC_0841.JPG +35376,3547,2248,15,0,capped,DSC_0841.JPG +35377,3658,2314,15,0,capped,DSC_0841.JPG +35379,3154,331,15,0,capped,DSC_0841.JPG +35380,1978,511,17,0,capped,DSC_0841.JPG +35381,2686,517,15,0,capped,DSC_0841.JPG +35382,3712,835,15,0,capped,DSC_0841.JPG +35383,5200,838,17,0,capped,DSC_0841.JPG +35384,4633,847,17,0,capped,DSC_0841.JPG +35385,4912,964,17,0,capped,DSC_0841.JPG +35386,3463,1012,15,0,capped,DSC_0841.JPG +35387,2575,1183,17,0,capped,DSC_0841.JPG +35389,1684,1342,15,0,capped,DSC_0841.JPG +35390,4312,1375,17,0,capped,DSC_0841.JPG +35391,2896,1489,17,0,capped,DSC_0841.JPG +35392,3955,1492,15,0,capped,DSC_0841.JPG +35393,2287,1540,15,0,capped,DSC_0841.JPG +35394,3988,1558,17,0,capped,DSC_0841.JPG +35395,556,1573,17,0,capped,DSC_0841.JPG +35396,4441,1726,17,0,capped,DSC_0841.JPG +35397,4648,1726,15,0,capped,DSC_0841.JPG +35398,3343,1903,15,0,capped,DSC_0841.JPG +35399,2392,1948,17,0,capped,DSC_0841.JPG +35400,3520,1960,17,0,capped,DSC_0841.JPG +35401,3940,1963,17,0,capped,DSC_0841.JPG +35402,2710,2008,15,0,capped,DSC_0841.JPG +35403,4078,2077,17,0,capped,DSC_0841.JPG +35404,3205,2131,17,0,capped,DSC_0841.JPG +35405,1546,2161,15,0,capped,DSC_0841.JPG +35406,4501,2188,15,0,capped,DSC_0841.JPG +35407,3169,2197,17,0,capped,DSC_0841.JPG +35408,4681,2248,15,0,capped,DSC_0841.JPG +35411,2044,379,15,0,capped,DSC_0841.JPG +35412,3757,400,17,0,capped,DSC_0841.JPG +35413,1936,445,15,0,capped,DSC_0841.JPG +35414,4069,595,15,0,capped,DSC_0841.JPG +35415,1405,625,17,0,capped,DSC_0841.JPG +35416,2470,643,15,0,capped,DSC_0841.JPG +35417,4105,655,17,0,capped,DSC_0841.JPG +35419,1273,751,15,0,capped,DSC_0841.JPG +35420,4666,781,17,0,capped,DSC_0841.JPG +35421,1378,814,17,0,capped,DSC_0841.JPG +35422,1411,871,17,0,capped,DSC_0841.JPG +35423,3526,1015,17,0,capped,DSC_0841.JPG +35424,4837,1072,17,0,capped,DSC_0841.JPG +35425,3532,1129,17,0,capped,DSC_0841.JPG +35426,670,1156,15,0,capped,DSC_0841.JPG +35427,1798,1168,15,0,capped,DSC_0841.JPG +35428,4807,1252,15,0,capped,DSC_0841.JPG +35429,3814,1258,15,0,capped,DSC_0841.JPG +35430,1450,1291,17,0,capped,DSC_0841.JPG +35431,4906,1306,17,0,capped,DSC_0841.JPG +35432,4207,1315,15,0,capped,DSC_0841.JPG +35433,2326,1360,17,0,capped,DSC_0841.JPG +35434,3109,1366,17,0,capped,DSC_0841.JPG +35435,4099,1381,15,0,capped,DSC_0841.JPG +35436,1195,1468,17,0,capped,DSC_0841.JPG +35437,5089,1492,15,0,capped,DSC_0841.JPG +35438,670,1630,17,0,capped,DSC_0841.JPG +35439,4972,1669,15,0,capped,DSC_0841.JPG +35440,5242,1669,15,0,capped,DSC_0841.JPG +35441,3496,1675,17,0,capped,DSC_0841.JPG +35442,1549,1705,15,0,capped,DSC_0841.JPG +35443,1234,1753,15,0,capped,DSC_0841.JPG +35444,4786,1846,17,0,capped,DSC_0841.JPG +35445,2077,1882,15,0,capped,DSC_0841.JPG +35446,2146,2005,17,0,capped,DSC_0841.JPG +35447,4849,2080,17,0,capped,DSC_0841.JPG +35448,1024,2095,17,0,capped,DSC_0841.JPG +35449,4012,2191,15,0,capped,DSC_0841.JPG +35450,916,2278,15,0,capped,DSC_0841.JPG +35451,1966,2290,15,0,capped,DSC_0841.JPG +35452,2518,2299,15,0,capped,DSC_0841.JPG +35453,2737,2311,17,0,capped,DSC_0841.JPG +35454,2707,2434,17,0,capped,DSC_0841.JPG +35456,1405,499,15,0,capped,DSC_0841.JPG +35457,2401,637,17,0,capped,DSC_0841.JPG +35459,3466,652,15,0,capped,DSC_0841.JPG +35460,2998,829,15,0,capped,DSC_0841.JPG +35461,1657,931,15,0,capped,DSC_0841.JPG +35462,4699,958,15,0,capped,DSC_0841.JPG +35463,2962,1009,17,0,capped,DSC_0841.JPG +35464,1306,1045,15,0,capped,DSC_0841.JPG +35465,703,1096,15,0,capped,DSC_0841.JPG +35466,2896,1126,17,0,capped,DSC_0841.JPG +35467,4870,1135,15,0,capped,DSC_0841.JPG +35468,1660,1171,17,0,capped,DSC_0841.JPG +35469,2644,1186,17,0,capped,DSC_0841.JPG +35470,3247,1252,17,0,capped,DSC_0841.JPG +35471,2467,1357,17,0,capped,DSC_0841.JPG +35472,3316,1372,15,0,capped,DSC_0841.JPG +35473,5083,1372,17,0,capped,DSC_0841.JPG +35474,805,1402,15,0,capped,DSC_0841.JPG +35475,4063,1438,15,0,capped,DSC_0841.JPG +35476,2542,1483,15,0,capped,DSC_0841.JPG +35477,4618,1549,15,0,capped,DSC_0841.JPG +35479,1339,1588,17,0,capped,DSC_0841.JPG +35480,1480,1588,15,0,capped,DSC_0841.JPG +35481,880,1636,15,0,capped,DSC_0841.JPG +35482,2149,1654,15,0,capped,DSC_0841.JPG +35483,2362,1654,17,0,capped,DSC_0841.JPG +35484,4090,1726,15,0,capped,DSC_0841.JPG +35485,562,1801,15,0,capped,DSC_0841.JPG +35486,2605,1831,15,0,capped,DSC_0841.JPG +35487,2746,1834,15,0,capped,DSC_0841.JPG +35488,883,1867,15,0,capped,DSC_0841.JPG +35489,2038,1936,17,0,capped,DSC_0841.JPG +35490,3133,2014,15,0,capped,DSC_0841.JPG +35491,3694,2128,15,0,capped,DSC_0841.JPG +35492,1621,2161,15,0,capped,DSC_0841.JPG +35493,2953,2182,15,0,capped,DSC_0841.JPG +35494,1930,2233,15,0,capped,DSC_0841.JPG +35495,1402,2284,15,0,capped,DSC_0841.JPG +35496,934,2341,17,0,capped,DSC_0841.JPG +35497,2209,2356,15,0,capped,DSC_0841.JPG +35501,1795,442,15,0,capped,DSC_0841.JPG +35502,3784,592,15,0,capped,DSC_0841.JPG +35503,3391,652,17,0,capped,DSC_0841.JPG +35504,2218,700,17,0,capped,DSC_0841.JPG +35505,4279,718,17,0,capped,DSC_0841.JPG +35506,4564,724,15,0,capped,DSC_0841.JPG +35507,2185,757,15,0,capped,DSC_0841.JPG +35508,3253,766,17,0,capped,DSC_0841.JPG +35509,1093,925,15,0,capped,DSC_0841.JPG +35510,2296,937,15,0,capped,DSC_0841.JPG +35511,3211,946,17,0,capped,DSC_0841.JPG +35512,5197,955,15,0,capped,DSC_0841.JPG +35513,4414,958,17,0,capped,DSC_0841.JPG +35514,3244,1012,15,0,capped,DSC_0841.JPG +35515,4873,1018,15,0,capped,DSC_0841.JPG +35516,1378,1051,15,0,capped,DSC_0841.JPG +35517,2920,1072,15,0,capped,DSC_0841.JPG +35518,4279,1075,15,0,capped,DSC_0841.JPG +35519,2929,1186,15,0,capped,DSC_0841.JPG +35520,2119,1234,15,0,capped,DSC_0841.JPG +35521,4732,1252,15,0,capped,DSC_0841.JPG +35522,1159,1285,15,0,capped,DSC_0841.JPG +35523,2362,1300,17,0,capped,DSC_0841.JPG +35524,3994,1315,15,0,capped,DSC_0841.JPG +35525,2896,1363,15,0,capped,DSC_0841.JPG +35526,1447,1411,15,0,capped,DSC_0841.JPG +35527,4273,1438,15,0,capped,DSC_0841.JPG +35528,3670,1498,15,0,capped,DSC_0841.JPG +35529,592,1513,15,0,capped,DSC_0841.JPG +35530,2641,1546,15,0,capped,DSC_0841.JPG +35531,1696,1588,15,0,capped,DSC_0841.JPG +35532,4867,1609,15,0,capped,DSC_0841.JPG +35533,1690,1705,17,0,capped,DSC_0841.JPG +35534,2464,1717,15,0,capped,DSC_0841.JPG +35535,4369,1726,15,0,capped,DSC_0841.JPG +35536,4300,1729,15,0,capped,DSC_0841.JPG +35537,3982,1783,15,0,capped,DSC_0841.JPG +35538,4750,1786,15,0,capped,DSC_0841.JPG +35539,3244,1837,15,0,capped,DSC_0841.JPG +35541,4048,1900,15,0,capped,DSC_0841.JPG +35542,1129,1927,15,0,capped,DSC_0841.JPG +35543,4537,2011,15,0,capped,DSC_0841.JPG +35544,5035,2017,17,0,capped,DSC_0841.JPG +35545,3697,2020,17,0,capped,DSC_0841.JPG +35546,1129,2041,15,0,capped,DSC_0841.JPG +35547,1477,2053,15,0,capped,DSC_0841.JPG +35548,3835,2134,15,0,capped,DSC_0841.JPG +35549,3688,2257,17,0,capped,DSC_0841.JPG +35550,1828,2290,15,0,capped,DSC_0841.JPG +35551,2107,2296,17,0,capped,DSC_0841.JPG +35552,2953,2308,15,0,capped,DSC_0841.JPG +35553,1570,2359,17,0,capped,DSC_0841.JPG +35555,2974,2458,17,0,capped,DSC_0841.JPG +35557,3076,466,17,0,capped,DSC_0841.JPG +35558,2617,646,17,0,capped,DSC_0841.JPG +35559,2827,652,17,0,capped,DSC_0841.JPG +35560,4318,655,15,0,capped,DSC_0841.JPG +35561,805,805,15,0,capped,DSC_0841.JPG +35562,2863,829,15,0,capped,DSC_0841.JPG +35563,1270,868,15,0,capped,DSC_0841.JPG +35564,1552,868,15,0,capped,DSC_0841.JPG +35565,2188,994,17,0,capped,DSC_0841.JPG +35566,4102,1015,15,0,capped,DSC_0841.JPG +35567,4066,1075,15,0,capped,DSC_0841.JPG +35568,1546,1108,15,0,capped,DSC_0841.JPG +35569,1693,1228,15,0,capped,DSC_0841.JPG +35570,2572,1303,15,0,capped,DSC_0841.JPG +35571,1228,1405,15,0,capped,DSC_0841.JPG +35572,1165,1642,15,0,capped,DSC_0841.JPG +35573,1726,1648,15,0,capped,DSC_0841.JPG +35574,2857,1663,15,0,capped,DSC_0841.JPG +35575,4576,1729,17,0,capped,DSC_0841.JPG +35576,3526,1732,17,0,capped,DSC_0841.JPG +35577,1870,1768,15,0,capped,DSC_0841.JPG +35578,1201,1819,17,0,capped,DSC_0841.JPG +35579,1975,1828,17,0,capped,DSC_0841.JPG +35580,4717,1840,15,0,capped,DSC_0841.JPG +35581,1096,1870,15,0,capped,DSC_0841.JPG +35582,3907,1900,15,0,capped,DSC_0841.JPG +35583,3628,1903,17,0,capped,DSC_0841.JPG +35584,1480,1933,15,0,capped,DSC_0841.JPG +35585,3133,2131,15,0,capped,DSC_0841.JPG +35586,1408,2167,15,0,capped,DSC_0841.JPG +35587,2041,2179,17,0,capped,DSC_0841.JPG +35588,2527,2179,17,0,capped,DSC_0841.JPG +35589,2638,2239,17,0,capped,DSC_0841.JPG +35590,3340,2248,15,0,capped,DSC_0841.JPG +35591,1222,2347,15,0,capped,DSC_0841.JPG +35594,2788,466,15,0,capped,DSC_0841.JPG +35595,2224,571,17,0,capped,DSC_0841.JPG +35596,1519,691,15,0,capped,DSC_0841.JPG +35597,1798,694,17,0,capped,DSC_0841.JPG +35598,3289,706,15,0,capped,DSC_0841.JPG +35599,2830,769,15,0,capped,DSC_0841.JPG +35600,4243,781,17,0,capped,DSC_0841.JPG +35602,4102,898,15,0,capped,DSC_0841.JPG +35603,3886,901,17,0,capped,DSC_0841.JPG +35604,2224,934,15,0,capped,DSC_0841.JPG +35605,5053,952,17,0,capped,DSC_0841.JPG +35606,1342,982,15,0,capped,DSC_0841.JPG +35607,1198,985,15,0,capped,DSC_0841.JPG +35608,742,1156,17,0,capped,DSC_0841.JPG +35609,1306,1165,17,0,capped,DSC_0841.JPG +35610,1870,1168,15,0,capped,DSC_0841.JPG +35611,3070,1180,17,0,capped,DSC_0841.JPG +35612,4378,1249,17,0,capped,DSC_0841.JPG +35613,4873,1252,15,0,capped,DSC_0841.JPG +35614,4240,1375,15,0,capped,DSC_0841.JPG +35615,592,1396,17,0,capped,DSC_0841.JPG +35616,1021,1402,15,0,capped,DSC_0841.JPG +35617,1939,1414,15,0,capped,DSC_0841.JPG +35618,1867,1417,15,0,capped,DSC_0841.JPG +35619,763,1456,15,0,capped,DSC_0841.JPG +35620,2260,1477,15,0,capped,DSC_0841.JPG +35621,5011,1489,17,0,capped,DSC_0841.JPG +35622,3136,1549,17,0,capped,DSC_0841.JPG +35623,1198,1585,15,0,capped,DSC_0841.JPG +35624,2113,1591,17,0,capped,DSC_0841.JPG +35625,595,1630,17,0,capped,DSC_0841.JPG +35626,1723,1768,17,0,capped,DSC_0841.JPG +35627,2074,1768,15,0,capped,DSC_0841.JPG +35628,3949,1846,15,0,capped,DSC_0841.JPG +35629,2434,1888,17,0,capped,DSC_0841.JPG +35630,4612,2020,17,0,capped,DSC_0841.JPG +35631,4684,2020,17,0,capped,DSC_0841.JPG +35632,4957,2023,17,0,capped,DSC_0841.JPG +35633,1198,2038,15,0,capped,DSC_0841.JPG +35634,1621,2050,15,0,capped,DSC_0841.JPG +35635,2005,2116,15,0,capped,DSC_0841.JPG +35636,1828,2170,15,0,capped,DSC_0841.JPG +35637,3940,2188,15,0,capped,DSC_0841.JPG +35638,2770,2239,15,0,capped,DSC_0841.JPG +35639,3934,2311,17,0,capped,DSC_0841.JPG +35640,4150,2314,15,0,capped,DSC_0841.JPG +35641,2290,2362,17,0,capped,DSC_0841.JPG +35642,1834,511,17,0,capped,DSC_0841.JPG +35643,3322,526,15,0,capped,DSC_0841.JPG +35644,3898,526,15,0,capped,DSC_0841.JPG +35646,1726,568,15,0,capped,DSC_0841.JPG +35647,1480,628,15,0,capped,DSC_0841.JPG +35648,2929,709,15,0,capped,DSC_0841.JPG +35649,4180,778,15,0,capped,DSC_0841.JPG +35650,1303,808,15,0,capped,DSC_0841.JPG +35652,4174,898,15,0,capped,DSC_0841.JPG +35653,4348,958,15,0,capped,DSC_0841.JPG +35654,2044,994,17,0,capped,DSC_0841.JPG +35655,4732,1015,15,0,capped,DSC_0841.JPG +35656,4801,1015,15,0,capped,DSC_0841.JPG +35657,4552,1075,15,0,capped,DSC_0841.JPG +35658,4276,1192,15,0,capped,DSC_0841.JPG +35659,2896,1240,15,0,capped,DSC_0841.JPG +35660,2647,1300,15,0,capped,DSC_0841.JPG +35661,1273,1345,15,0,capped,DSC_0841.JPG +35662,2227,1417,15,0,capped,DSC_0841.JPG +35663,2503,1423,17,0,capped,DSC_0841.JPG +35664,3490,1552,15,0,capped,DSC_0841.JPG +35666,3742,1609,15,0,capped,DSC_0841.JPG +35667,1060,1696,15,0,capped,DSC_0841.JPG +35668,985,1807,17,0,capped,DSC_0841.JPG +35669,2959,1954,15,0,capped,DSC_0841.JPG +35670,3031,1954,15,0,capped,DSC_0841.JPG +35671,1165,1984,15,0,capped,DSC_0841.JPG +35672,2005,1993,17,0,capped,DSC_0841.JPG +35673,2776,2011,17,0,capped,DSC_0841.JPG +35674,2461,2065,15,0,capped,DSC_0841.JPG +35675,3661,2071,15,0,capped,DSC_0841.JPG +35676,4042,2128,15,0,capped,DSC_0841.JPG +35678,3832,2254,15,0,capped,DSC_0841.JPG +35679,2245,2299,15,0,capped,DSC_0841.JPG +35680,2320,2305,17,0,capped,DSC_0841.JPG +35681,4009,2314,15,0,capped,DSC_0841.JPG +35683,2149,445,17,0,capped,DSC_0841.JPG +35684,3361,463,15,0,capped,DSC_0841.JPG +35686,4525,778,16,0,capped,DSC_0841.JPG +35687,3043,883,15,0,capped,DSC_0841.JPG +35688,3247,889,17,0,capped,DSC_0841.JPG +35689,4555,955,17,0,capped,DSC_0841.JPG +35690,1837,988,17,0,capped,DSC_0841.JPG +35691,2539,1000,17,0,capped,DSC_0841.JPG +35692,2824,1003,15,0,capped,DSC_0841.JPG +35693,2755,1006,17,0,capped,DSC_0841.JPG +35694,2224,1057,15,0,capped,DSC_0841.JPG +35695,4837,1192,15,0,capped,DSC_0841.JPG +35696,1234,1285,17,0,capped,DSC_0841.JPG +35699,4732,1492,17,0,capped,DSC_0841.JPG +35700,4876,1498,17,0,capped,DSC_0841.JPG +35701,1381,1528,17,0,capped,DSC_0841.JPG +35702,3283,1549,17,0,capped,DSC_0841.JPG +35703,4333,1558,17,0,capped,DSC_0841.JPG +35704,4651,1615,17,0,capped,DSC_0841.JPG +35705,2497,1663,17,0,capped,DSC_0841.JPG +35706,4612,1669,15,0,capped,DSC_0841.JPG +35707,2182,1711,15,0,capped,DSC_0841.JPG +35708,4864,1729,17,0,capped,DSC_0841.JPG +35709,2851,1783,15,0,capped,DSC_0841.JPG +35710,1270,1816,15,0,capped,DSC_0841.JPG +35711,811,1867,15,0,capped,DSC_0841.JPG +35712,3550,1900,15,0,capped,DSC_0841.JPG +35713,847,1921,15,0,capped,DSC_0841.JPG +35714,775,1924,15,0,capped,DSC_0841.JPG +35715,913,1927,15,0,capped,DSC_0841.JPG +35716,3979,2011,15,0,capped,DSC_0841.JPG +35717,4504,2068,17,0,capped,DSC_0841.JPG +35718,4600,2128,17,0,capped,DSC_0841.JPG +35719,3061,2134,15,0,capped,DSC_0841.JPG +35720,775,2161,17,0,capped,DSC_0841.JPG +35721,4225,2188,17,0,capped,DSC_0841.JPG +35723,2077,2356,17,0,capped,DSC_0841.JPG +35726,1618,505,15,0,capped,DSC_0841.JPG +35727,3184,526,15,0,capped,DSC_0841.JPG +35728,2014,817,15,0,capped,DSC_0841.JPG +35729,1024,928,17,0,capped,DSC_0841.JPG +35730,2470,997,17,0,capped,DSC_0841.JPG +35731,3283,1069,15,0,capped,DSC_0841.JPG +35732,2824,1123,15,0,capped,DSC_0841.JPG +35733,5308,1129,15,0,capped,DSC_0841.JPG +35734,5158,1369,17,0,capped,DSC_0841.JPG +35735,2395,1600,15,0,capped,DSC_0841.JPG +35736,1759,1708,15,0,capped,DSC_0841.JPG +35737,1375,1759,15,0,capped,DSC_0841.JPG +35738,4822,1786,15,0,capped,DSC_0841.JPG +35739,4291,1840,15,0,capped,DSC_0841.JPG +35740,3310,1843,15,0,capped,DSC_0841.JPG +35741,3802,1966,17,0,capped,DSC_0841.JPG +35742,2497,2002,15,0,capped,DSC_0841.JPG +35743,1342,2047,15,0,capped,DSC_0841.JPG +35745,3379,2191,15,0,capped,DSC_0841.JPG +35746,4360,2305,15,0,capped,DSC_0841.JPG +35748,2575,2362,17,0,capped,DSC_0841.JPG +35749,3340,2377,15,0,capped,DSC_0841.JPG +35751,3250,391,17,0,capped,DSC_0841.JPG +35752,2296,448,15,0,capped,DSC_0841.JPG +35753,3073,709,15,0,capped,DSC_0841.JPG +35754,2047,754,15,0,capped,DSC_0841.JPG +35755,775,1102,17,0,capped,DSC_0841.JPG +35756,4624,1309,15,0,capped,DSC_0841.JPG +35757,2116,1474,17,0,capped,DSC_0841.JPG +35758,2752,1483,17,0,capped,DSC_0841.JPG +35759,805,1519,15,0,capped,DSC_0841.JPG +35760,3424,1552,15,0,capped,DSC_0841.JPG +35761,3775,1555,15,0,capped,DSC_0841.JPG +35762,1027,1642,15,0,capped,DSC_0841.JPG +35763,4474,1669,15,0,capped,DSC_0841.JPG +35764,4900,1777,15,0,capped,DSC_0841.JPG +35765,2041,1828,15,0,capped,DSC_0841.JPG +35766,3979,1897,15,0,capped,DSC_0841.JPG +35767,3478,1900,17,0,capped,DSC_0841.JPG +35768,1828,1942,15,0,capped,DSC_0841.JPG +35769,4576,1957,17,0,capped,DSC_0841.JPG +35770,1024,1984,17,0,capped,DSC_0841.JPG +35771,1306,2104,15,0,capped,DSC_0841.JPG +35772,4255,2128,15,0,capped,DSC_0841.JPG +35773,1792,2365,17,0,capped,DSC_0841.JPG +35774,2884,2452,17,0,capped,DSC_0841.JPG +35775,3331,397,17,0,capped,DSC_0841.JPG +35776,3793,463,17,0,capped,DSC_0841.JPG +35777,3718,469,15,0,capped,DSC_0841.JPG +35778,4033,538,17,0,capped,DSC_0841.JPG +35779,1654,568,15,0,capped,DSC_0841.JPG +35780,3076,589,15,0,capped,DSC_0841.JPG +35781,2329,640,15,0,capped,DSC_0841.JPG +35782,3466,772,17,0,capped,DSC_0841.JPG +35783,4984,838,17,0,capped,DSC_0841.JPG +35784,2608,883,17,0,capped,DSC_0841.JPG +35785,3466,892,15,0,capped,DSC_0841.JPG +35786,2644,940,15,0,capped,DSC_0841.JPG +35787,3847,1075,15,0,capped,DSC_0841.JPG +35788,4486,1078,15,0,capped,DSC_0841.JPG +35789,1204,1108,17,0,capped,DSC_0841.JPG +35790,4621,1189,17,0,capped,DSC_0841.JPG +35791,3847,1192,15,0,capped,DSC_0841.JPG +35792,4981,1192,15,0,capped,DSC_0841.JPG +35793,2440,1300,15,0,capped,DSC_0841.JPG +35794,1336,1468,15,0,capped,DSC_0841.JPG +35795,1546,1468,17,0,capped,DSC_0841.JPG +35796,3391,1486,17,0,capped,DSC_0841.JPG +35797,3241,1618,15,0,capped,DSC_0841.JPG +35798,1444,1648,17,0,capped,DSC_0841.JPG +35799,5008,1726,15,0,capped,DSC_0841.JPG +35800,742,1753,15,0,capped,DSC_0841.JPG +35801,952,1753,15,0,capped,DSC_0841.JPG +35802,3382,1843,15,0,capped,DSC_0841.JPG +35803,5002,1849,17,0,capped,DSC_0841.JPG +35804,2221,1888,15,0,capped,DSC_0841.JPG +35805,2992,1894,17,0,capped,DSC_0841.JPG +35806,3697,1903,17,0,capped,DSC_0841.JPG +35807,994,1924,15,0,capped,DSC_0841.JPG +35808,2743,1951,15,0,capped,DSC_0841.JPG +35809,913,2041,17,0,capped,DSC_0841.JPG +35810,1969,2056,15,0,capped,DSC_0841.JPG +35811,2812,2071,15,0,capped,DSC_0841.JPG +35812,4642,2077,17,0,capped,DSC_0841.JPG +35813,2350,2122,17,0,capped,DSC_0841.JPG +35814,4150,2191,15,0,capped,DSC_0841.JPG +35815,3412,2248,17,0,capped,DSC_0841.JPG +35816,1543,2287,15,0,capped,DSC_0841.JPG +35817,3376,2305,17,0,capped,DSC_0841.JPG +35819,2617,2419,15,0,capped,DSC_0841.JPG +35820,1387,2524,17,0,capped,DSC_0841.JPG +35821,3610,529,15,0,capped,DSC_0841.JPG +35822,1798,565,17,0,capped,DSC_0841.JPG +35823,3535,772,15,0,capped,DSC_0841.JPG +35824,3745,895,15,0,capped,DSC_0841.JPG +35825,4594,898,15,0,capped,DSC_0841.JPG +35826,5017,898,15,0,capped,DSC_0841.JPG +35827,3640,949,17,0,capped,DSC_0841.JPG +35828,805,1039,15,0,capped,DSC_0841.JPG +35829,4345,1075,17,0,capped,DSC_0841.JPG +35830,5188,1078,17,0,capped,DSC_0841.JPG +35831,2719,1306,17,0,capped,DSC_0841.JPG +35832,3355,1312,17,0,capped,DSC_0841.JPG +35833,1762,1351,17,0,capped,DSC_0841.JPG +35834,1837,1354,15,0,capped,DSC_0841.JPG +35835,1090,1405,15,0,capped,DSC_0841.JPG +35836,1720,1414,15,0,capped,DSC_0841.JPG +35837,3214,1426,15,0,capped,DSC_0841.JPG +35838,2959,1486,17,0,capped,DSC_0841.JPG +35839,4588,1492,15,0,capped,DSC_0841.JPG +35840,4099,1495,17,0,capped,DSC_0841.JPG +35841,3061,1546,15,0,capped,DSC_0841.JPG +35842,3598,1612,17,0,capped,DSC_0841.JPG +35843,4516,1612,15,0,capped,DSC_0841.JPG +35844,1789,1654,15,0,capped,DSC_0841.JPG +35845,772,1693,17,0,capped,DSC_0841.JPG +35846,847,1696,17,0,capped,DSC_0841.JPG +35847,3382,1726,15,0,capped,DSC_0841.JPG +35848,3907,1786,15,0,capped,DSC_0841.JPG +35849,1384,1876,15,0,capped,DSC_0841.JPG +35850,4531,1897,17,0,capped,DSC_0841.JPG +35851,3421,1900,15,0,capped,DSC_0841.JPG +35852,3163,1957,17,0,capped,DSC_0841.JPG +35853,4360,1957,17,0,capped,DSC_0841.JPG +35854,3058,2011,17,0,capped,DSC_0841.JPG +35855,3316,2074,15,0,capped,DSC_0841.JPG +35856,811,2221,17,0,capped,DSC_0841.JPG +35857,3481,2257,15,0,capped,DSC_0841.JPG +35858,2038,2299,15,0,capped,DSC_0841.JPG +35860,3199,2374,17,0,capped,DSC_0841.JPG +35861,2974,388,15,0,capped,DSC_0841.JPG +35862,2509,448,15,0,capped,DSC_0841.JPG +35863,3499,832,15,0,capped,DSC_0841.JPG +35864,4207,832,17,0,capped,DSC_0841.JPG +35865,2752,886,15,0,capped,DSC_0841.JPG +35866,2821,889,17,0,capped,DSC_0841.JPG +35867,2509,940,15,0,capped,DSC_0841.JPG +35868,2965,1126,17,0,capped,DSC_0841.JPG +35869,4237,1138,15,0,capped,DSC_0841.JPG +35870,1237,1165,15,0,capped,DSC_0841.JPG +35871,1516,1168,15,0,capped,DSC_0841.JPG +35872,1303,1282,15,0,capped,DSC_0841.JPG +35873,1903,1351,15,0,capped,DSC_0841.JPG +35874,2539,1363,17,0,capped,DSC_0841.JPG +35875,3463,1366,15,0,capped,DSC_0841.JPG +35876,4945,1375,15,0,capped,DSC_0841.JPG +35877,1516,1414,15,0,capped,DSC_0841.JPG +35878,2365,1420,15,0,capped,DSC_0841.JPG +35879,2857,1423,17,0,capped,DSC_0841.JPG +35880,4759,1429,17,0,capped,DSC_0841.JPG +35881,919,1462,17,0,capped,DSC_0841.JPG +35882,772,1582,17,0,capped,DSC_0841.JPG +35883,4723,1612,15,0,capped,DSC_0841.JPG +35885,3202,1666,15,0,capped,DSC_0841.JPG +35886,1975,1708,15,0,capped,DSC_0841.JPG +35887,2998,1780,15,0,capped,DSC_0841.JPG +35888,5104,1783,17,0,capped,DSC_0841.JPG +35889,5038,1786,15,0,capped,DSC_0841.JPG +35890,3100,1840,17,0,capped,DSC_0841.JPG +35891,4642,1840,15,0,capped,DSC_0841.JPG +35892,4930,1849,15,0,capped,DSC_0841.JPG +35893,952,1870,17,0,capped,DSC_0841.JPG +35894,4150,1957,15,0,capped,DSC_0841.JPG +35895,3268,2128,17,0,capped,DSC_0841.JPG +35896,3865,2185,17,0,capped,DSC_0841.JPG +35897,3793,2200,17,0,capped,DSC_0841.JPG +35898,2986,2245,15,0,capped,DSC_0841.JPG +35900,1435,2338,17,0,capped,DSC_0841.JPG +35901,2929,2365,15,0,capped,DSC_0841.JPG +35902,2155,2431,15,0,capped,DSC_0841.JPG +35907,4000,592,17,0,capped,DSC_0841.JPG +35908,3817,652,15,0,capped,DSC_0841.JPG +35909,913,868,17,0,capped,DSC_0841.JPG +35910,1483,871,15,0,capped,DSC_0841.JPG +35911,1729,931,15,0,capped,DSC_0841.JPG +35912,3997,955,17,0,capped,DSC_0841.JPG +35913,3106,1129,17,0,capped,DSC_0841.JPG +35914,4204,1186,15,0,capped,DSC_0841.JPG +35915,5014,1249,17,0,capped,DSC_0841.JPG +35916,3745,1252,15,0,capped,DSC_0841.JPG +35917,811,1282,15,0,capped,DSC_0841.JPG +35918,3073,1303,15,0,capped,DSC_0841.JPG +35919,3676,1375,15,0,capped,DSC_0841.JPG +35920,3427,1432,15,0,capped,DSC_0841.JPG +35921,3250,1492,15,0,capped,DSC_0841.JPG +35922,3568,1552,15,0,capped,DSC_0841.JPG +35923,4903,1552,15,0,capped,DSC_0841.JPG +35924,1123,1585,17,0,capped,DSC_0841.JPG +35925,1831,1588,17,0,capped,DSC_0841.JPG +35926,2674,1603,15,0,capped,DSC_0841.JPG +35927,2962,1606,15,0,capped,DSC_0841.JPG +35928,3034,1606,15,0,capped,DSC_0841.JPG +35929,1342,1702,15,0,capped,DSC_0841.JPG +35930,847,1804,17,0,capped,DSC_0841.JPG +35931,2185,1828,17,0,capped,DSC_0841.JPG +35932,2257,1828,15,0,capped,DSC_0841.JPG +35933,4084,1843,15,0,capped,DSC_0841.JPG +35936,1165,2095,17,0,capped,DSC_0841.JPG +35937,4681,2131,15,0,capped,DSC_0841.JPG +35939,658,2206,15,0,capped,DSC_0841.JPG +35940,1264,2281,15,0,capped,DSC_0841.JPG +35941,2812,2308,15,0,capped,DSC_0841.JPG +35942,4255,2374,15,0,capped,DSC_0841.JPG +35945,2653,325,17,0,capped,DSC_0841.JPG +35947,5056,838,15,0,capped,DSC_0841.JPG +35948,985,874,15,0,capped,DSC_0841.JPG +35949,4624,961,15,0,capped,DSC_0841.JPG +35950,2686,1006,17,0,capped,DSC_0841.JPG +35951,940,1153,17,0,capped,DSC_0841.JPG +35952,2011,1294,15,0,capped,DSC_0841.JPG +35953,4696,1306,17,0,capped,DSC_0841.JPG +35954,4552,1312,15,0,capped,DSC_0841.JPG +35955,2044,1357,15,0,capped,DSC_0841.JPG +35956,2965,1366,17,0,capped,DSC_0841.JPG +35957,3601,1489,15,0,capped,DSC_0841.JPG +35958,4690,1552,15,0,capped,DSC_0841.JPG +35959,3316,1606,17,0,capped,DSC_0841.JPG +35960,4234,1615,17,0,capped,DSC_0841.JPG +35961,3562,1672,15,0,capped,DSC_0841.JPG +35962,487,1681,17,0,capped,DSC_0841.JPG +35963,997,1702,15,0,capped,DSC_0841.JPG +35964,3094,1723,17,0,capped,DSC_0841.JPG +35965,3064,1780,15,0,capped,DSC_0841.JPG +35966,1624,1819,15,0,capped,DSC_0841.JPG +35967,5068,1840,15,0,capped,DSC_0841.JPG +35968,3061,1897,15,0,capped,DSC_0841.JPG +35969,3421,2020,15,0,capped,DSC_0841.JPG +35970,2389,2065,15,0,capped,DSC_0841.JPG +35971,2599,2185,15,0,capped,DSC_0841.JPG +35972,4783,2191,17,0,capped,DSC_0841.JPG +35973,4042,2251,17,0,capped,DSC_0841.JPG +35974,3163,2311,15,0,capped,DSC_0841.JPG +35975,4222,2314,17,0,capped,DSC_0841.JPG +35977,1342,2428,15,0,capped,DSC_0841.JPG +35978,1972,379,17,0,capped,DSC_0841.JPG +35979,3046,391,15,0,capped,DSC_0841.JPG +35980,1837,631,15,0,capped,DSC_0841.JPG +35982,1792,1294,15,0,capped,DSC_0841.JPG +35983,5266,1303,15,0,capped,DSC_0841.JPG +35984,625,1450,15,0,capped,DSC_0841.JPG +35985,3031,1489,15,0,capped,DSC_0841.JPG +35986,3637,1552,15,0,capped,DSC_0841.JPG +35987,4795,1609,15,0,capped,DSC_0841.JPG +35988,5149,1609,17,0,capped,DSC_0841.JPG +35989,3913,1672,15,0,capped,DSC_0841.JPG +35991,2254,1942,15,0,capped,DSC_0841.JPG +35992,4993,2071,17,0,capped,DSC_0841.JPG +35993,4816,2131,17,0,capped,DSC_0841.JPG +35994,3541,2134,17,0,capped,DSC_0841.JPG +35995,4363,2185,15,0,capped,DSC_0841.JPG +35996,4708,2188,17,0,capped,DSC_0841.JPG +35997,3277,2254,15,0,capped,DSC_0841.JPG +35998,3091,2305,17,0,capped,DSC_0841.JPG +35999,3724,2317,17,0,capped,DSC_0841.JPG +36004,3397,529,15,0,capped,DSC_0841.JPG +36005,2506,706,17,0,capped,DSC_0841.JPG +36006,4210,715,15,0,capped,DSC_0841.JPG +36007,4492,721,15,0,capped,DSC_0841.JPG +36008,1948,814,15,0,capped,DSC_0841.JPG +36011,1582,1291,17,0,capped,DSC_0841.JPG +36012,5194,1303,15,0,capped,DSC_0841.JPG +36013,3211,1306,17,0,capped,DSC_0841.JPG +36014,2995,1660,17,0,capped,DSC_0841.JPG +36016,3274,1885,15,0,capped,DSC_0841.JPG +36017,1273,1930,17,0,capped,DSC_0841.JPG +36018,3661,1963,15,0,capped,DSC_0841.JPG +36019,4327,2137,17,0,capped,DSC_0841.JPG +36020,1441,2227,15,0,capped,DSC_0841.JPG +36021,1792,2227,15,0,capped,DSC_0841.JPG +36022,4750,2248,15,0,capped,DSC_0841.JPG +36023,2371,2380,15,0,capped,DSC_0841.JPG +36024,2905,385,15,0,capped,DSC_0841.JPG +36025,1765,508,15,0,capped,DSC_0841.JPG +36026,2194,517,16,0,capped,DSC_0841.JPG +36027,4219,598,16,0,capped,DSC_0841.JPG +36028,3856,715,17,0,capped,DSC_0841.JPG +36029,3277,829,17,0,capped,DSC_0841.JPG +36030,847,985,16,0,capped,DSC_0841.JPG +36031,2506,1060,15,0,capped,DSC_0841.JPG +36032,3145,1066,15,0,capped,DSC_0841.JPG +36033,2617,1117,17,0,capped,DSC_0841.JPG +36034,3604,1132,15,0,capped,DSC_0841.JPG +36035,1093,1165,15,0,capped,DSC_0841.JPG +36036,1939,1177,17,0,capped,DSC_0841.JPG +36037,2221,1297,17,0,capped,DSC_0841.JPG +36038,3733,1492,15,0,capped,DSC_0841.JPG +36039,1867,1654,15,0,capped,DSC_0841.JPG +36040,628,1693,17,0,capped,DSC_0841.JPG +36041,2818,1723,17,0,capped,DSC_0841.JPG +36042,4468,1789,15,0,capped,DSC_0841.JPG +36043,4081,1963,17,0,capped,DSC_0841.JPG +36044,1651,2110,15,0,capped,DSC_0841.JPG +36045,4111,2128,17,0,capped,DSC_0841.JPG +36046,2671,2179,17,0,capped,DSC_0841.JPG +36047,3199,2248,17,0,capped,DSC_0841.JPG +36048,850,2272,17,0,capped,DSC_0841.JPG +36051,3043,517,15,0,capped,DSC_0841.JPG +36052,4459,661,17,0,capped,DSC_0841.JPG +36053,3316,886,15,0,capped,DSC_0841.JPG +36054,4315,1015,15,0,capped,DSC_0841.JPG +36055,4234,1018,15,0,capped,DSC_0841.JPG +36056,5368,1057,17,0,capped,DSC_0841.JPG +36057,2509,1177,15,0,capped,DSC_0841.JPG +36058,3640,1192,15,0,capped,DSC_0841.JPG +36059,775,1345,17,0,capped,DSC_0841.JPG +36061,3148,1426,15,0,capped,DSC_0841.JPG +36062,3313,1735,15,0,capped,DSC_0841.JPG +36064,1018,1864,15,0,capped,DSC_0841.JPG +36065,745,1867,17,0,capped,DSC_0841.JPG +36066,2923,1894,15,0,capped,DSC_0841.JPG +36067,4258,1900,15,0,capped,DSC_0841.JPG +36068,3307,1960,15,0,capped,DSC_0841.JPG +36069,4393,2011,15,0,capped,DSC_0841.JPG +36070,2110,2059,15,0,capped,DSC_0841.JPG +36071,4789,2077,15,0,capped,DSC_0841.JPG +36072,4645,2185,15,0,capped,DSC_0841.JPG +36073,1153,2218,15,0,capped,DSC_0841.JPG +36074,1651,2227,17,0,capped,DSC_0841.JPG +36075,2911,2248,15,0,capped,DSC_0841.JPG +36076,1867,2350,15,0,capped,DSC_0841.JPG +36077,2005,2359,15,0,capped,DSC_0841.JPG +36078,2770,2374,15,0,capped,DSC_0841.JPG +36080,3217,466,15,0,capped,DSC_0841.JPG +36081,1129,748,15,0,capped,DSC_0841.JPG +36082,1621,754,17,0,capped,DSC_0841.JPG +36083,5092,778,15,0,capped,DSC_0841.JPG +36084,3214,823,17,0,capped,DSC_0841.JPG +36085,2290,1291,15,0,capped,DSC_0841.JPG +36086,949,1402,15,0,capped,DSC_0841.JPG +36087,2647,1429,17,0,capped,DSC_0841.JPG +36088,4207,1438,15,0,capped,DSC_0841.JPG +36089,841,1459,15,0,capped,DSC_0841.JPG +36090,1483,1471,17,0,capped,DSC_0841.JPG +36091,1447,1531,15,0,capped,DSC_0841.JPG +36092,2503,1543,15,0,capped,DSC_0841.JPG +36093,3379,1606,15,0,capped,DSC_0841.JPG +36094,3523,1843,15,0,capped,DSC_0841.JPG +36095,2818,1954,17,0,capped,DSC_0841.JPG +36096,5110,2017,15,0,capped,DSC_0841.JPG +36097,3763,2128,15,0,capped,DSC_0841.JPG +36098,3061,2248,15,0,capped,DSC_0841.JPG +36099,4534,2248,15,0,capped,DSC_0841.JPG +36100,2140,2362,15,0,capped,DSC_0841.JPG +36101,3547,2377,17,0,capped,DSC_0841.JPG +36102,3904,2377,15,0,capped,DSC_0841.JPG +36103,1663,2488,17,0,capped,DSC_0841.JPG +36106,1720,448,17,0,capped,DSC_0841.JPG +36107,3292,457,17,0,capped,DSC_0841.JPG +36108,2545,514,15,0,capped,DSC_0841.JPG +36109,3112,520,17,0,capped,DSC_0841.JPG +36110,3685,523,17,0,capped,DSC_0841.JPG +36111,3508,586,17,0,capped,DSC_0841.JPG +36112,3217,589,17,0,capped,DSC_0841.JPG +36113,1618,625,17,0,capped,DSC_0841.JPG +36114,3313,772,17,0,capped,DSC_0841.JPG +36115,4909,832,17,0,capped,DSC_0841.JPG +36116,3106,889,15,0,capped,DSC_0841.JPG +36117,3031,1126,15,0,capped,DSC_0841.JPG +36118,3037,1369,15,0,capped,DSC_0841.JPG +36119,4621,1429,17,0,capped,DSC_0841.JPG +36120,4834,1549,15,0,capped,DSC_0841.JPG +36121,5071,1726,15,0,capped,DSC_0841.JPG +36122,3235,1732,17,0,capped,DSC_0841.JPG +36123,4051,1786,15,0,capped,DSC_0841.JPG +36124,664,2089,15,0,capped,DSC_0841.JPG +36125,4114,2248,15,0,capped,DSC_0841.JPG +36129,3505,457,17,0,capped,DSC_0841.JPG +36130,2818,526,17,0,capped,DSC_0841.JPG +36131,3463,529,15,0,capped,DSC_0841.JPG +36132,2152,694,15,0,capped,DSC_0841.JPG +36133,4813,775,15,0,capped,DSC_0841.JPG +36134,1165,808,15,0,capped,DSC_0841.JPG +36135,3352,826,15,0,capped,DSC_0841.JPG +36136,3541,892,15,0,capped,DSC_0841.JPG +36137,4456,901,17,0,capped,DSC_0841.JPG +36139,1660,1051,15,0,capped,DSC_0841.JPG +36140,2677,1126,17,0,capped,DSC_0841.JPG +36141,3319,1132,17,0,capped,DSC_0841.JPG +36143,2539,1240,17,0,capped,DSC_0841.JPG +36145,2677,1486,15,0,capped,DSC_0841.JPG +36146,5116,1549,17,0,capped,DSC_0841.JPG +36147,5176,1552,15,0,capped,DSC_0841.JPG +36148,3202,1780,15,0,capped,DSC_0841.JPG +36149,4612,1780,17,0,capped,DSC_0841.JPG +36150,4297,2065,17,0,capped,DSC_0841.JPG +36151,4711,2077,15,0,capped,DSC_0841.JPG +36152,3415,2125,15,0,capped,DSC_0841.JPG +36153,3343,2137,17,0,capped,DSC_0841.JPG +36154,3121,2251,17,0,capped,DSC_0841.JPG +36155,4186,2251,15,0,capped,DSC_0841.JPG +36156,1753,2287,15,0,capped,DSC_0841.JPG +36157,3298,2314,15,0,capped,DSC_0841.JPG +36158,4084,2314,17,0,capped,DSC_0841.JPG +36159,1645,2347,17,0,capped,DSC_0841.JPG +36160,3265,2377,15,0,capped,DSC_0841.JPG +36162,2077,2428,17,0,capped,DSC_0841.JPG +36164,2227,445,17,0,capped,DSC_0841.JPG +36165,2443,448,17,0,capped,DSC_0841.JPG +36166,2755,520,15,0,capped,DSC_0841.JPG +36167,4285,598,17,0,capped,DSC_0841.JPG +36168,4357,598,17,0,capped,DSC_0841.JPG +36170,3430,706,17,0,capped,DSC_0841.JPG +36171,2968,766,15,0,capped,DSC_0841.JPG +36172,3427,832,15,0,capped,DSC_0841.JPG +36173,2896,889,15,0,capped,DSC_0841.JPG +36174,3466,1129,17,0,capped,DSC_0841.JPG +36175,4732,1135,15,0,capped,DSC_0841.JPG +36176,3172,1246,15,0,capped,DSC_0841.JPG +36177,5254,1441,17,0,capped,DSC_0841.JPG +36178,3994,1444,15,0,capped,DSC_0841.JPG +36179,4096,1618,17,0,capped,DSC_0841.JPG +36181,3418,1783,17,0,capped,DSC_0841.JPG +36182,3553,1786,17,0,capped,DSC_0841.JPG +36183,3349,1789,15,0,capped,DSC_0841.JPG +36184,3127,1906,17,0,capped,DSC_0841.JPG +36185,2641,2011,17,0,capped,DSC_0841.JPG +36186,1693,2053,15,0,capped,DSC_0841.JPG +36187,2953,2065,17,0,capped,DSC_0841.JPG +36188,631,2152,17,0,capped,DSC_0841.JPG +36189,4081,2191,17,0,capped,DSC_0841.JPG +36190,1228,2218,17,0,capped,DSC_0841.JPG +36191,1498,2356,17,0,capped,DSC_0841.JPG +36192,3697,2371,17,0,capped,DSC_0841.JPG +36194,3964,523,17,0,capped,DSC_0841.JPG +36195,883,922,15,0,capped,DSC_0841.JPG +36196,4765,1546,15,0,capped,DSC_0841.JPG +36197,706,1804,15,0,capped,DSC_0841.JPG +36198,4498,1843,15,0,capped,DSC_0841.JPG +36199,4573,1843,15,0,capped,DSC_0841.JPG +36200,4819,1900,15,0,capped,DSC_0841.JPG +36201,5068,1960,15,0,capped,DSC_0841.JPG +36203,3298,2197,15,0,capped,DSC_0841.JPG +36204,781,2278,17,0,capped,DSC_0841.JPG +36205,4498,2308,15,0,capped,DSC_0841.JPG +36206,2992,2371,15,0,capped,DSC_0841.JPG +36207,1522,2428,17,0,capped,DSC_0841.JPG +36209,2938,457,15,0,capped,DSC_0841.JPG +36210,4426,601,15,0,capped,DSC_0841.JPG +36212,3745,661,17,0,capped,DSC_0841.JPG +36213,4354,838,15,0,capped,DSC_0841.JPG +36215,2824,1237,15,0,capped,DSC_0841.JPG +36216,4762,1678,15,0,capped,DSC_0841.JPG +36217,3169,1846,15,0,capped,DSC_0841.JPG +36218,3457,1954,17,0,capped,DSC_0841.JPG +36219,4789,1957,17,0,capped,DSC_0841.JPG +36220,3373,1969,15,0,capped,DSC_0841.JPG +36221,3475,2131,15,0,capped,DSC_0841.JPG +36222,2554,2242,17,0,capped,DSC_0841.JPG +36223,2173,2299,15,0,capped,DSC_0841.JPG +36224,2842,2365,15,0,capped,DSC_0841.JPG +36226,1438,565,15,0,capped,DSC_0841.JPG +36227,2365,697,15,0,capped,DSC_0841.JPG +36228,3961,1132,15,0,capped,DSC_0841.JPG +36230,5050,1432,17,0,capped,DSC_0841.JPG +36231,4942,1492,15,0,capped,DSC_0841.JPG +36232,5005,1615,17,0,capped,DSC_0841.JPG +36233,5179,1786,17,0,capped,DSC_0841.JPG +36234,490,1804,15,0,capped,DSC_0841.JPG +36235,4150,2083,17,0,capped,DSC_0841.JPG +36236,4432,2185,15,0,capped,DSC_0841.JPG +36237,3862,2311,15,0,capped,DSC_0841.JPG +36238,1441,2407,15,0,capped,DSC_0841.JPG +36240,2251,2464,17,0,capped,DSC_0841.JPG +36241,1324,2533,17,0,capped,DSC_0841.JPG +36243,3541,400,15,0,capped,DSC_0841.JPG +36244,3649,595,15,0,capped,DSC_0841.JPG +36246,2896,652,15,0,capped,DSC_0841.JPG +36248,1513,1645,15,0,capped,DSC_0841.JPG +36249,4009,1735,15,0,capped,DSC_0841.JPG +36250,1129,2272,15,0,capped,DSC_0841.JPG +36251,2701,2356,15,0,capped,DSC_0841.JPG +36252,4048,2374,15,0,capped,DSC_0841.JPG +36254,772,979,17,0,capped,DSC_0841.JPG +36255,2221,1174,15,0,capped,DSC_0841.JPG +36256,3007,1195,17,0,capped,DSC_0841.JPG +36257,5173,1489,17,0,capped,DSC_0841.JPG +36258,5215,1606,15,0,capped,DSC_0841.JPG +36259,2929,1663,15,0,capped,DSC_0841.JPG +36260,3268,1780,15,0,capped,DSC_0841.JPG +36261,4816,2017,17,0,capped,DSC_0841.JPG +36262,3766,2023,17,0,capped,DSC_0841.JPG +36263,4180,2371,17,0,capped,DSC_0841.JPG +36265,3406,2452,17,0,capped,DSC_0841.JPG +36268,2188,382,15,0,capped,DSC_0841.JPG +36270,3148,1186,15,0,capped,DSC_0841.JPG +36271,3175,1369,17,0,capped,DSC_0841.JPG +36273,2635,2350,17,0,capped,DSC_0841.JPG +36274,2788,2452,17,0,capped,DSC_0841.JPG +36276,3055,2458,17,0,capped,DSC_0841.JPG +36278,1192,2512,17,0,capped,DSC_0841.JPG +36280,1909,382,17,0,capped,DSC_0841.JPG +36281,2863,460,15,0,capped,DSC_0841.JPG +36282,4525,658,17,0,capped,DSC_0841.JPG +36283,1234,691,17,0,capped,DSC_0841.JPG +36284,5029,784,17,0,capped,DSC_0841.JPG +36286,3169,1723,17,0,capped,DSC_0841.JPG +36287,5029,1900,17,0,capped,DSC_0841.JPG +36288,3907,2020,17,0,capped,DSC_0841.JPG +36289,955,2212,17,0,capped,DSC_0841.JPG +36290,3583,2305,17,0,capped,DSC_0841.JPG +36291,2539,2419,17,0,capped,DSC_0841.JPG +36292,1627,2434,17,0,capped,DSC_0841.JPG +36293,3613,2443,17,0,capped,DSC_0841.JPG +36294,1657,451,15,0,capped,DSC_0841.JPG +36295,3040,646,17,0,capped,DSC_0841.JPG +36296,1333,1111,15,0,capped,DSC_0841.JPG +36298,2992,1543,15,0,capped,DSC_0841.JPG +36299,3214,1552,17,0,capped,DSC_0841.JPG +36300,3325,1666,17,0,capped,DSC_0841.JPG +36301,4909,1669,17,0,capped,DSC_0841.JPG +36302,922,1699,17,0,capped,DSC_0841.JPG +36304,3475,2371,15,0,capped,DSC_0841.JPG +36305,3973,2392,17,0,capped,DSC_0841.JPG +36308,1573,436,15,0,capped,DSC_0841.JPG +36309,4501,595,17,0,capped,DSC_0841.JPG +36310,1513,811,17,0,capped,DSC_0841.JPG +36311,4522,1255,15,0,capped,DSC_0841.JPG +36313,3634,1429,15,0,capped,DSC_0841.JPG +36314,2848,1900,15,0,capped,DSC_0841.JPG +36315,5221,1963,15,0,capped,DSC_0841.JPG +36316,1273,2047,15,0,capped,DSC_0841.JPG +36317,3793,2311,15,0,capped,DSC_0841.JPG +36319,1159,2419,17,0,capped,DSC_0841.JPG +36321,3310,2470,17,0,capped,DSC_0841.JPG +36326,2824,1597,15,0,capped,DSC_0841.JPG +36327,3169,1600,15,0,capped,DSC_0841.JPG +36328,2965,1720,17,0,capped,DSC_0841.JPG +36329,4678,1903,15,0,capped,DSC_0841.JPG +36330,4183,2128,17,0,capped,DSC_0841.JPG +36331,1129,2161,17,0,capped,DSC_0841.JPG +36332,3130,2458,15,0,capped,DSC_0841.JPG +36334,2713,451,15,0,capped,DSC_0841.JPG +36335,2887,523,15,0,capped,DSC_0841.JPG +36336,4720,595,17,0,capped,DSC_0841.JPG +36337,4144,598,15,0,capped,DSC_0841.JPG +36339,1300,1414,17,0,capped,DSC_0841.JPG +36341,3016,2074,17,0,capped,DSC_0841.JPG +36342,4921,2074,15,0,capped,DSC_0841.JPG +36343,3016,2191,15,0,capped,DSC_0841.JPG +36344,3658,2194,15,0,capped,DSC_0841.JPG +36347,3241,1957,15,0,capped,DSC_0841.JPG +36348,1303,1984,17,0,capped,DSC_0841.JPG +36349,3262,2020,15,0,capped,DSC_0841.JPG +36350,736,2224,15,0,capped,DSC_0841.JPG +36351,697,2272,17,0,capped,DSC_0841.JPG +36352,2377,2299,15,0,capped,DSC_0841.JPG +36356,4459,532,17,0,capped,DSC_0841.JPG +36358,4516,1009,17,0,capped,DSC_0841.JPG +36359,481,1912,17,0,capped,DSC_0841.JPG +36360,1063,1927,15,0,capped,DSC_0841.JPG +36361,2878,2068,17,0,capped,DSC_0841.JPG +36362,3232,2071,15,0,capped,DSC_0841.JPG +36363,4570,2188,17,0,capped,DSC_0841.JPG +36364,1015,2350,17,0,capped,DSC_0841.JPG +36365,1093,2353,17,0,capped,DSC_0841.JPG +36366,3406,2368,17,0,capped,DSC_0841.JPG +36368,4174,532,17,0,capped,DSC_0841.JPG +36369,4603,658,15,0,capped,DSC_0841.JPG +36370,3259,1672,15,0,capped,DSC_0841.JPG +36371,2227,1780,17,0,capped,DSC_0841.JPG +36375,1246,481,15,0,capped,DSC_0841.JPG +36378,4750,2014,15,0,capped,DSC_0841.JPG +36379,772,2035,17,0,capped,DSC_0841.JPG +36380,4363,2071,15,0,capped,DSC_0841.JPG +36381,2428,2356,15,0,capped,DSC_0841.JPG +36382,3760,2371,15,0,capped,DSC_0841.JPG +36383,1252,2431,15,0,capped,DSC_0841.JPG +36384,1990,2458,17,0,capped,DSC_0841.JPG +36385,505,2476,17,0,capped,DSC_0841.JPG +36386,1831,376,17,0,capped,DSC_0841.JPG +36387,808,922,17,0,capped,DSC_0841.JPG +36388,5338,1189,17,0,capped,DSC_0841.JPG +36389,2671,1849,17,0,capped,DSC_0841.JPG +36390,5140,1957,15,0,capped,DSC_0841.JPG +36392,1720,2350,15,0,capped,DSC_0841.JPG +36398,4771,1318,17,0,capped,DSC_0841.JPG +36400,4108,2014,15,0,capped,DSC_0841.JPG +36401,3385,2068,15,0,capped,DSC_0841.JPG +36402,5062,2068,17,0,capped,DSC_0841.JPG +36403,3052,2368,15,0,capped,DSC_0841.JPG +36407,5254,1747,17,0,capped,DSC_0841.JPG +36409,703,1912,17,0,capped,DSC_0841.JPG +36412,4003,850,17,0,capped,DSC_0841.JPG +36413,5224,1516,17,0,capped,DSC_0841.JPG +36414,3331,2020,15,0,capped,DSC_0841.JPG +36415,1831,2425,15,0,capped,DSC_0841.JPG +36416,3472,397,15,0,capped,DSC_0841.JPG +36417,4108,532,17,0,capped,DSC_0841.JPG +36418,4429,2302,15,0,capped,DSC_0841.JPG +36419,937,2446,17,0,capped,DSC_0841.JPG +36426,2761,409,17,0,capped,DSC_0841.JPG +36428,3034,1840,17,0,capped,DSC_0841.JPG +36429,1588,1885,15,0,capped,DSC_0841.JPG +36431,3691,2461,17,0,capped,DSC_0841.JPG +36437,4126,1897,17,0,capped,DSC_0841.JPG +36438,3511,2455,15,0,capped,DSC_0841.JPG +36440,1030,421,17,0,capped,DSC_0841.JPG +36441,5419,1099,17,0,capped,DSC_0841.JPG +36443,2404,2452,17,0,capped,DSC_0841.JPG +36454,4330,541,17,0,capped,DSC_0841.JPG +36458,3808,1609,15,0,capped,DSC_0841.JPG +36466,1885,2464,17,0,capped,DSC_0841.JPG +36470,3445,1246,17,0,capped,DSC_0841.JPG +36475,3118,262,17,0,capped,DSC_0841.JPG +36476,4756,538,17,0,capped,DSC_0841.JPG +36480,1081,1291,15,0,capped,DSC_0841.JPG +36482,5272,1618,17,0,capped,DSC_0841.JPG +36483,1084,562,17,0,capped,DSC_0841.JPG +36489,1222,292,16,0,capped,DSC_0841.JPG +36490,1696,1924,17,0,capped,DSC_0841.JPG +36492,1249,2500,17,0,capped,DSC_0841.JPG +36500,1057,277,16,0,capped,DSC_0841.JPG +36501,946,463,17,0,capped,DSC_0841.JPG +36507,5206,1714,17,0,capped,DSC_0841.JPG +36511,1207,379,16,0,capped,DSC_0841.JPG +36515,3094,2410,17,0,capped,DSC_0841.JPG +36517,958,391,17,0,capped,DSC_0841.JPG +36520,1747,2425,17,0,capped,DSC_0841.JPG +36522,973,2389,15,0,capped,DSC_0841.JPG +36526,3457,2431,17,0,capped,DSC_0841.JPG +36527,3175,2425,15,0,capped,DSC_0841.JPG +36531,5167,1909,15,0,capped,DSC_0841.JPG +36532,2218,2416,17,0,capped,DSC_0841.JPG +36533,5401,1177,17,0,capped,DSC_0841.JPG +36534,5296,1540,17,0,capped,DSC_0841.JPG +36536,1411,2455,15,0,capped,DSC_0841.JPG +36541,2632,2473,15,0,capped,DSC_0841.JPG +36546,2512,2473,15,0,capped,DSC_0841.JPG +36550,1960,2398,15,0,capped,DSC_0841.JPG +37118,550,832,17,0,capped,DSC_0838.JPG +37205,4087,2149,15,0,capped,DSC_0838.JPG +37218,4474,2200,15,0,capped,DSC_0838.JPG +37262,4123,2089,15,0,capped,DSC_0838.JPG +37267,4975,1723,17,0,capped,DSC_0838.JPG +37288,4942,1786,17,0,capped,DSC_0838.JPG +37289,4336,1855,15,0,capped,DSC_0838.JPG +37299,265,1420,15,0,capped,DSC_0838.JPG +37313,5050,1483,15,0,capped,DSC_0838.JPG +37323,4279,1012,15,0,capped,DSC_0838.JPG +37324,4765,1369,17,0,capped,DSC_0838.JPG +37341,1042,1087,15,0,capped,DSC_0838.JPG +37345,1882,2188,15,0,capped,DSC_0838.JPG +37355,904,1327,17,0,capped,DSC_0838.JPG +37365,4015,379,15,0,capped,DSC_0838.JPG +37381,4909,1486,15,0,capped,DSC_0838.JPG +37387,1153,532,17,0,capped,DSC_0838.JPG +37389,4699,1132,15,0,capped,DSC_0838.JPG +37391,5011,1786,15,0,capped,DSC_0838.JPG +37401,4837,1369,15,0,capped,DSC_0838.JPG +37403,469,1897,15,0,capped,DSC_0838.JPG +37409,4807,949,15,0,capped,DSC_0838.JPG +37411,412,1309,16,0,capped,DSC_0838.JPG +37417,409,1429,17,0,capped,DSC_0838.JPG +37418,3736,2029,17,0,capped,DSC_0838.JPG +37423,1756,481,15,0,capped,DSC_0838.JPG +37428,1777,2125,15,0,capped,DSC_0838.JPG +37429,1849,2125,15,0,capped,DSC_0838.JPG +37431,3523,2143,15,0,capped,DSC_0838.JPG +37432,3595,2143,15,0,capped,DSC_0838.JPG +37439,3196,439,15,0,capped,DSC_0838.JPG +37440,1330,472,17,0,capped,DSC_0838.JPG +37442,4456,829,16,0,capped,DSC_0838.JPG +37443,4663,1192,15,0,capped,DSC_0838.JPG +37445,4156,2032,15,0,capped,DSC_0838.JPG +37447,1954,2185,17,0,capped,DSC_0838.JPG +37458,4696,1495,15,0,capped,DSC_0838.JPG +37459,5236,1534,15,0,capped,DSC_0838.JPG +37461,4471,2083,17,0,capped,DSC_0838.JPG +37462,4402,2206,15,0,capped,DSC_0838.JPG +37465,547,1552,17,0,capped,DSC_0838.JPG +37466,4297,2035,17,0,capped,DSC_0838.JPG +37467,4369,2146,17,0,capped,DSC_0838.JPG +37472,553,1195,15,0,capped,DSC_0838.JPG +37473,157,1240,17,0,capped,DSC_0838.JPG +37474,550,1315,17,0,capped,DSC_0838.JPG +37475,2272,1414,15,0,capped,DSC_0838.JPG +37476,4978,1483,15,0,capped,DSC_0838.JPG +37477,2125,2251,15,0,capped,DSC_0838.JPG +37478,3871,2263,15,0,capped,DSC_0838.JPG +37484,1576,1162,15,0,capped,DSC_0838.JPG +37485,1324,1342,17,0,capped,DSC_0838.JPG +37486,307,1366,17,0,capped,DSC_0838.JPG +37488,4438,2146,15,0,capped,DSC_0838.JPG +37495,940,403,15,0,capped,DSC_0838.JPG +37498,730,778,17,0,capped,DSC_0838.JPG +37500,5173,1288,15,0,capped,DSC_0838.JPG +37509,2179,484,17,0,capped,DSC_0838.JPG +37511,4135,1132,17,0,capped,DSC_0838.JPG +37515,1708,2242,15,0,capped,DSC_0838.JPG +37516,1669,2299,15,0,capped,DSC_0838.JPG +37520,4672,703,15,0,capped,DSC_0838.JPG +37522,874,778,17,0,capped,DSC_0838.JPG +37524,4846,886,15,0,capped,DSC_0838.JPG +37525,4984,1120,15,0,capped,DSC_0838.JPG +37526,2203,1177,15,0,capped,DSC_0838.JPG +37530,475,1546,17,0,capped,DSC_0838.JPG +37532,4870,1906,15,0,capped,DSC_0838.JPG +37534,862,1975,15,0,capped,DSC_0838.JPG +37542,2710,436,15,0,capped,DSC_0838.JPG +37545,694,709,17,0,capped,DSC_0838.JPG +37547,1930,1048,17,0,capped,DSC_0838.JPG +37549,4486,1495,15,0,capped,DSC_0838.JPG +37550,5050,1603,15,0,capped,DSC_0838.JPG +37551,613,1672,15,0,capped,DSC_0838.JPG +37552,1324,1696,17,0,capped,DSC_0838.JPG +37555,4051,2206,15,0,capped,DSC_0838.JPG +37559,2674,499,15,0,capped,DSC_0838.JPG +37562,4243,952,15,0,capped,DSC_0838.JPG +37564,4420,1015,15,0,capped,DSC_0838.JPG +37566,484,1192,15,0,capped,DSC_0838.JPG +37568,4132,1378,15,0,capped,DSC_0838.JPG +37569,622,1432,15,0,capped,DSC_0838.JPG +37570,5014,1540,17,0,capped,DSC_0838.JPG +37571,931,1741,15,0,capped,DSC_0838.JPG +37575,1825,346,17,0,capped,DSC_0838.JPG +37576,3550,568,17,0,capped,DSC_0838.JPG +37577,4387,832,15,0,capped,DSC_0838.JPG +37578,4771,1009,15,0,capped,DSC_0838.JPG +37579,1648,1048,17,0,capped,DSC_0838.JPG +37580,4876,1426,15,0,capped,DSC_0838.JPG +37581,403,1546,15,0,capped,DSC_0838.JPG +37582,292,1717,17,0,capped,DSC_0838.JPG +37583,436,1720,15,0,capped,DSC_0838.JPG +37588,4225,2266,15,0,capped,DSC_0838.JPG +37590,1687,352,15,0,capped,DSC_0838.JPG +37593,1576,412,17,0,capped,DSC_0838.JPG +37594,3271,436,16,0,capped,DSC_0838.JPG +37595,4147,637,15,0,capped,DSC_0838.JPG +37596,4708,763,17,0,capped,DSC_0838.JPG +37597,4285,769,15,0,capped,DSC_0838.JPG +37598,3964,829,17,0,capped,DSC_0838.JPG +37600,4696,1252,15,0,capped,DSC_0838.JPG +37601,4135,1258,17,0,capped,DSC_0838.JPG +37602,475,1666,15,0,capped,DSC_0838.JPG +37608,1894,610,15,0,capped,DSC_0838.JPG +37609,868,652,17,0,capped,DSC_0838.JPG +37610,766,715,17,0,capped,DSC_0838.JPG +37611,4906,1366,16,0,capped,DSC_0838.JPG +37612,4939,1546,15,0,capped,DSC_0838.JPG +37613,4837,1849,17,0,capped,DSC_0838.JPG +37615,3001,2083,17,0,capped,DSC_0838.JPG +37617,2995,2320,17,0,capped,DSC_0838.JPG +37621,4669,823,17,0,capped,DSC_0838.JPG +37622,4177,832,15,0,capped,DSC_0838.JPG +37623,520,892,17,0,capped,DSC_0838.JPG +37624,1786,1168,17,0,capped,DSC_0838.JPG +37625,1009,1384,17,0,capped,DSC_0838.JPG +37626,5011,1663,15,0,capped,DSC_0838.JPG +37627,256,1774,17,0,capped,DSC_0838.JPG +37628,1213,1990,15,0,capped,DSC_0838.JPG +37629,1600,2062,15,0,capped,DSC_0838.JPG +37631,1774,2242,15,0,capped,DSC_0838.JPG +37633,1969,349,17,0,capped,DSC_0838.JPG +37635,1933,673,15,0,capped,DSC_0838.JPG +37638,1360,790,15,0,capped,DSC_0838.JPG +37640,1705,2122,15,0,capped,DSC_0838.JPG +37641,3415,2200,15,0,capped,DSC_0838.JPG +37642,3490,2203,17,0,capped,DSC_0838.JPG +37643,4261,2206,15,0,capped,DSC_0838.JPG +37645,4123,2326,17,0,capped,DSC_0838.JPG +37647,904,592,17,0,capped,DSC_0838.JPG +37648,2533,628,17,0,capped,DSC_0838.JPG +37649,4603,706,15,0,capped,DSC_0838.JPG +37650,4633,766,15,0,capped,DSC_0838.JPG +37651,4810,823,17,0,capped,DSC_0838.JPG +37652,4702,1009,17,0,capped,DSC_0838.JPG +37653,487,1075,17,0,capped,DSC_0838.JPG +37654,4732,1189,15,0,capped,DSC_0838.JPG +37655,5086,1540,17,0,capped,DSC_0838.JPG +37656,826,1915,15,0,capped,DSC_0838.JPG +37658,1387,2053,15,0,capped,DSC_0838.JPG +37659,1915,2242,17,0,capped,DSC_0838.JPG +37661,2782,304,15,0,capped,DSC_0838.JPG +37662,2173,352,15,0,capped,DSC_0838.JPG +37665,442,511,17,0,capped,DSC_0838.JPG +37666,940,529,15,0,capped,DSC_0838.JPG +37667,589,772,17,0,capped,DSC_0838.JPG +37669,1828,1108,15,0,capped,DSC_0838.JPG +37670,4843,1126,15,0,capped,DSC_0838.JPG +37671,4066,1138,16,0,capped,DSC_0838.JPG +37672,484,1312,15,0,capped,DSC_0838.JPG +37674,1753,1348,15,0,capped,DSC_0838.JPG +37675,334,1540,15,0,capped,DSC_0838.JPG +37676,370,1600,17,0,capped,DSC_0838.JPG +37677,3874,2032,15,0,capped,DSC_0838.JPG +37678,2092,2188,17,0,capped,DSC_0838.JPG +37679,3769,2206,17,0,capped,DSC_0838.JPG +37680,3526,2266,17,0,capped,DSC_0838.JPG +37685,1723,412,15,0,capped,DSC_0838.JPG +37686,3340,433,15,0,capped,DSC_0838.JPG +37687,3127,439,17,0,capped,DSC_0838.JPG +37688,3406,439,17,0,capped,DSC_0838.JPG +37689,2461,490,17,0,capped,DSC_0838.JPG +37691,1399,598,17,0,capped,DSC_0838.JPG +37692,343,946,15,0,capped,DSC_0838.JPG +37695,586,1372,15,0,capped,DSC_0838.JPG +37696,1036,1684,17,0,capped,DSC_0838.JPG +37697,1249,1930,15,0,capped,DSC_0838.JPG +37698,3982,2089,15,0,capped,DSC_0838.JPG +37699,1531,2176,15,0,capped,DSC_0838.JPG +37700,1675,2182,15,0,capped,DSC_0838.JPG +37701,1564,2239,15,0,capped,DSC_0838.JPG +37705,1897,484,17,0,capped,DSC_0838.JPG +37708,1009,529,16,0,capped,DSC_0838.JPG +37710,517,646,17,0,capped,DSC_0838.JPG +37711,1648,673,15,0,capped,DSC_0838.JPG +37715,232,1249,17,0,capped,DSC_0838.JPG +37716,310,1249,15,0,capped,DSC_0838.JPG +37717,520,1255,15,0,capped,DSC_0838.JPG +37718,508,1489,15,0,capped,DSC_0838.JPG +37719,1210,1639,17,0,capped,DSC_0838.JPG +37720,4198,1738,15,0,capped,DSC_0838.JPG +37721,577,1963,15,0,capped,DSC_0838.JPG +37724,2458,361,17,0,capped,DSC_0838.JPG +37725,1081,529,15,0,capped,DSC_0838.JPG +37726,3970,574,15,0,capped,DSC_0838.JPG +37727,2677,625,17,0,capped,DSC_0838.JPG +37728,4354,766,15,0,capped,DSC_0838.JPG +37729,2350,805,17,0,capped,DSC_0838.JPG +37730,4774,886,16,0,capped,DSC_0838.JPG +37731,3925,1135,17,0,capped,DSC_0838.JPG +37732,1783,1408,17,0,capped,DSC_0838.JPG +37733,4441,1915,15,0,capped,DSC_0838.JPG +37735,3172,2263,17,0,capped,DSC_0838.JPG +37736,2299,2311,15,0,capped,DSC_0838.JPG +37739,1897,346,15,0,capped,DSC_0838.JPG +37740,1081,403,17,0,capped,DSC_0838.JPG +37742,1756,613,17,0,capped,DSC_0838.JPG +37743,1294,664,17,0,capped,DSC_0838.JPG +37744,4426,769,17,0,capped,DSC_0838.JPG +37745,2278,928,15,0,capped,DSC_0838.JPG +37746,4879,1066,15,0,capped,DSC_0838.JPG +37747,259,1660,17,0,capped,DSC_0838.JPG +37748,4939,1666,15,0,capped,DSC_0838.JPG +37750,5044,1843,15,0,capped,DSC_0838.JPG +37751,4939,2020,17,0,capped,DSC_0838.JPG +37752,4582,2026,15,0,capped,DSC_0838.JPG +37754,4507,2143,15,0,capped,DSC_0838.JPG +37755,1213,2227,15,0,capped,DSC_0838.JPG +37762,3166,370,15,0,capped,DSC_0838.JPG +37763,4075,769,15,0,capped,DSC_0838.JPG +37764,835,838,15,0,capped,DSC_0838.JPG +37765,1924,1291,17,0,capped,DSC_0838.JPG +37767,5014,1420,15,0,capped,DSC_0838.JPG +37768,4834,1729,15,0,capped,DSC_0838.JPG +37769,1495,1876,17,0,capped,DSC_0838.JPG +37770,967,2038,15,0,capped,DSC_0838.JPG +37772,4972,2077,15,0,capped,DSC_0838.JPG +37773,4228,2146,17,0,capped,DSC_0838.JPG +37774,3103,2383,17,0,capped,DSC_0838.JPG +37776,1045,469,17,0,capped,DSC_0838.JPG +37778,346,1192,15,0,capped,DSC_0838.JPG +37779,376,1369,15,0,capped,DSC_0838.JPG +37780,4381,1435,15,0,capped,DSC_0838.JPG +37782,1459,1702,15,0,capped,DSC_0838.JPG +37783,4369,1912,17,0,capped,DSC_0838.JPG +37784,970,1921,15,0,capped,DSC_0838.JPG +37785,3139,2200,15,0,capped,DSC_0838.JPG +37786,2053,2245,15,0,capped,DSC_0838.JPG +37787,4540,2317,15,0,capped,DSC_0838.JPG +37793,2887,502,15,0,capped,DSC_0838.JPG +37794,337,697,15,0,capped,DSC_0838.JPG +37795,4465,703,17,0,capped,DSC_0838.JPG +37796,907,718,17,0,capped,DSC_0838.JPG +37797,625,835,15,0,capped,DSC_0838.JPG +37798,976,964,15,0,capped,DSC_0838.JPG +37800,4771,1132,15,0,capped,DSC_0838.JPG +37801,4627,1252,15,0,capped,DSC_0838.JPG +37802,1996,1288,17,0,capped,DSC_0838.JPG +37803,1147,1393,15,0,capped,DSC_0838.JPG +37804,5170,1414,15,0,capped,DSC_0838.JPG +37805,547,1432,17,0,capped,DSC_0838.JPG +37806,793,1858,15,0,capped,DSC_0838.JPG +37807,4831,1966,15,0,capped,DSC_0838.JPG +37808,892,2038,15,0,capped,DSC_0838.JPG +37809,3208,2200,15,0,capped,DSC_0838.JPG +37814,1042,337,17,0,capped,DSC_0838.JPG +37815,3307,370,17,0,capped,DSC_0838.JPG +37816,2494,430,17,0,capped,DSC_0838.JPG +37817,2992,442,15,0,capped,DSC_0838.JPG +37818,4192,448,17,0,capped,DSC_0838.JPG +37819,274,943,17,0,capped,DSC_0838.JPG +37820,2518,1360,15,0,capped,DSC_0838.JPG +37822,4762,1849,15,0,capped,DSC_0838.JPG +37823,3808,2029,17,0,capped,DSC_0838.JPG +37824,931,2101,15,0,capped,DSC_0838.JPG +37825,1072,2104,15,0,capped,DSC_0838.JPG +37826,1567,2119,17,0,capped,DSC_0838.JPG +37827,4720,2251,15,0,capped,DSC_0838.JPG +37831,2425,289,15,0,capped,DSC_0838.JPG +37833,3094,502,15,0,capped,DSC_0838.JPG +37834,373,637,17,0,capped,DSC_0838.JPG +37835,4426,640,17,0,capped,DSC_0838.JPG +37836,4600,829,17,0,capped,DSC_0838.JPG +37837,1720,922,17,0,capped,DSC_0838.JPG +37838,376,1012,17,0,capped,DSC_0838.JPG +37839,4909,1249,17,0,capped,DSC_0838.JPG +37840,5014,1300,17,0,capped,DSC_0838.JPG +37841,1645,1411,17,0,capped,DSC_0838.JPG +37842,4729,1429,15,0,capped,DSC_0838.JPG +37843,4864,1786,17,0,capped,DSC_0838.JPG +37844,5119,1843,15,0,capped,DSC_0838.JPG +37845,1111,1921,15,0,capped,DSC_0838.JPG +37846,3700,1969,15,0,capped,DSC_0838.JPG +37847,1288,1987,15,0,capped,DSC_0838.JPG +37849,1318,2050,15,0,capped,DSC_0838.JPG +37850,4831,2074,17,0,capped,DSC_0838.JPG +37852,1984,2128,17,0,capped,DSC_0838.JPG +37853,1600,2176,15,0,capped,DSC_0838.JPG +37854,3001,2200,15,0,capped,DSC_0838.JPG +37858,3310,2260,15,0,capped,DSC_0838.JPG +37860,1948,2308,17,0,capped,DSC_0838.JPG +37864,907,466,17,0,capped,DSC_0838.JPG +37865,3658,505,15,0,capped,DSC_0838.JPG +37866,262,568,15,0,capped,DSC_0838.JPG +37867,2530,748,15,0,capped,DSC_0838.JPG +37868,4492,766,15,0,capped,DSC_0838.JPG +37869,4141,769,17,0,capped,DSC_0838.JPG +37871,304,877,15,0,capped,DSC_0838.JPG +37872,4591,1192,15,0,capped,DSC_0838.JPG +37873,1147,1276,15,0,capped,DSC_0838.JPG +37875,2551,1540,17,0,capped,DSC_0838.JPG +37876,616,1552,15,0,capped,DSC_0838.JPG +37877,4906,1600,15,0,capped,DSC_0838.JPG +37878,901,1681,15,0,capped,DSC_0838.JPG +37881,469,2011,15,0,capped,DSC_0838.JPG +37882,2578,2083,15,0,capped,DSC_0838.JPG +37885,3523,2380,17,0,capped,DSC_0838.JPG +37889,1507,409,17,0,capped,DSC_0838.JPG +37890,1120,469,17,0,capped,DSC_0838.JPG +37891,1222,661,16,0,capped,DSC_0838.JPG +37892,3547,700,16,0,capped,DSC_0838.JPG +37893,1510,796,15,0,capped,DSC_0838.JPG +37894,4036,832,15,0,capped,DSC_0838.JPG +37895,907,841,15,0,capped,DSC_0838.JPG +37896,451,889,15,0,capped,DSC_0838.JPG +37897,4216,892,17,0,capped,DSC_0838.JPG +37898,871,901,15,0,capped,DSC_0838.JPG +37899,4459,955,15,0,capped,DSC_0838.JPG +37900,1219,1033,15,0,capped,DSC_0838.JPG +37901,451,1132,15,0,capped,DSC_0838.JPG +37902,589,1138,15,0,capped,DSC_0838.JPG +37903,1432,1162,15,0,capped,DSC_0838.JPG +37904,4099,1198,15,0,capped,DSC_0838.JPG +37905,973,1327,15,0,capped,DSC_0838.JPG +37906,1111,1810,15,0,capped,DSC_0838.JPG +37907,1462,1819,17,0,capped,DSC_0838.JPG +37912,3661,2143,15,0,capped,DSC_0838.JPG +37916,2992,310,17,0,capped,DSC_0838.JPG +37917,4255,577,17,0,capped,DSC_0838.JPG +37918,223,751,17,0,capped,DSC_0838.JPG +37920,1576,799,15,0,capped,DSC_0838.JPG +37921,2212,805,17,0,capped,DSC_0838.JPG +37922,2311,865,15,0,capped,DSC_0838.JPG +37924,2170,988,15,0,capped,DSC_0838.JPG +37925,1786,1051,15,0,capped,DSC_0838.JPG +37926,4807,1069,15,0,capped,DSC_0838.JPG +37927,2665,1123,17,0,capped,DSC_0838.JPG +37928,4489,1135,15,0,capped,DSC_0838.JPG +37929,1216,1396,15,0,capped,DSC_0838.JPG +37930,901,1441,17,0,capped,DSC_0838.JPG +37931,4762,1489,17,0,capped,DSC_0838.JPG +37932,4417,1495,15,0,capped,DSC_0838.JPG +37933,718,1732,15,0,capped,DSC_0838.JPG +37934,328,1777,15,0,capped,DSC_0838.JPG +37935,400,1780,17,0,capped,DSC_0838.JPG +37936,361,1834,15,0,capped,DSC_0838.JPG +37937,646,1849,15,0,capped,DSC_0838.JPG +37939,4012,1912,17,0,capped,DSC_0838.JPG +37941,682,2026,15,0,capped,DSC_0838.JPG +37942,4120,2209,15,0,capped,DSC_0838.JPG +37944,2566,430,15,0,capped,DSC_0838.JPG +37945,1861,673,17,0,capped,DSC_0838.JPG +37946,1609,736,17,0,capped,DSC_0838.JPG +37947,4741,826,15,0,capped,DSC_0838.JPG +37948,4738,949,15,0,capped,DSC_0838.JPG +37949,1612,1108,17,0,capped,DSC_0838.JPG +37950,1858,1291,16,0,capped,DSC_0838.JPG +37951,2341,1414,15,0,capped,DSC_0838.JPG +37952,1501,1525,17,0,capped,DSC_0838.JPG +37953,1816,1708,15,0,capped,DSC_0838.JPG +37954,4870,2023,17,0,capped,DSC_0838.JPG +37955,4690,2080,17,0,capped,DSC_0838.JPG +37956,1426,2119,17,0,capped,DSC_0838.JPG +37957,4933,2131,17,0,capped,DSC_0838.JPG +37958,2512,2200,17,0,capped,DSC_0838.JPG +37959,3700,2206,15,0,capped,DSC_0838.JPG +37960,3625,2323,15,0,capped,DSC_0838.JPG +37961,2965,2380,17,0,capped,DSC_0838.JPG +37965,2638,436,17,0,capped,DSC_0838.JPG +37966,2815,496,15,0,capped,DSC_0838.JPG +37967,1864,544,17,0,capped,DSC_0838.JPG +37968,1933,547,15,0,capped,DSC_0838.JPG +37969,3658,637,15,0,capped,DSC_0838.JPG +37970,589,643,17,0,capped,DSC_0838.JPG +37971,2074,676,17,0,capped,DSC_0838.JPG +37972,2917,694,15,0,capped,DSC_0838.JPG +37973,4180,703,17,0,capped,DSC_0838.JPG +37975,517,1015,17,0,capped,DSC_0838.JPG +37976,4027,1321,15,0,capped,DSC_0838.JPG +37977,1396,1339,15,0,capped,DSC_0838.JPG +37978,403,1663,15,0,capped,DSC_0838.JPG +37979,4018,1678,17,0,capped,DSC_0838.JPG +37981,4903,1843,17,0,capped,DSC_0838.JPG +37982,1180,1933,17,0,capped,DSC_0838.JPG +37983,2650,1966,15,0,capped,DSC_0838.JPG +37984,4480,1975,17,0,capped,DSC_0838.JPG +37986,1882,2065,15,0,capped,DSC_0838.JPG +37987,856,2092,15,0,capped,DSC_0838.JPG +37988,3805,2149,17,0,capped,DSC_0838.JPG +37989,961,2161,15,0,capped,DSC_0838.JPG +37990,1738,2182,15,0,capped,DSC_0838.JPG +37991,2299,2191,15,0,capped,DSC_0838.JPG +37992,1492,2236,15,0,capped,DSC_0838.JPG +37993,4081,2263,17,0,capped,DSC_0838.JPG +37997,2959,499,17,0,capped,DSC_0838.JPG +37998,1432,535,17,0,capped,DSC_0838.JPG +37999,2074,544,17,0,capped,DSC_0838.JPG +38000,3478,568,15,0,capped,DSC_0838.JPG +38001,4846,1003,17,0,capped,DSC_0838.JPG +38002,274,1189,15,0,capped,DSC_0838.JPG +38003,4171,1195,15,0,capped,DSC_0838.JPG +38004,1537,1219,15,0,capped,DSC_0838.JPG +38005,4276,1375,15,0,capped,DSC_0838.JPG +38006,1291,1396,17,0,capped,DSC_0838.JPG +38007,1885,1468,15,0,capped,DSC_0838.JPG +38008,4801,1552,15,0,capped,DSC_0838.JPG +38009,5125,1600,15,0,capped,DSC_0838.JPG +38010,4345,1741,17,0,capped,DSC_0838.JPG +38011,4795,1906,17,0,capped,DSC_0838.JPG +38012,2128,2008,15,0,capped,DSC_0838.JPG +38013,2614,2143,17,0,capped,DSC_0838.JPG +38015,4435,2263,16,0,capped,DSC_0838.JPG +38016,3454,2266,15,0,capped,DSC_0838.JPG +38017,4615,2311,15,0,capped,DSC_0838.JPG +38024,2533,493,17,0,capped,DSC_0838.JPG +38025,4222,514,15,0,capped,DSC_0838.JPG +38026,1510,538,15,0,capped,DSC_0838.JPG +38028,3865,637,15,0,capped,DSC_0838.JPG +38029,3475,697,15,0,capped,DSC_0838.JPG +38030,481,955,17,0,capped,DSC_0838.JPG +38031,4315,955,17,0,capped,DSC_0838.JPG +38032,1894,988,15,0,capped,DSC_0838.JPG +38033,4489,1012,15,0,capped,DSC_0838.JPG +38034,2104,1105,15,0,capped,DSC_0838.JPG +38035,1963,1111,15,0,capped,DSC_0838.JPG +38036,1363,1159,17,0,capped,DSC_0838.JPG +38037,2554,1180,15,0,capped,DSC_0838.JPG +38038,727,1258,15,0,capped,DSC_0838.JPG +38039,2167,1474,15,0,capped,DSC_0838.JPG +38040,2587,1483,15,0,capped,DSC_0838.JPG +38041,793,1501,15,0,capped,DSC_0838.JPG +38042,4234,1558,15,0,capped,DSC_0838.JPG +38043,1531,1585,15,0,capped,DSC_0838.JPG +38044,214,1711,17,0,capped,DSC_0838.JPG +38045,2236,1714,15,0,capped,DSC_0838.JPG +38046,538,1786,17,0,capped,DSC_0838.JPG +38047,4801,1792,17,0,capped,DSC_0838.JPG +38048,4264,1972,17,0,capped,DSC_0838.JPG +38049,1639,2005,17,0,capped,DSC_0838.JPG +38050,1921,2005,15,0,capped,DSC_0838.JPG +38052,1321,2173,17,0,capped,DSC_0838.JPG +38055,1144,2230,17,0,capped,DSC_0838.JPG +38056,2611,2257,15,0,capped,DSC_0838.JPG +38057,3661,2263,15,0,capped,DSC_0838.JPG +38058,4369,2263,15,0,capped,DSC_0838.JPG +38059,1810,2302,15,0,capped,DSC_0838.JPG +38061,3202,307,15,0,capped,DSC_0838.JPG +38063,871,391,15,0,capped,DSC_0838.JPG +38064,622,457,15,0,capped,DSC_0838.JPG +38065,3514,502,17,0,capped,DSC_0838.JPG +38066,3871,505,17,0,capped,DSC_0838.JPG +38067,3625,571,15,0,capped,DSC_0838.JPG +38068,1963,610,15,0,capped,DSC_0838.JPG +38069,1084,655,17,0,capped,DSC_0838.JPG +38071,1114,1084,15,0,capped,DSC_0838.JPG +38072,4381,1195,15,0,capped,DSC_0838.JPG +38073,1783,1288,15,0,capped,DSC_0838.JPG +38074,4384,1318,17,0,capped,DSC_0838.JPG +38075,2731,1369,17,0,capped,DSC_0838.JPG +38076,514,1375,17,0,capped,DSC_0838.JPG +38077,4447,1678,15,0,capped,DSC_0838.JPG +38079,4300,1801,17,0,capped,DSC_0838.JPG +38080,4552,1849,15,0,capped,DSC_0838.JPG +38081,1462,1936,15,0,capped,DSC_0838.JPG +38083,505,1957,15,0,capped,DSC_0838.JPG +38085,544,2020,17,0,capped,DSC_0838.JPG +38086,1954,2068,15,0,capped,DSC_0838.JPG +38088,1000,2101,15,0,capped,DSC_0838.JPG +38089,4723,2134,17,0,capped,DSC_0838.JPG +38092,2230,2317,17,0,capped,DSC_0838.JPG +38097,478,454,15,0,capped,DSC_0838.JPG +38098,1543,472,17,0,capped,DSC_0838.JPG +38099,4366,511,17,0,capped,DSC_0838.JPG +38100,1792,544,17,0,capped,DSC_0838.JPG +38101,1042,595,15,0,capped,DSC_0838.JPG +38102,2104,862,15,0,capped,DSC_0838.JPG +38103,4528,949,15,0,capped,DSC_0838.JPG +38106,1009,1027,15,0,capped,DSC_0838.JPG +38107,4171,1075,15,0,capped,DSC_0838.JPG +38108,4207,1135,15,0,capped,DSC_0838.JPG +38109,2137,1171,15,0,capped,DSC_0838.JPG +38110,1642,1285,17,0,capped,DSC_0838.JPG +38111,1819,1351,17,0,capped,DSC_0838.JPG +38112,2029,1351,15,0,capped,DSC_0838.JPG +38113,793,1375,15,0,capped,DSC_0838.JPG +38114,4093,1444,17,0,capped,DSC_0838.JPG +38115,4693,1615,17,0,capped,DSC_0838.JPG +38116,4831,1615,17,0,capped,DSC_0838.JPG +38117,4264,1858,15,0,capped,DSC_0838.JPG +38118,862,1861,15,0,capped,DSC_0838.JPG +38119,613,1903,17,0,capped,DSC_0838.JPG +38120,4762,1966,15,0,capped,DSC_0838.JPG +38121,397,2005,17,0,capped,DSC_0838.JPG +38122,3700,2086,15,0,capped,DSC_0838.JPG +38123,4546,2089,17,0,capped,DSC_0838.JPG +38124,1459,2173,16,0,capped,DSC_0838.JPG +38126,1636,2239,17,0,capped,DSC_0838.JPG +38128,4291,2380,15,0,capped,DSC_0838.JPG +38132,3034,238,15,0,capped,DSC_0838.JPG +38133,2320,358,17,0,capped,DSC_0838.JPG +38135,1297,406,17,0,capped,DSC_0838.JPG +38136,835,448,15,0,capped,DSC_0838.JPG +38137,370,511,16,0,capped,DSC_0838.JPG +38138,1327,598,15,0,capped,DSC_0838.JPG +38139,2038,610,15,0,capped,DSC_0838.JPG +38140,1828,613,15,0,capped,DSC_0838.JPG +38141,442,640,17,0,capped,DSC_0838.JPG +38142,4003,763,17,0,capped,DSC_0838.JPG +38143,376,766,17,0,capped,DSC_0838.JPG +38144,1360,916,15,0,capped,DSC_0838.JPG +38145,2173,1111,15,0,capped,DSC_0838.JPG +38146,1681,1228,15,0,capped,DSC_0838.JPG +38147,940,1273,15,0,capped,DSC_0838.JPG +38148,2071,1411,17,0,capped,DSC_0838.JPG +38149,2203,1411,17,0,capped,DSC_0838.JPG +38150,970,1444,17,0,capped,DSC_0838.JPG +38151,1921,1531,15,0,capped,DSC_0838.JPG +38152,2203,1537,15,0,capped,DSC_0838.JPG +38153,4306,1561,15,0,capped,DSC_0838.JPG +38154,5050,1723,15,0,capped,DSC_0838.JPG +38155,1075,1750,15,0,capped,DSC_0838.JPG +38156,1747,1825,17,0,capped,DSC_0838.JPG +38157,544,1900,17,0,capped,DSC_0838.JPG +38158,4654,1912,15,0,capped,DSC_0838.JPG +38160,1036,2044,15,0,capped,DSC_0838.JPG +38161,2371,2197,17,0,capped,DSC_0838.JPG +38162,4330,2209,17,0,capped,DSC_0838.JPG +38164,4792,2245,17,0,capped,DSC_0838.JPG +38165,3034,2263,17,0,capped,DSC_0838.JPG +38166,2719,2317,17,0,capped,DSC_0838.JPG +38171,2353,424,17,0,capped,DSC_0838.JPG +38172,2425,424,17,0,capped,DSC_0838.JPG +38173,1222,532,15,0,capped,DSC_0838.JPG +38174,622,709,17,0,capped,DSC_0838.JPG +38175,3934,769,15,0,capped,DSC_0838.JPG +38176,4561,1132,15,0,capped,DSC_0838.JPG +38177,1111,1213,15,0,capped,DSC_0838.JPG +38178,4975,1240,15,0,capped,DSC_0838.JPG +38179,658,1258,15,0,capped,DSC_0838.JPG +38180,3997,1267,17,0,capped,DSC_0838.JPG +38181,1183,1327,17,0,capped,DSC_0838.JPG +38182,934,1387,17,0,capped,DSC_0838.JPG +38183,223,1597,17,0,capped,DSC_0838.JPG +38184,4870,1669,16,0,capped,DSC_0838.JPG +38185,1252,1690,15,0,capped,DSC_0838.JPG +38187,2551,1783,15,0,capped,DSC_0838.JPG +38188,4156,1798,15,0,capped,DSC_0838.JPG +38189,4975,1846,15,0,capped,DSC_0838.JPG +38190,754,1915,15,0,capped,DSC_0838.JPG +38191,2617,2020,15,0,capped,DSC_0838.JPG +38192,1915,2128,15,0,capped,DSC_0838.JPG +38193,3070,2203,15,0,capped,DSC_0838.JPG +38196,4081,514,17,0,capped,DSC_0838.JPG +38197,517,520,17,0,capped,DSC_0838.JPG +38198,2215,553,17,0,capped,DSC_0838.JPG +38199,2782,562,17,0,capped,DSC_0838.JPG +38200,3403,568,17,0,capped,DSC_0838.JPG +38201,4219,643,17,0,capped,DSC_0838.JPG +38202,733,652,15,0,capped,DSC_0838.JPG +38203,2497,691,15,0,capped,DSC_0838.JPG +38204,973,718,17,0,capped,DSC_0838.JPG +38205,799,781,15,0,capped,DSC_0838.JPG +38206,337,820,15,0,capped,DSC_0838.JPG +38207,484,829,17,0,capped,DSC_0838.JPG +38208,379,1129,15,0,capped,DSC_0838.JPG +38209,1327,1216,15,0,capped,DSC_0838.JPG +38210,5131,1228,15,0,capped,DSC_0838.JPG +38211,2374,1231,17,0,capped,DSC_0838.JPG +38212,4522,1312,15,0,capped,DSC_0838.JPG +38213,4348,1378,15,0,capped,DSC_0838.JPG +38214,484,1432,17,0,capped,DSC_0838.JPG +38215,4660,1432,15,0,capped,DSC_0838.JPG +38216,1429,1519,17,0,capped,DSC_0838.JPG +38217,721,1615,15,0,capped,DSC_0838.JPG +38218,4126,1741,17,0,capped,DSC_0838.JPG +38219,2263,1774,15,0,capped,DSC_0838.JPG +38220,4411,1858,15,0,capped,DSC_0838.JPG +38221,2026,1951,15,0,capped,DSC_0838.JPG +38222,1990,2008,15,0,capped,DSC_0838.JPG +38223,4156,2155,17,0,capped,DSC_0838.JPG +38225,2227,2191,15,0,capped,DSC_0838.JPG +38227,3277,2323,15,0,capped,DSC_0838.JPG +38228,3490,2323,17,0,capped,DSC_0838.JPG +38231,1795,415,15,0,capped,DSC_0838.JPG +38232,2002,415,17,0,capped,DSC_0838.JPG +38233,3976,451,17,0,capped,DSC_0838.JPG +38234,1651,541,15,0,capped,DSC_0838.JPG +38235,2143,550,17,0,capped,DSC_0838.JPG +38236,1255,598,17,0,capped,DSC_0838.JPG +38237,802,652,17,0,capped,DSC_0838.JPG +38238,940,658,17,0,capped,DSC_0838.JPG +38239,3691,700,17,0,capped,DSC_0838.JPG +38240,445,766,17,0,capped,DSC_0838.JPG +38241,1003,781,15,0,capped,DSC_0838.JPG +38242,799,901,15,0,capped,DSC_0838.JPG +38243,451,1009,15,0,capped,DSC_0838.JPG +38244,196,1066,17,0,capped,DSC_0838.JPG +38245,724,1138,15,0,capped,DSC_0838.JPG +38246,1648,1162,15,0,capped,DSC_0838.JPG +38247,4522,1192,15,0,capped,DSC_0838.JPG +38248,2524,1240,15,0,capped,DSC_0838.JPG +38249,4204,1258,17,0,capped,DSC_0838.JPG +38250,1213,1279,17,0,capped,DSC_0838.JPG +38251,5092,1294,17,0,capped,DSC_0838.JPG +38253,4057,1381,17,0,capped,DSC_0838.JPG +38254,1252,1453,15,0,capped,DSC_0838.JPG +38255,1393,1459,17,0,capped,DSC_0838.JPG +38256,1009,1507,15,0,capped,DSC_0838.JPG +38258,1393,1582,17,0,capped,DSC_0838.JPG +38260,4165,1678,15,0,capped,DSC_0838.JPG +38261,2302,1834,15,0,capped,DSC_0838.JPG +38262,2584,1840,15,0,capped,DSC_0838.JPG +38263,4942,1906,15,0,capped,DSC_0838.JPG +38264,2686,2023,16,0,capped,DSC_0838.JPG +38265,826,2035,15,0,capped,DSC_0838.JPG +38267,3838,2206,15,0,capped,DSC_0838.JPG +38269,2194,2251,15,0,capped,DSC_0838.JPG +38271,2959,238,15,0,capped,DSC_0838.JPG +38272,3094,376,15,0,capped,DSC_0838.JPG +38273,1930,418,15,0,capped,DSC_0838.JPG +38274,2074,418,15,0,capped,DSC_0838.JPG +38275,550,454,17,0,capped,DSC_0838.JPG +38276,3232,502,17,0,capped,DSC_0838.JPG +38277,3304,505,17,0,capped,DSC_0838.JPG +38278,589,520,17,0,capped,DSC_0838.JPG +38279,655,520,15,0,capped,DSC_0838.JPG +38280,403,580,17,0,capped,DSC_0838.JPG +38281,3901,700,17,0,capped,DSC_0838.JPG +38282,4537,706,17,0,capped,DSC_0838.JPG +38283,415,823,17,0,capped,DSC_0838.JPG +38284,4069,898,15,0,capped,DSC_0838.JPG +38285,1006,904,17,0,capped,DSC_0838.JPG +38286,556,958,15,0,capped,DSC_0838.JPG +38287,4915,1129,17,0,capped,DSC_0838.JPG +38288,2413,1177,17,0,capped,DSC_0838.JPG +38289,2272,1297,17,0,capped,DSC_0838.JPG +38290,346,1312,17,0,capped,DSC_0838.JPG +38291,1465,1342,17,0,capped,DSC_0838.JPG +38292,373,1486,15,0,capped,DSC_0838.JPG +38293,442,1486,15,0,capped,DSC_0838.JPG +38294,2128,1534,15,0,capped,DSC_0838.JPG +38295,2236,1594,15,0,capped,DSC_0838.JPG +38296,4408,1738,15,0,capped,DSC_0838.JPG +38297,2617,1783,15,0,capped,DSC_0838.JPG +38299,931,1864,17,0,capped,DSC_0838.JPG +38300,2551,1906,15,0,capped,DSC_0838.JPG +38301,4192,1975,15,0,capped,DSC_0838.JPG +38302,1534,2059,17,0,capped,DSC_0838.JPG +38303,2023,2188,17,0,capped,DSC_0838.JPG +38304,2407,2254,15,0,capped,DSC_0838.JPG +38305,2017,2308,17,0,capped,DSC_0838.JPG +38309,1402,337,15,0,capped,DSC_0838.JPG +38310,1150,406,17,0,capped,DSC_0838.JPG +38311,1438,406,17,0,capped,DSC_0838.JPG +38312,1825,481,17,0,capped,DSC_0838.JPG +38313,2245,487,15,0,capped,DSC_0838.JPG +38314,553,586,17,0,capped,DSC_0838.JPG +38315,1363,664,15,0,capped,DSC_0838.JPG +38316,550,709,17,0,capped,DSC_0838.JPG +38317,937,781,17,0,capped,DSC_0838.JPG +38318,4705,886,15,0,capped,DSC_0838.JPG +38319,2068,925,17,0,capped,DSC_0838.JPG +38320,2137,1048,15,0,capped,DSC_0838.JPG +38321,343,1069,15,0,capped,DSC_0838.JPG +38322,2242,1108,15,0,capped,DSC_0838.JPG +38323,1009,1150,15,0,capped,DSC_0838.JPG +38324,5053,1234,15,0,capped,DSC_0838.JPG +38325,589,1255,15,0,capped,DSC_0838.JPG +38327,4942,1303,15,0,capped,DSC_0838.JPG +38328,4165,1441,15,0,capped,DSC_0838.JPG +38329,1108,1447,15,0,capped,DSC_0838.JPG +38330,4198,1498,17,0,capped,DSC_0838.JPG +38331,1672,1945,17,0,capped,DSC_0838.JPG +38332,4051,2095,17,0,capped,DSC_0838.JPG +38334,3244,2257,15,0,capped,DSC_0838.JPG +38335,3382,2263,15,0,capped,DSC_0838.JPG +38336,3946,2266,15,0,capped,DSC_0838.JPG +38339,1651,409,15,0,capped,DSC_0838.JPG +38340,760,454,17,0,capped,DSC_0838.JPG +38341,2032,481,15,0,capped,DSC_0838.JPG +38342,3376,496,17,0,capped,DSC_0838.JPG +38343,3943,508,15,0,capped,DSC_0838.JPG +38344,2002,547,17,0,capped,DSC_0838.JPG +38345,3193,565,15,0,capped,DSC_0838.JPG +38346,4114,574,15,0,capped,DSC_0838.JPG +38347,2002,679,15,0,capped,DSC_0838.JPG +38348,4216,769,17,0,capped,DSC_0838.JPG +38349,1147,781,17,0,capped,DSC_0838.JPG +38350,1189,847,17,0,capped,DSC_0838.JPG +38351,730,901,15,0,capped,DSC_0838.JPG +38352,1078,913,17,0,capped,DSC_0838.JPG +38353,1219,916,17,0,capped,DSC_0838.JPG +38354,1786,928,15,0,capped,DSC_0838.JPG +38355,1327,973,17,0,capped,DSC_0838.JPG +38357,4876,1186,15,0,capped,DSC_0838.JPG +38358,628,1198,15,0,capped,DSC_0838.JPG +38359,382,1252,15,0,capped,DSC_0838.JPG +38360,1078,1270,15,0,capped,DSC_0838.JPG +38361,2347,1291,15,0,capped,DSC_0838.JPG +38362,271,1309,17,0,capped,DSC_0838.JPG +38363,1963,1351,17,0,capped,DSC_0838.JPG +38364,4207,1378,17,0,capped,DSC_0838.JPG +38365,1423,1402,15,0,capped,DSC_0838.JPG +38366,301,1480,17,0,capped,DSC_0838.JPG +38367,2164,1591,15,0,capped,DSC_0838.JPG +38368,5119,1717,15,0,capped,DSC_0838.JPG +38369,505,1726,15,0,capped,DSC_0838.JPG +38370,964,1798,17,0,capped,DSC_0838.JPG +38372,2224,1951,15,0,capped,DSC_0838.JPG +38373,718,1966,17,0,capped,DSC_0838.JPG +38374,1744,2062,15,0,capped,DSC_0838.JPG +38375,1282,2113,17,0,capped,DSC_0838.JPG +38376,2752,2257,17,0,capped,DSC_0838.JPG +38380,2278,550,15,0,capped,DSC_0838.JPG +38381,3058,568,17,0,capped,DSC_0838.JPG +38382,3907,571,17,0,capped,DSC_0838.JPG +38383,3790,766,17,0,capped,DSC_0838.JPG +38384,4564,766,15,0,capped,DSC_0838.JPG +38385,2638,811,17,0,capped,DSC_0838.JPG +38386,1543,859,15,0,capped,DSC_0838.JPG +38387,2209,931,15,0,capped,DSC_0838.JPG +38388,2377,985,15,0,capped,DSC_0838.JPG +38389,4345,1015,17,0,capped,DSC_0838.JPG +38390,658,1021,17,0,capped,DSC_0838.JPG +38392,1933,1171,15,0,capped,DSC_0838.JPG +38393,979,1210,15,0,capped,DSC_0838.JPG +38394,622,1318,17,0,capped,DSC_0838.JPG +38395,1111,1333,15,0,capped,DSC_0838.JPG +38396,658,1372,17,0,capped,DSC_0838.JPG +38397,4837,1486,15,0,capped,DSC_0838.JPG +38398,1642,1522,15,0,capped,DSC_0838.JPG +38400,4513,1555,17,0,capped,DSC_0838.JPG +38401,4342,1618,15,0,capped,DSC_0838.JPG +38403,4228,1801,15,0,capped,DSC_0838.JPG +38404,2233,1834,15,0,capped,DSC_0838.JPG +38405,2440,1960,15,0,capped,DSC_0838.JPG +38406,4441,2029,15,0,capped,DSC_0838.JPG +38407,1462,2056,15,0,capped,DSC_0838.JPG +38408,2023,2071,17,0,capped,DSC_0838.JPG +38409,2503,2077,17,0,capped,DSC_0838.JPG +38410,1357,2113,15,0,capped,DSC_0838.JPG +38411,1984,2239,15,0,capped,DSC_0838.JPG +38413,4438,2377,17,0,capped,DSC_0838.JPG +38415,2923,436,15,0,capped,DSC_0838.JPG +38416,2707,562,17,0,capped,DSC_0838.JPG +38417,4360,646,15,0,capped,DSC_0838.JPG +38418,1513,664,17,0,capped,DSC_0838.JPG +38419,4528,826,17,0,capped,DSC_0838.JPG +38420,2455,868,15,0,capped,DSC_0838.JPG +38421,3718,886,17,0,capped,DSC_0838.JPG +38422,193,937,17,0,capped,DSC_0838.JPG +38423,1828,988,17,0,capped,DSC_0838.JPG +38424,661,1141,15,0,capped,DSC_0838.JPG +38425,3955,1201,17,0,capped,DSC_0838.JPG +38426,4732,1312,15,0,capped,DSC_0838.JPG +38427,448,1369,15,0,capped,DSC_0838.JPG +38428,337,1420,17,0,capped,DSC_0838.JPG +38429,4627,1492,15,0,capped,DSC_0838.JPG +38430,4057,1501,15,0,capped,DSC_0838.JPG +38431,4873,1546,17,0,capped,DSC_0838.JPG +38432,4378,1558,15,0,capped,DSC_0838.JPG +38433,1672,1585,15,0,capped,DSC_0838.JPG +38434,331,1666,17,0,capped,DSC_0838.JPG +38435,4768,1735,17,0,capped,DSC_0838.JPG +38437,2056,1774,15,0,capped,DSC_0838.JPG +38438,1036,1801,17,0,capped,DSC_0838.JPG +38439,1393,1822,17,0,capped,DSC_0838.JPG +38441,5083,1900,17,0,capped,DSC_0838.JPG +38442,4225,2035,17,0,capped,DSC_0838.JPG +38443,1813,2062,15,0,capped,DSC_0838.JPG +38444,4258,2089,17,0,capped,DSC_0838.JPG +38446,2968,2140,17,0,capped,DSC_0838.JPG +38447,3316,2143,15,0,capped,DSC_0838.JPG +38448,3736,2146,15,0,capped,DSC_0838.JPG +38450,2965,2260,15,0,capped,DSC_0838.JPG +38451,3595,2260,15,0,capped,DSC_0838.JPG +38455,2287,283,15,0,capped,DSC_0838.JPG +38456,2671,370,15,0,capped,DSC_0838.JPG +38457,2782,436,15,0,capped,DSC_0838.JPG +38458,1258,469,17,0,capped,DSC_0838.JPG +38459,4153,511,17,0,capped,DSC_0838.JPG +38460,1573,667,15,0,capped,DSC_0838.JPG +38461,4174,949,17,0,capped,DSC_0838.JPG +38462,1618,982,17,0,capped,DSC_0838.JPG +38463,1078,1147,17,0,capped,DSC_0838.JPG +38464,1291,1159,15,0,capped,DSC_0838.JPG +38465,2305,1357,15,0,capped,DSC_0838.JPG +38466,235,1360,15,0,capped,DSC_0838.JPG +38467,4552,1372,17,0,capped,DSC_0838.JPG +38469,2242,1474,17,0,capped,DSC_0838.JPG +38470,1567,1525,17,0,capped,DSC_0838.JPG +38471,1888,1594,17,0,capped,DSC_0838.JPG +38472,4975,1603,15,0,capped,DSC_0838.JPG +38473,301,1606,17,0,capped,DSC_0838.JPG +38474,1885,1711,15,0,capped,DSC_0838.JPG +38475,2164,1720,17,0,capped,DSC_0838.JPG +38477,364,1951,15,0,capped,DSC_0838.JPG +38478,2299,1957,17,0,capped,DSC_0838.JPG +38479,1780,2005,15,0,capped,DSC_0838.JPG +38481,4333,2089,15,0,capped,DSC_0838.JPG +38482,3457,2146,15,0,capped,DSC_0838.JPG +38483,4015,2149,15,0,capped,DSC_0838.JPG +38484,4291,2263,15,0,capped,DSC_0838.JPG +38485,2503,2317,15,0,capped,DSC_0838.JPG +38486,4474,2320,17,0,capped,DSC_0838.JPG +38487,904,334,17,0,capped,DSC_0838.JPG +38488,1006,403,15,0,capped,DSC_0838.JPG +38489,2284,421,15,0,capped,DSC_0838.JPG +38491,409,451,17,0,capped,DSC_0838.JPG +38492,2422,559,17,0,capped,DSC_0838.JPG +38493,4396,706,17,0,capped,DSC_0838.JPG +38495,4594,955,17,0,capped,DSC_0838.JPG +38496,1681,979,17,0,capped,DSC_0838.JPG +38497,1753,1102,17,0,capped,DSC_0838.JPG +38498,3997,1138,15,0,capped,DSC_0838.JPG +38499,4447,1201,15,0,capped,DSC_0838.JPG +38501,1822,1231,17,0,capped,DSC_0838.JPG +38502,2242,1231,15,0,capped,DSC_0838.JPG +38503,451,1249,17,0,capped,DSC_0838.JPG +38504,2203,1291,15,0,capped,DSC_0838.JPG +38505,4099,1321,15,0,capped,DSC_0838.JPG +38506,835,1327,17,0,capped,DSC_0838.JPG +38507,4975,1363,17,0,capped,DSC_0838.JPG +38508,1573,1405,15,0,capped,DSC_0838.JPG +38509,4522,1432,15,0,capped,DSC_0838.JPG +38510,754,1441,17,0,capped,DSC_0838.JPG +38511,2062,1537,17,0,capped,DSC_0838.JPG +38512,5086,1663,17,0,capped,DSC_0838.JPG +38513,970,1684,15,0,capped,DSC_0838.JPG +38514,1495,1756,15,0,capped,DSC_0838.JPG +38515,292,1831,15,0,capped,DSC_0838.JPG +38516,505,1843,15,0,capped,DSC_0838.JPG +38517,4690,1855,17,0,capped,DSC_0838.JPG +38518,1714,1888,15,0,capped,DSC_0838.JPG +38519,1606,1942,15,0,capped,DSC_0838.JPG +38520,613,2020,17,0,capped,DSC_0838.JPG +38521,1246,2053,17,0,capped,DSC_0838.JPG +38522,2290,2071,15,0,capped,DSC_0838.JPG +38523,2548,2140,17,0,capped,DSC_0838.JPG +38524,4300,2146,17,0,capped,DSC_0838.JPG +38525,751,2149,17,0,capped,DSC_0838.JPG +38526,3871,2149,15,0,capped,DSC_0838.JPG +38527,3340,2200,15,0,capped,DSC_0838.JPG +38531,2956,379,15,0,capped,DSC_0838.JPG +38532,1225,406,17,0,capped,DSC_0838.JPG +38533,2851,433,17,0,capped,DSC_0838.JPG +38534,3481,439,17,0,capped,DSC_0838.JPG +38535,1576,541,17,0,capped,DSC_0838.JPG +38536,3763,571,15,0,capped,DSC_0838.JPG +38537,2602,625,17,0,capped,DSC_0838.JPG +38538,4288,640,15,0,capped,DSC_0838.JPG +38539,1324,727,15,0,capped,DSC_0838.JPG +38540,517,769,17,0,capped,DSC_0838.JPG +38541,4633,886,15,0,capped,DSC_0838.JPG +38543,4135,1015,15,0,capped,DSC_0838.JPG +38544,730,1024,15,0,capped,DSC_0838.JPG +38545,799,1024,15,0,capped,DSC_0838.JPG +38546,1540,1105,17,0,capped,DSC_0838.JPG +38547,520,1135,15,0,capped,DSC_0838.JPG +38548,4240,1198,17,0,capped,DSC_0838.JPG +38549,1717,1294,17,0,capped,DSC_0838.JPG +38550,2551,1297,17,0,capped,DSC_0838.JPG +38551,4591,1312,15,0,capped,DSC_0838.JPG +38552,4417,1378,15,0,capped,DSC_0838.JPG +38553,3988,1387,17,0,capped,DSC_0838.JPG +38554,583,1492,15,0,capped,DSC_0838.JPG +38555,901,1561,15,0,capped,DSC_0838.JPG +38556,1279,1633,15,0,capped,DSC_0838.JPG +38557,1000,1747,17,0,capped,DSC_0838.JPG +38558,5152,1786,17,0,capped,DSC_0838.JPG +38559,754,1792,15,0,capped,DSC_0838.JPG +38560,4375,1795,15,0,capped,DSC_0838.JPG +38561,898,1798,16,0,capped,DSC_0838.JPG +38562,1360,1873,15,0,capped,DSC_0838.JPG +38563,4300,1915,15,0,capped,DSC_0838.JPG +38564,433,1951,15,0,capped,DSC_0838.JPG +38565,1954,1954,17,0,capped,DSC_0838.JPG +38566,4618,1969,15,0,capped,DSC_0838.JPG +38567,4123,1975,15,0,capped,DSC_0838.JPG +38568,1105,2044,17,0,capped,DSC_0838.JPG +38569,1180,2047,17,0,capped,DSC_0838.JPG +38570,1672,2065,17,0,capped,DSC_0838.JPG +38571,3628,2086,17,0,capped,DSC_0838.JPG +38572,2128,2131,15,0,capped,DSC_0838.JPG +38573,1177,2167,15,0,capped,DSC_0838.JPG +38574,4759,2191,16,0,capped,DSC_0838.JPG +38575,2644,2203,17,0,capped,DSC_0838.JPG +38576,4576,2251,15,0,capped,DSC_0838.JPG +38577,4504,2260,17,0,capped,DSC_0838.JPG +38578,4162,2266,17,0,capped,DSC_0838.JPG +38579,2854,304,15,0,capped,DSC_0838.JPG +38580,3130,307,15,0,capped,DSC_0838.JPG +38581,3592,508,17,0,capped,DSC_0838.JPG +38582,2920,562,15,0,capped,DSC_0838.JPG +38583,1681,607,17,0,capped,DSC_0838.JPG +38584,1150,661,17,0,capped,DSC_0838.JPG +38585,3406,694,17,0,capped,DSC_0838.JPG +38586,766,961,15,0,capped,DSC_0838.JPG +38587,1399,976,15,0,capped,DSC_0838.JPG +38588,2308,994,17,0,capped,DSC_0838.JPG +38589,274,1069,15,0,capped,DSC_0838.JPG +38590,3958,1078,17,0,capped,DSC_0838.JPG +38591,2314,1114,17,0,capped,DSC_0838.JPG +38592,1861,1162,17,0,capped,DSC_0838.JPG +38593,196,1183,15,0,capped,DSC_0838.JPG +38594,4945,1183,15,0,capped,DSC_0838.JPG +38596,2038,1231,15,0,capped,DSC_0838.JPG +38597,2446,1243,15,0,capped,DSC_0838.JPG +38598,1006,1267,17,0,capped,DSC_0838.JPG +38599,4801,1312,15,0,capped,DSC_0838.JPG +38600,832,1444,17,0,capped,DSC_0838.JPG +38601,1747,1471,15,0,capped,DSC_0838.JPG +38602,940,1504,17,0,capped,DSC_0838.JPG +38603,1855,1534,17,0,capped,DSC_0838.JPG +38604,691,1555,15,0,capped,DSC_0838.JPG +38605,1321,1576,17,0,capped,DSC_0838.JPG +38606,1819,1591,17,0,capped,DSC_0838.JPG +38607,4123,1621,17,0,capped,DSC_0838.JPG +38608,1786,1648,17,0,capped,DSC_0838.JPG +38609,1855,1648,15,0,capped,DSC_0838.JPG +38610,1708,1651,15,0,capped,DSC_0838.JPG +38611,1207,1750,17,0,capped,DSC_0838.JPG +38612,2125,1771,15,0,capped,DSC_0838.JPG +38613,610,1789,17,0,capped,DSC_0838.JPG +38614,1675,1828,15,0,capped,DSC_0838.JPG +38615,2164,1834,15,0,capped,DSC_0838.JPG +38616,1075,1867,15,0,capped,DSC_0838.JPG +38617,4585,1912,15,0,capped,DSC_0838.JPG +38618,4231,1918,17,0,capped,DSC_0838.JPG +38620,1852,2005,15,0,capped,DSC_0838.JPG +38621,2548,2023,15,0,capped,DSC_0838.JPG +38622,4645,2251,17,0,capped,DSC_0838.JPG +38623,1456,2296,15,0,capped,DSC_0838.JPG +38624,2161,2314,15,0,capped,DSC_0838.JPG +38628,2143,412,15,0,capped,DSC_0838.JPG +38629,2107,484,15,0,capped,DSC_0838.JPG +38630,2605,502,15,0,capped,DSC_0838.JPG +38631,4012,514,15,0,capped,DSC_0838.JPG +38632,1297,538,17,0,capped,DSC_0838.JPG +38633,334,574,17,0,capped,DSC_0838.JPG +38634,2818,628,15,0,capped,DSC_0838.JPG +38635,3799,634,17,0,capped,DSC_0838.JPG +38636,2281,682,15,0,capped,DSC_0838.JPG +38637,769,841,15,0,capped,DSC_0838.JPG +38638,4003,892,15,0,capped,DSC_0838.JPG +38639,4351,892,17,0,capped,DSC_0838.JPG +38640,4558,892,17,0,capped,DSC_0838.JPG +38641,1294,913,15,0,capped,DSC_0838.JPG +38642,760,1078,15,0,capped,DSC_0838.JPG +38643,694,1084,17,0,capped,DSC_0838.JPG +38644,4420,1138,17,0,capped,DSC_0838.JPG +38645,763,1201,15,0,capped,DSC_0838.JPG +38646,1537,1342,16,0,capped,DSC_0838.JPG +38647,1066,1381,15,0,capped,DSC_0838.JPG +38648,1288,1516,15,0,capped,DSC_0838.JPG +38649,4093,1564,15,0,capped,DSC_0838.JPG +38650,1606,1588,15,0,capped,DSC_0838.JPG +38651,1150,1633,17,0,capped,DSC_0838.JPG +38652,2404,1780,15,0,capped,DSC_0838.JPG +38653,1144,1870,15,0,capped,DSC_0838.JPG +38654,898,1915,17,0,capped,DSC_0838.JPG +38655,4900,1966,17,0,capped,DSC_0838.JPG +38656,643,1972,17,0,capped,DSC_0838.JPG +38657,793,1972,15,0,capped,DSC_0838.JPG +38658,4336,1975,17,0,capped,DSC_0838.JPG +38659,3946,2032,15,0,capped,DSC_0838.JPG +38660,4366,2032,15,0,capped,DSC_0838.JPG +38661,2722,2080,15,0,capped,DSC_0838.JPG +38662,4198,2098,17,0,capped,DSC_0838.JPG +38663,4582,2143,17,0,capped,DSC_0838.JPG +38664,1351,2233,17,0,capped,DSC_0838.JPG +38665,2335,2254,15,0,capped,DSC_0838.JPG +38666,2440,2320,17,0,capped,DSC_0838.JPG +38667,4330,2320,17,0,capped,DSC_0838.JPG +38669,3556,2323,17,0,capped,DSC_0838.JPG +38674,3592,376,17,0,capped,DSC_0838.JPG +38676,3445,502,17,0,capped,DSC_0838.JPG +38677,2353,559,15,0,capped,DSC_0838.JPG +38678,3835,571,17,0,capped,DSC_0838.JPG +38679,4189,571,17,0,capped,DSC_0838.JPG +38680,1186,601,17,0,capped,DSC_0838.JPG +38681,2110,613,15,0,capped,DSC_0838.JPG +38682,3967,709,17,0,capped,DSC_0838.JPG +38683,4105,835,17,0,capped,DSC_0838.JPG +38684,1114,844,15,0,capped,DSC_0838.JPG +38685,1825,862,17,0,capped,DSC_0838.JPG +38686,1933,928,17,0,capped,DSC_0838.JPG +38687,970,1087,15,0,capped,DSC_0838.JPG +38688,1390,1222,15,0,capped,DSC_0838.JPG +38689,1429,1279,17,0,capped,DSC_0838.JPG +38690,5089,1420,15,0,capped,DSC_0838.JPG +38691,2548,1426,15,0,capped,DSC_0838.JPG +38692,2305,1477,17,0,capped,DSC_0838.JPG +38693,5197,1594,15,0,capped,DSC_0838.JPG +38694,2659,1606,17,0,capped,DSC_0838.JPG +38695,4198,1618,15,0,capped,DSC_0838.JPG +38696,4411,1618,15,0,capped,DSC_0838.JPG +38697,1924,1651,15,0,capped,DSC_0838.JPG +38698,2407,1660,15,0,capped,DSC_0838.JPG +38699,4585,1678,17,0,capped,DSC_0838.JPG +38700,790,1732,15,0,capped,DSC_0838.JPG +38701,2368,1957,15,0,capped,DSC_0838.JPG +38702,4549,1963,15,0,capped,DSC_0838.JPG +38703,1357,1993,15,0,capped,DSC_0838.JPG +38704,1708,1999,17,0,capped,DSC_0838.JPG +38705,1498,2002,17,0,capped,DSC_0838.JPG +38706,2401,2014,15,0,capped,DSC_0838.JPG +38707,5041,2074,15,0,capped,DSC_0838.JPG +38708,718,2089,15,0,capped,DSC_0838.JPG +38709,787,2092,15,0,capped,DSC_0838.JPG +38710,1144,2104,17,0,capped,DSC_0838.JPG +38711,2479,2137,17,0,capped,DSC_0838.JPG +38712,1036,2164,17,0,capped,DSC_0838.JPG +38713,1249,2170,15,0,capped,DSC_0838.JPG +38714,1879,2308,17,0,capped,DSC_0838.JPG +38715,4405,2323,17,0,capped,DSC_0838.JPG +38716,3835,2326,15,0,capped,DSC_0838.JPG +38717,2755,2380,17,0,capped,DSC_0838.JPG +38718,4081,2389,17,0,capped,DSC_0838.JPG +38721,3382,370,15,0,capped,DSC_0838.JPG +38722,3127,565,15,0,capped,DSC_0838.JPG +38723,3331,565,17,0,capped,DSC_0838.JPG +38724,622,580,15,0,capped,DSC_0838.JPG +38725,1471,604,15,0,capped,DSC_0838.JPG +38726,187,691,17,0,capped,DSC_0838.JPG +38727,412,700,17,0,capped,DSC_0838.JPG +38728,1045,721,15,0,capped,DSC_0838.JPG +38729,3760,829,17,0,capped,DSC_0838.JPG +38730,1048,844,17,0,capped,DSC_0838.JPG +38731,226,880,15,0,capped,DSC_0838.JPG +38732,1498,922,15,0,capped,DSC_0838.JPG +38733,4918,1003,17,0,capped,DSC_0838.JPG +38734,1363,1036,15,0,capped,DSC_0838.JPG +38735,4315,1072,15,0,capped,DSC_0838.JPG +38736,310,1135,15,0,capped,DSC_0838.JPG +38738,196,1303,15,0,capped,DSC_0838.JPG +38739,4624,1375,15,0,capped,DSC_0838.JPG +38741,4270,1501,15,0,capped,DSC_0838.JPG +38742,196,1534,17,0,capped,DSC_0838.JPG +38743,760,1675,15,0,capped,DSC_0838.JPG +38744,4093,1675,17,0,capped,DSC_0838.JPG +38745,4660,1678,17,0,capped,DSC_0838.JPG +38746,4372,1684,17,0,capped,DSC_0838.JPG +38747,4588,1795,15,0,capped,DSC_0838.JPG +38748,1183,1819,15,0,capped,DSC_0838.JPG +38749,2473,2023,15,0,capped,DSC_0838.JPG +38751,748,2032,15,0,capped,DSC_0838.JPG +38752,3772,2086,15,0,capped,DSC_0838.JPG +38753,2194,2134,17,0,capped,DSC_0838.JPG +38754,1813,2185,17,0,capped,DSC_0838.JPG +38755,4012,2269,17,0,capped,DSC_0838.JPG +38757,1774,2365,15,0,capped,DSC_0838.JPG +38763,832,328,15,0,capped,DSC_0838.JPG +38764,3058,439,17,0,capped,DSC_0838.JPG +38765,3622,442,17,0,capped,DSC_0838.JPG +38767,1435,670,15,0,capped,DSC_0838.JPG +38768,697,832,15,0,capped,DSC_0838.JPG +38769,1612,856,17,0,capped,DSC_0838.JPG +38770,592,892,15,0,capped,DSC_0838.JPG +38771,658,892,17,0,capped,DSC_0838.JPG +38772,1432,922,15,0,capped,DSC_0838.JPG +38773,697,961,15,0,capped,DSC_0838.JPG +38774,2038,985,15,0,capped,DSC_0838.JPG +38775,1723,1051,17,0,capped,DSC_0838.JPG +38776,559,1081,15,0,capped,DSC_0838.JPG +38777,4096,1081,17,0,capped,DSC_0838.JPG +38778,1219,1150,15,0,capped,DSC_0838.JPG +38779,2170,1228,17,0,capped,DSC_0838.JPG +38780,1570,1282,17,0,capped,DSC_0838.JPG +38781,2485,1306,15,0,capped,DSC_0838.JPG +38782,1891,1345,17,0,capped,DSC_0838.JPG +38783,2662,1372,15,0,capped,DSC_0838.JPG +38784,856,1501,15,0,capped,DSC_0838.JPG +38785,1141,1513,17,0,capped,DSC_0838.JPG +38786,2473,1534,15,0,capped,DSC_0838.JPG +38787,268,1546,17,0,capped,DSC_0838.JPG +38788,5161,1654,15,0,capped,DSC_0838.JPG +38789,1114,1690,17,0,capped,DSC_0838.JPG +38790,1960,1714,15,0,capped,DSC_0838.JPG +38791,1642,1765,15,0,capped,DSC_0838.JPG +38792,4516,1795,15,0,capped,DSC_0838.JPG +38793,823,1798,15,0,capped,DSC_0838.JPG +38794,4087,1798,15,0,capped,DSC_0838.JPG +38795,2656,1846,17,0,capped,DSC_0838.JPG +38797,2338,1894,15,0,capped,DSC_0838.JPG +38798,2617,1900,15,0,capped,DSC_0838.JPG +38799,2401,1903,15,0,capped,DSC_0838.JPG +38800,2653,2074,17,0,capped,DSC_0838.JPG +38801,4543,2203,17,0,capped,DSC_0838.JPG +38802,2545,2260,17,0,capped,DSC_0838.JPG +38804,1600,2299,15,0,capped,DSC_0838.JPG +38805,3421,2323,15,0,capped,DSC_0838.JPG +38806,4261,2329,17,0,capped,DSC_0838.JPG +38807,1429,2356,15,0,capped,DSC_0838.JPG +38808,1486,2362,17,0,capped,DSC_0838.JPG +38809,1864,283,15,0,capped,DSC_0838.JPG +38810,3271,301,17,0,capped,DSC_0838.JPG +38811,1606,607,17,0,capped,DSC_0838.JPG +38812,2314,619,17,0,capped,DSC_0838.JPG +38813,3370,631,17,0,capped,DSC_0838.JPG +38814,2350,682,15,0,capped,DSC_0838.JPG +38815,1186,721,17,0,capped,DSC_0838.JPG +38816,1258,850,15,0,capped,DSC_0838.JPG +38817,1684,856,15,0,capped,DSC_0838.JPG +38818,1153,913,17,0,capped,DSC_0838.JPG +38819,1648,919,15,0,capped,DSC_0838.JPG +38820,1252,1090,15,0,capped,DSC_0838.JPG +38821,2275,1180,17,0,capped,DSC_0838.JPG +38822,412,1186,17,0,capped,DSC_0838.JPG +38823,697,1201,15,0,capped,DSC_0838.JPG +38824,4309,1312,15,0,capped,DSC_0838.JPG +38825,4129,1501,15,0,capped,DSC_0838.JPG +38826,1786,1525,15,0,capped,DSC_0838.JPG +38827,1714,1528,17,0,capped,DSC_0838.JPG +38828,832,1561,17,0,capped,DSC_0838.JPG +38829,2365,1603,15,0,capped,DSC_0838.JPG +38830,2440,1723,15,0,capped,DSC_0838.JPG +38831,1000,1864,15,0,capped,DSC_0838.JPG +38832,1780,1888,16,0,capped,DSC_0838.JPG +38833,4054,1978,15,0,capped,DSC_0838.JPG +38834,1141,1984,17,0,capped,DSC_0838.JPG +38835,3913,2086,15,0,capped,DSC_0838.JPG +38836,3238,2143,17,0,capped,DSC_0838.JPG +38837,1390,2179,17,0,capped,DSC_0838.JPG +38838,3553,2206,17,0,capped,DSC_0838.JPG +38839,3979,2206,15,0,capped,DSC_0838.JPG +38840,3979,2326,17,0,capped,DSC_0838.JPG +38841,4009,2374,15,0,capped,DSC_0838.JPG +38844,967,337,15,0,capped,DSC_0838.JPG +38845,2530,370,15,0,capped,DSC_0838.JPG +38846,3451,373,17,0,capped,DSC_0838.JPG +38847,2212,421,17,0,capped,DSC_0838.JPG +38848,3763,445,15,0,capped,DSC_0838.JPG +38849,4429,508,17,0,capped,DSC_0838.JPG +38850,4042,583,17,0,capped,DSC_0838.JPG +38851,3511,634,15,0,capped,DSC_0838.JPG +38852,295,637,15,0,capped,DSC_0838.JPG +38853,4495,640,15,0,capped,DSC_0838.JPG +38854,1723,676,17,0,capped,DSC_0838.JPG +38855,4321,706,15,0,capped,DSC_0838.JPG +38856,1540,730,17,0,capped,DSC_0838.JPG +38857,4252,832,17,0,capped,DSC_0838.JPG +38858,3790,886,15,0,capped,DSC_0838.JPG +38859,1969,982,17,0,capped,DSC_0838.JPG +38860,1504,1039,15,0,capped,DSC_0838.JPG +38861,2587,1129,15,0,capped,DSC_0838.JPG +38862,2101,1234,17,0,capped,DSC_0838.JPG +38863,2071,1288,17,0,capped,DSC_0838.JPG +38864,2032,1606,17,0,capped,DSC_0838.JPG +38865,1495,1648,17,0,capped,DSC_0838.JPG +38866,4795,1672,17,0,capped,DSC_0838.JPG +38867,4549,1732,17,0,capped,DSC_0838.JPG +38868,865,1735,17,0,capped,DSC_0838.JPG +38869,1714,1771,15,0,capped,DSC_0838.JPG +38870,4660,1795,17,0,capped,DSC_0838.JPG +38871,1219,1867,15,0,capped,DSC_0838.JPG +38872,1324,1939,15,0,capped,DSC_0838.JPG +38873,4651,2020,17,0,capped,DSC_0838.JPG +38874,4792,2020,17,0,capped,DSC_0838.JPG +38875,4015,2029,15,0,capped,DSC_0838.JPG +38876,2434,2077,15,0,capped,DSC_0838.JPG +38877,4870,2128,15,0,capped,DSC_0838.JPG +38878,2578,2200,15,0,capped,DSC_0838.JPG +38879,2266,2254,15,0,capped,DSC_0838.JPG +38880,3064,2326,17,0,capped,DSC_0838.JPG +38881,2131,2371,17,0,capped,DSC_0838.JPG +38882,2473,2380,17,0,capped,DSC_0838.JPG +38890,1579,280,17,0,capped,DSC_0838.JPG +38891,1864,415,17,0,capped,DSC_0838.JPG +38892,3694,442,15,0,capped,DSC_0838.JPG +38893,4051,445,17,0,capped,DSC_0838.JPG +38894,4324,574,15,0,capped,DSC_0838.JPG +38895,2248,616,15,0,capped,DSC_0838.JPG +38896,2425,685,15,0,capped,DSC_0838.JPG +38897,1252,730,17,0,capped,DSC_0838.JPG +38898,1468,730,15,0,capped,DSC_0838.JPG +38899,2110,733,17,0,capped,DSC_0838.JPG +38900,2179,742,17,0,capped,DSC_0838.JPG +38901,1294,787,17,0,capped,DSC_0838.JPG +38902,187,814,17,0,capped,DSC_0838.JPG +38903,1462,859,17,0,capped,DSC_0838.JPG +38904,3754,955,17,0,capped,DSC_0838.JPG +38905,232,1003,17,0,capped,DSC_0838.JPG +38906,4348,1132,15,0,capped,DSC_0838.JPG +38907,5017,1180,15,0,capped,DSC_0838.JPG +38908,4807,1189,17,0,capped,DSC_0838.JPG +38909,1045,1207,15,0,capped,DSC_0838.JPG +38910,4555,1252,15,0,capped,DSC_0838.JPG +38911,4342,1255,17,0,capped,DSC_0838.JPG +38912,4273,1258,17,0,capped,DSC_0838.JPG +38913,4660,1312,15,0,capped,DSC_0838.JPG +38914,1609,1351,17,0,capped,DSC_0838.JPG +38915,2233,1360,17,0,capped,DSC_0838.JPG +38916,4309,1441,17,0,capped,DSC_0838.JPG +38918,4450,1555,15,0,capped,DSC_0838.JPG +38919,4732,1555,15,0,capped,DSC_0838.JPG +38920,4162,1558,15,0,capped,DSC_0838.JPG +38921,1108,1570,15,0,capped,DSC_0838.JPG +38922,2101,1591,15,0,capped,DSC_0838.JPG +38923,865,1618,15,0,capped,DSC_0838.JPG +38924,4048,1858,15,0,capped,DSC_0838.JPG +38925,4159,1909,15,0,capped,DSC_0838.JPG +38926,4084,1918,15,0,capped,DSC_0838.JPG +38927,4978,1963,17,0,capped,DSC_0838.JPG +38929,5011,2023,17,0,capped,DSC_0838.JPG +38930,892,2161,15,0,capped,DSC_0838.JPG +38931,1105,2167,17,0,capped,DSC_0838.JPG +38932,2440,2197,15,0,capped,DSC_0838.JPG +38933,1420,2230,17,0,capped,DSC_0838.JPG +38934,2824,2257,15,0,capped,DSC_0838.JPG +38935,3910,2320,15,0,capped,DSC_0838.JPG +38936,1630,2362,17,0,capped,DSC_0838.JPG +38940,3340,298,17,0,capped,DSC_0838.JPG +38941,3064,301,15,0,capped,DSC_0838.JPG +38942,1366,409,17,0,capped,DSC_0838.JPG +38943,1612,481,15,0,capped,DSC_0838.JPG +38944,484,583,15,0,capped,DSC_0838.JPG +38945,262,697,17,0,capped,DSC_0838.JPG +38946,1078,790,15,0,capped,DSC_0838.JPG +38947,265,820,17,0,capped,DSC_0838.JPG +38948,2626,1063,17,0,capped,DSC_0838.JPG +38949,4279,1138,15,0,capped,DSC_0838.JPG +38950,874,1270,15,0,capped,DSC_0838.JPG +38951,871,1384,17,0,capped,DSC_0838.JPG +38952,1855,1411,15,0,capped,DSC_0838.JPG +38953,2410,1420,15,0,capped,DSC_0838.JPG +38954,4453,1438,17,0,capped,DSC_0838.JPG +38955,1465,1465,15,0,capped,DSC_0838.JPG +38956,2587,1603,15,0,capped,DSC_0838.JPG +38957,937,1621,15,0,capped,DSC_0838.JPG +38959,4513,1678,17,0,capped,DSC_0838.JPG +38961,1276,1762,15,0,capped,DSC_0838.JPG +38962,1888,1831,15,0,capped,DSC_0838.JPG +38963,1033,1924,15,0,capped,DSC_0838.JPG +38964,2506,1966,17,0,capped,DSC_0838.JPG +38965,2158,2068,15,0,capped,DSC_0838.JPG +38967,3943,2149,15,0,capped,DSC_0838.JPG +38968,4684,2191,15,0,capped,DSC_0838.JPG +38969,4192,2203,15,0,capped,DSC_0838.JPG +38970,1612,340,17,0,capped,DSC_0838.JPG +38971,2389,358,15,0,capped,DSC_0838.JPG +38972,2893,370,17,0,capped,DSC_0838.JPG +38973,1399,472,17,0,capped,DSC_0838.JPG +38974,2851,562,15,0,capped,DSC_0838.JPG +38975,976,595,17,0,capped,DSC_0838.JPG +38976,664,652,15,0,capped,DSC_0838.JPG +38977,2140,676,15,0,capped,DSC_0838.JPG +38978,841,718,15,0,capped,DSC_0838.JPG +38979,1681,733,15,0,capped,DSC_0838.JPG +38980,1720,802,17,0,capped,DSC_0838.JPG +38981,1999,811,15,0,capped,DSC_0838.JPG +38982,2032,868,17,0,capped,DSC_0838.JPG +38983,4423,895,17,0,capped,DSC_0838.JPG +38984,1042,964,17,0,capped,DSC_0838.JPG +38985,1261,970,17,0,capped,DSC_0838.JPG +38986,4309,1198,15,0,capped,DSC_0838.JPG +38987,5050,1363,15,0,capped,DSC_0838.JPG +38988,655,1495,15,0,capped,DSC_0838.JPG +38989,2626,1546,15,0,capped,DSC_0838.JPG +38990,1243,1573,15,0,capped,DSC_0838.JPG +38992,4765,1612,15,0,capped,DSC_0838.JPG +38993,4627,1615,17,0,capped,DSC_0838.JPG +38994,1636,1651,15,0,capped,DSC_0838.JPG +38995,2197,1654,17,0,capped,DSC_0838.JPG +38996,1756,1714,15,0,capped,DSC_0838.JPG +38997,4723,1912,15,0,capped,DSC_0838.JPG +38998,1531,1942,15,0,capped,DSC_0838.JPG +38999,1000,1981,17,0,capped,DSC_0838.JPG +39000,2764,2032,17,0,capped,DSC_0838.JPG +39001,3841,2092,17,0,capped,DSC_0838.JPG +39002,4798,2137,15,0,capped,DSC_0838.JPG +39003,3382,2140,15,0,capped,DSC_0838.JPG +39005,2923,307,15,0,capped,DSC_0838.JPG +39006,1753,352,17,0,capped,DSC_0838.JPG +39007,1468,472,17,0,capped,DSC_0838.JPG +39008,4507,508,17,0,capped,DSC_0838.JPG +39009,1369,535,15,0,capped,DSC_0838.JPG +39010,2494,550,15,0,capped,DSC_0838.JPG +39011,1540,604,17,0,capped,DSC_0838.JPG +39012,4075,640,17,0,capped,DSC_0838.JPG +39013,4108,703,17,0,capped,DSC_0838.JPG +39014,4252,706,15,0,capped,DSC_0838.JPG +39015,2284,799,15,0,capped,DSC_0838.JPG +39017,379,889,15,0,capped,DSC_0838.JPG +39018,1750,991,15,0,capped,DSC_0838.JPG +39019,4003,1015,15,0,capped,DSC_0838.JPG +39020,5017,1060,17,0,capped,DSC_0838.JPG +39021,4528,1072,15,0,capped,DSC_0838.JPG +39022,1714,1168,15,0,capped,DSC_0838.JPG +39023,2659,1243,17,0,capped,DSC_0838.JPG +39024,229,1474,15,0,capped,DSC_0838.JPG +39025,1210,1510,15,0,capped,DSC_0838.JPG +39026,1354,1525,17,0,capped,DSC_0838.JPG +39027,1180,1582,15,0,capped,DSC_0838.JPG +39028,1744,1585,17,0,capped,DSC_0838.JPG +39029,1429,1762,17,0,capped,DSC_0838.JPG +39030,1570,1882,15,0,capped,DSC_0838.JPG +39031,2197,2011,15,0,capped,DSC_0838.JPG +39032,2266,2014,17,0,capped,DSC_0838.JPG +39033,2785,2086,17,0,capped,DSC_0838.JPG +39034,1213,2104,17,0,capped,DSC_0838.JPG +39035,4648,2137,15,0,capped,DSC_0838.JPG +39036,2827,2143,17,0,capped,DSC_0838.JPG +39037,2686,2257,15,0,capped,DSC_0838.JPG +39038,2479,2260,15,0,capped,DSC_0838.JPG +39039,2644,2317,17,0,capped,DSC_0838.JPG +39042,3553,304,17,0,capped,DSC_0838.JPG +39043,1468,334,17,0,capped,DSC_0838.JPG +39044,2602,367,15,0,capped,DSC_0838.JPG +39047,2749,502,17,0,capped,DSC_0838.JPG +39048,3727,631,17,0,capped,DSC_0838.JPG +39049,3589,634,17,0,capped,DSC_0838.JPG +39050,4006,640,15,0,capped,DSC_0838.JPG +39051,1792,679,17,0,capped,DSC_0838.JPG +39052,3835,697,17,0,capped,DSC_0838.JPG +39053,1897,739,15,0,capped,DSC_0838.JPG +39054,1222,784,15,0,capped,DSC_0838.JPG +39056,3901,955,15,0,capped,DSC_0838.JPG +39057,4561,1015,17,0,capped,DSC_0838.JPG +39058,4627,1015,17,0,capped,DSC_0838.JPG +39059,1681,1105,15,0,capped,DSC_0838.JPG +39060,937,1144,17,0,capped,DSC_0838.JPG +39061,2701,1309,17,0,capped,DSC_0838.JPG +39062,4696,1372,15,0,capped,DSC_0838.JPG +39063,1534,1465,15,0,capped,DSC_0838.JPG +39064,2440,1483,15,0,capped,DSC_0838.JPG +39065,580,1612,17,0,capped,DSC_0838.JPG +39066,643,1615,15,0,capped,DSC_0838.JPG +39067,4267,1618,15,0,capped,DSC_0838.JPG +39068,1993,1651,15,0,capped,DSC_0838.JPG +39069,1672,1711,15,0,capped,DSC_0838.JPG +39070,685,1792,15,0,capped,DSC_0838.JPG +39071,4477,1849,15,0,capped,DSC_0838.JPG +39072,1852,1885,17,0,capped,DSC_0838.JPG +39073,4618,2083,15,0,capped,DSC_0838.JPG +39074,1567,2359,17,0,capped,DSC_0838.JPG +39077,973,472,17,0,capped,DSC_0838.JPG +39078,1966,484,15,0,capped,DSC_0838.JPG +39079,2629,685,17,0,capped,DSC_0838.JPG +39080,979,841,15,0,capped,DSC_0838.JPG +39081,1963,865,15,0,capped,DSC_0838.JPG +39082,2137,919,15,0,capped,DSC_0838.JPG +39083,1870,922,17,0,capped,DSC_0838.JPG +39084,154,1132,17,0,capped,DSC_0838.JPG +39085,1477,1249,15,0,capped,DSC_0838.JPG +39086,4483,1252,15,0,capped,DSC_0838.JPG +39087,4801,1429,15,0,capped,DSC_0838.JPG +39088,1186,1453,15,0,capped,DSC_0838.JPG +39089,2026,1465,15,0,capped,DSC_0838.JPG +39090,1609,1468,17,0,capped,DSC_0838.JPG +39091,5158,1540,15,0,capped,DSC_0838.JPG +39092,1039,1567,17,0,capped,DSC_0838.JPG +39093,4483,1621,15,0,capped,DSC_0838.JPG +39095,538,1666,15,0,capped,DSC_0838.JPG +39096,829,1675,16,0,capped,DSC_0838.JPG +39097,1393,1699,15,0,capped,DSC_0838.JPG +39098,2371,1723,15,0,capped,DSC_0838.JPG +39099,2200,1774,15,0,capped,DSC_0838.JPG +39100,2515,1843,15,0,capped,DSC_0838.JPG +39101,4198,1858,15,0,capped,DSC_0838.JPG +39102,2062,1894,17,0,capped,DSC_0838.JPG +39103,5011,1897,15,0,capped,DSC_0838.JPG +39104,4405,1972,15,0,capped,DSC_0838.JPG +39105,2404,2131,15,0,capped,DSC_0838.JPG +39106,2926,2203,17,0,capped,DSC_0838.JPG +39108,4225,2389,15,0,capped,DSC_0838.JPG +39110,3616,691,15,0,capped,DSC_0838.JPG +39111,4042,700,17,0,capped,DSC_0838.JPG +39112,4282,895,17,0,capped,DSC_0838.JPG +39113,2239,988,17,0,capped,DSC_0838.JPG +39114,1579,1042,17,0,capped,DSC_0838.JPG +39115,2413,1054,17,0,capped,DSC_0838.JPG +39116,2044,1105,17,0,capped,DSC_0838.JPG +39118,1894,1234,17,0,capped,DSC_0838.JPG +39119,4420,1252,17,0,capped,DSC_0838.JPG +39120,4873,1309,17,0,capped,DSC_0838.JPG +39121,4165,1321,15,0,capped,DSC_0838.JPG +39122,1507,1396,17,0,capped,DSC_0838.JPG +39123,1714,1408,15,0,capped,DSC_0838.JPG +39124,4234,1441,17,0,capped,DSC_0838.JPG +39125,4450,1792,15,0,capped,DSC_0838.JPG +39126,1531,1822,15,0,capped,DSC_0838.JPG +39127,1960,1831,17,0,capped,DSC_0838.JPG +39128,1429,1885,17,0,capped,DSC_0838.JPG +39129,682,1912,17,0,capped,DSC_0838.JPG +39130,4609,2194,17,0,capped,DSC_0838.JPG +39131,1849,2245,15,0,capped,DSC_0838.JPG +39133,4156,2383,17,0,capped,DSC_0838.JPG +39137,1369,277,17,0,capped,DSC_0838.JPG +39138,2107,349,17,0,capped,DSC_0838.JPG +39139,3031,373,15,0,capped,DSC_0838.JPG +39140,2317,487,15,0,capped,DSC_0838.JPG +39141,2386,487,17,0,capped,DSC_0838.JPG +39142,1009,655,15,0,capped,DSC_0838.JPG +39143,1396,739,17,0,capped,DSC_0838.JPG +39144,1432,796,15,0,capped,DSC_0838.JPG +39145,2143,808,15,0,capped,DSC_0838.JPG +39146,835,967,15,0,capped,DSC_0838.JPG +39147,1474,982,17,0,capped,DSC_0838.JPG +39148,4207,1015,15,0,capped,DSC_0838.JPG +39149,625,1081,17,0,capped,DSC_0838.JPG +39150,907,1081,17,0,capped,DSC_0838.JPG +39151,1465,1105,17,0,capped,DSC_0838.JPG +39152,4837,1252,17,0,capped,DSC_0838.JPG +39153,694,1318,15,0,capped,DSC_0838.JPG +39154,4243,1318,15,0,capped,DSC_0838.JPG +39155,3955,1321,15,0,capped,DSC_0838.JPG +39156,2104,1351,15,0,capped,DSC_0838.JPG +39157,2137,1417,17,0,capped,DSC_0838.JPG +39158,2476,1423,15,0,capped,DSC_0838.JPG +39159,718,1498,17,0,capped,DSC_0838.JPG +39161,2446,1591,17,0,capped,DSC_0838.JPG +39162,1006,1624,15,0,capped,DSC_0838.JPG +39163,2548,1663,15,0,capped,DSC_0838.JPG +39164,1174,1693,16,0,capped,DSC_0838.JPG +39165,4900,1729,15,0,capped,DSC_0838.JPG +39166,4486,1744,15,0,capped,DSC_0838.JPG +39167,2095,1954,17,0,capped,DSC_0838.JPG +39168,3628,2206,17,0,capped,DSC_0838.JPG +39169,997,2221,17,0,capped,DSC_0838.JPG +39170,4681,2308,15,0,capped,DSC_0838.JPG +39171,2095,2314,17,0,capped,DSC_0838.JPG +39172,4189,2323,17,0,capped,DSC_0838.JPG +39173,3208,2326,17,0,capped,DSC_0838.JPG +39177,1330,337,15,0,capped,DSC_0838.JPG +39178,3838,436,15,0,capped,DSC_0838.JPG +39179,1681,475,17,0,capped,DSC_0838.JPG +39180,484,709,17,0,capped,DSC_0838.JPG +39181,2458,745,15,0,capped,DSC_0838.JPG +39182,301,760,17,0,capped,DSC_0838.JPG +39183,1924,814,17,0,capped,DSC_0838.JPG +39184,1327,865,15,0,capped,DSC_0838.JPG +39185,2002,922,15,0,capped,DSC_0838.JPG +39186,2275,1045,15,0,capped,DSC_0838.JPG +39187,4243,1072,15,0,capped,DSC_0838.JPG +39188,4033,1081,15,0,capped,DSC_0838.JPG +39189,232,1135,15,0,capped,DSC_0838.JPG +39190,1183,1213,17,0,capped,DSC_0838.JPG +39191,1258,1222,17,0,capped,DSC_0838.JPG +39192,5197,1474,15,0,capped,DSC_0838.JPG +39193,1993,1537,15,0,capped,DSC_0838.JPG +39194,979,1564,17,0,capped,DSC_0838.JPG +39195,646,1732,15,0,capped,DSC_0838.JPG +39196,1357,1750,17,0,capped,DSC_0838.JPG +39197,1258,1819,17,0,capped,DSC_0838.JPG +39198,721,1849,17,0,capped,DSC_0838.JPG +39199,2470,1900,15,0,capped,DSC_0838.JPG +39200,1744,1948,15,0,capped,DSC_0838.JPG +39201,2578,1969,15,0,capped,DSC_0838.JPG +39202,2095,2074,17,0,capped,DSC_0838.JPG +39203,2335,2131,15,0,capped,DSC_0838.JPG +39204,3658,2377,17,0,capped,DSC_0838.JPG +39206,2710,310,15,0,capped,DSC_0838.JPG +39208,2383,748,15,0,capped,DSC_0838.JPG +39209,1786,802,17,0,capped,DSC_0838.JPG +39210,1897,865,15,0,capped,DSC_0838.JPG +39211,4879,949,17,0,capped,DSC_0838.JPG +39212,901,973,15,0,capped,DSC_0838.JPG +39213,1126,1027,15,0,capped,DSC_0838.JPG +39214,4735,1069,15,0,capped,DSC_0838.JPG +39215,1180,1090,15,0,capped,DSC_0838.JPG +39216,4036,1204,15,0,capped,DSC_0838.JPG +39218,430,1609,15,0,capped,DSC_0838.JPG +39219,4054,1624,17,0,capped,DSC_0838.JPG +39220,4732,1675,17,0,capped,DSC_0838.JPG +39221,1783,1768,17,0,capped,DSC_0838.JPG +39222,1993,1774,15,0,capped,DSC_0838.JPG +39223,4723,2023,15,0,capped,DSC_0838.JPG +39224,2266,2128,15,0,capped,DSC_0838.JPG +39225,2158,2194,15,0,capped,DSC_0838.JPG +39226,3697,2326,15,0,capped,DSC_0838.JPG +39227,3169,2386,15,0,capped,DSC_0838.JPG +39231,3949,376,17,0,capped,DSC_0838.JPG +39232,691,580,17,0,capped,DSC_0838.JPG +39233,1123,730,17,0,capped,DSC_0838.JPG +39234,937,901,15,0,capped,DSC_0838.JPG +39235,4387,958,15,0,capped,DSC_0838.JPG +39236,304,1003,17,0,capped,DSC_0838.JPG +39237,4663,1069,15,0,capped,DSC_0838.JPG +39238,2074,1177,17,0,capped,DSC_0838.JPG +39239,5095,1177,17,0,capped,DSC_0838.JPG +39240,2626,1180,17,0,capped,DSC_0838.JPG +39241,907,1201,17,0,capped,DSC_0838.JPG +39242,3925,1264,15,0,capped,DSC_0838.JPG +39243,2413,1297,17,0,capped,DSC_0838.JPG +39244,1075,1510,15,0,capped,DSC_0838.JPG +39245,2344,1540,15,0,capped,DSC_0838.JPG +39246,685,1669,15,0,capped,DSC_0838.JPG +39247,1540,1702,15,0,capped,DSC_0838.JPG +39248,1924,1768,15,0,capped,DSC_0838.JPG +39249,1813,1951,15,0,capped,DSC_0838.JPG +39250,934,1972,17,0,capped,DSC_0838.JPG +39251,1423,1996,15,0,capped,DSC_0838.JPG +39252,4510,2026,17,0,capped,DSC_0838.JPG +39253,3349,2314,15,0,capped,DSC_0838.JPG +39254,2854,2317,15,0,capped,DSC_0838.JPG +39256,3241,2389,17,0,capped,DSC_0838.JPG +39259,2632,304,15,0,capped,DSC_0838.JPG +39260,2041,352,17,0,capped,DSC_0838.JPG +39261,3238,376,15,0,capped,DSC_0838.JPG +39262,736,514,15,0,capped,DSC_0838.JPG +39263,2632,562,15,0,capped,DSC_0838.JPG +39264,4324,826,15,0,capped,DSC_0838.JPG +39265,3613,829,15,0,capped,DSC_0838.JPG +39266,4624,1138,17,0,capped,DSC_0838.JPG +39267,4069,1264,17,0,capped,DSC_0838.JPG +39269,1672,1351,15,0,capped,DSC_0838.JPG +39270,4663,1552,17,0,capped,DSC_0838.JPG +39271,1459,1579,15,0,capped,DSC_0838.JPG +39272,2089,1711,17,0,capped,DSC_0838.JPG +39273,4621,1726,15,0,capped,DSC_0838.JPG +39274,1885,1945,15,0,capped,DSC_0838.JPG +39277,1258,331,15,0,capped,DSC_0838.JPG +39278,727,388,17,0,capped,DSC_0838.JPG +39279,3163,505,15,0,capped,DSC_0838.JPG +39280,1822,736,17,0,capped,DSC_0838.JPG +39281,2317,739,15,0,capped,DSC_0838.JPG +39282,1753,859,15,0,capped,DSC_0838.JPG +39283,3862,886,17,0,capped,DSC_0838.JPG +39284,3826,961,15,0,capped,DSC_0838.JPG +39285,3928,1018,15,0,capped,DSC_0838.JPG +39286,940,1021,15,0,capped,DSC_0838.JPG +39287,2008,1051,17,0,capped,DSC_0838.JPG +39288,1864,1054,17,0,capped,DSC_0838.JPG +39289,4588,1069,17,0,capped,DSC_0838.JPG +39290,1333,1096,17,0,capped,DSC_0838.JPG +39291,1501,1159,15,0,capped,DSC_0838.JPG +39292,835,1201,17,0,capped,DSC_0838.JPG +39293,2134,1291,15,0,capped,DSC_0838.JPG +39294,4441,1318,17,0,capped,DSC_0838.JPG +39296,1318,1453,15,0,capped,DSC_0838.JPG +39297,514,1609,15,0,capped,DSC_0838.JPG +39298,1075,1627,15,0,capped,DSC_0838.JPG +39299,1357,1633,17,0,capped,DSC_0838.JPG +39300,2125,1657,17,0,capped,DSC_0838.JPG +39301,439,1837,17,0,capped,DSC_0838.JPG +39302,2431,1849,17,0,capped,DSC_0838.JPG +39303,1645,1888,15,0,capped,DSC_0838.JPG +39304,2233,2074,17,0,capped,DSC_0838.JPG +39305,2059,2128,15,0,capped,DSC_0838.JPG +39306,2764,2137,15,0,capped,DSC_0838.JPG +39307,3142,2317,17,0,capped,DSC_0838.JPG +39308,1843,2365,15,0,capped,DSC_0838.JPG +39309,4576,2371,15,0,capped,DSC_0838.JPG +39312,1720,280,17,0,capped,DSC_0838.JPG +39313,1180,337,15,0,capped,DSC_0838.JPG +39314,1117,598,15,0,capped,DSC_0838.JPG +39315,1966,739,15,0,capped,DSC_0838.JPG +39316,2248,739,17,0,capped,DSC_0838.JPG +39317,151,868,17,0,capped,DSC_0838.JPG +39318,874,1030,15,0,capped,DSC_0838.JPG +39319,4387,1072,15,0,capped,DSC_0838.JPG +39320,4450,1078,17,0,capped,DSC_0838.JPG +39321,1399,1102,17,0,capped,DSC_0838.JPG +39322,799,1258,17,0,capped,DSC_0838.JPG +39323,1990,1414,15,0,capped,DSC_0838.JPG +39324,4345,1492,17,0,capped,DSC_0838.JPG +39326,790,1621,15,0,capped,DSC_0838.JPG +39327,1606,1702,15,0,capped,DSC_0838.JPG +39328,367,1720,15,0,capped,DSC_0838.JPG +39331,5047,1960,17,0,capped,DSC_0838.JPG +39332,2332,2014,17,0,capped,DSC_0838.JPG +39333,4759,2080,15,0,capped,DSC_0838.JPG +39336,2074,280,15,0,capped,DSC_0838.JPG +39337,1192,469,15,0,capped,DSC_0838.JPG +39338,799,505,15,0,capped,DSC_0838.JPG +39339,2569,559,15,0,capped,DSC_0838.JPG +39340,2563,676,15,0,capped,DSC_0838.JPG +39341,1855,802,17,0,capped,DSC_0838.JPG +39342,2179,865,17,0,capped,DSC_0838.JPG +39343,1579,922,15,0,capped,DSC_0838.JPG +39344,4102,955,15,0,capped,DSC_0838.JPG +39345,1894,1105,17,0,capped,DSC_0838.JPG +39346,763,1321,17,0,capped,DSC_0838.JPG +39347,4483,1378,17,0,capped,DSC_0838.JPG +39348,154,1474,15,0,capped,DSC_0838.JPG +39349,4594,1549,15,0,capped,DSC_0838.JPG +39350,760,1552,15,0,capped,DSC_0838.JPG +39351,2056,1663,17,0,capped,DSC_0838.JPG +39352,1141,1759,17,0,capped,DSC_0838.JPG +39353,1603,1831,15,0,capped,DSC_0838.JPG +39354,2365,2071,17,0,capped,DSC_0838.JPG +39355,1381,2293,15,0,capped,DSC_0838.JPG +39358,2749,370,15,0,capped,DSC_0838.JPG +39359,223,631,15,0,capped,DSC_0838.JPG +39360,2038,739,15,0,capped,DSC_0838.JPG +39361,3724,769,17,0,capped,DSC_0838.JPG +39362,1540,979,15,0,capped,DSC_0838.JPG +39363,1426,1042,15,0,capped,DSC_0838.JPG +39364,1348,1276,15,0,capped,DSC_0838.JPG +39365,184,1417,15,0,capped,DSC_0838.JPG +39366,691,1435,15,0,capped,DSC_0838.JPG +39367,1573,1654,15,0,capped,DSC_0838.JPG +39368,1852,1765,15,0,capped,DSC_0838.JPG +39369,2026,1831,15,0,capped,DSC_0838.JPG +39370,2149,1888,15,0,capped,DSC_0838.JPG +39371,1396,1939,17,0,capped,DSC_0838.JPG +39373,1069,2221,17,0,capped,DSC_0838.JPG +39375,1693,2359,17,0,capped,DSC_0838.JPG +39377,1792,283,17,0,capped,DSC_0838.JPG +39378,766,592,15,0,capped,DSC_0838.JPG +39379,2386,625,15,0,capped,DSC_0838.JPG +39380,3868,772,15,0,capped,DSC_0838.JPG +39381,829,1090,15,0,capped,DSC_0838.JPG +39382,4771,1246,17,0,capped,DSC_0838.JPG +39383,733,1381,17,0,capped,DSC_0838.JPG +39384,4555,1618,15,0,capped,DSC_0838.JPG +39385,574,1729,17,0,capped,DSC_0838.JPG +39386,1558,1771,15,0,capped,DSC_0838.JPG +39387,2098,1837,15,0,capped,DSC_0838.JPG +39388,4516,1912,15,0,capped,DSC_0838.JPG +39389,2050,2365,17,0,capped,DSC_0838.JPG +39393,3550,439,17,0,capped,DSC_0838.JPG +39394,3448,634,15,0,capped,DSC_0838.JPG +39395,2191,655,17,0,capped,DSC_0838.JPG +39396,1750,733,17,0,capped,DSC_0838.JPG +39397,2422,805,15,0,capped,DSC_0838.JPG +39398,3898,832,17,0,capped,DSC_0838.JPG +39399,1255,1336,15,0,capped,DSC_0838.JPG +39400,151,1348,17,0,capped,DSC_0838.JPG +39401,1039,1444,17,0,capped,DSC_0838.JPG +39402,2398,2380,17,0,capped,DSC_0838.JPG +39403,2215,280,17,0,capped,DSC_0838.JPG +39404,838,589,15,0,capped,DSC_0838.JPG +39405,2461,625,15,0,capped,DSC_0838.JPG +39407,2074,805,17,0,capped,DSC_0838.JPG +39408,595,1018,17,0,capped,DSC_0838.JPG +39409,2002,1177,17,0,capped,DSC_0838.JPG +39410,1966,1228,17,0,capped,DSC_0838.JPG +39411,1954,1474,17,0,capped,DSC_0838.JPG +39412,1954,1588,17,0,capped,DSC_0838.JPG +39413,1318,1813,17,0,capped,DSC_0838.JPG +39414,574,1843,15,0,capped,DSC_0838.JPG +39417,3025,499,15,0,capped,DSC_0838.JPG +39418,3694,568,17,0,capped,DSC_0838.JPG +39419,3259,574,15,0,capped,DSC_0838.JPG +39420,1402,862,17,0,capped,DSC_0838.JPG +39421,4135,901,17,0,capped,DSC_0838.JPG +39422,2665,1003,17,0,capped,DSC_0838.JPG +39423,4075,1012,15,0,capped,DSC_0838.JPG +39424,1294,1033,15,0,capped,DSC_0838.JPG +39425,805,1144,17,0,capped,DSC_0838.JPG +39426,1147,1147,17,0,capped,DSC_0838.JPG +39427,1366,1396,15,0,capped,DSC_0838.JPG +39428,4309,1684,17,0,capped,DSC_0838.JPG +39429,1291,1864,15,0,capped,DSC_0838.JPG +39434,1651,289,17,0,capped,DSC_0838.JPG +39435,1195,970,17,0,capped,DSC_0838.JPG +39436,1291,1270,17,0,capped,DSC_0838.JPG +39438,4594,1435,17,0,capped,DSC_0838.JPG +39439,2107,1471,15,0,capped,DSC_0838.JPG +39440,4699,1729,15,0,capped,DSC_0838.JPG +39441,2164,1945,15,0,capped,DSC_0838.JPG +39442,2065,2011,15,0,capped,DSC_0838.JPG +39443,2269,2371,15,0,capped,DSC_0838.JPG +39447,3802,511,17,0,capped,DSC_0838.JPG +39449,3940,640,17,0,capped,DSC_0838.JPG +39450,3760,709,15,0,capped,DSC_0838.JPG +39453,877,1147,15,0,capped,DSC_0838.JPG +39454,2485,1663,17,0,capped,DSC_0838.JPG +39455,2032,1717,17,0,capped,DSC_0838.JPG +39458,3670,796,15,0,capped,DSC_0838.JPG +39459,1675,1459,17,0,capped,DSC_0838.JPG +39461,1984,1897,17,0,capped,DSC_0838.JPG +39464,4399,574,15,0,capped,DSC_0838.JPG +39465,3997,949,17,0,capped,DSC_0838.JPG +39469,3823,835,15,0,capped,DSC_0838.JPG +39470,1816,1816,15,0,capped,DSC_0838.JPG +39472,1639,808,17,0,capped,DSC_0838.JPG +39473,2458,1795,15,0,capped,DSC_0838.JPG +39474,2926,2326,17,0,capped,DSC_0838.JPG +39478,4495,880,15,0,capped,DSC_0838.JPG +39479,1123,970,17,0,capped,DSC_0838.JPG +39480,4897,2071,17,0,capped,DSC_0838.JPG +39482,4723,1786,17,0,capped,DSC_0838.JPG +39486,2890,241,15,0,capped,DSC_0838.JPG +39487,3934,892,17,0,capped,DSC_0838.JPG +39488,1429,1639,17,0,capped,DSC_0838.JPG +39490,1081,1984,15,0,capped,DSC_0838.JPG +39492,3415,292,17,0,capped,DSC_0838.JPG +39493,4957,1069,15,0,capped,DSC_0838.JPG +39495,463,1786,15,0,capped,DSC_0838.JPG +39496,1924,1405,15,0,capped,DSC_0838.JPG +39505,1486,2110,15,0,capped,DSC_0838.JPG +39506,3022,2377,15,0,capped,DSC_0838.JPG +39510,2071,1039,17,0,capped,DSC_0838.JPG +39512,2530,1723,15,0,capped,DSC_0838.JPG +39517,4561,1504,17,0,capped,DSC_0838.JPG +39520,5065,1120,17,0,capped,DSC_0838.JPG +39523,616,961,17,0,capped,DSC_0838.JPG +39524,4396,2098,15,0,capped,DSC_0838.JPG +39527,1534,346,15,0,capped,DSC_0838.JPG +39532,3721,520,15,0,capped,DSC_0838.JPG +39533,658,763,15,0,capped,DSC_0838.JPG +39534,2635,1426,15,0,capped,DSC_0838.JPG +39537,403,949,17,0,capped,DSC_0838.JPG +39540,2209,1885,15,0,capped,DSC_0838.JPG +39547,4078,2038,17,0,capped,DSC_0838.JPG +39551,1066,1024,15,0,capped,DSC_0838.JPG +39565,2176,601,17,0,capped,DSC_0838.JPG +39566,2368,1825,15,0,capped,DSC_0838.JPG +39571,3646,745,17,0,capped,DSC_0838.JPG +5909,3070,1753,15,0,capped,DSC_0837.JPG +0,3841,529,15,2,eggs,DSC_0844.JPG +100,3340,649,16,2,eggs,DSC_0844.JPG +1000,2569,2167,17,2,eggs,DSC_0844.JPG +10000,2524,748,17,2,eggs,DSC_0848.JPG +10006,1999,1045,17,2,eggs,DSC_0848.JPG +1002,2116,2215,15,2,eggs,DSC_0844.JPG +10021,2764,2002,15,2,eggs,DSC_0848.JPG +10068,2632,1051,15,2,eggs,DSC_0848.JPG +10072,3148,1360,15,2,eggs,DSC_0848.JPG +1009,1582,484,17,2,eggs,DSC_0844.JPG +101,4603,793,16,2,eggs,DSC_0844.JPG +10100,3115,1303,15,2,eggs,DSC_0848.JPG +10114,2317,985,15,2,eggs,DSC_0848.JPG +10140,2803,1117,16,2,eggs,DSC_0848.JPG +10147,1510,1519,15,1,eggs,DSC_0848.JPG +10148,3007,1597,15,2,eggs,DSC_0848.JPG +10171,3151,1003,15,2,eggs,DSC_0848.JPG +10172,2767,1171,15,2,eggs,DSC_0848.JPG +10173,1963,1228,15,2,eggs,DSC_0848.JPG +10174,2803,1234,16,2,eggs,DSC_0848.JPG +10175,3079,1357,15,2,eggs,DSC_0848.JPG +10204,2212,925,15,2,eggs,DSC_0848.JPG +10237,2104,988,16,2,eggs,DSC_0848.JPG +10245,3214,1954,15,2,eggs,DSC_0848.JPG +1027,4543,1696,15,2,eggs,DSC_0844.JPG +10271,2491,925,16,2,eggs,DSC_0848.JPG +10277,2905,1294,17,2,eggs,DSC_0848.JPG +10284,2872,1591,17,2,eggs,DSC_0848.JPG +10287,3076,1831,15,2,eggs,DSC_0848.JPG +1030,4426,1879,15,2,eggs,DSC_0844.JPG +10309,3073,1474,15,2,eggs,DSC_0848.JPG +10316,3316,1891,17,2,eggs,DSC_0848.JPG +1032,2920,1933,16,1,eggs,DSC_0844.JPG +10334,2665,748,17,2,eggs,DSC_0848.JPG +10338,2032,1105,15,2,eggs,DSC_0848.JPG +10375,3049,1183,15,2,eggs,DSC_0848.JPG +10378,2911,1414,15,2,eggs,DSC_0848.JPG +10384,2698,1885,15,1,eggs,DSC_0848.JPG +10410,3115,1180,17,2,eggs,DSC_0848.JPG +10415,2770,1528,15,2,eggs,DSC_0848.JPG +1043,4435,604,15,2,eggs,DSC_0844.JPG +10435,3577,1006,15,2,eggs,DSC_0848.JPG +1044,4354,853,15,2,eggs,DSC_0844.JPG +10442,2200,1282,17,1,eggs,DSC_0848.JPG +10454,3181,1894,15,2,eggs,DSC_0848.JPG +10456,2731,1945,15,2,eggs,DSC_0848.JPG +10477,2002,925,15,1,eggs,DSC_0848.JPG +10486,2764,1888,15,2,eggs,DSC_0848.JPG +105,4288,727,15,2,eggs,DSC_0844.JPG +10511,2170,988,17,2,eggs,DSC_0848.JPG +10514,2839,1057,15,2,eggs,DSC_0848.JPG +1053,757,1750,17,1,eggs,DSC_0844.JPG +10542,2206,1165,15,2,eggs,DSC_0848.JPG +10543,2905,1177,17,2,eggs,DSC_0848.JPG +10581,2935,1828,17,2,eggs,DSC_0848.JPG +10612,2875,1471,15,2,eggs,DSC_0848.JPG +1062,4213,853,15,2,eggs,DSC_0844.JPG +1064,4732,1165,15,2,eggs,DSC_0844.JPG +10687,3175,2011,15,2,eggs,DSC_0848.JPG +1069,2578,1567,15,1,eggs,DSC_0844.JPG +1071,2893,1750,17,2,eggs,DSC_0844.JPG +10710,3010,1357,15,1,eggs,DSC_0848.JPG +1072,3103,1756,17,1,eggs,DSC_0844.JPG +10738,3184,1186,15,2,eggs,DSC_0848.JPG +10758,2839,814,16,2,eggs,DSC_0848.JPG +1079,907,406,17,2,eggs,DSC_0844.JPG +10797,3010,1240,15,2,eggs,DSC_0848.JPG +10799,3046,1297,17,2,eggs,DSC_0848.JPG +108,4864,598,17,2,eggs,DSC_0844.JPG +1080,1195,544,16,2,eggs,DSC_0844.JPG +10812,2932,2068,15,2,eggs,DSC_0848.JPG +1082,1156,862,15,2,eggs,DSC_0844.JPG +10844,2386,1942,15,2,eggs,DSC_0848.JPG +10859,2839,1411,17,2,eggs,DSC_0848.JPG +1086,4588,1279,15,2,eggs,DSC_0844.JPG +10884,2770,1057,15,2,eggs,DSC_0848.JPG +1092,4441,1399,15,2,eggs,DSC_0844.JPG +10929,2251,745,17,2,eggs,DSC_0848.JPG +10948,2968,2008,15,2,eggs,DSC_0848.JPG +1095,3031,1633,15,2,eggs,DSC_0844.JPG +10997,2422,1042,15,2,eggs,DSC_0848.JPG +10998,1789,1165,17,2,eggs,DSC_0848.JPG +11030,2023,1579,17,2,eggs,DSC_0848.JPG +11112,4522,952,15,1,eggs,DSC_0848.JPG +11120,2806,1468,17,2,eggs,DSC_0848.JPG +1115,583,1438,15,2,eggs,DSC_0844.JPG +11180,3187,1303,15,2,eggs,DSC_0848.JPG +11185,2803,1711,17,2,eggs,DSC_0848.JPG +112,3073,1570,17,1,eggs,DSC_0844.JPG +11208,2347,1996,15,2,eggs,DSC_0848.JPG +1121,2929,1576,17,1,eggs,DSC_0844.JPG +1122,2608,1867,16,2,eggs,DSC_0844.JPG +11232,3004,1948,15,2,eggs,DSC_0848.JPG +11252,3010,1471,16,1,eggs,DSC_0848.JPG +11266,2527,985,17,2,eggs,DSC_0848.JPG +11274,2902,1654,15,2,eggs,DSC_0848.JPG +113,4939,1636,15,2,eggs,DSC_0844.JPG +11311,2911,1534,17,2,eggs,DSC_0848.JPG +11325,2524,1114,17,2,eggs,DSC_0848.JPG +11382,2797,2065,15,2,eggs,DSC_0848.JPG +11398,2896,2008,17,2,eggs,DSC_0848.JPG +11413,3151,1243,15,2,eggs,DSC_0848.JPG +1143,4321,790,15,2,eggs,DSC_0844.JPG +11438,2185,1348,17,2,eggs,DSC_0848.JPG +11454,2401,1663,17,2,eggs,DSC_0848.JPG +1146,799,850,15,2,eggs,DSC_0844.JPG +1147,3286,1336,16,1,eggs,DSC_0844.JPG +11506,2305,1105,15,2,eggs,DSC_0848.JPG +11508,2626,1879,15,2,eggs,DSC_0848.JPG +11518,2698,1174,15,2,eggs,DSC_0848.JPG +11520,2974,1537,15,2,eggs,DSC_0848.JPG +1154,721,1687,15,2,eggs,DSC_0844.JPG +1155,2647,1687,16,2,eggs,DSC_0844.JPG +11569,2422,1366,17,2,eggs,DSC_0848.JPG +11570,2839,1534,15,2,eggs,DSC_0848.JPG +11573,2695,1999,17,2,eggs,DSC_0848.JPG +1158,3064,1936,15,2,eggs,DSC_0844.JPG +11582,3082,1237,17,2,eggs,DSC_0848.JPG +116,3310,454,17,2,eggs,DSC_0844.JPG +11600,2119,1480,17,2,eggs,DSC_0848.JPG +11612,2032,1474,17,2,eggs,DSC_0848.JPG +11629,2062,1636,17,2,eggs,DSC_0848.JPG +11646,2317,1603,17,2,eggs,DSC_0848.JPG +1168,4018,1642,15,2,eggs,DSC_0844.JPG +11701,2191,1759,17,2,eggs,DSC_0848.JPG +11723,2560,1267,17,2,eggs,DSC_0848.JPG +11724,2476,1273,17,2,eggs,DSC_0848.JPG +1173,616,1861,15,2,eggs,DSC_0844.JPG +11741,2518,1357,17,2,eggs,DSC_0848.JPG +1178,3439,2356,17,2,eggs,DSC_0844.JPG +11814,2233,1687,17,2,eggs,DSC_0848.JPG +1184,1405,544,17,1,eggs,DSC_0844.JPG +1185,1756,553,15,2,eggs,DSC_0844.JPG +11850,2611,1525,17,2,eggs,DSC_0848.JPG +11858,2404,1219,17,2,eggs,DSC_0848.JPG +1186,3658,589,17,2,eggs,DSC_0844.JPG +11866,2344,1384,17,2,eggs,DSC_0848.JPG +1188,4450,1042,15,2,eggs,DSC_0844.JPG +11880,2260,1381,16,2,eggs,DSC_0848.JPG +11885,2359,1153,17,2,eggs,DSC_0848.JPG +11887,2149,1621,15,2,eggs,DSC_0848.JPG +11929,2272,1534,17,2,eggs,DSC_0848.JPG +1193,370,1309,17,2,eggs,DSC_0844.JPG +11932,2545,1720,17,2,eggs,DSC_0848.JPG +11940,2689,1534,17,2,eggs,DSC_0848.JPG +11946,2563,1414,17,2,eggs,DSC_0848.JPG +11947,2359,1522,16,2,eggs,DSC_0848.JPG +11948,2500,1645,15,2,eggs,DSC_0848.JPG +11949,2758,1654,16,2,eggs,DSC_0848.JPG +1197,4795,1510,17,1,eggs,DSC_0844.JPG +11973,2095,1564,17,2,eggs,DSC_0848.JPG +11976,2314,1687,17,2,eggs,DSC_0848.JPG +1198,3244,1633,15,2,eggs,DSC_0844.JPG +11985,2323,1219,15,2,eggs,DSC_0848.JPG +11991,2311,1456,17,2,eggs,DSC_0848.JPG +1200,4087,1639,15,2,eggs,DSC_0844.JPG +12012,2356,1057,17,2,eggs,DSC_0848.JPG +1202,4933,1753,17,2,eggs,DSC_0844.JPG +12041,2656,1456,17,2,eggs,DSC_0848.JPG +12046,2680,1369,17,2,eggs,DSC_0848.JPG +12062,2275,1297,17,2,eggs,DSC_0848.JPG +12068,2476,1438,16,2,eggs,DSC_0848.JPG +12087,2524,1567,15,2,eggs,DSC_0848.JPG +12088,2659,1600,17,2,eggs,DSC_0848.JPG +12094,2383,1453,16,2,eggs,DSC_0848.JPG +12100,2377,1300,17,2,eggs,DSC_0848.JPG +12102,2659,1699,15,2,eggs,DSC_0848.JPG +1211,1156,736,15,2,eggs,DSC_0844.JPG +1212,439,835,17,1,eggs,DSC_0844.JPG +12127,2869,871,17,2,eggs,DSC_0848.JPG +1213,517,838,17,2,eggs,DSC_0844.JPG +12132,2218,1453,15,2,eggs,DSC_0848.JPG +12133,2539,1489,15,2,eggs,DSC_0848.JPG +12141,2449,1114,16,2,eggs,DSC_0848.JPG +1215,871,979,15,2,eggs,DSC_0844.JPG +12162,2488,1186,16,2,eggs,DSC_0848.JPG +1218,766,1033,16,2,eggs,DSC_0844.JPG +1222,4762,1336,15,2,eggs,DSC_0844.JPG +12259,3010,1699,17,2,eggs,DSC_0848.JPG +1237,4429,730,17,2,eggs,DSC_0844.JPG +1246,619,1384,15,2,eggs,DSC_0844.JPG +1252,2887,1870,17,2,eggs,DSC_0844.JPG +126,799,1096,15,2,eggs,DSC_0844.JPG +1260,550,1021,17,2,eggs,DSC_0844.JPG +1265,4618,1453,16,2,eggs,DSC_0844.JPG +1268,4606,1819,16,2,eggs,DSC_0844.JPG +1280,4360,727,15,2,eggs,DSC_0844.JPG +1286,4627,1105,16,2,eggs,DSC_0844.JPG +1293,688,1624,15,2,eggs,DSC_0844.JPG +1298,3199,1936,17,2,eggs,DSC_0844.JPG +1300,2749,1990,17,1,eggs,DSC_0844.JPG +131,4174,916,15,2,eggs,DSC_0844.JPG +1311,2062,1495,16,1,eggs,DSC_0844.JPG +1314,295,1537,17,2,eggs,DSC_0844.JPG +1316,829,1753,15,2,eggs,DSC_0844.JPG +1317,4864,1756,15,2,eggs,DSC_0844.JPG +1319,3166,1876,17,2,eggs,DSC_0844.JPG +1321,4042,1936,17,2,eggs,DSC_0844.JPG +1328,3070,247,15,2,eggs,DSC_0844.JPG +1334,4075,727,15,2,eggs,DSC_0844.JPG +1336,586,841,17,1,eggs,DSC_0844.JPG +1337,478,898,17,1,eggs,DSC_0844.JPG +1338,4564,979,15,2,eggs,DSC_0844.JPG +1346,829,1513,15,2,eggs,DSC_0844.JPG +135,3526,457,15,2,eggs,DSC_0844.JPG +1350,790,1807,17,2,eggs,DSC_0844.JPG +1370,547,1612,15,2,eggs,DSC_0844.JPG +1374,3382,1759,17,2,eggs,DSC_0844.JPG +1386,2398,307,17,2,eggs,DSC_0844.JPG +1388,2077,367,15,2,eggs,DSC_0844.JPG +1389,3208,382,16,2,eggs,DSC_0844.JPG +1393,1123,667,17,2,eggs,DSC_0844.JPG +1397,5140,1087,16,2,eggs,DSC_0844.JPG +14,946,208,16,1,eggs,DSC_0844.JPG +1400,4378,1165,15,2,eggs,DSC_0844.JPG +1407,4210,1999,15,2,eggs,DSC_0844.JPG +1413,1900,424,16,2,eggs,DSC_0844.JPG +142,3280,1573,15,2,eggs,DSC_0844.JPG +1421,4939,1513,15,2,eggs,DSC_0844.JPG +1422,3832,1822,17,2,eggs,DSC_0844.JPG +1432,4294,601,15,2,eggs,DSC_0844.JPG +1433,4363,601,17,2,eggs,DSC_0844.JPG +1441,367,1780,17,1,eggs,DSC_0844.JPG +1443,3064,1813,16,2,eggs,DSC_0844.JPG +1449,4138,2119,16,2,eggs,DSC_0844.JPG +1453,2785,244,15,2,eggs,DSC_0844.JPG +1457,1657,352,15,2,eggs,DSC_0844.JPG +1458,1264,415,16,2,eggs,DSC_0844.JPG +146,4207,2119,15,2,eggs,DSC_0844.JPG +1462,694,781,17,2,eggs,DSC_0844.JPG +1463,766,787,16,2,eggs,DSC_0844.JPG +1467,694,1033,17,2,eggs,DSC_0844.JPG +1474,4759,1696,15,1,eggs,DSC_0844.JPG +148,3802,592,15,2,eggs,DSC_0844.JPG +1485,2149,235,17,2,eggs,DSC_0844.JPG +1487,2926,247,15,1,eggs,DSC_0844.JPG +1491,4222,727,17,2,eggs,DSC_0844.JPG +1494,730,973,15,2,eggs,DSC_0844.JPG +1497,4804,1162,16,2,eggs,DSC_0844.JPG +1498,4660,1276,17,2,eggs,DSC_0844.JPG +15,3667,460,15,2,eggs,DSC_0844.JPG +1504,652,1804,15,2,eggs,DSC_0844.JPG +1505,649,1921,15,2,eggs,DSC_0844.JPG +151,4282,850,17,2,eggs,DSC_0844.JPG +1512,3739,460,15,2,eggs,DSC_0844.JPG +1513,871,727,15,2,eggs,DSC_0844.JPG +1518,370,1072,17,2,eggs,DSC_0844.JPG +1519,4519,1162,15,2,eggs,DSC_0844.JPG +1521,406,1252,17,2,eggs,DSC_0844.JPG +1527,367,1540,17,2,eggs,DSC_0844.JPG +15380,4438,1405,16,2,eggs,DSC_0818.JPG +15388,4963,1459,16,2,eggs,DSC_0818.JPG +15389,5152,1153,17,2,eggs,DSC_0818.JPG +15392,4309,550,16,2,eggs,DSC_0818.JPG +15403,3301,2122,15,2,eggs,DSC_0818.JPG +15407,4540,1702,16,2,eggs,DSC_0818.JPG +15408,4072,2119,15,2,eggs,DSC_0818.JPG +15409,4129,736,17,2,eggs,DSC_0818.JPG +1541,1372,484,15,1,eggs,DSC_0844.JPG +15410,4504,1762,17,2,eggs,DSC_0818.JPG +15425,1129,2335,15,2,eggs,DSC_0818.JPG +1543,3307,583,16,2,eggs,DSC_0844.JPG +15447,706,271,17,2,eggs,DSC_0818.JPG +15450,1846,148,17,2,eggs,DSC_0818.JPG +15458,4450,556,17,2,eggs,DSC_0818.JPG +15459,1051,652,15,2,eggs,DSC_0818.JPG +15465,4891,1459,17,2,eggs,DSC_0818.JPG +15468,4141,2239,15,2,eggs,DSC_0818.JPG +15472,4240,424,16,2,eggs,DSC_0818.JPG +15474,1123,652,17,2,eggs,DSC_0818.JPG +15481,4144,2119,16,2,eggs,DSC_0818.JPG +15492,3952,919,16,1,eggs,DSC_0818.JPG +15497,5092,673,16,2,eggs,DSC_0818.JPG +155,1972,427,17,2,eggs,DSC_0844.JPG +1550,622,1267,15,2,eggs,DSC_0844.JPG +15501,4609,1702,15,2,eggs,DSC_0818.JPG +15503,4285,1999,17,2,eggs,DSC_0818.JPG +15504,991,271,17,2,eggs,DSC_0818.JPG +15529,4633,2116,15,2,eggs,DSC_0818.JPG +15536,1552,1027,17,2,eggs,DSC_0818.JPG +15542,4651,1405,15,2,eggs,DSC_0818.JPG +15548,4822,1462,17,2,eggs,DSC_0818.JPG +1555,547,1735,17,2,eggs,DSC_0844.JPG +15554,4168,424,16,2,eggs,DSC_0818.JPG +15559,4573,1762,16,2,eggs,DSC_0818.JPG +1556,613,1738,17,2,eggs,DSC_0844.JPG +15563,4495,2116,16,2,eggs,DSC_0818.JPG +1557,2683,1750,17,2,eggs,DSC_0844.JPG +15570,4858,1519,17,2,eggs,DSC_0818.JPG +15574,4573,1879,16,2,eggs,DSC_0818.JPG +15575,4711,1879,15,2,eggs,DSC_0818.JPG +15578,3964,295,17,2,eggs,DSC_0818.JPG +15580,382,463,16,2,eggs,DSC_0818.JPG +15593,4630,2233,15,2,eggs,DSC_0818.JPG +15594,3724,2239,15,2,eggs,DSC_0818.JPG +15604,4885,1813,15,2,eggs,DSC_0818.JPG +15605,4747,1819,17,2,eggs,DSC_0818.JPG +15623,1624,910,15,2,eggs,DSC_0818.JPG +15624,4942,1036,15,2,eggs,DSC_0818.JPG +15625,4477,1105,16,1,eggs,DSC_0818.JPG +15630,4954,1933,15,2,eggs,DSC_0818.JPG +15637,4804,676,17,2,eggs,DSC_0818.JPG +15645,4708,1996,15,2,eggs,DSC_0818.JPG +15647,3856,226,16,2,eggs,DSC_0818.JPG +15661,3826,2302,15,2,eggs,DSC_0818.JPG +15662,4276,364,16,2,eggs,DSC_0818.JPG +15670,4291,1879,17,2,eggs,DSC_0818.JPG +15673,3646,229,15,2,eggs,DSC_0818.JPG +15678,4534,2056,15,2,eggs,DSC_0818.JPG +15679,4318,2059,15,2,eggs,DSC_0818.JPG +15681,457,337,15,2,eggs,DSC_0818.JPG +15689,1159,964,17,2,eggs,DSC_0818.JPG +1569,1726,487,16,2,eggs,DSC_0844.JPG +15692,4438,1525,16,2,eggs,DSC_0818.JPG +15693,4993,1636,15,2,eggs,DSC_0818.JPG +15694,4435,1759,15,2,eggs,DSC_0818.JPG +15700,1660,970,17,2,eggs,DSC_0818.JPG +15709,3256,160,17,2,eggs,DSC_0818.JPG +1572,1015,604,17,2,eggs,DSC_0844.JPG +15721,4912,2113,15,2,eggs,DSC_0818.JPG +15722,4069,2239,15,2,eggs,DSC_0818.JPG +15723,4000,2242,15,2,eggs,DSC_0818.JPG +15729,5146,1273,15,2,eggs,DSC_0818.JPG +15735,4468,1939,15,1,eggs,DSC_0818.JPG +15737,4357,1999,16,2,eggs,DSC_0818.JPG +15741,1198,2335,15,2,eggs,DSC_0818.JPG +15742,4345,2356,15,1,eggs,DSC_0818.JPG +15751,4510,1405,16,2,eggs,DSC_0818.JPG +15754,4684,1465,16,2,eggs,DSC_0818.JPG +15762,3829,2182,17,1,eggs,DSC_0818.JPG +15764,4414,616,16,2,eggs,DSC_0818.JPG +15793,1267,2101,17,2,eggs,DSC_0818.JPG +15795,4246,2296,15,2,eggs,DSC_0818.JPG +15799,5020,676,16,2,eggs,DSC_0818.JPG +158,910,916,15,2,eggs,DSC_0844.JPG +15802,1513,1090,16,2,eggs,DSC_0818.JPG +15806,4999,1516,15,2,eggs,DSC_0818.JPG +15815,3220,355,17,2,eggs,DSC_0818.JPG +15828,4396,1939,16,2,eggs,DSC_0818.JPG +15835,2668,2359,15,2,eggs,DSC_0818.JPG +15836,457,211,17,2,eggs,DSC_0818.JPG +15837,562,274,17,2,eggs,DSC_0818.JPG +15838,4912,613,15,2,eggs,DSC_0818.JPG +1584,3256,1153,17,2,eggs,DSC_0844.JPG +15852,1762,2227,16,2,eggs,DSC_0818.JPG +15854,991,139,15,2,eggs,DSC_0818.JPG +15855,1063,142,17,2,eggs,DSC_0818.JPG +15856,4066,229,16,2,eggs,DSC_0818.JPG +15862,1051,901,16,2,eggs,DSC_0818.JPG +15863,4945,916,17,2,eggs,DSC_0818.JPG +15877,1234,208,17,2,eggs,DSC_0818.JPG +15879,4030,292,17,2,eggs,DSC_0818.JPG +15881,5089,427,17,2,eggs,DSC_0818.JPG +15883,5197,733,17,2,eggs,DSC_0818.JPG +15884,274,763,17,2,eggs,DSC_0818.JPG +15890,559,1255,17,2,eggs,DSC_0818.JPG +15898,4429,1879,15,2,eggs,DSC_0818.JPG +15901,3691,2062,16,1,eggs,DSC_0818.JPG +15903,4387,2176,15,2,eggs,DSC_0818.JPG +15905,1378,205,17,2,eggs,DSC_0818.JPG +15926,3994,358,17,2,eggs,DSC_0818.JPG +15932,4762,979,17,2,eggs,DSC_0818.JPG +15933,1585,1093,17,2,eggs,DSC_0818.JPG +15949,4381,553,17,2,eggs,DSC_0818.JPG +15952,4204,736,17,2,eggs,DSC_0818.JPG +15954,1552,907,16,2,eggs,DSC_0818.JPG +15957,1480,1153,16,2,eggs,DSC_0818.JPG +15960,5185,1210,17,2,eggs,DSC_0818.JPG +15961,4405,1228,15,1,eggs,DSC_0818.JPG +15964,4042,1942,16,2,eggs,DSC_0818.JPG +15965,1450,208,17,2,eggs,DSC_0818.JPG +15969,4555,736,16,2,eggs,DSC_0818.JPG +15982,4705,2116,16,2,eggs,DSC_0818.JPG +15984,4561,2233,16,2,eggs,DSC_0818.JPG +15988,985,2332,16,2,eggs,DSC_0818.JPG +1599,2503,238,17,2,eggs,DSC_0844.JPG +15994,4591,553,15,2,eggs,DSC_0818.JPG +15997,5050,976,17,2,eggs,DSC_0818.JPG +16009,1303,1924,17,2,eggs,DSC_0818.JPG +16018,4099,421,15,2,eggs,DSC_0818.JPG +16032,4279,2239,17,2,eggs,DSC_0818.JPG +16034,1057,2332,15,2,eggs,DSC_0818.JPG +16049,3898,2179,15,2,eggs,DSC_0818.JPG +16050,4249,2179,16,2,eggs,DSC_0818.JPG +16052,3334,2305,15,2,eggs,DSC_0818.JPG +16053,4633,361,17,2,eggs,DSC_0818.JPG +1606,5110,784,16,1,eggs,DSC_0844.JPG +16077,4525,2296,16,2,eggs,DSC_0818.JPG +16078,4630,2353,16,2,eggs,DSC_0818.JPG +16094,4363,1762,16,2,eggs,DSC_0818.JPG +16108,4984,364,15,2,eggs,DSC_0818.JPG +16109,4915,367,17,2,eggs,DSC_0818.JPG +16118,4828,1342,15,2,eggs,DSC_0818.JPG +16119,4576,1525,15,2,eggs,DSC_0818.JPG +16120,4783,1639,16,2,eggs,DSC_0818.JPG +16125,4105,2299,15,2,eggs,DSC_0818.JPG +16127,379,337,17,2,eggs,DSC_0818.JPG +16128,3925,361,16,2,eggs,DSC_0818.JPG +16131,4555,613,17,2,eggs,DSC_0818.JPG +16140,4999,1396,17,2,eggs,DSC_0818.JPG +16146,5026,1696,15,2,eggs,DSC_0818.JPG +16148,5026,1813,15,2,eggs,DSC_0818.JPG +16150,4921,1873,15,2,eggs,DSC_0818.JPG +16156,4459,2056,17,2,eggs,DSC_0818.JPG +16174,4852,1756,16,2,eggs,DSC_0818.JPG +16179,4390,2056,15,2,eggs,DSC_0818.JPG +1618,4867,1633,17,2,eggs,DSC_0844.JPG +16186,3613,160,17,2,eggs,DSC_0818.JPG +16189,4558,490,16,2,eggs,DSC_0818.JPG +1619,4972,1693,15,2,eggs,DSC_0844.JPG +16192,4204,616,15,1,eggs,DSC_0818.JPG +16197,1804,976,17,2,eggs,DSC_0818.JPG +162,1228,607,16,2,eggs,DSC_0844.JPG +16209,5098,1810,17,2,eggs,DSC_0818.JPG +16210,4465,1819,15,1,eggs,DSC_0818.JPG +16216,4213,2119,16,2,eggs,DSC_0818.JPG +16217,4285,2119,15,2,eggs,DSC_0818.JPG +16220,4210,2239,15,2,eggs,DSC_0818.JPG +16221,811,2263,17,2,eggs,DSC_0818.JPG +16223,4309,2416,15,2,eggs,DSC_0818.JPG +16225,3787,361,15,2,eggs,DSC_0818.JPG +16230,4633,490,17,2,eggs,DSC_0818.JPG +16240,1480,1030,17,2,eggs,DSC_0818.JPG +16241,4972,1096,15,2,eggs,DSC_0818.JPG +16246,4714,1522,17,2,eggs,DSC_0818.JPG +16255,4990,1873,15,2,eggs,DSC_0818.JPG +16263,4138,232,16,2,eggs,DSC_0818.JPG +16265,4171,298,16,2,eggs,DSC_0818.JPG +16273,598,1315,15,1,eggs,DSC_0818.JPG +16283,4429,1999,16,2,eggs,DSC_0818.JPG +16287,3862,2242,16,2,eggs,DSC_0818.JPG +16288,3931,2242,15,2,eggs,DSC_0818.JPG +16290,1477,2344,15,2,eggs,DSC_0818.JPG +16291,4030,166,16,2,eggs,DSC_0818.JPG +16295,1732,973,16,2,eggs,DSC_0818.JPG +16298,4657,1045,17,1,eggs,DSC_0818.JPG +16301,4972,1219,15,2,eggs,DSC_0818.JPG +16308,4255,1705,15,1,eggs,DSC_0818.JPG +16309,4219,1762,15,2,eggs,DSC_0818.JPG +16317,4351,2236,16,2,eggs,DSC_0818.JPG +16330,4834,856,17,2,eggs,DSC_0818.JPG +16339,4753,1462,15,2,eggs,DSC_0818.JPG +16350,5020,427,17,2,eggs,DSC_0818.JPG +16361,4696,859,16,2,eggs,DSC_0818.JPG +16362,1228,964,17,2,eggs,DSC_0818.JPG +1637,4486,1102,15,2,eggs,DSC_0844.JPG +16370,4921,1756,16,2,eggs,DSC_0818.JPG +16373,4639,1882,15,2,eggs,DSC_0818.JPG +16377,2080,2173,15,2,eggs,DSC_0818.JPG +16379,4039,2179,15,2,eggs,DSC_0818.JPG +1638,406,1135,17,2,eggs,DSC_0844.JPG +16383,4276,232,16,2,eggs,DSC_0818.JPG +16384,4669,301,16,2,eggs,DSC_0818.JPG +16395,4513,1045,16,1,eggs,DSC_0818.JPG +16401,4369,1525,16,2,eggs,DSC_0818.JPG +16408,4384,2296,16,2,eggs,DSC_0818.JPG +16410,742,208,17,2,eggs,DSC_0818.JPG +16411,919,268,17,2,eggs,DSC_0818.JPG +16418,4981,739,15,2,eggs,DSC_0818.JPG +16426,4654,1165,16,2,eggs,DSC_0818.JPG +16434,4609,1582,15,2,eggs,DSC_0818.JPG +16435,4642,1642,15,2,eggs,DSC_0818.JPG +16443,1306,2041,15,1,eggs,DSC_0818.JPG +16448,3898,2299,15,2,eggs,DSC_0818.JPG +16450,4243,169,16,2,eggs,DSC_0818.JPG +1646,511,1792,17,2,eggs,DSC_0844.JPG +16460,5011,1036,17,2,eggs,DSC_0818.JPG +16471,4711,1759,16,2,eggs,DSC_0818.JPG +16476,4603,2059,17,2,eggs,DSC_0818.JPG +16478,4669,2173,15,2,eggs,DSC_0818.JPG +1648,721,1804,17,2,eggs,DSC_0844.JPG +16480,4108,2179,16,2,eggs,DSC_0818.JPG +16482,4807,301,17,2,eggs,DSC_0818.JPG +16484,4456,427,17,2,eggs,DSC_0818.JPG +16486,4525,553,17,2,eggs,DSC_0818.JPG +16496,5179,1450,17,2,eggs,DSC_0818.JPG +16503,4498,1999,15,2,eggs,DSC_0818.JPG +16505,916,2209,15,2,eggs,DSC_0818.JPG +16508,4873,2290,15,2,eggs,DSC_0818.JPG +16509,2809,2362,15,2,eggs,DSC_0818.JPG +16510,3751,163,17,2,eggs,DSC_0818.JPG +16511,1024,202,16,2,eggs,DSC_0818.JPG +16513,385,214,17,2,eggs,DSC_0818.JPG +16514,4351,235,16,2,eggs,DSC_0818.JPG +16517,4915,487,17,2,eggs,DSC_0818.JPG +16518,5020,550,17,2,eggs,DSC_0818.JPG +16520,1585,967,16,2,eggs,DSC_0818.JPG +16531,5107,1453,17,2,eggs,DSC_0818.JPG +16534,4711,1642,15,2,eggs,DSC_0818.JPG +16537,4189,1702,15,2,eggs,DSC_0818.JPG +16546,3196,2305,15,2,eggs,DSC_0818.JPG +16552,4699,739,17,2,eggs,DSC_0818.JPG +16553,4660,802,17,2,eggs,DSC_0818.JPG +16578,4486,2356,15,2,eggs,DSC_0818.JPG +16579,1342,139,15,2,eggs,DSC_0818.JPG +16581,3751,289,17,2,eggs,DSC_0818.JPG +16607,4537,1939,16,2,eggs,DSC_0818.JPG +16612,1792,2404,17,2,eggs,DSC_0818.JPG +16613,1132,142,16,2,eggs,DSC_0818.JPG +16614,4102,166,17,2,eggs,DSC_0818.JPG +16617,4243,295,17,2,eggs,DSC_0818.JPG +16618,739,334,17,2,eggs,DSC_0818.JPG +16619,4492,364,16,2,eggs,DSC_0818.JPG +1662,1795,490,17,2,eggs,DSC_0844.JPG +16620,4774,367,16,2,eggs,DSC_0818.JPG +16638,4564,2116,15,2,eggs,DSC_0818.JPG +16640,4528,2173,17,2,eggs,DSC_0818.JPG +16644,346,274,16,2,eggs,DSC_0818.JPG +16650,1126,1024,17,2,eggs,DSC_0818.JPG +16661,4813,1816,17,2,eggs,DSC_0818.JPG +16664,4321,1942,15,2,eggs,DSC_0818.JPG +16665,5125,1987,17,2,eggs,DSC_0818.JPG +16667,4843,2116,15,2,eggs,DSC_0818.JPG +16668,4420,2236,17,2,eggs,DSC_0818.JPG +16670,4456,2296,17,2,eggs,DSC_0818.JPG +16673,4453,301,17,2,eggs,DSC_0818.JPG +16675,4951,424,15,2,eggs,DSC_0818.JPG +16678,4273,487,17,2,eggs,DSC_0818.JPG +16680,4987,616,17,2,eggs,DSC_0818.JPG +16682,4771,739,17,2,eggs,DSC_0818.JPG +16689,4438,1285,15,2,eggs,DSC_0818.JPG +16697,4177,2179,16,2,eggs,DSC_0818.JPG +1670,4759,1570,17,2,eggs,DSC_0844.JPG +16707,5128,613,15,2,eggs,DSC_0818.JPG +16708,5125,733,17,2,eggs,DSC_0818.JPG +16709,4342,739,16,2,eggs,DSC_0818.JPG +16719,4687,1225,15,2,eggs,DSC_0818.JPG +16724,4537,1822,15,2,eggs,DSC_0818.JPG +16725,4606,1822,15,2,eggs,DSC_0818.JPG +16728,4849,1996,17,2,eggs,DSC_0818.JPG +1673,3031,1753,16,2,eggs,DSC_0844.JPG +16737,4492,238,16,2,eggs,DSC_0818.JPG +16738,778,271,16,2,eggs,DSC_0818.JPG +1674,3871,1759,17,2,eggs,DSC_0844.JPG +16741,4702,487,15,2,eggs,DSC_0818.JPG +16745,4900,1099,17,2,eggs,DSC_0818.JPG +16748,4759,1222,15,2,eggs,DSC_0818.JPG +16760,4498,1879,17,2,eggs,DSC_0818.JPG +16762,4948,2056,17,2,eggs,DSC_0818.JPG +16769,3685,2302,15,2,eggs,DSC_0818.JPG +16784,4330,1702,15,2,eggs,DSC_0818.JPG +16786,4315,2179,17,2,eggs,DSC_0818.JPG +16787,640,145,15,2,eggs,DSC_0818.JPG +16788,4984,238,17,2,eggs,DSC_0818.JPG +16789,4561,364,17,2,eggs,DSC_0818.JPG +16791,4630,616,17,2,eggs,DSC_0818.JPG +16806,4573,1642,15,2,eggs,DSC_0818.JPG +16812,4879,2056,15,2,eggs,DSC_0818.JPG +16814,1657,2287,17,2,eggs,DSC_0818.JPG +16820,4345,490,16,2,eggs,DSC_0818.JPG +16829,4906,976,17,2,eggs,DSC_0818.JPG +16842,4750,1582,16,2,eggs,DSC_0818.JPG +16844,4816,1696,17,2,eggs,DSC_0818.JPG +16848,4642,1762,15,2,eggs,DSC_0818.JPG +16849,4954,1813,17,2,eggs,DSC_0818.JPG +16855,3970,2062,16,2,eggs,DSC_0818.JPG +16862,4309,430,17,2,eggs,DSC_0818.JPG +16864,4984,490,17,2,eggs,DSC_0818.JPG +1687,4513,337,17,2,eggs,DSC_0844.JPG +16871,4804,796,15,2,eggs,DSC_0818.JPG +16872,1804,850,17,2,eggs,DSC_0818.JPG +16884,4957,1696,15,2,eggs,DSC_0818.JPG +16887,4777,1879,15,2,eggs,DSC_0818.JPG +16895,3124,2305,15,2,eggs,DSC_0818.JPG +16900,5056,490,17,2,eggs,DSC_0818.JPG +16902,5269,613,17,2,eggs,DSC_0818.JPG +16904,4627,739,17,2,eggs,DSC_0818.JPG +16929,4660,676,16,2,eggs,DSC_0818.JPG +16950,4948,2170,17,2,eggs,DSC_0818.JPG +16955,496,148,16,2,eggs,DSC_0818.JPG +16956,4774,238,15,2,eggs,DSC_0818.JPG +16959,3823,421,17,2,eggs,DSC_0818.JPG +16963,1588,847,17,2,eggs,DSC_0818.JPG +16966,1660,1096,17,2,eggs,DSC_0818.JPG +1697,508,1552,17,2,eggs,DSC_0844.JPG +16975,5035,1456,17,2,eggs,DSC_0818.JPG +16982,4606,1936,17,2,eggs,DSC_0818.JPG +16986,5014,2170,15,2,eggs,DSC_0818.JPG +16987,2812,2242,15,2,eggs,DSC_0818.JPG +16992,4171,166,16,2,eggs,DSC_0818.JPG +16993,3925,229,17,2,eggs,DSC_0818.JPG +16996,4204,361,16,2,eggs,DSC_0818.JPG +16997,4594,427,17,2,eggs,DSC_0818.JPG +16998,3784,487,16,2,eggs,DSC_0818.JPG +16999,4663,553,17,2,eggs,DSC_0818.JPG +17000,4840,610,15,2,eggs,DSC_0818.JPG +17007,4831,1102,15,1,eggs,DSC_0818.JPG +17012,4888,1579,16,2,eggs,DSC_0818.JPG +17014,1201,1741,15,1,eggs,DSC_0818.JPG +17025,4525,427,16,2,eggs,DSC_0818.JPG +17030,4591,676,17,2,eggs,DSC_0818.JPG +17032,4660,922,17,2,eggs,DSC_0818.JPG +17048,5164,1930,15,2,eggs,DSC_0818.JPG +17053,2320,2116,16,1,eggs,DSC_0818.JPG +17054,4423,2116,17,2,eggs,DSC_0818.JPG +17058,886,205,17,2,eggs,DSC_0818.JPG +17061,4384,427,17,2,eggs,DSC_0818.JPG +1707,1192,412,17,2,eggs,DSC_0844.JPG +17078,4813,1936,16,2,eggs,DSC_0818.JPG +17082,2110,2356,15,2,eggs,DSC_0818.JPG +17083,4063,361,17,2,eggs,DSC_0818.JPG +1710,871,856,17,2,eggs,DSC_0844.JPG +17100,808,2146,15,2,eggs,DSC_0818.JPG +17102,3157,2365,15,2,eggs,DSC_0818.JPG +17106,955,205,16,2,eggs,DSC_0818.JPG +17108,529,463,17,2,eggs,DSC_0818.JPG +17110,4951,553,17,2,eggs,DSC_0818.JPG +17126,1618,2344,15,2,eggs,DSC_0818.JPG +17127,4000,2359,16,2,eggs,DSC_0818.JPG +17128,529,214,15,2,eggs,DSC_0818.JPG +17129,4207,232,17,2,eggs,DSC_0818.JPG +17131,4948,301,15,2,eggs,DSC_0818.JPG +17132,4132,484,17,1,eggs,DSC_0818.JPG +17134,238,703,17,2,eggs,DSC_0818.JPG +17138,1729,847,17,2,eggs,DSC_0818.JPG +17145,4786,1522,16,2,eggs,DSC_0818.JPG +17149,4849,1876,16,2,eggs,DSC_0818.JPG +17156,3790,2362,15,2,eggs,DSC_0818.JPG +17157,3091,2365,15,2,eggs,DSC_0818.JPG +17158,3403,2419,15,2,eggs,DSC_0818.JPG +17159,3469,160,16,2,eggs,DSC_0818.JPG +17160,3574,229,17,2,eggs,DSC_0818.JPG +1717,511,1435,17,2,eggs,DSC_0844.JPG +17171,4867,1159,15,2,eggs,DSC_0818.JPG +17178,4678,1582,15,2,eggs,DSC_0818.JPG +17186,3790,2239,17,2,eggs,DSC_0818.JPG +17192,5158,1033,17,2,eggs,DSC_0818.JPG +17205,4888,1696,15,2,eggs,DSC_0818.JPG +17208,1411,1984,16,2,eggs,DSC_0818.JPG +1721,2959,1870,17,2,eggs,DSC_0844.JPG +17211,2881,2365,15,2,eggs,DSC_0818.JPG +17213,2773,2422,15,2,eggs,DSC_0818.JPG +17215,415,400,17,2,eggs,DSC_0818.JPG +17219,4843,490,17,2,eggs,DSC_0818.JPG +17235,4675,1699,15,2,eggs,DSC_0818.JPG +17236,5092,1933,17,2,eggs,DSC_0818.JPG +17240,4570,1999,15,2,eggs,DSC_0818.JPG +17245,1093,2275,15,2,eggs,DSC_0818.JPG +17249,784,142,15,2,eggs,DSC_0818.JPG +1725,3928,2125,17,1,eggs,DSC_0844.JPG +17251,2872,340,17,2,eggs,DSC_0818.JPG +17252,4135,358,17,2,eggs,DSC_0818.JPG +1726,2503,2164,15,1,eggs,DSC_0844.JPG +17266,4675,2056,15,2,eggs,DSC_0818.JPG +17268,2113,2236,16,2,eggs,DSC_0818.JPG +17274,4312,169,15,2,eggs,DSC_0818.JPG +17275,1093,205,17,2,eggs,DSC_0818.JPG +17276,415,274,17,2,eggs,DSC_0818.JPG +17277,3856,355,17,2,eggs,DSC_0818.JPG +17278,4705,364,17,2,eggs,DSC_0818.JPG +17290,5059,1870,17,2,eggs,DSC_0818.JPG +17293,3862,2116,17,2,eggs,DSC_0818.JPG +17296,4204,2359,15,2,eggs,DSC_0818.JPG +17298,4666,172,15,2,eggs,DSC_0818.JPG +17300,4738,301,17,2,eggs,DSC_0818.JPG +17303,2839,409,17,2,eggs,DSC_0818.JPG +17304,4738,424,16,2,eggs,DSC_0818.JPG +17305,4669,430,17,2,eggs,DSC_0818.JPG +17307,310,583,15,2,eggs,DSC_0818.JPG +17309,4912,859,17,2,eggs,DSC_0818.JPG +17316,4720,1402,16,2,eggs,DSC_0818.JPG +17322,5170,1813,17,2,eggs,DSC_0818.JPG +17332,3364,223,17,2,eggs,DSC_0818.JPG +17333,529,340,17,2,eggs,DSC_0818.JPG +17334,4879,430,16,2,eggs,DSC_0818.JPG +17337,310,703,17,2,eggs,DSC_0818.JPG +1734,1048,667,17,2,eggs,DSC_0844.JPG +17352,3055,2302,17,2,eggs,DSC_0818.JPG +17357,4843,364,17,2,eggs,DSC_0818.JPG +17358,4486,493,15,2,eggs,DSC_0818.JPG +17369,4822,1579,15,2,eggs,DSC_0818.JPG +17375,5020,2050,15,2,eggs,DSC_0818.JPG +17376,4741,2056,17,1,eggs,DSC_0818.JPG +17378,2914,2299,17,2,eggs,DSC_0818.JPG +17379,3967,2302,15,2,eggs,DSC_0818.JPG +1738,979,790,15,2,eggs,DSC_0844.JPG +17381,4843,235,17,2,eggs,DSC_0818.JPG +17382,4561,238,17,2,eggs,DSC_0818.JPG +17383,634,274,17,2,eggs,DSC_0818.JPG +17384,4774,490,17,2,eggs,DSC_0818.JPG +17388,4732,676,17,2,eggs,DSC_0818.JPG +17389,4840,739,15,2,eggs,DSC_0818.JPG +1739,517,961,17,2,eggs,DSC_0844.JPG +17391,4768,859,17,2,eggs,DSC_0818.JPG +17392,4870,1036,15,2,eggs,DSC_0818.JPG +17400,5026,1933,17,2,eggs,DSC_0818.JPG +17406,4810,427,17,2,eggs,DSC_0818.JPG +17407,4879,550,17,2,eggs,DSC_0818.JPG +17411,1660,847,17,2,eggs,DSC_0818.JPG +17416,5260,1093,17,2,eggs,DSC_0818.JPG +17425,2953,2245,17,2,eggs,DSC_0818.JPG +17426,4600,301,17,2,eggs,DSC_0818.JPG +17429,5047,1096,17,2,eggs,DSC_0818.JPG +17440,3100,1885,15,1,eggs,DSC_0818.JPG +17443,1900,2350,15,2,eggs,DSC_0818.JPG +17444,2950,2368,17,2,eggs,DSC_0818.JPG +17458,5089,2050,16,2,eggs,DSC_0818.JPG +17461,3298,2365,15,2,eggs,DSC_0818.JPG +17464,3892,292,16,2,eggs,DSC_0818.JPG +17465,4315,298,17,2,eggs,DSC_0818.JPG +1747,613,1618,15,2,eggs,DSC_0844.JPG +17470,4870,919,16,2,eggs,DSC_0818.JPG +17473,4831,1222,15,2,eggs,DSC_0818.JPG +17480,5056,2110,17,2,eggs,DSC_0818.JPG +17481,4738,2173,17,2,eggs,DSC_0818.JPG +17482,4801,2290,15,2,eggs,DSC_0818.JPG +17483,4735,2293,15,2,eggs,DSC_0818.JPG +17486,1273,145,17,2,eggs,DSC_0818.JPG +17487,4915,238,17,2,eggs,DSC_0818.JPG +17488,4417,490,16,2,eggs,DSC_0818.JPG +17491,4738,553,17,2,eggs,DSC_0818.JPG +17494,4978,976,17,2,eggs,DSC_0818.JPG +17501,4744,1699,17,2,eggs,DSC_0818.JPG +17506,1831,2347,15,2,eggs,DSC_0818.JPG +17513,4384,172,17,2,eggs,DSC_0818.JPG +17514,670,211,17,2,eggs,DSC_0818.JPG +17515,3502,226,16,2,eggs,DSC_0818.JPG +17522,4876,802,15,1,eggs,DSC_0818.JPG +17530,4579,1402,17,1,eggs,DSC_0818.JPG +17533,4924,1636,17,2,eggs,DSC_0818.JPG +17546,1195,1021,17,1,eggs,DSC_0818.JPG +17550,4678,1939,17,2,eggs,DSC_0818.JPG +17553,4771,2233,15,2,eggs,DSC_0818.JPG +17559,3823,292,17,2,eggs,DSC_0818.JPG +17565,631,1255,16,2,eggs,DSC_0818.JPG +1757,1510,613,17,2,eggs,DSC_0844.JPG +17574,3616,2299,17,2,eggs,DSC_0818.JPG +17576,1972,2350,17,2,eggs,DSC_0818.JPG +17577,3931,2359,17,2,eggs,DSC_0818.JPG +17579,850,265,15,2,eggs,DSC_0818.JPG +17581,346,766,16,2,eggs,DSC_0818.JPG +17594,4849,1636,17,2,eggs,DSC_0818.JPG +17596,4810,2056,15,2,eggs,DSC_0818.JPG +17597,4699,2236,15,2,eggs,DSC_0818.JPG +17599,3655,2242,15,2,eggs,DSC_0818.JPG +17602,4561,2353,15,2,eggs,DSC_0818.JPG +17604,3649,2362,15,2,eggs,DSC_0818.JPG +17607,4000,232,17,2,eggs,DSC_0818.JPG +17608,4804,550,17,2,eggs,DSC_0818.JPG +17625,3964,163,15,2,eggs,DSC_0818.JPG +17628,307,463,17,2,eggs,DSC_0818.JPG +17644,3016,2365,16,2,eggs,DSC_0818.JPG +17652,5269,730,17,2,eggs,DSC_0818.JPG +17657,5212,1390,16,2,eggs,DSC_0818.JPG +17658,1864,2404,17,2,eggs,DSC_0818.JPG +17659,2704,2419,15,2,eggs,DSC_0818.JPG +1766,478,1489,17,2,eggs,DSC_0844.JPG +17662,3682,292,17,2,eggs,DSC_0818.JPG +17667,4798,916,17,2,eggs,DSC_0818.JPG +1767,4474,1579,15,2,eggs,DSC_0844.JPG +17673,5173,1690,17,2,eggs,DSC_0818.JPG +17676,4777,2113,15,1,eggs,DSC_0818.JPG +17691,2842,2422,15,2,eggs,DSC_0818.JPG +17692,2941,211,17,2,eggs,DSC_0818.JPG +17693,4771,616,17,2,eggs,DSC_0818.JPG +1770,400,1843,17,2,eggs,DSC_0844.JPG +17702,1657,2047,15,2,eggs,DSC_0818.JPG +17703,4354,2116,17,2,eggs,DSC_0818.JPG +17704,1582,2401,16,2,eggs,DSC_0818.JPG +17705,2353,2419,15,2,eggs,DSC_0818.JPG +17709,4879,298,17,2,eggs,DSC_0818.JPG +17716,4678,1822,17,2,eggs,DSC_0818.JPG +17717,5047,2227,15,2,eggs,DSC_0818.JPG +17718,4276,2353,17,2,eggs,DSC_0818.JPG +17722,4945,796,15,2,eggs,DSC_0818.JPG +17732,1162,2395,15,2,eggs,DSC_0818.JPG +17735,709,142,17,2,eggs,DSC_0818.JPG +17751,5020,793,15,2,eggs,DSC_0818.JPG +17753,5041,1216,16,2,eggs,DSC_0818.JPG +17760,4102,295,16,2,eggs,DSC_0818.JPG +17762,5158,550,17,2,eggs,DSC_0818.JPG +17763,5056,616,15,2,eggs,DSC_0818.JPG +17770,4876,2173,17,2,eggs,DSC_0818.JPG +17773,2911,271,17,2,eggs,DSC_0818.JPG +17780,1444,2401,15,2,eggs,DSC_0818.JPG +17783,1987,151,16,2,eggs,DSC_0818.JPG +17784,5092,796,17,2,eggs,DSC_0818.JPG +1779,481,1138,16,2,eggs,DSC_0844.JPG +17790,3439,2362,15,2,eggs,DSC_0818.JPG +17795,2959,1522,17,2,eggs,DSC_0818.JPG +17804,598,211,16,2,eggs,DSC_0818.JPG +17805,5158,427,15,2,eggs,DSC_0818.JPG +17813,5131,1870,17,2,eggs,DSC_0818.JPG +17817,598,2260,17,2,eggs,DSC_0818.JPG +17829,1651,2410,17,2,eggs,DSC_0818.JPG +17835,4795,1282,15,2,eggs,DSC_0818.JPG +17839,4639,1996,17,2,eggs,DSC_0818.JPG +17845,814,205,16,2,eggs,DSC_0818.JPG +17849,3721,2362,15,2,eggs,DSC_0818.JPG +17850,2080,2413,17,2,eggs,DSC_0818.JPG +17856,2326,538,17,2,eggs,DSC_0818.JPG +17858,4732,799,16,2,eggs,DSC_0818.JPG +17871,202,760,15,2,eggs,DSC_0818.JPG +17874,5245,1687,17,2,eggs,DSC_0818.JPG +17880,4525,304,17,2,eggs,DSC_0818.JPG +17883,4867,1282,17,2,eggs,DSC_0818.JPG +17886,5203,1870,17,2,eggs,DSC_0818.JPG +17889,1090,2392,17,2,eggs,DSC_0818.JPG +17892,2635,2422,15,2,eggs,DSC_0818.JPG +17897,5278,1744,17,2,eggs,DSC_0818.JPG +17898,5059,1990,15,2,eggs,DSC_0818.JPG +17899,4807,2176,15,2,eggs,DSC_0818.JPG +179,4348,979,16,2,eggs,DSC_0844.JPG +17914,4630,238,17,2,eggs,DSC_0818.JPG +17915,4345,364,17,2,eggs,DSC_0818.JPG +17916,2203,412,17,1,eggs,DSC_0818.JPG +1793,3808,463,15,2,eggs,DSC_0844.JPG +17944,2983,2302,15,2,eggs,DSC_0818.JPG +17947,4966,1339,16,2,eggs,DSC_0818.JPG +17957,5314,1804,17,2,eggs,DSC_0818.JPG +17959,4603,2173,15,2,eggs,DSC_0818.JPG +1796,3766,658,15,2,eggs,DSC_0844.JPG +17965,490,271,17,2,eggs,DSC_0818.JPG +17968,3613,2416,15,2,eggs,DSC_0818.JPG +17973,4378,2413,17,2,eggs,DSC_0818.JPG +17977,4420,238,17,2,eggs,DSC_0818.JPG +17980,4927,1519,16,2,eggs,DSC_0818.JPG +1799,586,1204,17,2,eggs,DSC_0844.JPG +18005,5236,1930,17,2,eggs,DSC_0818.JPG +18013,1303,2401,15,2,eggs,DSC_0818.JPG +18018,271,1000,17,2,eggs,DSC_0818.JPG +18027,2986,2422,15,2,eggs,DSC_0818.JPG +18040,2146,2419,17,2,eggs,DSC_0818.JPG +18046,2422,2416,15,2,eggs,DSC_0818.JPG +18054,271,520,17,2,eggs,DSC_0818.JPG +18057,3190,2422,17,2,eggs,DSC_0818.JPG +18068,2764,418,16,2,eggs,DSC_0818.JPG +18086,4381,298,15,2,eggs,DSC_0818.JPG +18092,1486,151,15,2,eggs,DSC_0818.JPG +18099,2089,82,15,2,eggs,DSC_0818.JPG +1810,3229,2353,16,2,eggs,DSC_0844.JPG +18108,3265,2428,17,2,eggs,DSC_0818.JPG +18123,2008,2413,15,2,eggs,DSC_0818.JPG +18126,4957,1582,17,2,eggs,DSC_0818.JPG +1813,2857,244,17,2,eggs,DSC_0844.JPG +18131,2785,331,16,2,eggs,DSC_0818.JPG +18148,3514,2248,17,2,eggs,DSC_0818.JPG +1817,1336,544,17,2,eggs,DSC_0844.JPG +1818,766,664,17,2,eggs,DSC_0844.JPG +18187,3052,2431,17,2,eggs,DSC_0818.JPG +18193,772,2323,15,2,eggs,DSC_0818.JPG +1823,2716,1810,17,2,eggs,DSC_0844.JPG +1831,3727,721,17,2,eggs,DSC_0844.JPG +1843,685,1741,17,1,eggs,DSC_0844.JPG +18438,5029,1345,15,2,eggs,DSC_0818.JPG +1844,3235,1879,15,1,eggs,DSC_0844.JPG +1845,2989,1936,17,2,eggs,DSC_0844.JPG +18461,3160,2110,17,2,eggs,DSC_0818.JPG +18466,1174,214,15,2,eggs,DSC_0818.JPG +18493,4990,1744,17,2,eggs,DSC_0818.JPG +18498,4411,355,15,2,eggs,DSC_0818.JPG +18511,262,895,17,2,eggs,DSC_0818.JPG +18517,4924,1390,17,2,eggs,DSC_0818.JPG +1861,1924,1489,15,2,eggs,DSC_0844.JPG +1863,2719,1687,16,2,eggs,DSC_0844.JPG +1869,907,667,15,2,eggs,DSC_0844.JPG +187,3595,457,16,2,eggs,DSC_0844.JPG +1872,730,844,17,2,eggs,DSC_0844.JPG +188,4039,787,15,2,eggs,DSC_0844.JPG +1891,1546,418,15,2,eggs,DSC_0844.JPG +1897,553,901,17,2,eggs,DSC_0844.JPG +1898,586,967,17,1,eggs,DSC_0844.JPG +19,3490,388,17,2,eggs,DSC_0844.JPG +1900,481,1018,17,1,eggs,DSC_0844.JPG +1905,3544,2176,16,2,eggs,DSC_0844.JPG +19065,1648,2533,17,2,eggs,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +191,4420,853,15,2,eggs,DSC_0844.JPG +1913,2185,304,16,2,eggs,DSC_0844.JPG +1920,553,1261,15,1,eggs,DSC_0844.JPG +19305,4423,2362,17,1,eggs,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1941,406,1603,16,2,eggs,DSC_0844.JPG +1944,2467,2104,16,2,eggs,DSC_0844.JPG +1952,1300,478,17,2,eggs,DSC_0844.JPG +1954,4897,664,17,2,eggs,DSC_0844.JPG +1955,4399,667,16,2,eggs,DSC_0844.JPG +1963,4333,1576,16,2,eggs,DSC_0844.JPG +1964,757,1627,15,2,eggs,DSC_0844.JPG +1976,697,397,17,1,eggs,DSC_0844.JPG +1984,370,1192,17,2,eggs,DSC_0844.JPG +1989,1516,349,15,2,eggs,DSC_0844.JPG +199,4339,1225,16,2,eggs,DSC_0844.JPG +1992,439,1195,17,1,eggs,DSC_0844.JPG +1993,514,1198,17,2,eggs,DSC_0844.JPG +1999,3862,2002,16,2,eggs,DSC_0844.JPG +2,4552,1222,16,2,eggs,DSC_0844.JPG +200,4729,1279,15,2,eggs,DSC_0844.JPG +2000,1180,2116,16,2,eggs,DSC_0844.JPG +2001,3790,2122,17,2,eggs,DSC_0844.JPG +2013,580,1675,17,2,eggs,DSC_0844.JPG +2021,4969,661,17,2,eggs,DSC_0844.JPG +2022,802,727,17,2,eggs,DSC_0844.JPG +2028,3991,1459,16,2,eggs,DSC_0844.JPG +203,3355,1576,16,2,eggs,DSC_0844.JPG +2031,2782,1810,17,2,eggs,DSC_0844.JPG +20328,2617,2851,17,1,eggs,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2044,2614,1624,17,2,eggs,DSC_0844.JPG +2046,3097,1870,17,1,eggs,DSC_0844.JPG +2060,4582,1516,17,1,eggs,DSC_0844.JPG +2062,514,1672,17,2,eggs,DSC_0844.JPG +2064,793,1687,15,2,eggs,DSC_0844.JPG +2076,1159,607,16,2,eggs,DSC_0844.JPG +2092,625,1147,16,1,eggs,DSC_0844.JPG +2093,3160,2116,17,2,eggs,DSC_0844.JPG +2107,4759,535,17,2,eggs,DSC_0844.JPG +2108,1981,1114,17,2,eggs,DSC_0844.JPG +2122,334,2077,17,2,eggs,DSC_0844.JPG +2123,2536,2110,17,1,eggs,DSC_0844.JPG +2132,1669,2032,15,1,eggs,DSC_0844.JPG +2134,1588,2143,15,1,eggs,DSC_0844.JPG +2143,3478,781,15,2,eggs,DSC_0844.JPG +215,1261,544,17,2,eggs,DSC_0844.JPG +216,4222,598,16,2,eggs,DSC_0844.JPG +2160,442,1432,17,2,eggs,DSC_0844.JPG +2164,2470,1747,16,1,eggs,DSC_0844.JPG +2187,4180,787,17,1,eggs,DSC_0844.JPG +2191,547,1144,17,2,eggs,DSC_0844.JPG +2192,514,1315,17,2,eggs,DSC_0844.JPG +2197,1369,610,17,2,eggs,DSC_0844.JPG +2198,1441,616,17,2,eggs,DSC_0844.JPG +2219,475,1732,17,2,eggs,DSC_0844.JPG +2223,3577,2239,15,2,eggs,DSC_0844.JPG +2272,4828,1693,15,2,eggs,DSC_0844.JPG +228,4792,1633,17,2,eggs,DSC_0844.JPG +2288,3586,715,17,1,eggs,DSC_0844.JPG +231,2329,310,15,2,eggs,DSC_0844.JPG +2324,256,1594,17,2,eggs,DSC_0844.JPG +233,697,907,15,2,eggs,DSC_0844.JPG +2346,1546,679,16,2,eggs,DSC_0844.JPG +2352,1426,2131,15,1,eggs,DSC_0844.JPG +238,2026,1555,16,1,eggs,DSC_0844.JPG +240,3124,2290,17,1,eggs,DSC_0844.JPG +2405,1444,481,16,2,eggs,DSC_0844.JPG +2409,1141,2047,17,2,eggs,DSC_0844.JPG +242,1582,616,17,2,eggs,DSC_0844.JPG +243,4468,667,15,2,eggs,DSC_0844.JPG +24310,1153,1888,15,2,eggs,DSC_0819.JPG +24316,1930,439,16,2,eggs,DSC_0819.JPG +24317,2494,181,17,2,eggs,DSC_0819.JPG +24323,1186,2062,17,2,eggs,DSC_0819.JPG +24326,1048,2059,15,2,eggs,DSC_0819.JPG +24330,1888,2191,15,2,eggs,DSC_0819.JPG +24334,2425,181,16,2,eggs,DSC_0819.JPG +24337,1468,2188,15,2,eggs,DSC_0819.JPG +24338,1222,2242,15,2,eggs,DSC_0819.JPG +24341,2029,2074,16,2,eggs,DSC_0819.JPG +24342,2170,2311,15,2,eggs,DSC_0819.JPG +24343,1645,181,16,2,eggs,DSC_0819.JPG +24344,2143,181,16,2,eggs,DSC_0819.JPG +24346,901,367,17,2,eggs,DSC_0819.JPG +24347,3688,928,15,2,eggs,DSC_0819.JPG +24352,3655,871,15,2,eggs,DSC_0819.JPG +24354,2956,118,16,2,eggs,DSC_0819.JPG +24355,1573,307,17,2,eggs,DSC_0819.JPG +24357,1927,2131,15,2,eggs,DSC_0819.JPG +24358,1366,2248,15,2,eggs,DSC_0819.JPG +24359,3097,118,17,2,eggs,DSC_0819.JPG +24361,1927,307,17,2,eggs,DSC_0819.JPG +24365,2392,244,17,2,eggs,DSC_0819.JPG +24370,1645,2131,16,2,eggs,DSC_0819.JPG +24371,2599,118,17,2,eggs,DSC_0819.JPG +24372,1294,304,17,2,eggs,DSC_0819.JPG +24375,1186,1828,17,2,eggs,DSC_0819.JPG +24377,2134,2248,17,2,eggs,DSC_0819.JPG +24378,1960,2311,16,2,eggs,DSC_0819.JPG +24379,2251,247,17,2,eggs,DSC_0819.JPG +24380,1999,310,16,2,eggs,DSC_0819.JPG +24381,1363,1654,17,2,eggs,DSC_0819.JPG +24385,1015,1771,15,2,eggs,DSC_0819.JPG +24386,2098,2191,15,2,eggs,DSC_0819.JPG +24388,2812,121,17,2,eggs,DSC_0819.JPG +24391,1963,373,16,2,eggs,DSC_0819.JPG +24393,1855,1897,17,2,eggs,DSC_0819.JPG +24394,2323,118,17,2,eggs,DSC_0819.JPG +24395,2707,181,17,2,eggs,DSC_0819.JPG +24396,1507,436,17,2,eggs,DSC_0819.JPG +24403,2695,2257,15,2,eggs,DSC_0819.JPG +24404,2029,2311,16,2,eggs,DSC_0819.JPG +24405,2377,2314,15,2,eggs,DSC_0819.JPG +24406,973,367,17,2,eggs,DSC_0819.JPG +24407,1753,502,17,2,eggs,DSC_0819.JPG +24412,1858,568,17,2,eggs,DSC_0819.JPG +24419,2035,118,17,2,eggs,DSC_0819.JPG +24421,1363,1774,15,1,eggs,DSC_0819.JPG +24422,1747,1954,15,2,eggs,DSC_0819.JPG +24434,2344,2134,16,2,eggs,DSC_0819.JPG +24435,2623,2257,16,2,eggs,DSC_0819.JPG +24436,2341,2374,15,2,eggs,DSC_0819.JPG +24444,2212,439,16,2,eggs,DSC_0819.JPG +24446,1228,1420,15,2,eggs,DSC_0819.JPG +24448,1822,1954,15,2,eggs,DSC_0819.JPG +24454,1399,2071,15,2,eggs,DSC_0819.JPG +24455,3148,2320,15,2,eggs,DSC_0819.JPG +24456,3379,124,17,2,eggs,DSC_0819.JPG +24458,2140,313,17,2,eggs,DSC_0819.JPG +24459,1081,433,17,2,eggs,DSC_0819.JPG +24460,1297,1540,15,2,eggs,DSC_0819.JPG +24469,2992,181,17,1,eggs,DSC_0819.JPG +24470,3058,181,16,2,eggs,DSC_0819.JPG +24476,1924,1894,16,2,eggs,DSC_0819.JPG +24477,3430,2320,15,2,eggs,DSC_0819.JPG +24478,2035,376,16,2,eggs,DSC_0819.JPG +24484,943,1999,15,2,eggs,DSC_0819.JPG +24486,1786,2248,15,2,eggs,DSC_0819.JPG +24488,3181,2380,15,2,eggs,DSC_0819.JPG +24489,3202,187,16,2,eggs,DSC_0819.JPG +24491,1684,502,16,2,eggs,DSC_0819.JPG +24493,3865,631,17,2,eggs,DSC_0819.JPG +24496,2380,2191,15,2,eggs,DSC_0819.JPG +24498,2344,2254,15,2,eggs,DSC_0819.JPG +24501,1855,307,16,2,eggs,DSC_0819.JPG +24503,1366,691,16,2,eggs,DSC_0819.JPG +24506,5041,1945,17,2,eggs,DSC_0819.JPG +24511,2902,2377,17,2,eggs,DSC_0819.JPG +24513,3307,124,17,2,eggs,DSC_0819.JPG +24515,1546,625,17,2,eggs,DSC_0819.JPG +24522,1609,2071,15,2,eggs,DSC_0819.JPG +24526,3535,2380,15,2,eggs,DSC_0819.JPG +24529,1222,433,17,2,eggs,DSC_0819.JPG +24532,5002,1885,17,2,eggs,DSC_0819.JPG +24533,979,2056,15,2,eggs,DSC_0819.JPG +24535,1330,2305,15,2,eggs,DSC_0819.JPG +24540,1258,1711,15,2,eggs,DSC_0819.JPG +24543,1363,2128,15,2,eggs,DSC_0819.JPG +24544,4513,2368,15,2,eggs,DSC_0819.JPG +24545,3235,121,17,2,eggs,DSC_0819.JPG +24546,1471,247,15,2,eggs,DSC_0819.JPG +24547,2284,310,16,2,eggs,DSC_0819.JPG +24555,1117,1948,17,2,eggs,DSC_0819.JPG +24556,1324,2068,15,2,eggs,DSC_0819.JPG +24557,2521,2314,15,2,eggs,DSC_0819.JPG +24558,2587,2317,15,2,eggs,DSC_0819.JPG +24559,1720,436,17,2,eggs,DSC_0819.JPG +24560,1582,688,17,2,eggs,DSC_0819.JPG +24562,1714,2011,16,2,eggs,DSC_0819.JPG +24564,1504,2248,15,2,eggs,DSC_0819.JPG +24566,1753,373,16,2,eggs,DSC_0819.JPG +24567,2176,379,15,2,eggs,DSC_0819.JPG +24569,1891,631,17,2,eggs,DSC_0819.JPG +24575,2098,1954,15,2,eggs,DSC_0819.JPG +24578,1468,2071,15,2,eggs,DSC_0819.JPG +24581,2236,2311,17,2,eggs,DSC_0819.JPG +24582,2035,247,17,2,eggs,DSC_0819.JPG +24583,2320,247,16,2,eggs,DSC_0819.JPG +24585,1585,934,15,2,eggs,DSC_0819.JPG +24586,1687,994,17,1,eggs,DSC_0819.JPG +24593,4318,1414,17,1,eggs,DSC_0819.JPG +24595,1153,1771,15,2,eggs,DSC_0819.JPG +24596,3115,2140,15,2,eggs,DSC_0819.JPG +24597,1048,2176,16,2,eggs,DSC_0819.JPG +24598,2107,244,17,2,eggs,DSC_0819.JPG +24600,1042,367,17,2,eggs,DSC_0819.JPG +24601,1150,433,17,2,eggs,DSC_0819.JPG +24605,1048,997,15,2,eggs,DSC_0819.JPG +24615,1291,2242,17,2,eggs,DSC_0819.JPG +24616,1573,2248,15,2,eggs,DSC_0819.JPG +24618,4258,184,16,2,eggs,DSC_0819.JPG +24619,937,430,17,2,eggs,DSC_0819.JPG +24620,1117,496,17,2,eggs,DSC_0819.JPG +24621,1654,814,15,1,eggs,DSC_0819.JPG +24626,1084,1885,17,2,eggs,DSC_0819.JPG +24628,2236,2191,17,2,eggs,DSC_0819.JPG +24629,1258,2302,15,2,eggs,DSC_0819.JPG +24631,2179,244,17,2,eggs,DSC_0819.JPG +24632,4000,1105,17,1,eggs,DSC_0819.JPG +24635,4591,1771,15,2,eggs,DSC_0819.JPG +24640,3451,118,17,2,eggs,DSC_0819.JPG +24643,2071,310,17,2,eggs,DSC_0819.JPG +24644,1894,370,17,2,eggs,DSC_0819.JPG +24652,4096,2134,15,2,eggs,DSC_0819.JPG +24654,1120,2182,17,2,eggs,DSC_0819.JPG +24655,1399,2188,15,2,eggs,DSC_0819.JPG +24656,2068,439,17,2,eggs,DSC_0819.JPG +24657,1825,499,17,2,eggs,DSC_0819.JPG +24658,616,619,17,2,eggs,DSC_0819.JPG +24663,1117,1594,15,2,eggs,DSC_0819.JPG +24666,2137,1897,15,2,eggs,DSC_0819.JPG +24672,2104,373,17,2,eggs,DSC_0819.JPG +24673,1648,436,17,2,eggs,DSC_0819.JPG +24684,865,430,17,2,eggs,DSC_0819.JPG +24689,1117,997,16,2,eggs,DSC_0819.JPG +247,3823,2182,15,2,eggs,DSC_0844.JPG +24703,2206,2251,15,2,eggs,DSC_0819.JPG +24705,1258,499,16,2,eggs,DSC_0819.JPG +24707,1330,754,17,2,eggs,DSC_0819.JPG +2471,304,2134,17,2,eggs,DSC_0844.JPG +24710,4732,1648,15,2,eggs,DSC_0819.JPG +24711,1291,1771,16,2,eggs,DSC_0819.JPG +24712,4798,1885,15,2,eggs,DSC_0819.JPG +24713,3289,2200,15,2,eggs,DSC_0819.JPG +24714,3637,2317,15,2,eggs,DSC_0819.JPG +24717,1258,367,17,2,eggs,DSC_0819.JPG +24719,1366,559,17,2,eggs,DSC_0819.JPG +24720,976,748,17,2,eggs,DSC_0819.JPG +24726,3358,2320,16,2,eggs,DSC_0819.JPG +24730,1546,754,17,2,eggs,DSC_0819.JPG +24731,3931,871,16,2,eggs,DSC_0819.JPG +24734,3475,1171,16,1,eggs,DSC_0819.JPG +24740,808,1999,17,2,eggs,DSC_0819.JPG +24743,1576,2131,15,2,eggs,DSC_0819.JPG +24749,1543,496,15,2,eggs,DSC_0819.JPG +24750,1405,625,17,2,eggs,DSC_0819.JPG +24751,1822,631,17,2,eggs,DSC_0819.JPG +24759,4837,1588,15,2,eggs,DSC_0819.JPG +24763,1045,1945,15,1,eggs,DSC_0819.JPG +24766,874,1999,15,2,eggs,DSC_0819.JPG +24769,2656,2314,17,2,eggs,DSC_0819.JPG +24770,2179,118,17,2,eggs,DSC_0819.JPG +24771,3025,118,17,2,eggs,DSC_0819.JPG +24774,1822,373,16,2,eggs,DSC_0819.JPG +24775,1366,433,17,2,eggs,DSC_0819.JPG +24776,1651,565,17,2,eggs,DSC_0819.JPG +24789,2905,2260,16,2,eggs,DSC_0819.JPG +24790,1852,2371,17,2,eggs,DSC_0819.JPG +24791,1720,688,17,2,eggs,DSC_0819.JPG +24795,1687,877,15,2,eggs,DSC_0819.JPG +248,3241,451,16,2,eggs,DSC_0844.JPG +24801,1891,1834,15,2,eggs,DSC_0819.JPG +24804,2029,1954,16,2,eggs,DSC_0819.JPG +24808,1783,2131,15,2,eggs,DSC_0819.JPG +24811,2131,2371,15,2,eggs,DSC_0819.JPG +24813,2251,115,17,2,eggs,DSC_0819.JPG +24814,2743,118,17,2,eggs,DSC_0819.JPG +24816,3523,121,17,2,eggs,DSC_0819.JPG +24817,2461,376,17,2,eggs,DSC_0819.JPG +24819,1294,562,17,2,eggs,DSC_0819.JPG +24826,766,1231,17,2,eggs,DSC_0819.JPG +24827,1405,1363,15,2,eggs,DSC_0819.JPG +24832,4828,1945,15,2,eggs,DSC_0819.JPG +24837,1015,2236,15,2,eggs,DSC_0819.JPG +24838,1606,2305,15,2,eggs,DSC_0819.JPG +24839,2833,2377,15,2,eggs,DSC_0819.JPG +24841,1858,439,17,2,eggs,DSC_0819.JPG +24843,1438,688,16,2,eggs,DSC_0819.JPG +24844,1474,751,16,2,eggs,DSC_0819.JPG +24845,1513,814,17,2,eggs,DSC_0819.JPG +24850,1477,1117,16,2,eggs,DSC_0819.JPG +24861,1504,1771,17,2,eggs,DSC_0819.JPG +24866,4444,2248,16,2,eggs,DSC_0819.JPG +24867,1639,2365,15,2,eggs,DSC_0819.JPG +24868,2458,115,17,2,eggs,DSC_0819.JPG +24870,1891,247,16,2,eggs,DSC_0819.JPG +24873,1045,874,17,2,eggs,DSC_0819.JPG +24877,1084,2119,16,2,eggs,DSC_0819.JPG +24879,2974,2257,15,2,eggs,DSC_0819.JPG +24880,2098,2311,15,2,eggs,DSC_0819.JPG +24883,2530,118,17,2,eggs,DSC_0819.JPG +24885,3412,187,16,2,eggs,DSC_0819.JPG +24886,406,367,17,2,eggs,DSC_0819.JPG +24888,1438,565,17,2,eggs,DSC_0819.JPG +24889,1153,688,17,2,eggs,DSC_0819.JPG +24892,3793,751,16,1,eggs,DSC_0819.JPG +24895,1261,874,17,2,eggs,DSC_0819.JPG +24897,406,985,15,2,eggs,DSC_0819.JPG +24899,1081,1054,15,2,eggs,DSC_0819.JPG +249,691,655,17,2,eggs,DSC_0844.JPG +24904,4831,1825,17,2,eggs,DSC_0819.JPG +24905,1537,1834,16,2,eggs,DSC_0819.JPG +24906,874,1885,17,2,eggs,DSC_0819.JPG +24907,910,1942,15,1,eggs,DSC_0819.JPG +24908,1183,1948,15,2,eggs,DSC_0819.JPG +24909,1678,1954,15,2,eggs,DSC_0819.JPG +24910,1219,2005,15,2,eggs,DSC_0819.JPG +24912,1294,2128,17,2,eggs,DSC_0819.JPG +24913,2062,2134,17,2,eggs,DSC_0819.JPG +24917,1609,241,15,2,eggs,DSC_0819.JPG +24919,1822,247,17,2,eggs,DSC_0819.JPG +24921,1615,502,17,2,eggs,DSC_0819.JPG +24922,934,562,17,2,eggs,DSC_0819.JPG +24936,1255,1831,16,2,eggs,DSC_0819.JPG +24937,4282,1834,15,2,eggs,DSC_0819.JPG +24941,1471,2305,15,2,eggs,DSC_0819.JPG +24943,2353,181,17,2,eggs,DSC_0819.JPG +24945,1330,496,16,2,eggs,DSC_0819.JPG +24950,118,1096,17,2,eggs,DSC_0819.JPG +24951,4666,1651,15,2,eggs,DSC_0819.JPG +24952,1573,1891,15,2,eggs,DSC_0819.JPG +24954,1678,2071,15,2,eggs,DSC_0819.JPG +24957,1153,2239,16,2,eggs,DSC_0819.JPG +24958,1924,2251,16,2,eggs,DSC_0819.JPG +24959,2764,2257,17,2,eggs,DSC_0819.JPG +24961,2800,2317,15,2,eggs,DSC_0819.JPG +24962,3253,2383,16,2,eggs,DSC_0819.JPG +24965,4438,247,15,2,eggs,DSC_0819.JPG +24967,1399,370,16,2,eggs,DSC_0819.JPG +24968,1579,439,15,2,eggs,DSC_0819.JPG +24973,370,1165,16,2,eggs,DSC_0819.JPG +24980,1645,1894,15,2,eggs,DSC_0819.JPG +24985,1150,2119,17,2,eggs,DSC_0819.JPG +24986,1432,2128,15,2,eggs,DSC_0819.JPG +24987,1714,2131,15,2,eggs,DSC_0819.JPG +24990,1714,2365,15,2,eggs,DSC_0819.JPG +24995,4618,310,17,2,eggs,DSC_0819.JPG +25004,4900,1825,15,2,eggs,DSC_0819.JPG +25006,2134,2131,17,2,eggs,DSC_0819.JPG +25007,2272,2254,17,2,eggs,DSC_0819.JPG +25008,2725,2320,17,2,eggs,DSC_0819.JPG +25011,5107,436,15,2,eggs,DSC_0819.JPG +25012,1513,1057,16,2,eggs,DSC_0819.JPG +25015,4798,1645,17,2,eggs,DSC_0819.JPG +25017,979,1828,15,2,eggs,DSC_0819.JPG +25018,2380,2077,16,2,eggs,DSC_0819.JPG +25022,2377,2434,15,2,eggs,DSC_0819.JPG +25023,2071,181,17,2,eggs,DSC_0819.JPG +25025,1081,304,17,2,eggs,DSC_0819.JPG +25037,1048,1831,17,2,eggs,DSC_0819.JPG +25038,1465,1831,17,2,eggs,DSC_0819.JPG +25039,1819,2191,15,2,eggs,DSC_0819.JPG +25040,1081,2236,16,2,eggs,DSC_0819.JPG +25041,2485,2254,16,2,eggs,DSC_0819.JPG +25042,2764,2377,15,2,eggs,DSC_0819.JPG +25043,2671,115,17,2,eggs,DSC_0819.JPG +25059,2416,2017,15,2,eggs,DSC_0819.JPG +25061,2203,2134,15,2,eggs,DSC_0819.JPG +25063,1537,2305,15,2,eggs,DSC_0819.JPG +25067,2389,118,16,2,eggs,DSC_0819.JPG +25068,3487,184,16,2,eggs,DSC_0819.JPG +25069,1681,373,16,2,eggs,DSC_0819.JPG +25070,4795,376,15,2,eggs,DSC_0819.JPG +25071,2353,439,17,2,eggs,DSC_0819.JPG +25080,4699,1708,17,2,eggs,DSC_0819.JPG +25082,1960,1837,16,2,eggs,DSC_0819.JPG +25084,1294,1891,17,2,eggs,DSC_0819.JPG +25087,1960,1957,17,2,eggs,DSC_0819.JPG +25089,3430,2080,17,2,eggs,DSC_0819.JPG +25090,1504,2365,15,2,eggs,DSC_0819.JPG +25091,1678,2422,15,2,eggs,DSC_0819.JPG +25094,1471,496,16,2,eggs,DSC_0819.JPG +25095,580,559,17,2,eggs,DSC_0819.JPG +25096,1684,625,17,2,eggs,DSC_0819.JPG +25097,583,682,17,2,eggs,DSC_0819.JPG +25098,3898,808,17,2,eggs,DSC_0819.JPG +25101,4699,1594,17,2,eggs,DSC_0819.JPG +25105,1819,1720,17,2,eggs,DSC_0819.JPG +25106,1117,1828,15,2,eggs,DSC_0819.JPG +25109,1645,2008,17,2,eggs,DSC_0819.JPG +25111,2167,2188,17,2,eggs,DSC_0819.JPG +25112,4237,2251,15,2,eggs,DSC_0819.JPG +25113,2449,2314,15,2,eggs,DSC_0819.JPG +25114,2413,2371,17,2,eggs,DSC_0819.JPG +25115,2623,2377,15,2,eggs,DSC_0819.JPG +25116,2797,2437,15,2,eggs,DSC_0819.JPG +25119,1651,694,15,1,eggs,DSC_0819.JPG +25122,655,808,15,2,eggs,DSC_0819.JPG +25123,3826,811,16,2,eggs,DSC_0819.JPG +25125,1009,1057,15,2,eggs,DSC_0819.JPG +25132,5008,1765,15,1,eggs,DSC_0819.JPG +25133,4936,1768,15,2,eggs,DSC_0819.JPG +25136,1786,2011,17,2,eggs,DSC_0819.JPG +25138,910,2053,17,2,eggs,DSC_0819.JPG +25141,1678,2191,15,2,eggs,DSC_0819.JPG +25145,3079,2320,15,2,eggs,DSC_0819.JPG +25150,3697,181,17,2,eggs,DSC_0819.JPG +25152,4546,313,17,2,eggs,DSC_0819.JPG +25159,904,1237,17,2,eggs,DSC_0819.JPG +25173,1993,2371,15,2,eggs,DSC_0819.JPG +25174,2272,2371,16,2,eggs,DSC_0819.JPG +25177,1366,181,17,2,eggs,DSC_0819.JPG +25178,1999,181,17,2,eggs,DSC_0819.JPG +25179,1081,562,16,2,eggs,DSC_0819.JPG +25204,2848,181,17,2,eggs,DSC_0819.JPG +25206,1786,310,16,2,eggs,DSC_0819.JPG +25209,1156,1057,15,2,eggs,DSC_0819.JPG +25210,727,1171,15,2,eggs,DSC_0819.JPG +25219,5149,1882,17,2,eggs,DSC_0819.JPG +25220,1258,1948,15,2,eggs,DSC_0819.JPG +25221,1324,1951,15,2,eggs,DSC_0819.JPG +25227,2248,379,16,2,eggs,DSC_0819.JPG +25230,1045,751,17,2,eggs,DSC_0819.JPG +25233,760,1111,17,2,eggs,DSC_0819.JPG +25241,805,1768,17,2,eggs,DSC_0819.JPG +25243,1291,2008,16,2,eggs,DSC_0819.JPG +25246,3400,2020,15,2,eggs,DSC_0819.JPG +25248,2485,2137,15,1,eggs,DSC_0819.JPG +25250,3394,2380,16,2,eggs,DSC_0819.JPG +25257,436,805,17,2,eggs,DSC_0819.JPG +25259,3514,1108,17,2,eggs,DSC_0819.JPG +25263,4354,1474,17,2,eggs,DSC_0819.JPG +25267,979,1942,15,2,eggs,DSC_0819.JPG +25271,1855,2248,15,2,eggs,DSC_0819.JPG +25276,4405,184,17,2,eggs,DSC_0819.JPG +25277,1117,241,17,2,eggs,DSC_0819.JPG +25278,4726,496,17,2,eggs,DSC_0819.JPG +25279,1222,562,17,2,eggs,DSC_0819.JPG +25281,835,1234,16,2,eggs,DSC_0819.JPG +25285,5194,1699,17,2,eggs,DSC_0819.JPG +25291,1153,2005,17,2,eggs,DSC_0819.JPG +25294,1222,2125,17,2,eggs,DSC_0819.JPG +25297,3043,2260,15,2,eggs,DSC_0819.JPG +25298,1540,121,17,2,eggs,DSC_0819.JPG +25300,1753,631,15,2,eggs,DSC_0819.JPG +25302,940,814,17,2,eggs,DSC_0819.JPG +25304,1405,877,17,2,eggs,DSC_0819.JPG +25314,5011,1648,15,2,eggs,DSC_0819.JPG +25315,1219,1774,17,2,eggs,DSC_0819.JPG +25317,1222,1888,15,2,eggs,DSC_0819.JPG +25321,1363,2011,15,2,eggs,DSC_0819.JPG +25322,4966,2182,16,2,eggs,DSC_0819.JPG +25323,1750,2191,15,2,eggs,DSC_0819.JPG +25324,4372,2248,17,2,eggs,DSC_0819.JPG +25326,1816,2308,15,2,eggs,DSC_0819.JPG +25329,649,559,17,2,eggs,DSC_0819.JPG +25331,796,1174,17,2,eggs,DSC_0819.JPG +25335,4765,1828,15,2,eggs,DSC_0819.JPG +25340,2905,2140,15,2,eggs,DSC_0819.JPG +25341,943,2236,16,2,eggs,DSC_0819.JPG +25342,1642,2245,17,2,eggs,DSC_0819.JPG +25343,4306,2371,16,2,eggs,DSC_0819.JPG +25344,3886,2377,15,2,eggs,DSC_0819.JPG +25348,1117,367,17,2,eggs,DSC_0819.JPG +25349,1789,439,15,2,eggs,DSC_0819.JPG +25351,688,493,17,2,eggs,DSC_0819.JPG +25352,616,496,17,2,eggs,DSC_0819.JPG +25354,1225,691,17,2,eggs,DSC_0819.JPG +25355,1120,877,17,2,eggs,DSC_0819.JPG +25360,907,1828,15,2,eggs,DSC_0819.JPG +25365,5038,2065,17,2,eggs,DSC_0819.JPG +25366,1012,2116,17,2,eggs,DSC_0819.JPG +25371,1744,2308,15,2,eggs,DSC_0819.JPG +25374,4444,2371,15,2,eggs,DSC_0819.JPG +25375,2203,2374,15,2,eggs,DSC_0819.JPG +25378,1963,244,17,2,eggs,DSC_0819.JPG +25381,2212,313,16,2,eggs,DSC_0819.JPG +25383,1513,691,17,2,eggs,DSC_0819.JPG +25384,1186,754,15,2,eggs,DSC_0819.JPG +25389,1156,1420,15,2,eggs,DSC_0819.JPG +25390,1261,1597,15,2,eggs,DSC_0819.JPG +25396,4411,2305,17,2,eggs,DSC_0819.JPG +25397,4132,2314,16,2,eggs,DSC_0819.JPG +254,649,1681,15,2,eggs,DSC_0844.JPG +25400,4939,373,17,2,eggs,DSC_0819.JPG +25401,1615,628,16,2,eggs,DSC_0819.JPG +25413,1156,1654,17,2,eggs,DSC_0819.JPG +25416,5071,2242,16,2,eggs,DSC_0819.JPG +25417,1435,2248,15,2,eggs,DSC_0819.JPG +25422,3166,124,15,2,eggs,DSC_0819.JPG +25424,1576,181,17,2,eggs,DSC_0819.JPG +25427,1291,433,17,2,eggs,DSC_0819.JPG +25429,1258,622,15,2,eggs,DSC_0819.JPG +25439,838,1939,17,2,eggs,DSC_0819.JPG +25441,1960,2188,17,2,eggs,DSC_0819.JPG +25442,1996,2251,15,2,eggs,DSC_0819.JPG +25443,4267,2311,17,2,eggs,DSC_0819.JPG +25445,1222,2359,15,2,eggs,DSC_0819.JPG +25447,1402,496,16,2,eggs,DSC_0819.JPG +25461,4693,2065,15,2,eggs,DSC_0819.JPG +25462,4897,2182,17,2,eggs,DSC_0819.JPG +25464,4651,2245,15,2,eggs,DSC_0819.JPG +25466,4726,247,17,2,eggs,DSC_0819.JPG +25467,439,427,17,2,eggs,DSC_0819.JPG +25469,2035,508,15,2,eggs,DSC_0819.JPG +25470,1477,625,17,2,eggs,DSC_0819.JPG +25471,1582,814,16,2,eggs,DSC_0819.JPG +25478,5083,1645,17,2,eggs,DSC_0819.JPG +25480,805,1879,17,2,eggs,DSC_0819.JPG +25481,4762,1945,15,2,eggs,DSC_0819.JPG +25487,4861,2122,15,2,eggs,DSC_0819.JPG +25488,1714,2248,16,2,eggs,DSC_0819.JPG +25490,4546,181,16,2,eggs,DSC_0819.JPG +25506,1153,2359,15,2,eggs,DSC_0819.JPG +25507,3325,2383,15,2,eggs,DSC_0819.JPG +25509,4477,184,17,2,eggs,DSC_0819.JPG +25518,658,1528,17,2,eggs,DSC_0819.JPG +25528,2692,2377,15,2,eggs,DSC_0819.JPG +25529,3043,2380,16,2,eggs,DSC_0819.JPG +25530,3955,2380,17,2,eggs,DSC_0819.JPG +25533,1006,304,17,2,eggs,DSC_0819.JPG +25541,865,688,17,2,eggs,DSC_0819.JPG +25543,1369,811,17,2,eggs,DSC_0819.JPG +25544,1720,814,15,2,eggs,DSC_0819.JPG +25550,1120,1240,17,2,eggs,DSC_0819.JPG +25555,409,1696,15,2,eggs,DSC_0819.JPG +25556,4630,1711,15,2,eggs,DSC_0819.JPG +25567,2284,178,15,2,eggs,DSC_0819.JPG +25570,4972,313,17,2,eggs,DSC_0819.JPG +25571,5212,622,17,2,eggs,DSC_0819.JPG +25573,1228,814,15,2,eggs,DSC_0819.JPG +25583,1474,1363,15,2,eggs,DSC_0819.JPG +25593,3628,181,17,1,eggs,DSC_0819.JPG +25595,4654,244,15,2,eggs,DSC_0819.JPG +25596,469,493,17,2,eggs,DSC_0819.JPG +25597,796,556,17,2,eggs,DSC_0819.JPG +25599,688,748,17,2,eggs,DSC_0819.JPG +25603,3406,1048,17,2,eggs,DSC_0819.JPG +25606,1408,1240,15,1,eggs,DSC_0819.JPG +25610,1576,1774,15,2,eggs,DSC_0819.JPG +25617,1189,2182,15,2,eggs,DSC_0819.JPG +25623,4099,2374,15,2,eggs,DSC_0819.JPG +25624,3463,2380,15,2,eggs,DSC_0819.JPG +25627,4333,184,17,2,eggs,DSC_0819.JPG +25628,4369,247,17,2,eggs,DSC_0819.JPG +25629,5077,373,16,2,eggs,DSC_0819.JPG +25630,901,496,16,2,eggs,DSC_0819.JPG +25631,1189,625,17,2,eggs,DSC_0819.JPG +25632,1333,628,17,2,eggs,DSC_0819.JPG +25635,1081,1177,17,2,eggs,DSC_0819.JPG +25636,1084,1300,17,2,eggs,DSC_0819.JPG +25640,4933,2122,17,2,eggs,DSC_0819.JPG +25641,1504,2128,15,2,eggs,DSC_0819.JPG +25642,1609,2191,16,2,eggs,DSC_0819.JPG +25644,1573,2368,16,2,eggs,DSC_0819.JPG +25648,1714,310,17,2,eggs,DSC_0819.JPG +25650,655,685,17,2,eggs,DSC_0819.JPG +25651,1012,811,17,2,eggs,DSC_0819.JPG +25652,943,934,15,2,eggs,DSC_0819.JPG +25656,1051,1117,15,2,eggs,DSC_0819.JPG +25658,652,1168,17,2,eggs,DSC_0819.JPG +25660,979,1240,17,2,eggs,DSC_0819.JPG +25670,4582,2245,17,2,eggs,DSC_0819.JPG +25672,3217,2320,15,2,eggs,DSC_0819.JPG +25673,1924,2368,15,2,eggs,DSC_0819.JPG +25674,937,304,17,2,eggs,DSC_0819.JPG +25675,1186,370,16,2,eggs,DSC_0819.JPG +25676,1540,370,16,2,eggs,DSC_0819.JPG +25677,652,433,17,2,eggs,DSC_0819.JPG +25678,1579,565,16,2,eggs,DSC_0819.JPG +25679,1297,691,16,2,eggs,DSC_0819.JPG +25680,1405,754,17,2,eggs,DSC_0819.JPG +25689,1120,1480,17,2,eggs,DSC_0819.JPG +25691,982,1711,15,2,eggs,DSC_0819.JPG +25692,5224,1759,15,2,eggs,DSC_0819.JPG +25693,5113,1822,16,2,eggs,DSC_0819.JPG +25694,5038,1825,15,2,eggs,DSC_0819.JPG +25696,1081,2002,15,2,eggs,DSC_0819.JPG +25698,4201,2314,15,2,eggs,DSC_0819.JPG +25703,4762,184,17,2,eggs,DSC_0819.JPG +25704,1924,187,17,2,eggs,DSC_0819.JPG +25706,1510,562,16,2,eggs,DSC_0819.JPG +25708,979,1117,15,2,eggs,DSC_0819.JPG +25717,874,2116,17,2,eggs,DSC_0819.JPG +25720,1504,181,17,2,eggs,DSC_0819.JPG +25721,4579,247,17,2,eggs,DSC_0819.JPG +25723,760,493,17,2,eggs,DSC_0819.JPG +25725,970,625,17,2,eggs,DSC_0819.JPG +25726,3691,808,17,2,eggs,DSC_0819.JPG +25729,193,979,17,2,eggs,DSC_0819.JPG +25732,1156,1177,17,2,eggs,DSC_0819.JPG +25734,409,1345,15,2,eggs,DSC_0819.JPG +25739,1435,2011,15,2,eggs,DSC_0819.JPG +25741,979,2176,16,2,eggs,DSC_0819.JPG +25744,4618,2305,15,2,eggs,DSC_0819.JPG +25745,4342,2311,15,2,eggs,DSC_0819.JPG +25746,4234,2374,15,2,eggs,DSC_0819.JPG +25758,1156,937,17,2,eggs,DSC_0819.JPG +25768,2446,2434,15,2,eggs,DSC_0819.JPG +25772,4474,310,17,2,eggs,DSC_0819.JPG +25773,793,688,17,2,eggs,DSC_0819.JPG +25775,3478,931,17,1,eggs,DSC_0819.JPG +25777,4564,1111,16,1,eggs,DSC_0819.JPG +25779,517,1405,17,2,eggs,DSC_0819.JPG +25782,4969,1825,16,2,eggs,DSC_0819.JPG +25783,4696,1831,16,2,eggs,DSC_0819.JPG +25787,838,2056,17,2,eggs,DSC_0819.JPG +25794,1258,754,15,2,eggs,DSC_0819.JPG +25795,583,1045,17,2,eggs,DSC_0819.JPG +25797,514,1165,15,2,eggs,DSC_0819.JPG +25798,619,1225,17,2,eggs,DSC_0819.JPG +25799,979,1357,17,2,eggs,DSC_0819.JPG +25804,5260,1819,17,2,eggs,DSC_0819.JPG +25808,1048,2296,16,2,eggs,DSC_0819.JPG +25809,1678,2305,17,2,eggs,DSC_0819.JPG +25810,2941,2320,15,2,eggs,DSC_0819.JPG +25811,3814,2380,15,2,eggs,DSC_0819.JPG +25812,1222,304,17,2,eggs,DSC_0819.JPG +25813,4690,310,17,2,eggs,DSC_0819.JPG +25814,757,367,17,2,eggs,DSC_0819.JPG +25815,1612,376,15,2,eggs,DSC_0819.JPG +25821,829,751,17,2,eggs,DSC_0819.JPG +25822,4072,871,15,2,eggs,DSC_0819.JPG +25831,766,1825,17,2,eggs,DSC_0819.JPG +25834,2239,2074,15,2,eggs,DSC_0819.JPG +25835,4066,2074,15,2,eggs,DSC_0819.JPG +25836,4996,2122,15,2,eggs,DSC_0819.JPG +25838,4930,2242,15,2,eggs,DSC_0819.JPG +25839,2554,2254,16,2,eggs,DSC_0819.JPG +25840,1888,2308,17,2,eggs,DSC_0819.JPG +25842,4165,2374,15,2,eggs,DSC_0819.JPG +25847,5041,307,15,2,eggs,DSC_0819.JPG +25852,1684,754,17,2,eggs,DSC_0819.JPG +25853,1153,811,17,2,eggs,DSC_0819.JPG +25855,688,1108,17,2,eggs,DSC_0819.JPG +25860,5164,1525,17,2,eggs,DSC_0819.JPG +25861,2944,1600,17,1,eggs,DSC_0819.JPG +25862,1015,1651,17,2,eggs,DSC_0819.JPG +25863,4351,1717,15,1,eggs,DSC_0819.JPG +25866,5188,1819,17,2,eggs,DSC_0819.JPG +25867,1606,1954,17,2,eggs,DSC_0819.JPG +25868,4480,2191,17,2,eggs,DSC_0819.JPG +25870,2062,2248,17,2,eggs,DSC_0819.JPG +25873,2920,184,17,2,eggs,DSC_0819.JPG +25874,1189,247,17,2,eggs,DSC_0819.JPG +25876,5041,436,17,2,eggs,DSC_0819.JPG +25877,1789,562,15,2,eggs,DSC_0819.JPG +25881,1294,937,15,2,eggs,DSC_0819.JPG +25882,3583,991,17,2,eggs,DSC_0819.JPG +25883,793,1054,17,2,eggs,DSC_0819.JPG +25885,4810,1294,17,2,eggs,DSC_0819.JPG +25887,4834,1468,17,2,eggs,DSC_0819.JPG +25889,4873,1531,17,2,eggs,DSC_0819.JPG +25891,4864,2008,17,2,eggs,DSC_0819.JPG +25893,2449,2194,16,2,eggs,DSC_0819.JPG +25895,3853,2320,17,2,eggs,DSC_0819.JPG +25896,3745,2380,15,2,eggs,DSC_0819.JPG +25897,2938,2434,15,2,eggs,DSC_0819.JPG +25902,829,493,17,2,eggs,DSC_0819.JPG +25903,760,622,16,2,eggs,DSC_0819.JPG +25910,871,1174,17,2,eggs,DSC_0819.JPG +25911,1372,1297,17,2,eggs,DSC_0819.JPG +25913,583,1408,17,2,eggs,DSC_0819.JPG +25914,799,1414,17,2,eggs,DSC_0819.JPG +25916,5122,1585,15,2,eggs,DSC_0819.JPG +25919,4894,2068,17,2,eggs,DSC_0819.JPG +25920,4552,2185,17,2,eggs,DSC_0819.JPG +25921,3643,2200,15,1,eggs,DSC_0819.JPG +25922,2872,2203,17,2,eggs,DSC_0819.JPG +25924,1540,241,15,2,eggs,DSC_0819.JPG +25930,1261,1363,17,2,eggs,DSC_0819.JPG +25931,5233,1522,17,2,eggs,DSC_0819.JPG +25938,2275,2017,15,2,eggs,DSC_0819.JPG +25939,1399,2308,15,2,eggs,DSC_0819.JPG +25940,4024,2374,17,2,eggs,DSC_0819.JPG +25942,3733,112,17,2,eggs,DSC_0819.JPG +25943,2107,121,17,2,eggs,DSC_0819.JPG +25947,403,490,17,2,eggs,DSC_0819.JPG +25948,1042,499,17,2,eggs,DSC_0819.JPG +25950,1297,811,17,2,eggs,DSC_0819.JPG +25951,688,871,16,2,eggs,DSC_0819.JPG +25952,1123,1120,17,2,eggs,DSC_0819.JPG +25954,1297,1420,17,2,eggs,DSC_0819.JPG +25955,4801,1531,15,2,eggs,DSC_0819.JPG +25956,5041,1705,15,2,eggs,DSC_0819.JPG +25957,1084,1771,15,2,eggs,DSC_0819.JPG +25958,4864,1885,15,2,eggs,DSC_0819.JPG +25964,1678,115,17,2,eggs,DSC_0819.JPG +25967,760,871,16,2,eggs,DSC_0819.JPG +25971,1438,1300,17,2,eggs,DSC_0819.JPG +25981,865,301,17,2,eggs,DSC_0819.JPG +25982,826,625,17,2,eggs,DSC_0819.JPG +25985,724,688,17,2,eggs,DSC_0819.JPG +25989,940,1177,17,2,eggs,DSC_0819.JPG +25990,1372,1180,17,2,eggs,DSC_0819.JPG +25991,5203,1342,17,1,eggs,DSC_0819.JPG +25992,1543,1360,17,2,eggs,DSC_0819.JPG +25995,3250,2260,15,1,eggs,DSC_0819.JPG +25997,4690,184,17,2,eggs,DSC_0819.JPG +25998,790,304,15,2,eggs,DSC_0819.JPG +26,4555,1102,15,2,eggs,DSC_0844.JPG +2600,1522,2137,15,2,eggs,DSC_0844.JPG +26001,4654,376,17,2,eggs,DSC_0819.JPG +26003,1720,568,15,2,eggs,DSC_0819.JPG +26004,1012,937,17,2,eggs,DSC_0819.JPG +26006,514,1048,17,2,eggs,DSC_0819.JPG +26008,694,1234,15,2,eggs,DSC_0819.JPG +26016,4591,1888,17,2,eggs,DSC_0819.JPG +26025,973,496,17,2,eggs,DSC_0819.JPG +26028,1045,625,17,2,eggs,DSC_0819.JPG +26030,511,805,15,2,eggs,DSC_0819.JPG +26031,4105,808,17,2,eggs,DSC_0819.JPG +26032,868,814,17,2,eggs,DSC_0819.JPG +26036,658,1288,17,2,eggs,DSC_0819.JPG +26041,1051,1711,15,2,eggs,DSC_0819.JPG +26044,733,1996,17,2,eggs,DSC_0819.JPG +26048,3109,2380,15,1,eggs,DSC_0819.JPG +26052,3097,247,17,2,eggs,DSC_0819.JPG +26054,187,613,17,2,eggs,DSC_0819.JPG +26055,1117,622,17,2,eggs,DSC_0819.JPG +26059,3934,1108,17,2,eggs,DSC_0819.JPG +26062,4969,1945,15,2,eggs,DSC_0819.JPG +26064,4723,2125,15,2,eggs,DSC_0819.JPG +26070,442,553,15,2,eggs,DSC_0819.JPG +26078,1333,1240,17,1,eggs,DSC_0819.JPG +26088,5155,1759,17,2,eggs,DSC_0819.JPG +26090,4732,1888,17,2,eggs,DSC_0819.JPG +26091,1258,2065,15,2,eggs,DSC_0819.JPG +26092,1432,2365,15,2,eggs,DSC_0819.JPG +26093,4654,2365,16,2,eggs,DSC_0819.JPG +26094,2095,2428,17,2,eggs,DSC_0819.JPG +26097,2215,181,17,2,eggs,DSC_0819.JPG +26100,5011,373,17,2,eggs,DSC_0819.JPG +26102,5074,622,17,1,eggs,DSC_0819.JPG +26107,550,1108,17,2,eggs,DSC_0819.JPG +26109,586,1168,15,2,eggs,DSC_0819.JPG +26111,337,1342,16,2,eggs,DSC_0819.JPG +26115,5119,1702,17,2,eggs,DSC_0819.JPG +26117,4102,2014,15,2,eggs,DSC_0819.JPG +26121,1816,2425,15,2,eggs,DSC_0819.JPG +26124,1006,559,17,2,eggs,DSC_0819.JPG +26125,5176,682,17,2,eggs,DSC_0819.JPG +26129,1297,1180,17,2,eggs,DSC_0819.JPG +26132,727,1528,17,2,eggs,DSC_0819.JPG +26136,5113,1945,17,2,eggs,DSC_0819.JPG +26137,4933,2005,17,2,eggs,DSC_0819.JPG +26142,4060,2440,17,2,eggs,DSC_0819.JPG +26145,4795,247,15,2,eggs,DSC_0819.JPG +26147,4513,376,17,2,eggs,DSC_0819.JPG +26149,1189,496,17,2,eggs,DSC_0819.JPG +26151,1117,748,17,2,eggs,DSC_0819.JPG +26153,904,871,15,2,eggs,DSC_0819.JPG +26155,907,1114,17,2,eggs,DSC_0819.JPG +26156,1012,1300,17,2,eggs,DSC_0819.JPG +26158,1258,1480,17,2,eggs,DSC_0819.JPG +26165,5038,2185,17,2,eggs,DSC_0819.JPG +26166,4723,2239,17,2,eggs,DSC_0819.JPG +26172,1153,562,17,2,eggs,DSC_0819.JPG +26174,5206,1222,17,2,eggs,DSC_0819.JPG +26175,1261,1237,15,2,eggs,DSC_0819.JPG +26176,730,1291,16,2,eggs,DSC_0819.JPG +26179,586,1762,17,2,eggs,DSC_0819.JPG +2618,3475,2413,15,2,eggs,DSC_0844.JPG +26180,1885,2431,15,2,eggs,DSC_0819.JPG +26182,5008,250,17,2,eggs,DSC_0819.JPG +26184,544,493,17,2,eggs,DSC_0819.JPG +26185,331,616,17,2,eggs,DSC_0819.JPG +26186,937,685,17,2,eggs,DSC_0819.JPG +26187,1081,685,17,2,eggs,DSC_0819.JPG +26191,3655,751,17,2,eggs,DSC_0819.JPG +26194,835,994,17,2,eggs,DSC_0819.JPG +262,1621,418,17,2,eggs,DSC_0844.JPG +26201,439,1405,15,2,eggs,DSC_0819.JPG +26203,4771,1471,17,2,eggs,DSC_0819.JPG +26205,5083,1762,15,2,eggs,DSC_0819.JPG +26208,4480,2311,17,2,eggs,DSC_0819.JPG +26209,2167,2431,16,2,eggs,DSC_0819.JPG +26213,904,622,17,2,eggs,DSC_0819.JPG +26216,442,1285,17,2,eggs,DSC_0819.JPG +26217,871,1771,17,2,eggs,DSC_0819.JPG +26218,769,1939,17,2,eggs,DSC_0819.JPG +26219,5110,2068,15,2,eggs,DSC_0819.JPG +26220,1780,2368,15,2,eggs,DSC_0819.JPG +26225,5005,502,17,1,eggs,DSC_0819.JPG +26235,1537,2422,17,2,eggs,DSC_0819.JPG +26241,868,562,17,2,eggs,DSC_0819.JPG +26242,4036,811,15,2,eggs,DSC_0819.JPG +26244,583,1288,17,2,eggs,DSC_0819.JPG +26247,1015,1537,17,2,eggs,DSC_0819.JPG +26248,550,1582,17,2,eggs,DSC_0819.JPG +26252,700,1939,15,2,eggs,DSC_0819.JPG +26263,724,1051,17,2,eggs,DSC_0819.JPG +26267,5002,2005,16,2,eggs,DSC_0819.JPG +26268,3709,2317,17,2,eggs,DSC_0819.JPG +26276,511,559,17,2,eggs,DSC_0819.JPG +26279,832,874,17,2,eggs,DSC_0819.JPG +26281,1192,1363,17,2,eggs,DSC_0819.JPG +26284,5197,1582,17,2,eggs,DSC_0819.JPG +26288,4759,2065,15,2,eggs,DSC_0819.JPG +26291,3988,2437,15,2,eggs,DSC_0819.JPG +26293,4615,439,17,2,eggs,DSC_0819.JPG +26297,265,1570,17,2,eggs,DSC_0819.JPG +26304,3568,2434,17,2,eggs,DSC_0819.JPG +26308,652,1051,17,2,eggs,DSC_0819.JPG +26310,1189,1117,17,2,eggs,DSC_0819.JPG +26312,1048,1357,17,2,eggs,DSC_0819.JPG +26313,370,1402,17,2,eggs,DSC_0819.JPG +26315,907,1474,17,2,eggs,DSC_0819.JPG +26320,841,2170,17,2,eggs,DSC_0819.JPG +26322,1261,2185,15,2,eggs,DSC_0819.JPG +26326,868,1057,17,1,eggs,DSC_0819.JPG +26327,226,1162,17,2,eggs,DSC_0819.JPG +26328,1228,1177,16,2,eggs,DSC_0819.JPG +26330,4639,1234,17,2,eggs,DSC_0819.JPG +26334,805,1648,17,2,eggs,DSC_0819.JPG +26335,4900,1945,17,2,eggs,DSC_0819.JPG +26338,1471,2419,15,2,eggs,DSC_0819.JPG +26339,3361,2437,17,2,eggs,DSC_0819.JPG +26340,4297,250,17,2,eggs,DSC_0819.JPG +26342,5074,496,17,2,eggs,DSC_0819.JPG +26345,3721,751,15,2,eggs,DSC_0819.JPG +26346,5245,1036,17,2,eggs,DSC_0819.JPG +26348,940,1294,17,2,eggs,DSC_0819.JPG +26349,550,1345,16,2,eggs,DSC_0819.JPG +26351,547,1465,15,2,eggs,DSC_0819.JPG +26357,4999,2242,17,2,eggs,DSC_0819.JPG +26359,3079,2443,17,2,eggs,DSC_0819.JPG +26362,4828,181,17,2,eggs,DSC_0819.JPG +26363,5242,559,17,2,eggs,DSC_0819.JPG +26365,901,748,17,2,eggs,DSC_0819.JPG +26367,724,814,17,2,eggs,DSC_0819.JPG +26375,760,1351,17,2,eggs,DSC_0819.JPG +26381,4552,2305,17,2,eggs,DSC_0819.JPG +26384,4900,310,17,2,eggs,DSC_0819.JPG +26394,3838,184,16,2,eggs,DSC_0819.JPG +26396,4402,307,15,2,eggs,DSC_0819.JPG +26399,688,625,17,2,eggs,DSC_0819.JPG +26400,622,871,15,2,eggs,DSC_0819.JPG +26403,547,988,16,2,eggs,DSC_0819.JPG +26405,1045,1237,17,2,eggs,DSC_0819.JPG +26411,841,1822,17,2,eggs,DSC_0819.JPG +26417,1078,811,15,2,eggs,DSC_0819.JPG +26419,547,868,16,2,eggs,DSC_0819.JPG +26424,871,1411,17,2,eggs,DSC_0819.JPG +26426,1048,1477,17,2,eggs,DSC_0819.JPG +26429,949,1771,17,2,eggs,DSC_0819.JPG +26432,5077,2125,15,1,eggs,DSC_0819.JPG +26443,121,736,17,2,eggs,DSC_0819.JPG +26445,187,1222,17,2,eggs,DSC_0819.JPG +26448,874,1651,17,2,eggs,DSC_0819.JPG +26451,766,2059,15,2,eggs,DSC_0819.JPG +26452,4795,2359,15,2,eggs,DSC_0819.JPG +26454,3286,2443,15,2,eggs,DSC_0819.JPG +26463,298,1282,17,2,eggs,DSC_0819.JPG +26465,904,1711,17,2,eggs,DSC_0819.JPG +26466,4657,2125,17,2,eggs,DSC_0819.JPG +26467,769,2176,17,2,eggs,DSC_0819.JPG +26468,4759,2185,17,2,eggs,DSC_0819.JPG +26473,1084,178,16,2,eggs,DSC_0819.JPG +26478,586,928,16,2,eggs,DSC_0819.JPG +26479,868,934,16,2,eggs,DSC_0819.JPG +26480,331,1225,17,2,eggs,DSC_0819.JPG +26482,223,1279,17,2,eggs,DSC_0819.JPG +26484,481,1348,15,2,eggs,DSC_0819.JPG +26487,910,1594,17,2,eggs,DSC_0819.JPG +26488,373,1636,17,2,eggs,DSC_0819.JPG +265,4636,856,17,2,eggs,DSC_0844.JPG +26500,511,931,17,1,eggs,DSC_0819.JPG +26508,697,1705,17,2,eggs,DSC_0819.JPG +26516,439,685,17,2,eggs,DSC_0819.JPG +26518,655,931,17,2,eggs,DSC_0819.JPG +26520,871,1297,17,2,eggs,DSC_0819.JPG +26523,4972,2065,17,2,eggs,DSC_0819.JPG +26529,1012,1177,17,2,eggs,DSC_0819.JPG +26531,550,1228,17,2,eggs,DSC_0819.JPG +26538,337,1693,17,2,eggs,DSC_0819.JPG +26539,838,1708,16,2,eggs,DSC_0819.JPG +26545,5110,316,17,2,eggs,DSC_0819.JPG +26548,5245,916,15,2,eggs,DSC_0819.JPG +26551,406,1105,16,2,eggs,DSC_0819.JPG +26553,802,1531,17,2,eggs,DSC_0819.JPG +26555,367,1870,15,2,eggs,DSC_0819.JPG +26556,700,2056,17,2,eggs,DSC_0819.JPG +26557,625,2176,17,2,eggs,DSC_0819.JPG +26560,478,991,17,2,eggs,DSC_0819.JPG +26562,835,1357,17,2,eggs,DSC_0819.JPG +26563,760,1471,17,2,eggs,DSC_0819.JPG +26564,733,1882,17,2,eggs,DSC_0819.JPG +26565,4687,2182,15,2,eggs,DSC_0819.JPG +26566,4828,2182,17,2,eggs,DSC_0819.JPG +26572,88,790,17,2,eggs,DSC_0819.JPG +26577,616,988,17,2,eggs,DSC_0819.JPG +26579,301,1516,15,2,eggs,DSC_0819.JPG +26584,1750,2428,17,2,eggs,DSC_0819.JPG +26586,2236,2434,15,2,eggs,DSC_0819.JPG +26589,3910,187,15,2,eggs,DSC_0819.JPG +26591,154,550,15,2,eggs,DSC_0819.JPG +26592,1012,685,17,2,eggs,DSC_0819.JPG +26596,442,925,17,2,eggs,DSC_0819.JPG +26599,619,1108,16,2,eggs,DSC_0819.JPG +26602,910,1357,17,2,eggs,DSC_0819.JPG +26606,835,1585,17,2,eggs,DSC_0819.JPG +26607,442,1759,17,2,eggs,DSC_0819.JPG +26611,5176,439,17,2,eggs,DSC_0819.JPG +26618,910,2290,17,2,eggs,DSC_0819.JPG +26620,403,745,17,2,eggs,DSC_0819.JPG +26625,937,1054,17,2,eggs,DSC_0819.JPG +26628,763,1705,17,2,eggs,DSC_0819.JPG +26631,481,1933,17,2,eggs,DSC_0819.JPG +26632,733,2113,17,2,eggs,DSC_0819.JPG +26633,2659,2431,17,2,eggs,DSC_0819.JPG +26634,3709,2434,17,2,eggs,DSC_0819.JPG +26641,331,1105,17,2,eggs,DSC_0819.JPG +26646,5146,2005,17,2,eggs,DSC_0819.JPG +26649,4966,2293,15,2,eggs,DSC_0819.JPG +26653,3778,2434,15,2,eggs,DSC_0819.JPG +26654,337,490,17,2,eggs,DSC_0819.JPG +26656,5209,742,17,2,eggs,DSC_0819.JPG +26660,442,1045,17,2,eggs,DSC_0819.JPG +26662,409,1462,17,2,eggs,DSC_0819.JPG +26664,5191,1942,15,2,eggs,DSC_0819.JPG +26667,481,2050,17,2,eggs,DSC_0819.JPG +26674,403,616,16,2,eggs,DSC_0819.JPG +26679,973,871,17,2,eggs,DSC_0819.JPG +26683,187,1453,17,2,eggs,DSC_0819.JPG +26687,586,1996,17,2,eggs,DSC_0819.JPG +26688,484,2167,17,2,eggs,DSC_0819.JPG +26694,334,742,17,2,eggs,DSC_0819.JPG +26695,370,925,17,2,eggs,DSC_0819.JPG +26703,703,2176,17,2,eggs,DSC_0819.JPG +26704,4789,2242,17,2,eggs,DSC_0819.JPG +26707,4828,313,17,2,eggs,DSC_0819.JPG +26709,4582,373,17,2,eggs,DSC_0819.JPG +26710,298,550,15,2,eggs,DSC_0819.JPG +26716,727,1411,17,2,eggs,DSC_0819.JPG +26720,946,1654,17,2,eggs,DSC_0819.JPG +26729,370,682,15,2,eggs,DSC_0819.JPG +26731,757,754,17,2,eggs,DSC_0819.JPG +26733,370,802,17,2,eggs,DSC_0819.JPG +26742,334,1459,17,2,eggs,DSC_0819.JPG +26746,733,1765,17,2,eggs,DSC_0819.JPG +26747,481,1819,17,2,eggs,DSC_0819.JPG +26748,808,2113,15,2,eggs,DSC_0819.JPG +26755,229,796,17,2,eggs,DSC_0819.JPG +26756,262,862,17,2,eggs,DSC_0819.JPG +26758,724,934,17,2,eggs,DSC_0819.JPG +26760,1153,1300,17,2,eggs,DSC_0819.JPG +26761,619,1351,17,2,eggs,DSC_0819.JPG +26762,1015,1417,16,2,eggs,DSC_0819.JPG +26763,1084,1420,17,2,eggs,DSC_0819.JPG +26765,730,1648,17,2,eggs,DSC_0819.JPG +26775,3610,2380,17,2,eggs,DSC_0819.JPG +26787,757,994,17,2,eggs,DSC_0819.JPG +26790,478,1582,17,2,eggs,DSC_0819.JPG +26806,367,553,17,2,eggs,DSC_0819.JPG +26816,517,1522,15,2,eggs,DSC_0819.JPG +26818,403,1579,17,2,eggs,DSC_0819.JPG +26819,976,1594,17,2,eggs,DSC_0819.JPG +26821,403,1936,17,2,eggs,DSC_0819.JPG +26823,3676,2380,17,2,eggs,DSC_0819.JPG +26831,259,1222,17,2,eggs,DSC_0819.JPG +26835,4753,2299,17,2,eggs,DSC_0819.JPG +26841,190,856,17,2,eggs,DSC_0819.JPG +26845,511,1288,17,2,eggs,DSC_0819.JPG +26863,838,1474,17,2,eggs,DSC_0819.JPG +26864,868,1531,17,2,eggs,DSC_0819.JPG +26871,664,1999,17,2,eggs,DSC_0819.JPG +26873,4006,121,17,1,eggs,DSC_0819.JPG +26881,478,1105,17,2,eggs,DSC_0819.JPG +26883,481,1225,17,2,eggs,DSC_0819.JPG +26888,4999,2359,15,2,eggs,DSC_0819.JPG +26890,2863,2434,17,2,eggs,DSC_0819.JPG +269,730,1093,15,2,eggs,DSC_0844.JPG +26903,694,1588,17,2,eggs,DSC_0819.JPG +26904,763,1588,17,2,eggs,DSC_0819.JPG +26905,586,1642,17,2,eggs,DSC_0819.JPG +26906,625,1705,17,2,eggs,DSC_0819.JPG +26918,937,1417,17,2,eggs,DSC_0819.JPG +26920,1396,1588,17,1,eggs,DSC_0819.JPG +26922,442,1636,15,2,eggs,DSC_0819.JPG +26923,514,1873,17,2,eggs,DSC_0819.JPG +26947,4936,247,17,2,eggs,DSC_0819.JPG +26975,4897,2296,17,2,eggs,DSC_0819.JPG +26982,832,1117,17,2,eggs,DSC_0819.JPG +26984,616,1471,17,2,eggs,DSC_0819.JPG +26992,259,739,17,2,eggs,DSC_0819.JPG +26993,403,865,17,1,eggs,DSC_0819.JPG +26995,403,1225,17,2,eggs,DSC_0819.JPG +26998,223,1750,17,2,eggs,DSC_0819.JPG +26999,5146,2125,17,2,eggs,DSC_0819.JPG +27008,1117,1360,17,2,eggs,DSC_0819.JPG +27010,694,1471,17,2,eggs,DSC_0819.JPG +27011,367,1519,17,2,eggs,DSC_0819.JPG +27014,520,1636,17,2,eggs,DSC_0819.JPG +27024,475,865,17,2,eggs,DSC_0819.JPG +27031,658,1408,15,2,eggs,DSC_0819.JPG +27036,376,1756,17,2,eggs,DSC_0819.JPG +27041,298,679,15,2,eggs,DSC_0819.JPG +27042,160,796,17,1,eggs,DSC_0819.JPG +27045,439,1168,17,2,eggs,DSC_0819.JPG +27048,559,2053,17,2,eggs,DSC_0819.JPG +27064,979,1477,17,2,eggs,DSC_0819.JPG +27065,331,1810,17,2,eggs,DSC_0819.JPG +27066,553,1936,17,2,eggs,DSC_0819.JPG +27067,3631,2431,17,2,eggs,DSC_0819.JPG +27071,475,748,17,2,eggs,DSC_0819.JPG +27073,301,925,17,2,eggs,DSC_0819.JPG +27078,940,1531,17,2,eggs,DSC_0819.JPG +27080,661,1882,17,2,eggs,DSC_0819.JPG +27085,298,802,17,2,eggs,DSC_0819.JPG +27096,589,1879,17,2,eggs,DSC_0819.JPG +27097,517,1993,16,2,eggs,DSC_0819.JPG +271,4474,1456,17,2,eggs,DSC_0844.JPG +27109,586,1525,17,2,eggs,DSC_0819.JPG +27117,694,1819,17,2,eggs,DSC_0819.JPG +27122,5179,562,17,2,eggs,DSC_0819.JPG +27123,223,676,17,2,eggs,DSC_0819.JPG +27129,547,1702,17,2,eggs,DSC_0819.JPG +2713,1273,1912,17,2,eggs,DSC_0844.JPG +27186,628,1582,17,2,eggs,DSC_0819.JPG +2721,1903,1135,16,2,eggs,DSC_0844.JPG +27222,301,1636,17,2,eggs,DSC_0819.JPG +27226,589,2110,17,2,eggs,DSC_0819.JPG +27228,4726,2359,17,2,eggs,DSC_0819.JPG +27240,4861,241,17,2,eggs,DSC_0819.JPG +27250,439,1525,17,2,eggs,DSC_0819.JPG +27251,550,1822,15,2,eggs,DSC_0819.JPG +27267,331,1927,17,2,eggs,DSC_0819.JPG +27271,223,544,15,2,eggs,DSC_0819.JPG +27281,259,619,17,2,eggs,DSC_0819.JPG +273,4504,1759,15,2,eggs,DSC_0844.JPG +27346,625,2056,17,2,eggs,DSC_0819.JPG +27347,946,2104,15,2,eggs,DSC_0819.JPG +27374,1153,1525,15,2,eggs,DSC_0819.JPG +27383,1183,1585,17,2,eggs,DSC_0819.JPG +274,2923,1813,16,2,eggs,DSC_0844.JPG +27414,787,805,15,2,eggs,DSC_0819.JPG +27426,3835,1531,17,1,eggs,DSC_0819.JPG +27430,715,577,16,2,eggs,DSC_0819.JPG +27460,1984,1777,17,2,eggs,DSC_0819.JPG +27468,1537,886,15,1,eggs,DSC_0819.JPG +27469,898,1009,17,2,eggs,DSC_0819.JPG +27481,1012,451,15,2,eggs,DSC_0819.JPG +27495,1990,664,16,1,eggs,DSC_0840.JPG +27504,2476,1153,15,1,eggs,DSC_0840.JPG +27507,2122,1621,16,1,eggs,DSC_0840.JPG +27521,3478,553,17,1,eggs,DSC_0840.JPG +27522,2557,790,15,2,eggs,DSC_0840.JPG +27526,2767,796,17,2,eggs,DSC_0840.JPG +27535,2407,1150,17,2,eggs,DSC_0840.JPG +27536,1393,472,16,1,eggs,DSC_0840.JPG +27537,2695,913,16,2,eggs,DSC_0840.JPG +27542,2377,850,17,1,eggs,DSC_0840.JPG +27550,2017,1207,16,1,eggs,DSC_0840.JPG +27551,1945,1795,16,1,eggs,DSC_0840.JPG +27557,1945,1324,16,2,eggs,DSC_0840.JPG +27559,1876,1207,16,2,eggs,DSC_0840.JPG +27565,2272,910,17,1,eggs,DSC_0840.JPG +27569,1597,1201,15,2,eggs,DSC_0840.JPG +27570,1804,1321,15,2,eggs,DSC_0840.JPG +27588,2518,973,15,1,eggs,DSC_0840.JPG +27593,2866,1216,17,1,eggs,DSC_0840.JPG +27603,1912,1384,17,2,eggs,DSC_0840.JPG +27607,2656,1327,17,2,eggs,DSC_0840.JPG +27608,2242,355,17,2,eggs,DSC_0840.JPG +27609,3016,736,17,1,eggs,DSC_0840.JPG +27624,1879,1324,17,2,eggs,DSC_0840.JPG +27632,571,520,16,1,eggs,DSC_0840.JPG +27635,2692,1036,16,1,eggs,DSC_0840.JPG +27636,2440,1213,15,2,eggs,DSC_0840.JPG +27637,3043,1276,15,1,eggs,DSC_0840.JPG +27638,1630,1615,16,1,eggs,DSC_0840.JPG +27640,1735,1912,16,1,eggs,DSC_0840.JPG +27643,2692,1273,17,1,eggs,DSC_0840.JPG +27644,2932,1453,16,1,eggs,DSC_0840.JPG +27651,283,2167,15,1,eggs,DSC_0840.JPG +27657,2128,1030,17,1,eggs,DSC_0840.JPG +27680,2410,910,15,2,eggs,DSC_0840.JPG +27681,1561,1024,16,2,eggs,DSC_0840.JPG +27683,1735,1204,17,2,eggs,DSC_0840.JPG +27684,1771,1615,16,1,eggs,DSC_0840.JPG +27689,2734,610,17,1,eggs,DSC_0840.JPG +27691,2446,853,16,1,eggs,DSC_0840.JPG +27692,2338,907,17,2,eggs,DSC_0840.JPG +27709,1771,1144,15,2,eggs,DSC_0840.JPG +27716,2302,970,17,2,eggs,DSC_0840.JPG +27718,2302,1093,17,2,eggs,DSC_0840.JPG +27719,2620,1156,16,2,eggs,DSC_0840.JPG +27726,2131,667,17,1,eggs,DSC_0840.JPG +27729,1984,1027,17,1,eggs,DSC_0840.JPG +27730,2548,1156,17,2,eggs,DSC_0840.JPG +27735,1489,1261,17,2,eggs,DSC_0840.JPG +27747,1951,1087,16,1,eggs,DSC_0840.JPG +27760,1486,2089,17,1,eggs,DSC_0840.JPG +27767,1918,1027,17,1,eggs,DSC_0840.JPG +27768,1669,1084,16,2,eggs,DSC_0840.JPG +27769,2656,1099,17,2,eggs,DSC_0840.JPG +27770,1630,1849,17,1,eggs,DSC_0840.JPG +27779,2869,976,17,2,eggs,DSC_0840.JPG +27786,2620,1507,17,1,eggs,DSC_0840.JPG +27787,2086,1798,16,1,eggs,DSC_0840.JPG +27788,2518,1804,17,1,eggs,DSC_0840.JPG +27795,2899,1393,15,1,eggs,DSC_0840.JPG +27798,2014,1798,16,1,eggs,DSC_0840.JPG +278,2113,301,15,2,eggs,DSC_0844.JPG +27805,3046,1159,16,1,eggs,DSC_0840.JPG +27806,1666,1204,17,2,eggs,DSC_0840.JPG +27807,2512,1213,15,2,eggs,DSC_0840.JPG +27810,2698,793,16,1,eggs,DSC_0840.JPG +27812,2617,1270,15,2,eggs,DSC_0840.JPG +27824,2263,1270,17,2,eggs,DSC_0840.JPG +27825,2584,1333,17,2,eggs,DSC_0840.JPG +27835,2089,1207,17,2,eggs,DSC_0840.JPG +27840,1528,1084,17,2,eggs,DSC_0840.JPG +27841,2371,1213,17,2,eggs,DSC_0840.JPG +27867,3010,856,17,2,eggs,DSC_0840.JPG +27870,1384,1081,16,2,eggs,DSC_0840.JPG +27871,2443,1090,17,2,eggs,DSC_0840.JPG +27877,2908,796,16,1,eggs,DSC_0840.JPG +27879,2230,1090,17,2,eggs,DSC_0840.JPG +27881,2761,1390,16,2,eggs,DSC_0840.JPG +27887,1984,1267,17,2,eggs,DSC_0840.JPG +27898,1843,1147,17,1,eggs,DSC_0840.JPG +27899,1945,1207,17,2,eggs,DSC_0840.JPG +27908,3442,619,17,1,eggs,DSC_0840.JPG +27924,2200,910,15,1,eggs,DSC_0840.JPG +27929,1309,1435,17,1,eggs,DSC_0840.JPG +27937,1528,346,17,1,eggs,DSC_0840.JPG +27944,1525,1204,15,2,eggs,DSC_0840.JPG +27946,2332,1387,17,2,eggs,DSC_0840.JPG +27953,2728,1330,15,1,eggs,DSC_0840.JPG +27954,2263,1387,15,1,eggs,DSC_0840.JPG +27966,2449,973,15,1,eggs,DSC_0840.JPG +27967,3190,1042,17,1,eggs,DSC_0840.JPG +27968,2725,1216,17,1,eggs,DSC_0840.JPG +27971,2692,1753,15,1,eggs,DSC_0840.JPG +27981,3088,733,15,2,eggs,DSC_0840.JPG +28,3622,652,16,2,eggs,DSC_0844.JPG +280,4828,535,17,2,eggs,DSC_0844.JPG +28006,3106,1990,16,1,eggs,DSC_0840.JPG +28010,4513,379,16,1,eggs,DSC_0840.JPG +28011,3799,493,16,1,eggs,DSC_0840.JPG +28015,1777,1027,17,1,eggs,DSC_0840.JPG +28016,2554,1036,16,2,eggs,DSC_0840.JPG +28017,1879,1087,17,2,eggs,DSC_0840.JPG +28018,2374,1090,15,2,eggs,DSC_0840.JPG +28019,2584,1213,17,2,eggs,DSC_0840.JPG +28029,3049,796,16,2,eggs,DSC_0840.JPG +28031,1846,1024,17,1,eggs,DSC_0840.JPG +28034,2266,1153,17,2,eggs,DSC_0840.JPG +28039,3505,976,17,1,eggs,DSC_0840.JPG +28040,2194,1027,17,2,eggs,DSC_0840.JPG +28041,1633,1141,17,2,eggs,DSC_0840.JPG +28049,1699,1969,17,1,eggs,DSC_0840.JPG +28062,2797,1333,17,2,eggs,DSC_0840.JPG +28075,2335,1150,17,2,eggs,DSC_0840.JPG +28087,2800,976,15,2,eggs,DSC_0840.JPG +28088,496,1126,16,1,eggs,DSC_0840.JPG +281,3904,658,15,2,eggs,DSC_0844.JPG +28102,2512,1330,16,2,eggs,DSC_0840.JPG +28106,355,2173,17,2,eggs,DSC_0840.JPG +28115,3019,484,17,1,eggs,DSC_0840.JPG +28118,2980,796,17,2,eggs,DSC_0840.JPG +28121,2191,1384,17,2,eggs,DSC_0840.JPG +28132,2167,727,17,1,eggs,DSC_0840.JPG +28133,2449,730,16,1,eggs,DSC_0840.JPG +28134,1636,778,17,1,eggs,DSC_0840.JPG +28142,2728,1099,17,2,eggs,DSC_0840.JPG +28143,1840,1264,15,1,eggs,DSC_0840.JPG +28144,2761,1276,17,2,eggs,DSC_0840.JPG +28147,2623,1993,16,1,eggs,DSC_0840.JPG +28155,1027,2134,15,1,eggs,DSC_0840.JPG +28163,3049,919,17,2,eggs,DSC_0840.JPG +28164,2299,1564,17,1,eggs,DSC_0840.JPG +28166,814,1897,17,1,eggs,DSC_0840.JPG +28174,1522,1438,17,1,eggs,DSC_0840.JPG +28175,1873,1915,17,1,eggs,DSC_0840.JPG +28182,3367,736,17,2,eggs,DSC_0840.JPG +28186,2158,1090,15,2,eggs,DSC_0840.JPG +28201,3121,799,17,2,eggs,DSC_0840.JPG +28216,2692,1999,17,1,eggs,DSC_0840.JPG +28217,1381,2026,15,1,eggs,DSC_0840.JPG +28224,4078,622,17,1,eggs,DSC_0840.JPG +28227,2020,1087,15,1,eggs,DSC_0840.JPG +28232,5134,1237,16,1,eggs,DSC_0840.JPG +28244,3541,919,17,1,eggs,DSC_0840.JPG +28247,2299,1327,17,2,eggs,DSC_0840.JPG +28249,2548,1387,17,2,eggs,DSC_0840.JPG +28252,2302,1801,16,1,eggs,DSC_0840.JPG +28253,2122,1978,16,1,eggs,DSC_0840.JPG +28263,2230,970,16,2,eggs,DSC_0840.JPG +28266,1699,1261,15,2,eggs,DSC_0840.JPG +28267,3004,1336,15,1,eggs,DSC_0840.JPG +28268,2050,1381,17,2,eggs,DSC_0840.JPG +28282,2476,1036,17,1,eggs,DSC_0840.JPG +28283,1810,1087,17,1,eggs,DSC_0840.JPG +28284,3076,1336,17,1,eggs,DSC_0840.JPG +28292,2410,1030,15,2,eggs,DSC_0840.JPG +28303,3043,1042,17,1,eggs,DSC_0840.JPG +28304,2794,1213,17,1,eggs,DSC_0840.JPG +28310,1837,2095,17,1,eggs,DSC_0840.JPG +28321,1633,1027,17,1,eggs,DSC_0840.JPG +28322,2407,1270,17,2,eggs,DSC_0840.JPG +28324,2119,1858,17,1,eggs,DSC_0840.JPG +28334,2899,1276,15,1,eggs,DSC_0840.JPG +28335,1417,1495,17,2,eggs,DSC_0840.JPG +28346,1417,1138,17,2,eggs,DSC_0840.JPG +28351,1207,1960,15,1,eggs,DSC_0840.JPG +28352,1240,2017,15,1,eggs,DSC_0840.JPG +28370,3082,1099,15,1,eggs,DSC_0840.JPG +28405,3001,1933,17,1,eggs,DSC_0840.JPG +28417,1375,2143,17,1,eggs,DSC_0840.JPG +28425,1597,1084,16,2,eggs,DSC_0840.JPG +28429,1237,2140,15,1,eggs,DSC_0840.JPG +28457,1771,1972,16,1,eggs,DSC_0840.JPG +28484,2053,1147,15,2,eggs,DSC_0840.JPG +28485,2545,1273,17,1,eggs,DSC_0840.JPG +28501,1276,1138,17,2,eggs,DSC_0840.JPG +28502,4129,1579,16,1,eggs,DSC_0840.JPG +28506,2758,1633,17,1,eggs,DSC_0840.JPG +28525,2194,1147,17,2,eggs,DSC_0840.JPG +28528,2656,1216,17,2,eggs,DSC_0840.JPG +28534,1807,1912,17,1,eggs,DSC_0840.JPG +28547,1987,1147,15,1,eggs,DSC_0840.JPG +28548,2476,1273,17,1,eggs,DSC_0840.JPG +28571,3298,736,17,2,eggs,DSC_0840.JPG +286,4750,1819,15,2,eggs,DSC_0844.JPG +28627,1663,1912,16,1,eggs,DSC_0840.JPG +28643,3511,859,17,1,eggs,DSC_0840.JPG +28664,2020,1324,17,2,eggs,DSC_0840.JPG +28672,3409,676,17,2,eggs,DSC_0840.JPG +28682,2053,1261,17,2,eggs,DSC_0840.JPG +28686,1240,1906,15,1,eggs,DSC_0840.JPG +28689,919,2074,17,1,eggs,DSC_0840.JPG +28699,1456,1198,17,1,eggs,DSC_0840.JPG +287,4642,1879,15,2,eggs,DSC_0844.JPG +2872,4957,1816,17,2,eggs,DSC_0844.JPG +28737,958,2248,15,1,eggs,DSC_0840.JPG +28741,2341,1033,17,2,eggs,DSC_0840.JPG +28760,2971,1276,17,1,eggs,DSC_0840.JPG +28779,1420,1021,17,2,eggs,DSC_0840.JPG +2881,526,1090,17,1,eggs,DSC_0844.JPG +28832,3898,802,17,1,eggs,DSC_0840.JPG +28834,1675,844,17,1,eggs,DSC_0840.JPG +28844,310,2230,16,2,eggs,DSC_0840.JPG +2914,4459,907,15,2,eggs,DSC_0844.JPG +2923,1006,844,17,2,eggs,DSC_0844.JPG +29235,3826,802,17,1,eggs,DSC_0840.JPG +2930,841,1396,17,2,eggs,DSC_0844.JPG +295,3703,394,16,2,eggs,DSC_0844.JPG +29656,3103,2338,15,1,eggs,DSC_0840.JPG +29683,361,2311,17,2,eggs,DSC_0840.JPG +2984,3733,1882,15,2,eggs,DSC_0837.JPG +2987,4279,1342,15,2,eggs,DSC_0837.JPG +2988,1492,901,15,2,eggs,DSC_0837.JPG +299,943,604,15,2,eggs,DSC_0844.JPG +2990,1951,721,16,2,eggs,DSC_0837.JPG +2991,3676,796,15,2,eggs,DSC_0837.JPG +2992,3883,1408,15,2,eggs,DSC_0837.JPG +2995,1810,718,15,2,eggs,DSC_0837.JPG +2998,3664,1885,15,2,eggs,DSC_0837.JPG +3000,3961,1288,15,1,eggs,DSC_0837.JPG +3001,3844,1585,15,2,eggs,DSC_0837.JPG +3008,1558,775,17,2,eggs,DSC_0837.JPG +3009,1771,778,16,2,eggs,DSC_0837.JPG +301,4831,1573,16,2,eggs,DSC_0844.JPG +3013,2977,922,15,1,eggs,DSC_0837.JPG +3015,4273,1579,15,2,eggs,DSC_0837.JPG +3017,3745,1291,16,1,eggs,DSC_0837.JPG +3018,4024,1525,15,2,eggs,DSC_0837.JPG +3019,4234,1642,15,2,eggs,DSC_0837.JPG +302,4510,1636,15,2,eggs,DSC_0844.JPG +3023,2131,664,16,1,eggs,DSC_0837.JPG +3025,1129,1615,15,2,eggs,DSC_0837.JPG +3032,3808,1645,15,2,eggs,DSC_0837.JPG +3033,3823,925,16,1,eggs,DSC_0837.JPG +3035,1093,1555,15,2,eggs,DSC_0837.JPG +3036,3667,1645,15,1,eggs,DSC_0837.JPG +3038,4021,1645,15,2,eggs,DSC_0837.JPG +3040,1480,1861,15,2,eggs,DSC_0837.JPG +30402,2938,1345,15,1,eggs,DSC_0840.JPG +3041,3019,736,15,2,eggs,DSC_0837.JPG +3042,1456,961,15,1,eggs,DSC_0837.JPG +3048,3481,676,15,2,eggs,DSC_0837.JPG +3049,3592,1885,15,2,eggs,DSC_0837.JPG +3050,4009,2122,15,2,eggs,DSC_0837.JPG +30520,3727,2197,17,1,eggs,DSC_0820.JPG +30529,3586,2197,16,1,eggs,DSC_0820.JPG +30544,4465,2017,15,1,eggs,DSC_0820.JPG +30571,4846,1594,17,2,eggs,DSC_0820.JPG +30582,574,1486,16,2,eggs,DSC_0820.JPG +30585,3166,2203,16,1,eggs,DSC_0820.JPG +30602,1102,2146,15,1,eggs,DSC_0820.JPG +30616,670,949,17,2,eggs,DSC_0820.JPG +30617,4708,1597,17,1,eggs,DSC_0820.JPG +30651,751,1552,17,1,eggs,DSC_0820.JPG +3066,3946,1765,15,2,eggs,DSC_0837.JPG +30676,1837,2212,17,1,eggs,DSC_0820.JPG +30692,4360,373,17,1,eggs,DSC_0820.JPG +30696,577,1606,17,2,eggs,DSC_0820.JPG +307,3697,523,17,1,eggs,DSC_0844.JPG +30710,4321,2017,15,1,eggs,DSC_0820.JPG +30711,1381,2152,15,1,eggs,DSC_0820.JPG +3072,3637,736,15,2,eggs,DSC_0837.JPG +30727,3580,517,16,1,eggs,DSC_0820.JPG +30742,682,1906,17,1,eggs,DSC_0820.JPG +3076,2092,727,15,1,eggs,DSC_0837.JPG +30761,1255,382,15,2,eggs,DSC_0820.JPG +30769,4465,571,16,2,eggs,DSC_0820.JPG +3077,4309,1150,15,2,eggs,DSC_0837.JPG +30781,595,829,16,2,eggs,DSC_0820.JPG +30784,4954,1534,17,1,eggs,DSC_0820.JPG +30785,4810,1657,16,2,eggs,DSC_0820.JPG +3079,3766,1945,15,2,eggs,DSC_0837.JPG +308,1546,550,15,2,eggs,DSC_0844.JPG +3082,3595,796,16,2,eggs,DSC_0837.JPG +30841,2875,526,17,2,eggs,DSC_0820.JPG +30853,4255,445,17,1,eggs,DSC_0820.JPG +3086,1666,1450,15,1,eggs,DSC_0837.JPG +30873,1645,586,16,1,eggs,DSC_0820.JPG +3089,1093,1672,15,2,eggs,DSC_0837.JPG +3091,985,1846,15,2,eggs,DSC_0837.JPG +30933,892,1912,17,1,eggs,DSC_0820.JPG +3094,4243,1156,15,2,eggs,DSC_0837.JPG +3095,4027,1408,15,2,eggs,DSC_0837.JPG +30984,610,1549,17,2,eggs,DSC_0820.JPG +30988,2503,2149,17,1,eggs,DSC_0820.JPG +3099,2980,799,15,1,eggs,DSC_0837.JPG +30992,664,706,17,2,eggs,DSC_0820.JPG +3100,3604,919,15,2,eggs,DSC_0837.JPG +31007,1219,445,15,1,eggs,DSC_0820.JPG +31014,2782,2269,17,1,eggs,DSC_0820.JPG +31029,4147,376,16,1,eggs,DSC_0820.JPG +3103,3922,1348,15,1,eggs,DSC_0837.JPG +31034,529,1072,17,2,eggs,DSC_0820.JPG +3105,1090,1792,15,2,eggs,DSC_0837.JPG +31068,3193,322,16,2,eggs,DSC_0820.JPG +3107,1267,1855,15,2,eggs,DSC_0837.JPG +31071,541,1546,15,2,eggs,DSC_0820.JPG +31103,1420,1855,17,1,eggs,DSC_0820.JPG +3111,2521,607,15,2,eggs,DSC_0837.JPG +31114,2140,322,17,1,eggs,DSC_0820.JPG +31147,4465,439,17,1,eggs,DSC_0820.JPG +31148,874,454,17,1,eggs,DSC_0820.JPG +31153,2776,718,16,1,eggs,DSC_0820.JPG +31155,856,1969,17,1,eggs,DSC_0820.JPG +3116,1240,1321,15,2,eggs,DSC_0837.JPG +3117,1165,1558,15,2,eggs,DSC_0837.JPG +31196,4009,2080,17,1,eggs,DSC_0820.JPG +31207,1063,1852,17,1,eggs,DSC_0820.JPG +31217,907,388,17,2,eggs,DSC_0820.JPG +3122,4279,1216,15,2,eggs,DSC_0837.JPG +31229,2821,2329,17,1,eggs,DSC_0820.JPG +3123,1201,1498,15,2,eggs,DSC_0837.JPG +3124,3880,1528,15,2,eggs,DSC_0837.JPG +31242,1522,1678,17,1,eggs,DSC_0820.JPG +31258,1288,319,16,2,eggs,DSC_0820.JPG +31298,667,832,17,2,eggs,DSC_0820.JPG +313,4726,1513,16,2,eggs,DSC_0844.JPG +31313,3052,586,16,1,eggs,DSC_0820.JPG +31362,622,640,16,2,eggs,DSC_0820.JPG +31366,2779,1084,17,1,eggs,DSC_0820.JPG +3138,3949,1645,15,2,eggs,DSC_0837.JPG +31410,4741,1657,15,2,eggs,DSC_0820.JPG +3142,1702,778,16,2,eggs,DSC_0837.JPG +31420,841,643,17,1,eggs,DSC_0820.JPG +31429,2680,2209,17,1,eggs,DSC_0820.JPG +31445,997,2089,15,1,eggs,DSC_0820.JPG +3146,2800,610,16,2,eggs,DSC_0837.JPG +31462,3205,2029,16,1,eggs,DSC_0820.JPG +3147,2413,670,15,2,eggs,DSC_0837.JPG +31470,4606,571,16,2,eggs,DSC_0820.JPG +3148,3235,742,16,2,eggs,DSC_0837.JPG +31502,841,769,17,2,eggs,DSC_0820.JPG +31504,565,1012,17,2,eggs,DSC_0820.JPG +3151,1240,1204,15,2,eggs,DSC_0837.JPG +3154,1987,661,16,1,eggs,DSC_0837.JPG +3156,1879,721,15,2,eggs,DSC_0837.JPG +3157,1597,841,15,1,eggs,DSC_0837.JPG +3158,3862,985,15,2,eggs,DSC_0837.JPG +31587,1567,46,16,2,eggs,DSC_0820.JPG +3162,1309,1324,15,2,eggs,DSC_0837.JPG +3164,1303,1678,15,1,eggs,DSC_0837.JPG +3165,3697,1945,15,1,eggs,DSC_0837.JPG +31683,607,1426,17,2,eggs,DSC_0820.JPG +3169,2554,676,15,2,eggs,DSC_0837.JPG +317,3934,721,17,1,eggs,DSC_0844.JPG +3170,2023,727,17,1,eggs,DSC_0837.JPG +31710,2533,1141,16,1,eggs,DSC_0820.JPG +31713,2497,1321,15,1,eggs,DSC_0820.JPG +31716,2221,1681,16,1,eggs,DSC_0820.JPG +3178,1024,1201,17,2,eggs,DSC_0837.JPG +31786,2644,2035,17,1,eggs,DSC_0820.JPG +31803,1381,2395,15,1,eggs,DSC_0820.JPG +3181,3451,2122,15,1,eggs,DSC_0837.JPG +31831,3409,1678,17,1,eggs,DSC_0820.JPG +3185,1666,841,15,2,eggs,DSC_0837.JPG +31865,4924,496,17,2,eggs,DSC_0820.JPG +3189,1237,1438,17,2,eggs,DSC_0837.JPG +31905,4396,574,17,1,eggs,DSC_0820.JPG +3193,988,1492,16,2,eggs,DSC_0837.JPG +31959,3586,1849,16,1,eggs,DSC_0820.JPG +3198,3718,736,15,2,eggs,DSC_0837.JPG +3199,3751,796,15,2,eggs,DSC_0837.JPG +31999,4786,1012,17,1,eggs,DSC_0820.JPG +3200,1345,1264,15,2,eggs,DSC_0837.JPG +3202,1549,2101,15,2,eggs,DSC_0837.JPG +32043,3616,961,17,1,eggs,DSC_0820.JPG +3208,4099,1408,15,2,eggs,DSC_0837.JPG +3215,3484,1819,15,2,eggs,DSC_0837.JPG +3217,3556,1942,15,1,eggs,DSC_0837.JPG +3224,3994,1345,16,2,eggs,DSC_0837.JPG +3225,1024,1435,15,2,eggs,DSC_0837.JPG +3226,3916,1585,15,2,eggs,DSC_0837.JPG +3230,4090,1762,16,2,eggs,DSC_0837.JPG +3231,3979,1945,17,2,eggs,DSC_0837.JPG +324,3949,1639,15,2,eggs,DSC_0844.JPG +3244,2836,673,16,2,eggs,DSC_0837.JPG +3245,1738,718,15,2,eggs,DSC_0837.JPG +326,4120,1699,15,1,eggs,DSC_0844.JPG +327,3799,1756,17,2,eggs,DSC_0844.JPG +3274,1384,961,15,2,eggs,DSC_0837.JPG +3277,3997,1228,15,2,eggs,DSC_0837.JPG +3278,1063,1258,15,2,eggs,DSC_0837.JPG +3282,4132,1465,15,2,eggs,DSC_0837.JPG +3284,1828,1990,15,2,eggs,DSC_0837.JPG +3287,2833,802,15,1,eggs,DSC_0837.JPG +3288,3937,862,17,2,eggs,DSC_0837.JPG +3289,1276,1144,15,2,eggs,DSC_0837.JPG +3290,4036,1168,15,2,eggs,DSC_0837.JPG +3292,1516,1684,15,2,eggs,DSC_0837.JPG +3293,1162,1792,15,2,eggs,DSC_0837.JPG +3294,1021,1906,15,2,eggs,DSC_0837.JPG +3296,3730,2002,15,2,eggs,DSC_0837.JPG +3300,2944,862,15,1,eggs,DSC_0837.JPG +3301,1243,1084,15,2,eggs,DSC_0837.JPG +3306,3526,1645,15,1,eggs,DSC_0837.JPG +3307,1126,1852,15,2,eggs,DSC_0837.JPG +3312,1312,961,15,2,eggs,DSC_0837.JPG +3314,1057,1495,15,2,eggs,DSC_0837.JPG +33157,1807,2398,17,1,eggs,DSC_0820.JPG +3317,1444,2041,15,2,eggs,DSC_0837.JPG +3323,1423,898,15,2,eggs,DSC_0837.JPG +3324,1171,1081,15,2,eggs,DSC_0837.JPG +3328,1129,1495,16,2,eggs,DSC_0837.JPG +333,4489,979,15,2,eggs,DSC_0844.JPG +3331,2755,1894,15,1,eggs,DSC_0837.JPG +3334,3307,2245,15,1,eggs,DSC_0837.JPG +3339,2587,739,16,1,eggs,DSC_0837.JPG +334,625,1027,15,2,eggs,DSC_0844.JPG +3343,4174,1285,15,2,eggs,DSC_0837.JPG +3344,4204,1465,15,2,eggs,DSC_0837.JPG +3345,3985,1582,15,2,eggs,DSC_0837.JPG +3347,3736,1765,15,2,eggs,DSC_0837.JPG +33511,4750,406,16,2,eggs,DSC_0841.JPG +3352,2659,613,15,2,eggs,DSC_0837.JPG +33525,1732,310,17,2,eggs,DSC_0841.JPG +3353,2869,736,16,2,eggs,DSC_0837.JPG +3354,1633,775,15,2,eggs,DSC_0837.JPG +33551,3859,592,16,2,eggs,DSC_0841.JPG +3357,4627,1213,15,1,eggs,DSC_0837.JPG +3358,1204,1264,15,2,eggs,DSC_0837.JPG +3359,4243,1285,15,2,eggs,DSC_0837.JPG +336,4765,1222,15,2,eggs,DSC_0844.JPG +3360,1096,1318,15,2,eggs,DSC_0837.JPG +33602,598,1861,15,1,eggs,DSC_0841.JPG +3362,4063,1348,15,2,eggs,DSC_0837.JPG +33620,4708,466,15,2,eggs,DSC_0841.JPG +33621,4915,715,15,2,eggs,DSC_0841.JPG +33626,4714,343,17,2,eggs,DSC_0841.JPG +33628,5035,400,17,2,eggs,DSC_0841.JPG +33653,3820,526,16,2,eggs,DSC_0841.JPG +33669,3967,400,16,1,eggs,DSC_0841.JPG +33694,4927,337,16,1,eggs,DSC_0841.JPG +337,3106,1513,15,2,eggs,DSC_0844.JPG +33710,4891,406,15,2,eggs,DSC_0841.JPG +33716,733,796,17,1,eggs,DSC_0841.JPG +33726,631,1096,17,1,eggs,DSC_0841.JPG +33742,559,1687,16,2,eggs,DSC_0841.JPG +3376,1456,835,15,2,eggs,DSC_0837.JPG +3378,4312,1402,15,2,eggs,DSC_0837.JPG +33784,565,1918,15,1,eggs,DSC_0841.JPG +3379,3991,1465,15,2,eggs,DSC_0837.JPG +338,4972,1570,17,2,eggs,DSC_0844.JPG +3380,952,1786,15,2,eggs,DSC_0837.JPG +33801,4645,343,17,2,eggs,DSC_0841.JPG +33807,1021,1042,16,2,eggs,DSC_0841.JPG +33816,4819,403,17,2,eggs,DSC_0841.JPG +33828,2686,391,15,1,eggs,DSC_0841.JPG +33829,451,1858,16,1,eggs,DSC_0841.JPG +33830,562,2029,15,1,eggs,DSC_0841.JPG +33833,4495,472,15,2,eggs,DSC_0841.JPG +33839,1801,181,15,1,eggs,DSC_0841.JPG +33842,1795,316,17,1,eggs,DSC_0841.JPG +33848,2647,577,16,1,eggs,DSC_0841.JPG +33851,4609,280,17,2,eggs,DSC_0841.JPG +33876,1870,568,17,1,eggs,DSC_0841.JPG +3388,1132,1261,15,2,eggs,DSC_0837.JPG +33926,4936,1609,16,1,eggs,DSC_0841.JPG +33935,592,2089,17,1,eggs,DSC_0841.JPG +33937,4288,2188,16,1,eggs,DSC_0841.JPG +3394,1657,1684,15,1,eggs,DSC_0837.JPG +33962,916,2155,17,1,eggs,DSC_0841.JPG +33964,5110,403,17,2,eggs,DSC_0841.JPG +33969,1870,1882,15,1,eggs,DSC_0841.JPG +3399,2764,673,16,2,eggs,DSC_0837.JPG +33996,2368,574,17,2,eggs,DSC_0841.JPG +3401,3640,1105,16,1,eggs,DSC_0837.JPG +3403,1132,1381,15,2,eggs,DSC_0837.JPG +34042,1621,1471,17,2,eggs,DSC_0841.JPG +3406,1234,1558,15,2,eggs,DSC_0837.JPG +34080,5356,946,17,1,eggs,DSC_0841.JPG +3411,880,1783,15,2,eggs,DSC_0837.JPG +3413,4300,1882,15,2,eggs,DSC_0837.JPG +34138,1975,1228,17,2,eggs,DSC_0841.JPG +342,1297,739,15,1,eggs,DSC_0844.JPG +3424,3091,736,16,2,eggs,DSC_0837.JPG +3425,1528,838,15,2,eggs,DSC_0837.JPG +34255,1021,685,16,2,eggs,DSC_0841.JPG +3426,3643,982,15,2,eggs,DSC_0837.JPG +3427,3700,1825,15,2,eggs,DSC_0837.JPG +3428,3592,2005,15,1,eggs,DSC_0837.JPG +3430,1339,2098,15,2,eggs,DSC_0837.JPG +34320,2500,1774,17,1,eggs,DSC_0841.JPG +3436,4312,1279,15,2,eggs,DSC_0837.JPG +3437,3955,1405,16,2,eggs,DSC_0837.JPG +3438,3706,1465,15,2,eggs,DSC_0837.JPG +34397,1366,2335,17,2,eggs,DSC_0841.JPG +344,4624,1222,15,2,eggs,DSC_0844.JPG +3440,1231,1915,15,2,eggs,DSC_0837.JPG +3443,3487,2182,15,2,eggs,DSC_0837.JPG +3448,1348,1024,15,2,eggs,DSC_0837.JPG +3450,4381,1276,15,2,eggs,DSC_0837.JPG +3452,3739,1525,15,1,eggs,DSC_0837.JPG +3453,4165,1525,15,2,eggs,DSC_0837.JPG +34551,2428,1999,17,2,eggs,DSC_0841.JPG +3456,883,1903,15,2,eggs,DSC_0837.JPG +3458,1480,1984,15,2,eggs,DSC_0837.JPG +3461,2881,2098,15,2,eggs,DSC_0837.JPG +3462,1621,2104,15,2,eggs,DSC_0837.JPG +3470,3535,928,15,2,eggs,DSC_0837.JPG +34717,2584,328,15,1,eggs,DSC_0841.JPG +3474,4453,1276,17,2,eggs,DSC_0837.JPG +3475,1276,1381,15,2,eggs,DSC_0837.JPG +3478,4372,1759,15,2,eggs,DSC_0837.JPG +3494,739,1780,15,2,eggs,DSC_0837.JPG +3496,1195,1855,15,2,eggs,DSC_0837.JPG +3502,3712,859,15,2,eggs,DSC_0837.JPG +3510,3847,1468,15,2,eggs,DSC_0837.JPG +3512,3667,1762,17,2,eggs,DSC_0837.JPG +3518,1315,1084,15,2,eggs,DSC_0837.JPG +3520,4276,1462,15,2,eggs,DSC_0837.JPG +3525,1159,1912,15,2,eggs,DSC_0837.JPG +3526,1516,1924,15,2,eggs,DSC_0837.JPG +3529,1264,1975,15,2,eggs,DSC_0837.JPG +3530,1549,1984,15,2,eggs,DSC_0837.JPG +3536,3340,676,15,2,eggs,DSC_0837.JPG +3542,3982,1705,15,2,eggs,DSC_0837.JPG +3552,3712,1105,16,1,eggs,DSC_0837.JPG +3553,4489,1339,15,2,eggs,DSC_0837.JPG +3558,1126,1732,15,2,eggs,DSC_0837.JPG +3566,4447,1150,16,2,eggs,DSC_0837.JPG +3567,4108,1165,15,2,eggs,DSC_0837.JPG +3569,4207,1345,15,2,eggs,DSC_0837.JPG +3572,3952,1525,15,2,eggs,DSC_0837.JPG +3576,775,1720,15,2,eggs,DSC_0837.JPG +3577,1300,1795,16,2,eggs,DSC_0837.JPG +3578,3913,1825,15,2,eggs,DSC_0837.JPG +3580,1654,2044,15,2,eggs,DSC_0837.JPG +3588,1561,901,15,2,eggs,DSC_0837.JPG +359,946,856,15,2,eggs,DSC_0844.JPG +3591,4207,1099,15,2,eggs,DSC_0837.JPG +3594,4414,1213,15,2,eggs,DSC_0837.JPG +3597,3877,1645,15,2,eggs,DSC_0837.JPG +3598,3844,1705,15,2,eggs,DSC_0837.JPG +3599,3913,1705,15,2,eggs,DSC_0837.JPG +3600,3628,1825,15,2,eggs,DSC_0837.JPG +3605,2380,607,17,2,eggs,DSC_0837.JPG +3606,3307,742,15,2,eggs,DSC_0837.JPG +361,4696,1222,15,2,eggs,DSC_0844.JPG +3612,1057,1612,15,2,eggs,DSC_0837.JPG +3614,952,1669,15,2,eggs,DSC_0837.JPG +3620,4084,1882,17,2,eggs,DSC_0837.JPG +3621,3805,1885,15,2,eggs,DSC_0837.JPG +36245,1198,631,15,2,eggs,DSC_0841.JPG +363,544,1495,17,2,eggs,DSC_0844.JPG +3633,3676,922,15,2,eggs,DSC_0837.JPG +3638,1306,1441,15,2,eggs,DSC_0837.JPG +3639,4423,1462,15,2,eggs,DSC_0837.JPG +364,4897,1693,15,2,eggs,DSC_0844.JPG +3640,811,1663,16,2,eggs,DSC_0837.JPG +3641,883,1663,16,2,eggs,DSC_0837.JPG +3643,3874,1885,15,2,eggs,DSC_0837.JPG +36566,3640,1498,15,1,eggs,DSC_0838.JPG +3657,3121,799,15,1,eggs,DSC_0837.JPG +36579,3016,1003,16,2,eggs,DSC_0838.JPG +36590,2743,625,17,1,eggs,DSC_0838.JPG +3661,1168,1324,16,2,eggs,DSC_0837.JPG +36611,3544,823,16,1,eggs,DSC_0838.JPG +3662,988,1375,15,2,eggs,DSC_0837.JPG +3663,3919,1468,15,2,eggs,DSC_0837.JPG +36637,3907,2206,16,1,eggs,DSC_0838.JPG +3664,1270,1501,15,2,eggs,DSC_0837.JPG +36643,340,316,17,2,eggs,DSC_0838.JPG +36645,3262,694,16,1,eggs,DSC_0838.JPG +3666,1057,1732,15,2,eggs,DSC_0837.JPG +3668,3937,2122,15,2,eggs,DSC_0837.JPG +36681,2596,748,17,1,eggs,DSC_0838.JPG +36692,3052,817,16,2,eggs,DSC_0838.JPG +36700,3298,760,17,2,eggs,DSC_0838.JPG +36702,3367,1009,17,2,eggs,DSC_0838.JPG +36720,3118,1189,16,2,eggs,DSC_0838.JPG +3676,2062,658,17,2,eggs,DSC_0837.JPG +36762,478,322,17,2,eggs,DSC_0838.JPG +36779,3013,1126,17,2,eggs,DSC_0838.JPG +36794,3190,1066,16,2,eggs,DSC_0838.JPG +36811,3505,1135,16,2,eggs,DSC_0838.JPG +36822,265,313,17,2,eggs,DSC_0838.JPG +3684,2581,1585,15,1,eggs,DSC_0837.JPG +3687,3982,1822,17,2,eggs,DSC_0837.JPG +36886,3154,1006,17,2,eggs,DSC_0838.JPG +3689,2041,1876,15,1,eggs,DSC_0837.JPG +36893,373,382,17,2,eggs,DSC_0838.JPG +369,3142,247,17,2,eggs,DSC_0844.JPG +36915,2587,1726,17,1,eggs,DSC_0838.JPG +3692,1480,2101,15,2,eggs,DSC_0837.JPG +36920,2344,1051,16,1,eggs,DSC_0838.JPG +36963,3229,883,17,2,eggs,DSC_0838.JPG +36964,3121,946,15,2,eggs,DSC_0838.JPG +37008,4051,1738,16,1,eggs,DSC_0838.JPG +3701,3409,676,15,2,eggs,DSC_0837.JPG +37027,4675,448,17,2,eggs,DSC_0838.JPG +3703,1171,1201,15,2,eggs,DSC_0837.JPG +3704,952,1432,15,2,eggs,DSC_0837.JPG +37048,3613,952,17,2,eggs,DSC_0838.JPG +37061,2899,1909,17,1,eggs,DSC_0838.JPG +37066,3580,889,17,1,eggs,DSC_0838.JPG +37080,3052,940,17,2,eggs,DSC_0838.JPG +37085,514,391,17,2,eggs,DSC_0838.JPG +3709,4159,1882,15,1,eggs,DSC_0837.JPG +37095,4468,316,16,2,eggs,DSC_0838.JPG +37116,1084,274,15,1,eggs,DSC_0838.JPG +37122,2335,1777,17,1,eggs,DSC_0838.JPG +37159,3154,1129,17,2,eggs,DSC_0838.JPG +37184,3301,631,17,2,eggs,DSC_0838.JPG +3719,3016,979,15,2,eggs,DSC_0837.JPG +37191,2620,1669,15,1,eggs,DSC_0838.JPG +372,1087,607,15,2,eggs,DSC_0844.JPG +3720,1843,1153,15,2,eggs,DSC_0837.JPG +3721,1165,1438,15,2,eggs,DSC_0837.JPG +3722,1900,1513,15,1,eggs,DSC_0837.JPG +37224,5089,937,17,1,eggs,DSC_0838.JPG +3724,4198,1702,15,2,eggs,DSC_0837.JPG +37241,2338,1660,17,2,eggs,DSC_0838.JPG +37244,412,316,15,2,eggs,DSC_0838.JPG +3727,1126,1972,15,2,eggs,DSC_0837.JPG +37293,652,394,15,1,eggs,DSC_0838.JPG +37294,1717,544,17,1,eggs,DSC_0838.JPG +37312,1042,1327,17,2,eggs,DSC_0838.JPG +37397,691,454,16,1,eggs,DSC_0838.JPG +37427,3544,946,17,2,eggs,DSC_0838.JPG +3743,811,1783,16,2,eggs,DSC_0837.JPG +37527,1609,1225,17,1,eggs,DSC_0838.JPG +37529,1819,1468,17,1,eggs,DSC_0838.JPG +37541,973,205,17,2,eggs,DSC_0838.JPG +3755,2269,667,17,2,eggs,DSC_0837.JPG +3756,1600,715,17,2,eggs,DSC_0837.JPG +37619,3124,694,17,2,eggs,DSC_0838.JPG +3765,4060,1465,15,2,eggs,DSC_0837.JPG +3768,1162,1675,15,2,eggs,DSC_0837.JPG +37714,4990,877,17,2,eggs,DSC_0838.JPG +3782,4096,1525,15,2,eggs,DSC_0837.JPG +3783,3772,1702,15,1,eggs,DSC_0837.JPG +3785,1021,1789,15,2,eggs,DSC_0837.JPG +379,4867,1513,16,2,eggs,DSC_0844.JPG +3797,4069,1228,15,2,eggs,DSC_0837.JPG +3800,1060,1378,15,2,eggs,DSC_0837.JPG +3804,3484,1939,15,1,eggs,DSC_0837.JPG +3807,1759,2107,15,2,eggs,DSC_0837.JPG +3817,4270,1087,15,2,eggs,DSC_0837.JPG +3819,4378,1150,15,2,eggs,DSC_0837.JPG +38252,5200,1345,17,1,eggs,DSC_0838.JPG +3826,847,1843,15,2,eggs,DSC_0837.JPG +3831,2725,739,15,2,eggs,DSC_0837.JPG +3834,4102,1288,15,1,eggs,DSC_0837.JPG +3841,3877,1762,15,2,eggs,DSC_0837.JPG +3843,3415,2065,15,2,eggs,DSC_0837.JPG +3850,3160,736,15,2,eggs,DSC_0837.JPG +3853,1204,1021,17,2,eggs,DSC_0837.JPG +3859,4054,1705,15,2,eggs,DSC_0837.JPG +387,1477,547,16,2,eggs,DSC_0844.JPG +3890,3787,859,17,2,eggs,DSC_0837.JPG +3895,2008,2056,15,2,eggs,DSC_0837.JPG +3901,2908,670,15,2,eggs,DSC_0837.JPG +3905,2161,973,17,1,eggs,DSC_0837.JPG +3909,1024,1552,15,2,eggs,DSC_0837.JPG +3916,3841,1825,16,2,eggs,DSC_0837.JPG +392,4633,982,15,2,eggs,DSC_0844.JPG +3934,3271,676,17,2,eggs,DSC_0837.JPG +3937,1276,1024,16,2,eggs,DSC_0837.JPG +3940,1060,1138,15,2,eggs,DSC_0837.JPG +3942,1198,1735,15,2,eggs,DSC_0837.JPG +3947,1339,1978,15,2,eggs,DSC_0837.JPG +39558,2743,991,17,1,eggs,DSC_0838.JPG +3960,952,1552,15,2,eggs,DSC_0837.JPG +3961,916,1726,15,2,eggs,DSC_0837.JPG +3966,1021,2026,15,2,eggs,DSC_0837.JPG +3973,3751,922,17,1,eggs,DSC_0837.JPG +3983,3829,2179,15,2,eggs,DSC_0837.JPG +3986,1984,784,16,1,eggs,DSC_0837.JPG +3991,4135,1345,15,2,eggs,DSC_0837.JPG +3994,4129,1582,15,2,eggs,DSC_0837.JPG +3998,1300,1915,15,2,eggs,DSC_0837.JPG +40,4771,1105,15,2,eggs,DSC_0844.JPG +400,3343,517,16,2,eggs,DSC_0844.JPG +4002,1372,2038,15,1,eggs,DSC_0837.JPG +4017,3862,859,17,2,eggs,DSC_0837.JPG +4020,3397,1168,17,2,eggs,DSC_0837.JPG +4021,1099,1198,16,2,eggs,DSC_0837.JPG +4025,4240,1405,15,2,eggs,DSC_0837.JPG +4029,4303,1762,17,2,eggs,DSC_0837.JPG +403,1300,607,17,1,eggs,DSC_0844.JPG +4030,1231,1792,15,2,eggs,DSC_0837.JPG +404,3193,775,16,1,eggs,DSC_0844.JPG +4044,3232,964,15,2,eggs,DSC_0837.JPG +4048,1096,1435,16,2,eggs,DSC_0837.JPG +4051,988,1609,16,2,eggs,DSC_0837.JPG +4052,4159,1765,17,1,eggs,DSC_0837.JPG +4053,1444,1921,15,2,eggs,DSC_0837.JPG +4064,1948,844,16,2,eggs,DSC_0837.JPG +4075,1759,1867,15,2,eggs,DSC_0837.JPG +4085,4345,1462,15,2,eggs,DSC_0837.JPG +4086,4417,1576,16,1,eggs,DSC_0837.JPG +4091,3805,1765,15,2,eggs,DSC_0837.JPG +4093,1408,1981,15,2,eggs,DSC_0837.JPG +41,2059,1615,15,1,eggs,DSC_0844.JPG +410,4834,1453,15,2,eggs,DSC_0844.JPG +4107,1204,1144,16,2,eggs,DSC_0837.JPG +4109,4345,1213,15,2,eggs,DSC_0837.JPG +411,3211,1570,17,2,eggs,DSC_0844.JPG +4116,1375,1798,15,2,eggs,DSC_0837.JPG +4118,3769,1825,15,2,eggs,DSC_0837.JPG +4119,3838,1942,16,1,eggs,DSC_0837.JPG +4120,1057,1969,15,2,eggs,DSC_0837.JPG +4122,1516,2044,15,1,eggs,DSC_0837.JPG +4125,1126,2089,15,2,eggs,DSC_0837.JPG +4135,1099,1081,16,2,eggs,DSC_0837.JPG +414,4363,1756,15,2,eggs,DSC_0844.JPG +4141,4384,1519,15,2,eggs,DSC_0837.JPG +4142,916,1606,15,2,eggs,DSC_0837.JPG +4145,1057,1849,15,2,eggs,DSC_0837.JPG +4154,4171,1405,15,2,eggs,DSC_0837.JPG +417,2962,178,17,2,eggs,DSC_0844.JPG +4170,4483,1216,17,2,eggs,DSC_0837.JPG +4174,3943,1885,17,2,eggs,DSC_0837.JPG +4175,3907,1945,15,2,eggs,DSC_0837.JPG +4177,3835,2062,15,1,eggs,DSC_0837.JPG +4186,2653,739,15,1,eggs,DSC_0837.JPG +4190,4057,1582,15,2,eggs,DSC_0837.JPG +4191,1201,1618,15,2,eggs,DSC_0837.JPG +42,3487,520,15,2,eggs,DSC_0844.JPG +422,838,790,15,2,eggs,DSC_0844.JPG +4222,4093,1645,17,2,eggs,DSC_0837.JPG +423,4699,1105,15,2,eggs,DSC_0844.JPG +4230,3757,2176,15,2,eggs,DSC_0837.JPG +4246,3898,925,15,2,eggs,DSC_0837.JPG +4248,4141,1108,15,2,eggs,DSC_0837.JPG +4250,916,1492,15,2,eggs,DSC_0837.JPG +4261,3271,2065,15,2,eggs,DSC_0837.JPG +4264,3793,2236,15,1,eggs,DSC_0837.JPG +4269,2485,544,17,1,eggs,DSC_0837.JPG +427,724,1447,15,2,eggs,DSC_0844.JPG +4272,3346,805,16,2,eggs,DSC_0837.JPG +4276,1276,1264,15,1,eggs,DSC_0837.JPG +4277,952,1315,15,2,eggs,DSC_0837.JPG +428,4510,1516,15,2,eggs,DSC_0844.JPG +4280,988,1726,15,2,eggs,DSC_0837.JPG +4284,1513,2158,15,2,eggs,DSC_0837.JPG +429,5077,1753,15,1,eggs,DSC_0844.JPG +4299,1315,835,17,2,eggs,DSC_0837.JPG +43,730,721,15,2,eggs,DSC_0844.JPG +430,862,1813,15,2,eggs,DSC_0844.JPG +4311,4054,1822,16,1,eggs,DSC_0837.JPG +4314,1372,2152,15,2,eggs,DSC_0837.JPG +4327,4177,1165,15,2,eggs,DSC_0837.JPG +433,3274,517,16,2,eggs,DSC_0844.JPG +4330,4420,1342,17,2,eggs,DSC_0837.JPG +4331,4387,1402,17,1,eggs,DSC_0837.JPG +4333,844,1489,15,2,eggs,DSC_0837.JPG +4355,1201,1381,15,2,eggs,DSC_0837.JPG +4357,4492,1573,15,2,eggs,DSC_0837.JPG +4358,1021,1669,15,2,eggs,DSC_0837.JPG +436,406,895,16,2,eggs,DSC_0844.JPG +4362,1195,1975,15,2,eggs,DSC_0837.JPG +4365,3199,2182,15,2,eggs,DSC_0837.JPG +4379,3289,1249,17,2,eggs,DSC_0837.JPG +4381,3811,1525,15,2,eggs,DSC_0837.JPG +4397,847,1723,15,2,eggs,DSC_0837.JPG +4405,2986,2173,15,2,eggs,DSC_0837.JPG +441,4309,1042,15,2,eggs,DSC_0844.JPG +4436,1423,769,17,2,eggs,DSC_0837.JPG +4437,3055,796,15,2,eggs,DSC_0837.JPG +444,694,1150,15,2,eggs,DSC_0844.JPG +4444,2086,1339,15,1,eggs,DSC_0837.JPG +4446,1591,1564,15,2,eggs,DSC_0837.JPG +4448,4123,1702,17,2,eggs,DSC_0837.JPG +445,658,1213,16,2,eggs,DSC_0844.JPG +4450,919,1843,15,2,eggs,DSC_0837.JPG +4452,3871,2005,17,2,eggs,DSC_0837.JPG +4453,1162,2032,15,2,eggs,DSC_0837.JPG +4468,1354,898,17,2,eggs,DSC_0837.JPG +4469,4339,1081,17,2,eggs,DSC_0837.JPG +447,550,1378,15,2,eggs,DSC_0844.JPG +4471,1024,1321,15,2,eggs,DSC_0837.JPG +4472,3772,1585,15,2,eggs,DSC_0837.JPG +4492,4141,1228,16,2,eggs,DSC_0837.JPG +4493,4033,1288,15,2,eggs,DSC_0837.JPG +45,5002,1756,16,2,eggs,DSC_0844.JPG +4500,4162,1639,17,2,eggs,DSC_0837.JPG +451,3478,2056,17,1,eggs,DSC_0844.JPG +4519,883,1315,17,1,eggs,DSC_0837.JPG +4520,3853,1348,15,1,eggs,DSC_0837.JPG +4523,847,1603,17,2,eggs,DSC_0837.JPG +4529,2572,2062,15,1,eggs,DSC_0837.JPG +454,2572,373,16,2,eggs,DSC_0844.JPG +4550,3457,739,16,1,eggs,DSC_0837.JPG +4552,3571,979,15,2,eggs,DSC_0837.JPG +456,619,652,16,2,eggs,DSC_0844.JPG +4561,3199,2065,15,2,eggs,DSC_0837.JPG +457,4255,664,15,2,eggs,DSC_0844.JPG +4583,4342,1579,15,1,eggs,DSC_0837.JPG +4588,3661,2005,15,1,eggs,DSC_0837.JPG +4599,1918,655,16,2,eggs,DSC_0837.JPG +460,442,1078,15,2,eggs,DSC_0844.JPG +4608,4273,1699,15,2,eggs,DSC_0837.JPG +4612,1303,2038,15,2,eggs,DSC_0837.JPG +4616,3625,2065,15,2,eggs,DSC_0837.JPG +4617,1267,2092,15,2,eggs,DSC_0837.JPG +4637,742,1657,17,1,eggs,DSC_0837.JPG +465,4654,1393,17,2,eggs,DSC_0844.JPG +4657,3925,1228,17,2,eggs,DSC_0837.JPG +4658,844,1255,15,1,eggs,DSC_0837.JPG +4660,4456,1516,17,1,eggs,DSC_0837.JPG +4679,3763,2062,15,2,eggs,DSC_0837.JPG +4680,3556,2065,15,2,eggs,DSC_0837.JPG +469,4003,1999,15,2,eggs,DSC_0844.JPG +47,5011,1510,15,1,eggs,DSC_0844.JPG +4709,3055,2059,15,1,eggs,DSC_0837.JPG +4712,3058,2179,15,2,eggs,DSC_0837.JPG +4725,952,1195,17,1,eggs,DSC_0837.JPG +4727,988,1258,16,2,eggs,DSC_0837.JPG +4728,4348,1339,15,2,eggs,DSC_0837.JPG +4732,1690,2104,15,2,eggs,DSC_0837.JPG +474,1723,619,16,2,eggs,DSC_0844.JPG +4746,1801,1567,15,2,eggs,DSC_0837.JPG +4760,4237,1519,17,2,eggs,DSC_0837.JPG +4761,235,1771,16,2,eggs,DSC_0837.JPG +4782,1090,1912,15,2,eggs,DSC_0837.JPG +4799,880,1543,17,1,eggs,DSC_0837.JPG +4810,1342,1384,15,1,eggs,DSC_0837.JPG +4816,3592,2119,17,2,eggs,DSC_0837.JPG +4817,3523,2125,15,2,eggs,DSC_0837.JPG +4819,3715,2227,15,1,eggs,DSC_0837.JPG +4826,4045,922,15,2,eggs,DSC_0837.JPG +4835,1090,2032,16,2,eggs,DSC_0837.JPG +4837,3796,2122,15,2,eggs,DSC_0837.JPG +484,4408,1456,17,2,eggs,DSC_0844.JPG +4849,1024,1081,15,1,eggs,DSC_0837.JPG +4851,4495,1459,17,2,eggs,DSC_0837.JPG +4854,4198,1582,16,2,eggs,DSC_0837.JPG +4858,4231,1882,15,2,eggs,DSC_0837.JPG +4859,952,1903,15,2,eggs,DSC_0837.JPG +4860,1231,2038,15,2,eggs,DSC_0837.JPG +4866,1549,2215,15,2,eggs,DSC_0837.JPG +487,4057,1579,15,2,eggs,DSC_0844.JPG +488,3277,1693,17,2,eggs,DSC_0844.JPG +4883,3415,1939,15,2,eggs,DSC_0837.JPG +4897,4309,1522,15,2,eggs,DSC_0837.JPG +49,1726,355,15,2,eggs,DSC_0844.JPG +4901,1408,2098,15,2,eggs,DSC_0837.JPG +491,4891,1816,17,2,eggs,DSC_0844.JPG +4916,3448,1045,16,2,eggs,DSC_0837.JPG +4929,2629,550,17,2,eggs,DSC_0837.JPG +4938,3484,2065,15,2,eggs,DSC_0837.JPG +4946,4006,1108,15,2,eggs,DSC_0837.JPG +4952,4015,1885,17,2,eggs,DSC_0837.JPG +496,1156,475,17,2,eggs,DSC_0844.JPG +4974,3562,2179,17,2,eggs,DSC_0837.JPG +498,4390,790,15,2,eggs,DSC_0844.JPG +4981,1240,961,17,1,eggs,DSC_0837.JPG +4986,1867,1570,15,1,eggs,DSC_0837.JPG +5000,2686,919,15,2,eggs,DSC_0837.JPG +5002,1129,1018,15,2,eggs,DSC_0837.JPG +502,4567,856,17,2,eggs,DSC_0844.JPG +5022,4021,1765,17,2,eggs,DSC_0837.JPG +5048,3520,1882,15,2,eggs,DSC_0837.JPG +5049,3694,2065,15,2,eggs,DSC_0837.JPG +505,691,1387,15,2,eggs,DSC_0844.JPG +5070,3091,2122,15,2,eggs,DSC_0837.JPG +5086,2620,676,15,1,eggs,DSC_0837.JPG +5092,1444,2155,15,2,eggs,DSC_0837.JPG +51,4246,913,15,2,eggs,DSC_0844.JPG +513,3301,2116,17,2,eggs,DSC_0844.JPG +5131,3802,2002,15,2,eggs,DSC_0837.JPG +5133,1195,2089,15,2,eggs,DSC_0837.JPG +5166,3727,2122,15,2,eggs,DSC_0837.JPG +517,2674,439,16,2,eggs,DSC_0844.JPG +5174,4123,1825,17,2,eggs,DSC_0837.JPG +5181,985,1141,17,1,eggs,DSC_0837.JPG +5190,4207,1222,16,2,eggs,DSC_0837.JPG +5228,4162,982,15,2,eggs,DSC_0837.JPG +5255,2935,1105,15,1,eggs,DSC_0837.JPG +5310,3040,1633,17,2,eggs,DSC_0837.JPG +5342,2758,1042,17,2,eggs,DSC_0837.JPG +535,1015,343,17,1,eggs,DSC_0844.JPG +5372,2581,862,15,2,eggs,DSC_0837.JPG +5379,2470,1102,17,2,eggs,DSC_0837.JPG +5384,4192,916,17,2,eggs,DSC_0837.JPG +5420,2647,862,17,1,eggs,DSC_0837.JPG +543,3730,592,16,2,eggs,DSC_0844.JPG +5437,2830,1042,17,2,eggs,DSC_0837.JPG +5467,3085,1699,17,2,eggs,DSC_0837.JPG +547,658,967,15,2,eggs,DSC_0844.JPG +552,445,1315,15,2,eggs,DSC_0844.JPG +5568,3271,823,16,2,eggs,DSC_0837.JPG +5580,3544,733,17,2,eggs,DSC_0837.JPG +5589,2581,1102,16,2,eggs,DSC_0837.JPG +5590,2518,1171,16,2,eggs,DSC_0837.JPG +560,4501,1879,15,2,eggs,DSC_0844.JPG +5610,2404,1438,16,2,eggs,DSC_0837.JPG +5646,2377,1507,17,2,eggs,DSC_0837.JPG +566,3628,523,16,2,eggs,DSC_0844.JPG +567,3910,532,15,2,eggs,DSC_0844.JPG +5692,2794,982,15,2,eggs,DSC_0837.JPG +571,766,910,16,1,eggs,DSC_0844.JPG +574,4525,1042,15,2,eggs,DSC_0844.JPG +576,4549,1456,15,2,eggs,DSC_0844.JPG +587,3976,658,15,1,eggs,DSC_0844.JPG +5890,1147,1141,17,2,eggs,DSC_0837.JPG +591,586,1087,15,2,eggs,DSC_0844.JPG +5922,2587,601,17,2,eggs,DSC_0837.JPG +5928,3364,742,17,2,eggs,DSC_0837.JPG +60,4720,1636,17,2,eggs,DSC_0844.JPG +603,3559,391,17,2,eggs,DSC_0844.JPG +607,334,1132,17,1,eggs,DSC_0844.JPG +615,3970,1939,17,2,eggs,DSC_0844.JPG +622,1051,544,17,2,eggs,DSC_0844.JPG +623,838,661,17,2,eggs,DSC_0844.JPG +624,1477,676,16,2,eggs,DSC_0844.JPG +625,4531,793,15,2,eggs,DSC_0844.JPG +626,622,907,15,2,eggs,DSC_0844.JPG +63,586,1321,15,2,eggs,DSC_0844.JPG +644,3406,2176,16,1,eggs,DSC_0844.JPG +650,1444,349,16,2,eggs,DSC_0844.JPG +664,688,1507,16,2,eggs,DSC_0844.JPG +676,979,667,16,2,eggs,DSC_0844.JPG +678,4600,916,17,2,eggs,DSC_0844.JPG +68,3775,394,15,2,eggs,DSC_0844.JPG +680,727,1333,15,1,eggs,DSC_0844.JPG +681,2029,1435,17,2,eggs,DSC_0844.JPG +69,1228,865,16,2,eggs,DSC_0844.JPG +692,1942,2152,17,2,eggs,DSC_0844.JPG +694,1486,2191,15,1,eggs,DSC_0844.JPG +700,4045,661,16,2,eggs,DSC_0844.JPG +701,4327,664,16,2,eggs,DSC_0844.JPG +706,4906,1450,15,1,eggs,DSC_0844.JPG +712,3133,1816,17,1,eggs,DSC_0844.JPG +714,1036,2002,17,2,eggs,DSC_0844.JPG +716,3997,2122,15,1,eggs,DSC_0844.JPG +717,1807,2155,15,1,eggs,DSC_0844.JPG +728,3868,721,17,2,eggs,DSC_0844.JPG +729,1015,733,15,2,eggs,DSC_0844.JPG +733,838,916,16,2,eggs,DSC_0844.JPG +7471,307,1144,17,1,eggs,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +748,4537,1819,15,2,eggs,DSC_0844.JPG +751,1951,1915,15,1,eggs,DSC_0844.JPG +753,1120,541,16,2,eggs,DSC_0844.JPG +754,1264,673,15,2,eggs,DSC_0844.JPG +755,4150,724,17,2,eggs,DSC_0844.JPG +756,943,730,15,2,eggs,DSC_0844.JPG +76,1480,415,16,2,eggs,DSC_0844.JPG +778,4495,853,15,2,eggs,DSC_0844.JPG +78,3940,595,15,2,eggs,DSC_0844.JPG +781,4666,1042,17,2,eggs,DSC_0844.JPG +79,4528,916,15,2,eggs,DSC_0844.JPG +792,1978,2092,16,1,eggs,DSC_0844.JPG +796,4825,664,17,2,eggs,DSC_0844.JPG +799,658,847,15,2,eggs,DSC_0844.JPG +80,4624,1336,15,2,eggs,DSC_0844.JPG +800,4594,1042,15,2,eggs,DSC_0844.JPG +804,1954,1552,16,2,eggs,DSC_0844.JPG +815,4444,334,17,1,eggs,DSC_0844.JPG +817,1690,421,17,1,eggs,DSC_0844.JPG +825,4663,1162,15,2,eggs,DSC_0844.JPG +83,2092,1558,15,2,eggs,DSC_0844.JPG +832,2995,1690,17,2,eggs,DSC_0844.JPG +840,1939,361,15,2,eggs,DSC_0844.JPG +846,4501,730,17,2,eggs,DSC_0844.JPG +861,4282,2119,16,2,eggs,DSC_0844.JPG +865,1405,415,17,1,eggs,DSC_0844.JPG +868,3871,592,17,2,eggs,DSC_0844.JPG +871,1402,676,17,2,eggs,DSC_0844.JPG +873,910,790,16,1,eggs,DSC_0844.JPG +874,658,1090,15,2,eggs,DSC_0844.JPG +877,478,1261,15,2,eggs,DSC_0844.JPG +878,691,1273,15,2,eggs,DSC_0844.JPG +88,3358,1216,15,2,eggs,DSC_0844.JPG +882,4546,1576,15,2,eggs,DSC_0844.JPG +883,5008,1633,15,1,eggs,DSC_0844.JPG +886,865,1690,16,2,eggs,DSC_0844.JPG +889,1702,2095,15,2,eggs,DSC_0844.JPG +897,1867,490,16,2,eggs,DSC_0844.JPG +9,3556,523,16,2,eggs,DSC_0844.JPG +903,3757,787,15,2,eggs,DSC_0844.JPG +9091,3286,1477,15,2,eggs,DSC_0848.JPG +9092,2767,937,16,2,eggs,DSC_0848.JPG +9094,2068,1048,15,2,eggs,DSC_0848.JPG +9110,2491,808,15,2,eggs,DSC_0848.JPG +9112,2242,1228,17,2,eggs,DSC_0848.JPG +9118,2458,868,15,2,eggs,DSC_0848.JPG +9122,2662,1942,15,2,eggs,DSC_0848.JPG +9124,2806,877,15,2,eggs,DSC_0848.JPG +9127,2941,1117,17,1,eggs,DSC_0848.JPG +913,439,1543,17,2,eggs,DSC_0844.JPG +915,472,1606,17,2,eggs,DSC_0844.JPG +9151,2281,1882,15,2,eggs,DSC_0848.JPG +9153,2734,997,16,2,eggs,DSC_0848.JPG +9155,2314,1822,16,2,eggs,DSC_0848.JPG +9170,2038,868,16,2,eggs,DSC_0848.JPG +9175,2314,865,15,2,eggs,DSC_0848.JPG +9176,3211,2071,15,2,eggs,DSC_0848.JPG +9182,2455,985,16,2,eggs,DSC_0848.JPG +9190,2596,748,15,2,eggs,DSC_0848.JPG +9197,2314,1939,15,2,eggs,DSC_0848.JPG +9203,2596,871,16,2,eggs,DSC_0848.JPG +9208,2455,748,17,2,eggs,DSC_0848.JPG +9211,2386,985,15,2,eggs,DSC_0848.JPG +9213,2170,1105,16,2,eggs,DSC_0848.JPG +9222,2074,805,15,2,eggs,DSC_0848.JPG +9231,2350,682,15,2,eggs,DSC_0848.JPG +9233,2101,1345,15,2,eggs,DSC_0848.JPG +9244,2491,1048,16,2,eggs,DSC_0848.JPG +9245,2869,1831,15,2,eggs,DSC_0848.JPG +925,4183,667,17,2,eggs,DSC_0844.JPG +9255,3151,1123,15,2,eggs,DSC_0848.JPG +9257,1927,1168,15,2,eggs,DSC_0848.JPG +9264,2239,1105,16,2,eggs,DSC_0848.JPG +9270,2140,928,15,2,eggs,DSC_0848.JPG +9278,2281,928,17,2,eggs,DSC_0848.JPG +9279,2242,985,15,2,eggs,DSC_0848.JPG +9281,2875,1354,16,1,eggs,DSC_0848.JPG +9304,2350,1882,16,2,eggs,DSC_0848.JPG +9312,2107,865,15,2,eggs,DSC_0848.JPG +9314,2941,1477,15,2,eggs,DSC_0848.JPG +9326,2560,1048,17,2,eggs,DSC_0848.JPG +9327,2908,1060,15,2,eggs,DSC_0848.JPG +9328,3397,1300,17,2,eggs,DSC_0848.JPG +9346,2698,814,15,2,eggs,DSC_0848.JPG +9348,3046,1414,17,2,eggs,DSC_0848.JPG +935,3250,1396,17,2,eggs,DSC_0844.JPG +9350,2242,2056,15,1,eggs,DSC_0848.JPG +9354,2491,685,15,2,eggs,DSC_0848.JPG +9358,1996,1288,15,2,eggs,DSC_0848.JPG +9383,2734,754,17,2,eggs,DSC_0848.JPG +9387,2278,1162,17,2,eggs,DSC_0848.JPG +9388,2065,1165,17,2,eggs,DSC_0848.JPG +9405,2869,1711,15,2,eggs,DSC_0848.JPG +9412,2422,808,15,2,eggs,DSC_0848.JPG +9413,2734,877,15,2,eggs,DSC_0848.JPG +9416,2029,1348,15,2,eggs,DSC_0848.JPG +9417,1927,1405,15,2,eggs,DSC_0848.JPG +9418,2971,1768,17,2,eggs,DSC_0848.JPG +9419,3247,1774,15,2,eggs,DSC_0848.JPG +9428,2170,1225,15,2,eggs,DSC_0848.JPG +9438,2350,925,16,2,eggs,DSC_0848.JPG +9439,2422,928,15,2,eggs,DSC_0848.JPG +9443,3043,1534,15,2,eggs,DSC_0848.JPG +946,3769,526,17,2,eggs,DSC_0844.JPG +9464,2314,742,17,2,eggs,DSC_0848.JPG +9467,2209,1045,17,2,eggs,DSC_0848.JPG +947,1336,676,17,2,eggs,DSC_0844.JPG +9472,4093,1777,17,2,eggs,DSC_0848.JPG +9489,2062,1285,15,2,eggs,DSC_0848.JPG +949,4111,790,16,2,eggs,DSC_0844.JPG +9500,2104,1108,17,2,eggs,DSC_0848.JPG +9507,2800,1831,15,2,eggs,DSC_0848.JPG +9521,2665,994,15,2,eggs,DSC_0848.JPG +9524,2872,1117,15,2,eggs,DSC_0848.JPG +9527,2968,1885,17,2,eggs,DSC_0848.JPG +9528,2383,2056,15,2,eggs,DSC_0848.JPG +9547,1894,1348,17,2,eggs,DSC_0848.JPG +9560,2701,934,17,2,eggs,DSC_0848.JPG +9561,2941,997,17,2,eggs,DSC_0848.JPG +957,3535,1276,15,2,eggs,DSC_0844.JPG +9579,2284,682,16,2,eggs,DSC_0848.JPG +9581,1963,988,15,2,eggs,DSC_0848.JPG +9585,2134,1282,15,2,eggs,DSC_0848.JPG +959,3217,1453,16,2,eggs,DSC_0844.JPG +96,4789,1756,16,2,eggs,DSC_0844.JPG +9603,2038,988,15,2,eggs,DSC_0848.JPG +9615,3112,1774,15,2,eggs,DSC_0848.JPG +962,3307,1876,16,1,eggs,DSC_0844.JPG +9633,2353,805,16,2,eggs,DSC_0848.JPG +9636,3220,1126,15,2,eggs,DSC_0848.JPG +9642,2941,1594,15,2,eggs,DSC_0848.JPG +9652,1195,370,17,1,eggs,DSC_0848.JPG +9661,2563,928,15,2,eggs,DSC_0848.JPG +9662,2596,988,15,2,eggs,DSC_0848.JPG +9665,3079,1123,15,2,eggs,DSC_0848.JPG +9669,2455,1939,15,2,eggs,DSC_0848.JPG +9696,3148,1474,17,2,eggs,DSC_0848.JPG +9699,2833,2008,15,2,eggs,DSC_0848.JPG +9721,2872,1234,15,2,eggs,DSC_0848.JPG +9729,2728,2062,15,2,eggs,DSC_0848.JPG +973,1615,550,17,2,eggs,DSC_0844.JPG +9741,2284,805,15,2,eggs,DSC_0848.JPG +9743,2524,868,16,2,eggs,DSC_0848.JPG +9745,2632,931,17,2,eggs,DSC_0848.JPG +975,4249,790,15,2,eggs,DSC_0844.JPG +9750,1993,1525,15,2,eggs,DSC_0848.JPG +9754,2524,1939,15,2,eggs,DSC_0848.JPG +9775,2977,1180,15,2,eggs,DSC_0848.JPG +9777,2839,1294,15,2,eggs,DSC_0848.JPG +9781,4096,1543,15,2,eggs,DSC_0848.JPG +9785,2590,1936,17,2,eggs,DSC_0848.JPG +979,4384,916,15,2,eggs,DSC_0844.JPG +9803,2134,1165,15,2,eggs,DSC_0848.JPG +9811,2170,1939,15,2,eggs,DSC_0848.JPG +9833,3646,1003,17,2,eggs,DSC_0848.JPG +9835,3013,1123,15,1,eggs,DSC_0848.JPG +9837,2062,1408,15,2,eggs,DSC_0848.JPG +986,580,1558,15,2,eggs,DSC_0844.JPG +988,4690,1573,17,1,eggs,DSC_0844.JPG +989,4900,1573,15,2,eggs,DSC_0844.JPG +9906,1996,1408,15,2,eggs,DSC_0848.JPG +9929,2071,925,15,2,eggs,DSC_0848.JPG +9931,2278,1045,15,2,eggs,DSC_0848.JPG +9956,2140,1048,17,2,eggs,DSC_0848.JPG +9957,3469,1066,15,2,eggs,DSC_0848.JPG +9959,2734,1114,15,2,eggs,DSC_0848.JPG +9966,2935,1951,16,2,eggs,DSC_0848.JPG +9979,1996,1165,17,2,eggs,DSC_0848.JPG +998,3967,2062,16,1,eggs,DSC_0844.JPG +9985,2803,1591,15,2,eggs,DSC_0848.JPG +12326,2500,601,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12968,1363,580,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13061,2671,934,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13104,1399,520,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13107,1054,1024,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13195,1648,1369,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13289,1225,574,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13419,2218,598,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13420,1999,994,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13443,1291,1222,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13471,1831,526,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13472,2536,673,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13492,1897,1315,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13494,4681,1933,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13514,3124,1519,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13527,1468,1159,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13544,2962,679,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13545,1468,1039,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13547,3613,1006,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13558,2395,412,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13559,2212,1255,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13567,4756,877,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13574,1126,901,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13575,2530,946,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13586,1960,1186,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13588,4408,1939,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13594,4798,814,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13595,5236,1126,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13596,988,1261,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13597,4390,1264,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13598,2605,1564,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13603,3814,1396,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13607,4609,880,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13608,1084,961,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13618,1144,574,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13624,4234,1639,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13625,4345,1936,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13629,4597,1132,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13630,2572,1387,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13632,2665,1570,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13633,4627,1579,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13634,1126,1630,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13640,3208,370,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13641,1891,649,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13643,1540,907,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13644,3862,946,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13645,2251,1192,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13646,3841,1702,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13650,2614,802,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13651,3304,1066,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13652,3616,1135,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13654,4972,1798,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13657,1789,586,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13658,2533,1195,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13661,1819,1669,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13662,2221,472,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13663,4630,505,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13664,1435,571,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13665,5350,1186,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13666,4426,1201,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13667,2707,1384,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13668,2632,1624,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13669,2278,1738,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13677,3739,553,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13678,5332,751,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13679,2434,1003,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13680,4390,1138,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13681,4813,1252,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13682,3814,1273,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13683,3988,1459,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13685,4972,1684,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13686,2068,1738,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13689,3805,805,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13690,4645,823,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13692,2569,1126,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13693,4216,1204,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13694,1717,1249,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13695,5371,1249,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13696,2917,1516,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13697,1609,1546,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13700,4390,442,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13701,2500,475,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13702,1021,1081,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13704,4180,1147,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13705,4255,1270,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13706,4492,1330,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13707,5119,1561,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13709,4096,1876,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13713,3589,673,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13714,4333,991,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13715,1606,1159,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13721,4246,436,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13722,4888,445,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13723,4843,508,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13724,3559,613,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13725,4192,880,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13726,1963,919,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13727,5308,1126,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13728,3364,1327,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13730,4630,1453,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13733,5059,508,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13734,1534,514,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13735,3838,616,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13736,4435,820,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13737,3130,865,16,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13738,1399,901,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13739,1393,1030,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13740,5077,1270,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13741,1402,1282,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13742,2026,1321,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13744,4837,1570,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13745,5191,1669,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13746,3145,1693,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13752,3496,373,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13753,4060,382,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13756,1501,574,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13757,4879,685,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13758,2779,727,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13759,5017,814,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13760,3274,1000,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13761,3829,1015,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13762,2071,1117,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13763,3397,1135,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13764,3184,1258,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13765,4732,1390,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13766,1927,1495,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13768,1999,1735,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13769,2131,1738,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13770,4894,1912,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13774,1759,409,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13775,4483,508,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13776,1258,511,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13778,2125,793,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13779,4714,817,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13780,2365,856,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13781,4828,877,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13783,2701,1264,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13784,4129,1702,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13785,3808,1762,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13787,4819,1807,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13789,3214,1939,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13795,1645,343,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13796,2437,355,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13798,4414,505,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13799,1675,517,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13800,2485,730,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13801,3976,742,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13802,3064,874,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13803,4396,880,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13805,4639,1072,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13806,5095,1138,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13807,1933,1249,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13808,3397,1267,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13809,4912,1315,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13810,2608,1444,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13811,2887,1456,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13812,5155,1498,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13813,2248,1684,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13814,3598,1879,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13816,2221,349,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13817,3601,427,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13818,3670,433,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13819,4234,559,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13820,937,691,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13821,4513,691,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13822,1858,718,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13824,3652,940,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13825,4921,1066,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13826,3712,1087,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13828,2578,1261,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13829,5128,1312,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13830,4879,1378,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13831,4978,1438,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13832,3847,1453,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13833,4489,1453,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13834,4207,1459,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13835,4657,1636,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13836,4171,1639,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13837,4516,1993,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13842,3076,352,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13843,2152,466,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13844,4708,499,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13845,4024,562,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13846,4843,622,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13847,5083,820,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13849,3487,874,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13850,970,883,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13851,1744,910,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13852,1813,922,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13854,5323,994,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13855,3694,1006,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13856,2041,1060,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13857,946,1063,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13858,1084,1081,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13859,4069,1090,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13860,2155,1126,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13861,4459,1135,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13862,1120,1147,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13863,2749,1192,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13864,1510,1231,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13865,1018,1318,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13866,2671,1444,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13867,4396,1507,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13868,1546,1540,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13869,1192,1636,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13870,4789,1636,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13872,4204,1699,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13876,2188,409,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13877,2815,541,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13878,3067,610,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13879,1675,652,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13880,3313,682,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13881,1012,694,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13883,3448,802,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13884,3307,805,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13885,1084,817,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13886,3895,880,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13887,5074,946,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13889,3673,1264,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13890,1543,1288,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13892,2326,1318,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13893,4693,1453,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13895,3085,1576,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13896,4828,1687,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13898,4858,1858,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13899,4543,1933,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13903,4276,502,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13904,1474,517,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13905,1606,517,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13906,3886,553,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13907,1951,583,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13908,4228,946,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13909,3514,1072,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13910,5062,1072,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13911,4996,1075,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13912,4906,1444,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13913,1300,1456,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13914,2560,1636,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13915,1714,1726,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13916,1888,1789,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13917,4582,1987,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13920,5071,391,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13921,4879,565,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13922,2131,670,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13923,4657,685,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13924,3412,868,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13925,4330,880,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13927,5035,1012,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13928,4573,1072,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13929,1294,1090,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13930,2227,1120,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13931,3001,1195,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13932,3220,1198,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13933,3709,1333,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13934,3322,1396,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13935,2743,1447,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13936,1792,1495,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13937,5050,1681,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13939,3451,1759,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13940,3280,1828,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13944,1645,448,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13946,2647,601,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13947,4267,622,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13948,4981,628,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13949,4585,688,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13950,1150,691,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13951,1711,712,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13952,1186,760,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13953,4147,823,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13954,1150,835,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13955,3010,922,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13957,2851,991,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13958,4528,1006,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13959,1327,1039,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13960,4672,1144,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13961,1681,1165,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13962,5275,1186,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13963,1018,1201,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13964,3433,1201,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13965,4141,1210,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13966,3112,1246,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13967,1150,1336,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13968,1681,1546,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13969,2323,1567,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13970,2884,1573,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13971,3523,1639,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13972,4339,1696,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13976,2650,358,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13977,1867,472,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13980,4372,562,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13981,4729,568,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13982,4126,622,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13983,2530,805,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13984,2110,931,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13985,3721,946,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13986,5137,1069,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13987,1849,1105,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13988,4249,1156,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13989,1537,1165,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13990,2629,1183,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13991,2395,1195,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13992,3991,1330,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13993,1429,1339,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13994,913,1378,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13995,2917,1390,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13996,2476,1441,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13997,3289,1450,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13998,2425,1504,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13999,2566,1510,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14000,3739,1636,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14002,4585,1642,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14003,4444,1756,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14004,2839,1861,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14007,3388,436,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14008,3064,481,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14009,2293,733,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14010,4975,760,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14011,3868,802,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14012,1222,835,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14013,4045,877,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14014,1462,904,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14015,2581,985,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14016,4429,1078,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14017,3505,1204,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14018,1222,1228,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14019,5158,1255,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14020,1999,1372,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14021,1330,1399,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14022,5053,1438,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14023,4063,1456,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14024,1858,1492,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14025,1093,1570,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14026,1645,1606,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14027,3250,1768,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14028,3016,1813,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14029,4552,1816,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14032,3241,424,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14033,1291,451,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14034,1078,571,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14035,1294,574,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14036,4084,682,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14037,2368,733,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14038,841,748,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14039,1051,757,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14040,2677,790,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14041,2461,793,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14042,1291,832,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14043,2929,871,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14044,3805,952,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14045,2401,1072,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14046,1432,1102,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14047,907,1135,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14048,4321,1144,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14049,5041,1195,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14050,4486,1204,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14051,2365,1378,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14052,4810,1381,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14053,4663,1390,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14054,1399,1396,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14055,2704,1507,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14056,3739,1519,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14057,3463,1525,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14058,3772,1576,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14059,3394,1642,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14060,4381,1642,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14061,4519,1642,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14062,1888,1669,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14063,1963,1678,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14065,4864,1747,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14066,4201,1822,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14071,1327,508,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14072,3103,544,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14073,2071,592,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14074,4408,625,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14075,4555,628,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14076,2317,664,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14077,4159,685,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14078,5014,691,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14079,3835,721,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14080,4684,736,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14081,1471,787,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14082,3088,937,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14083,2383,943,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14084,5146,946,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14085,3340,1000,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14086,5242,1006,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14087,3379,1063,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14088,1753,1171,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14089,3364,1195,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14090,1090,1207,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14091,1990,1252,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14092,5020,1255,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14093,2284,1258,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14094,2362,1276,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14095,1294,1333,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14096,3853,1342,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14097,5230,1384,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14098,4525,1396,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14099,3961,1399,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14100,1957,1558,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14101,2806,1564,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14102,4696,1570,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14103,5227,1609,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14104,5155,1618,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14105,3355,1816,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14106,4477,1819,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14107,2695,1984,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14111,2146,334,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14112,2572,358,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14113,2716,361,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14114,2671,418,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14115,4747,436,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14116,5101,448,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14117,3493,610,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14118,5128,628,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14119,1186,634,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14120,3514,802,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14121,2143,865,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14122,832,874,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14123,4258,877,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14124,2569,880,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14125,5044,883,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14126,3307,937,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14127,979,1009,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14128,4741,1009,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14129,4810,1009,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14130,2506,1012,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14131,4963,1018,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14132,1258,1030,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14133,5212,1063,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14134,1642,1093,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14135,2467,1195,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14136,3574,1210,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14137,1969,1306,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14138,2671,1324,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14139,5128,1438,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14140,1465,1459,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14141,1057,1507,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14142,4912,1564,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14143,4411,1579,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14144,1495,1594,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14146,2698,1633,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14147,5113,1684,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14148,2317,1687,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14149,2389,1687,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14150,2170,1798,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14151,4342,1819,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14153,4027,1879,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14154,2734,1927,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14155,3316,427,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14156,3292,490,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14157,2044,526,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14158,3316,550,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14159,5098,565,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14160,4453,568,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14161,4771,607,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14162,3694,619,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14163,1399,643,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14165,2215,727,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14166,3688,745,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14167,5191,754,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14168,4573,817,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14169,3352,883,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14170,2254,940,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14171,2746,1057,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14172,4222,1078,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14173,4147,1081,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14174,3541,1138,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14175,5200,1189,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14176,1117,1267,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14177,4984,1312,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14178,3223,1333,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14179,1840,1366,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14180,4948,1384,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14181,1543,1417,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14182,4558,1459,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14183,4948,1504,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14184,4870,1510,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14185,5071,1510,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14186,3946,1642,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14187,2695,1744,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14188,4795,1753,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14189,1960,1789,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14190,2485,1864,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14191,4576,1873,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14192,4825,1918,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14196,4357,379,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14197,2041,403,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14198,1975,412,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14199,2329,415,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14200,4033,433,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14201,1726,460,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14202,3706,499,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14203,1756,526,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14204,2689,532,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14205,2611,538,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14206,2893,541,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14207,4306,565,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14208,1714,577,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14209,4054,616,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14210,1327,640,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14211,3658,676,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14212,2002,718,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14213,2848,730,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14214,4189,748,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14215,4618,763,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14216,2188,799,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14217,4012,808,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14218,1576,853,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14219,2425,853,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14220,5179,883,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14221,3379,934,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14222,4150,943,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14223,1429,967,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14224,5107,1003,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14225,5173,1006,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14226,1744,1042,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14227,5281,1063,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14228,3637,1072,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14229,1720,1111,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14230,2782,1138,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14231,2182,1189,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14232,4714,1198,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14233,4000,1213,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14234,1747,1312,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14235,1510,1348,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14236,2986,1393,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14237,3364,1459,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14238,1369,1462,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14239,2821,1495,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14240,2218,1498,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14241,4522,1510,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14242,3322,1645,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14243,4906,1693,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14244,3583,1711,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14245,3115,1744,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14246,4714,1747,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14247,4582,1762,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14248,4381,1879,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14249,4021,1990,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14251,3994,499,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14252,3238,523,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14253,1573,580,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14254,1867,586,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14255,2008,586,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14256,5200,631,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14257,3520,661,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14258,4480,748,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14259,4912,766,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14260,3658,817,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14261,1267,883,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14262,3517,940,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14263,4294,943,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14264,2074,991,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14265,4255,1012,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14266,3466,1018,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14267,2263,1036,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14268,1666,1039,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14269,2809,1054,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14270,2548,1063,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14271,3790,1075,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14273,4747,1138,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14274,3823,1150,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14275,1903,1186,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14276,2140,1261,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14277,3292,1321,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14278,2875,1327,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14279,3526,1336,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14280,4246,1342,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14281,3559,1426,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14282,4840,1447,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14283,2353,1510,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14284,3340,1522,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14285,1462,1534,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14286,1231,1579,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14287,4138,1582,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14288,1930,1726,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14289,2632,1747,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14290,4759,1813,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14291,3190,1816,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14292,3493,1816,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14293,5005,1855,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14294,3052,1876,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14296,3706,373,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14297,3433,376,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14298,1534,394,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14299,2188,532,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14300,2404,532,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14301,2341,541,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14302,3175,547,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14303,2578,601,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14304,2149,607,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14305,4198,616,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14306,4621,628,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14307,4477,631,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14308,4720,676,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14309,3265,727,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14310,3058,733,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14311,4330,745,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14312,3163,805,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14313,4942,817,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14314,3553,853,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14315,3202,871,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14316,4537,886,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14317,1189,928,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14318,4654,946,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14319,934,952,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14320,1783,982,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14321,1927,988,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14322,874,1066,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14323,3232,1072,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14324,4003,1084,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14325,2005,1111,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14326,2362,1117,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14327,3643,1201,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14328,5305,1243,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14329,4699,1321,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14330,2812,1432,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14332,1645,1492,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14333,3886,1522,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14334,3493,1579,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14335,3226,1582,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14336,1270,1633,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14337,2908,1642,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14338,2740,1684,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14339,4759,1687,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14340,3082,1690,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14341,3442,1699,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14342,4279,1702,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14343,5032,1792,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14344,4621,1816,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14345,4279,1819,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14346,4408,1819,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14355,2362,469,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14356,2785,475,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14357,3631,493,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14358,5233,568,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14359,2779,598,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14360,1294,706,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14361,4123,733,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14362,2035,793,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14363,3718,802,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14364,1933,850,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14365,2497,862,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14366,2218,868,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14367,3967,868,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14368,3832,892,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14369,2044,916,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14370,2860,928,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14371,5287,937,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14372,1864,976,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14373,3148,1021,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14374,4090,1036,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14375,2110,1039,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14376,2674,1042,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14377,1534,1045,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14378,2605,1060,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14379,5389,1120,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14380,5032,1132,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14381,4972,1138,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14382,985,1141,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14383,1414,1171,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14384,4783,1189,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14385,5116,1198,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14386,3904,1207,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14387,4072,1210,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14388,4351,1210,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14389,1573,1237,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14390,2908,1264,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14391,3604,1312,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14392,2950,1318,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14393,4435,1327,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14394,4348,1336,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14395,1930,1378,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14396,2635,1381,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14397,2500,1384,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14398,2851,1387,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14399,3661,1387,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14400,1192,1513,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14401,3949,1522,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14402,2179,1543,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14403,1153,1570,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14404,4480,1579,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14405,3301,1588,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14406,1996,1624,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14407,2428,1624,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14408,2839,1627,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14409,4063,1717,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14410,2983,1750,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14411,2320,1801,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14412,3448,1867,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14413,3358,1930,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14414,4618,1930,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14416,2083,346,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14418,3802,562,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14419,5164,571,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14420,1264,634,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14421,1822,643,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14422,2815,676,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14423,3100,679,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14424,4441,688,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14425,1096,706,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14426,2077,715,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14427,3439,742,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14428,1327,766,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14429,3940,811,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14430,1009,820,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14431,5149,823,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14432,946,826,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14433,1645,844,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14434,1783,853,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14435,3634,880,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14436,796,937,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14437,1708,967,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14438,4678,1000,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14439,3757,1009,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14440,4597,1012,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14441,1186,1027,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14442,1885,1051,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14443,3001,1063,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14444,1147,1075,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14445,1519,1111,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14446,1942,1126,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14447,4822,1144,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14448,3889,1147,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14449,2038,1186,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14450,4621,1231,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14451,919,1258,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14452,5167,1375,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14453,1087,1447,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14454,2110,1447,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14455,4273,1468,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14456,5242,1492,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14457,3055,1510,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14458,4447,1528,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14459,5047,1561,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14460,3859,1579,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14461,3889,1630,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14462,2026,1675,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14464,3571,1819,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14466,4966,1909,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14467,4924,1975,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14474,3988,373,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14475,1507,454,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14476,1795,457,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14477,3922,499,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14478,4948,565,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14479,2710,592,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14480,3907,625,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14481,2380,640,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14482,2464,664,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14483,3166,664,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14485,1783,706,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14486,2848,802,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14487,2284,862,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14488,5266,865,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14489,3445,946,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14490,3940,964,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14491,2773,997,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14492,4201,1000,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14493,4288,1075,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14494,4495,1078,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14495,2320,1192,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14496,952,1198,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14497,1366,1219,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14498,2428,1249,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14499,5218,1255,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14501,2107,1330,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14502,1576,1333,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14503,3055,1390,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14504,1714,1465,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14505,4786,1480,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14506,4318,1555,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14507,3157,1582,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14508,2278,1627,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14509,5008,1627,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14510,4312,1648,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14511,1846,1726,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14512,3043,1759,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14513,4063,1825,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14514,4753,1927,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14517,3169,424,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14518,3874,436,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14519,5029,448,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14520,3157,490,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14521,3835,496,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14522,1117,502,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14523,5263,628,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14524,2641,733,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14525,907,751,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14526,2248,775,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14527,4861,820,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14528,1996,850,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14529,2635,856,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14531,4681,883,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14532,2176,919,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14533,4798,931,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14534,3583,940,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14535,4507,946,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14536,5008,946,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14537,4000,949,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14538,4582,952,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14539,1585,961,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14540,2914,991,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14541,4390,1018,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14542,3067,1033,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14543,5164,1129,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14544,2851,1135,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14546,4918,1195,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14547,2116,1204,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14548,3739,1249,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14549,4555,1327,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14550,5077,1378,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14551,3247,1390,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14552,4603,1393,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14553,4099,1396,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14554,1465,1402,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14555,1684,1411,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14556,5200,1450,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14557,2635,1504,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14558,3601,1507,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14559,4102,1522,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14560,4210,1549,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14561,3010,1573,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14562,4945,1621,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14563,2776,1630,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14564,3454,1642,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14565,3289,1705,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14566,2209,1735,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14567,3640,1819,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14569,3352,367,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14570,4777,385,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14571,4705,394,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14572,4102,436,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14573,1585,460,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14574,3355,490,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14575,2539,538,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14576,4177,553,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14577,4807,556,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14578,3031,559,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14579,2425,598,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14580,4909,613,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14581,3766,619,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14582,1969,652,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14583,4021,691,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14584,3127,739,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14585,3760,745,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14586,1681,781,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14587,1612,784,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14588,1822,784,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14589,4300,817,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14590,1864,847,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14591,2842,862,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14592,3244,937,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14593,1228,973,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14594,2218,997,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14595,835,1003,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14596,910,1009,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14597,1609,1033,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14598,1981,1060,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14599,3904,1078,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14600,3268,1135,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14601,3472,1135,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14602,3751,1150,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14603,1255,1162,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14604,2809,1198,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14605,4558,1198,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14606,1159,1207,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14607,3277,1258,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14608,3925,1309,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14609,946,1315,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14610,2242,1315,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14611,1609,1420,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14612,1963,1441,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14613,4342,1468,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14614,4732,1516,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14615,2479,1534,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14616,3922,1579,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14617,1297,1585,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14618,1573,1600,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14619,4453,1636,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14620,2527,1687,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14621,3376,1699,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14622,4240,1750,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14623,3739,1762,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14624,4447,1879,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14631,1897,406,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14632,4525,436,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14633,3427,496,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14634,5002,532,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14635,4525,565,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14636,3877,679,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14637,5233,685,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14638,1435,697,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14639,1885,790,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14640,2707,853,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14641,2461,916,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14642,2737,943,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14643,4441,943,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14644,4078,946,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14645,3406,985,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14646,3196,994,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14647,3895,1009,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14648,1120,1027,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14649,2875,1060,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14650,1063,1135,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14651,3952,1141,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14652,4525,1141,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14653,3088,1186,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14654,1690,1312,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14655,2467,1312,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14656,3427,1330,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14657,1366,1333,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14658,4315,1381,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14659,3883,1402,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14660,4447,1405,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14661,4135,1468,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14662,3697,1576,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14663,4000,1582,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14664,2596,1687,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14665,3325,1765,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14667,3358,2056,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14672,4057,505,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14673,1186,508,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14674,2746,541,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14677,2680,658,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14678,2614,679,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14679,4375,682,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14680,2143,730,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14681,3211,739,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14682,4267,748,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14683,4051,757,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14684,2911,814,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14685,3766,883,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14686,1618,907,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14687,4714,946,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14688,4345,1054,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14689,2467,1066,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14690,4774,1075,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14691,3334,1114,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14692,1180,1141,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14693,1330,1171,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14694,3790,1195,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14695,4105,1264,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14696,4456,1273,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14697,4666,1273,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14698,1471,1291,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14699,2809,1300,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14700,4135,1324,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14701,1222,1336,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14702,1198,1387,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14703,3466,1387,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14704,2032,1420,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14705,2317,1438,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14707,3637,1447,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14708,2539,1450,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14709,3496,1456,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14710,1156,1465,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14711,3532,1519,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14712,4582,1519,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14713,4558,1576,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14714,2491,1624,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14715,2980,1639,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14716,4033,1642,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14717,1681,1666,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14718,2179,1675,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14719,4408,1690,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14720,2668,1693,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14721,4693,1813,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14722,3085,1819,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14723,4792,1867,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14724,3568,1930,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14726,3388,2116,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14730,1975,340,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14731,3280,376,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14732,1693,397,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14733,2716,484,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14734,4558,505,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14735,4780,505,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14736,3424,616,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14737,1747,643,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14738,3940,682,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14739,1501,715,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14740,1261,763,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14741,2392,787,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14742,2989,859,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14743,4972,889,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14744,2986,991,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14745,1225,1099,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14746,1576,1105,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14747,3157,1180,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14748,1441,1225,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14749,4315,1264,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14750,3535,1267,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14751,4627,1324,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14752,5017,1495,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14753,3403,1525,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14754,1747,1555,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14755,4975,1564,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14756,1918,1609,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14757,2104,1675,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14758,1783,1726,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14759,4168,1759,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14762,2857,361,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14763,3742,430,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14764,1366,460,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14765,3496,487,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14766,3568,490,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14767,4345,505,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14768,2983,514,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14769,2035,649,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14770,4540,760,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14771,979,763,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14772,3034,796,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14773,3238,802,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14774,4222,820,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14775,1438,835,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14776,1879,907,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14777,1333,910,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14778,2320,934,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14779,4861,961,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14780,1645,976,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14781,2140,982,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14782,2191,1060,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14783,2773,1255,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14784,1816,1441,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14785,1576,1474,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14786,1519,1489,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14787,1999,1492,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14788,1264,1531,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14790,1858,1612,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14792,2131,1621,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14793,5077,1624,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14794,3181,1639,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14795,3115,1645,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14796,2875,1687,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14797,3697,1696,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14798,5077,1741,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14799,2482,1753,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14800,2098,1798,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14801,4924,1852,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14804,1294,328,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14805,1360,340,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14807,3919,379,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14808,1615,400,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14809,1420,445,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14810,2287,472,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14811,2431,475,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14812,2470,535,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14813,3631,610,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14814,2752,649,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14815,3628,760,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14816,3583,799,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14817,3085,817,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14818,910,880,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14819,4906,883,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14820,1507,970,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14821,2716,994,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14822,4465,1009,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14823,5350,1060,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14824,4708,1075,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14825,2068,1252,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14826,4885,1261,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14827,4021,1276,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14828,1084,1330,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14829,3103,1336,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14830,3019,1459,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14831,3922,1459,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14832,3439,1474,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14833,3832,1510,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14834,1819,1555,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14835,2392,1555,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14836,4756,1576,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14837,3670,1636,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14838,1750,1672,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14839,2815,1690,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14840,4612,1693,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14841,4684,1693,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14842,3010,1702,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14843,2344,1744,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14844,4516,1750,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14845,4645,1753,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14846,1813,1786,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14847,2545,1804,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14848,3391,1990,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14850,2608,412,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14851,3451,436,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14852,4921,505,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14853,3211,613,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14854,3343,613,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14855,4351,613,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14856,1477,640,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14857,3460,670,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14858,3376,673,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14859,4228,676,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14860,5095,682,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14861,1618,700,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14862,2713,718,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14863,2560,730,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14864,4507,814,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14865,5218,814,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14866,4369,817,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14867,1711,850,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14868,2776,856,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14869,2077,868,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14870,1285,967,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14871,3541,1009,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14872,3964,1015,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14873,3439,1066,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14874,3130,1120,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14875,2947,1180,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14876,1642,1246,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14877,2497,1255,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14878,4183,1255,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14879,1816,1312,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14880,2605,1312,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14881,3784,1342,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14882,1771,1363,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14883,2947,1444,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14884,2158,1483,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14885,2290,1516,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14886,2038,1558,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14887,2242,1564,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14888,1021,1570,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14889,3367,1582,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14890,2074,1609,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14891,3775,1702,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14892,2914,1747,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14893,4387,1756,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14894,4093,1768,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14895,2659,1807,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14896,2770,1870,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14897,2596,1900,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14898,2524,1924,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14899,3493,1933,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14900,1543,628,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14901,5056,631,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14902,3733,679,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14903,1363,694,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14904,5155,694,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14905,1930,727,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14906,1033,883,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14907,1345,970,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14908,4036,1000,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14909,2932,1084,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14910,3061,1114,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14911,1789,1117,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14912,2503,1120,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14913,4030,1162,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14914,1051,1267,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14915,5200,1312,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14916,2548,1324,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14917,4228,1402,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14918,5272,1429,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14919,3772,1441,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14920,3223,1450,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14921,3709,1459,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14922,3253,1519,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14923,2104,1555,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14924,4069,1582,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14925,5011,1741,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14926,4315,1747,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14927,4930,1747,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14928,3667,1759,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14929,3850,1816,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14930,3778,1819,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14931,4132,1822,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14932,2449,1921,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14933,2800,1921,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14934,3985,1927,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14937,2566,457,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14938,2647,475,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14939,4132,493,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14940,2122,514,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14941,3598,550,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14942,3526,553,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14943,4669,562,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14944,1054,628,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14945,1222,700,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14946,4744,766,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14948,2755,796,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14949,1969,799,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14950,1354,817,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14952,868,934,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14953,4876,1018,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14954,2293,1129,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14955,3298,1198,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14956,3889,1261,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14957,3469,1273,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14958,2401,1318,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14959,5041,1327,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14960,2773,1381,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14961,5014,1384,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14962,1273,1402,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14963,1885,1432,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14964,2392,1444,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14965,1219,1447,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14966,2071,1495,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14967,4657,1516,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14968,1405,1528,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14969,1327,1531,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14970,1888,1552,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14971,5260,1555,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14972,3568,1561,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14973,2746,1576,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14974,2197,1612,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14975,1537,1771,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14977,4486,1936,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14978,4057,1939,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14979,2758,1981,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14981,3433,2056,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14982,1723,340,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14983,4135,382,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14984,4921,391,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14985,3769,493,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14986,3673,556,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14987,1642,571,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14988,2854,604,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14989,3982,622,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14990,4693,625,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14991,2884,664,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14992,5257,745,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14993,2326,796,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14994,2974,802,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14995,880,808,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14996,3274,874,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14997,5119,874,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14998,1675,919,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14999,1018,961,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15000,3580,1060,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15001,1360,1111,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15002,2638,1123,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15003,2422,1132,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15004,2983,1261,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15005,1267,1279,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15006,4783,1315,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15007,2215,1366,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15008,1129,1393,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15009,3742,1393,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15010,4387,1408,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15011,3097,1453,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15012,2980,1510,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15013,3682,1513,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15014,2947,1570,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15015,3424,1579,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15016,3808,1642,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15017,2950,1690,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15018,4549,1705,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15019,1675,1783,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15020,2464,1810,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15021,2419,1861,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15022,4651,1870,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15023,3529,1873,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15024,3421,1936,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15025,3460,1993,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15026,3778,373,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15027,3109,424,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15028,4453,442,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15029,1015,565,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15030,4102,868,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15031,2944,931,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15032,2359,1006,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15033,1825,1051,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15034,4855,1069,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15035,1825,1189,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15036,4942,1258,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15037,3034,1291,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15038,1753,1426,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15039,2212,1432,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15040,3184,1504,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15041,4027,1516,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15042,2539,1564,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15043,3640,1564,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15044,4270,1597,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15045,1786,1612,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15046,3613,1624,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15047,1471,1657,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15048,2776,1744,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15049,3709,1825,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15050,2278,1864,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15051,3310,1876,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15052,1864,346,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15053,2371,349,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15054,4276,373,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15055,1462,397,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15056,2011,463,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15057,2914,478,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15058,4204,487,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15059,5137,505,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15060,1900,523,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15061,4594,559,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15062,2296,583,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15063,1123,628,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15064,5293,691,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15065,3505,721,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15066,3562,733,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15067,3346,736,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15068,1399,751,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15069,1537,769,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15070,1750,772,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15071,1507,847,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15072,4477,883,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15073,2713,1102,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15074,3190,1126,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15075,2974,1129,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15076,4123,1141,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15078,2689,1210,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15079,2635,1240,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15080,4735,1261,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15081,1189,1276,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15082,4165,1402,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15083,1117,1513,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15084,1432,1588,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15085,2356,1633,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15086,1645,1720,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15087,3532,1777,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15088,2776,1813,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15089,3418,1819,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15092,2293,352,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15093,3136,376,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15094,1327,397,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15095,2461,406,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15096,2893,415,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15097,1936,469,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15098,5050,766,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15099,3370,802,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15100,2320,1063,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15101,2869,1222,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15102,4534,1258,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15103,3334,1270,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15104,1330,1279,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15105,4852,1327,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15106,3226,1684,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15107,4510,1870,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15110,2506,361,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15111,1189,391,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15112,2752,415,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15113,4672,442,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15114,4594,445,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15116,4297,694,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15117,4402,751,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15118,1114,769,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15119,5221,925,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15120,5356,928,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15121,4927,943,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15122,4876,1120,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15123,4282,1204,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15124,4066,1342,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15125,3598,1381,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15126,2140,1396,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15127,1015,1423,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15128,2266,1462,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15129,1708,1603,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15130,4099,1654,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15131,3145,1936,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15132,3322,1987,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15133,4444,1987,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15134,3259,1999,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15137,1387,397,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15138,5140,397,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15139,2116,409,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15140,2824,415,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15141,3814,427,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15142,3940,574,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15143,1615,643,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15144,2992,742,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15147,4855,1192,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15149,3181,1387,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15150,3397,1387,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15151,4018,1387,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15152,3157,1456,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15153,5191,1564,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15154,3046,1621,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15155,2572,1738,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15156,5080,1852,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15157,4717,1870,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15158,2794,2044,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15160,4426,385,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15161,2257,412,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15162,3952,439,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15163,1978,532,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15164,3271,616,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15165,4423,1456,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15166,982,1504,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15167,2851,1744,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15170,2077,451,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15171,3247,673,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15172,3025,682,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15173,4948,688,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15174,4837,742,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15175,5122,754,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15176,2605,928,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15177,2800,937,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15178,2737,1321,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15180,3496,1687,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15182,3190,1753,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15183,4888,1810,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15187,4309,430,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15188,3529,436,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15189,4966,451,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15190,3379,547,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15191,3445,559,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15193,2431,715,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15194,3904,733,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15195,4081,805,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15196,3850,1066,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15197,2176,1315,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15198,1063,1390,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15199,4174,1507,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15200,4726,1633,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15201,2707,1858,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15203,2668,1927,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15204,3952,1993,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15205,3868,2110,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15206,4810,433,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15207,1087,445,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15208,2260,541,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15209,3694,877,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15210,3169,916,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15211,4378,958,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15212,2908,1138,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15213,3673,1144,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15214,3847,1204,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15215,1831,1246,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15216,2422,1384,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15217,934,1561,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15218,1363,1579,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15220,4483,1702,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15221,2251,1798,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15222,4312,1876,16,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15225,2791,340,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15226,1258,388,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15227,3052,418,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15228,3790,682,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15229,808,1051,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15230,4975,1201,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15231,1774,1255,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15232,5344,1306,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15233,976,1381,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15234,2278,1399,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15235,2458,1684,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15236,2557,1858,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15237,4156,1876,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15238,4306,1981,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15239,3517,2002,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15241,4201,367,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15242,2848,481,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15243,4804,682,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15244,1147,970,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15245,2635,1000,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15246,880,1195,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15247,3949,1258,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15248,3592,1768,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15249,1222,451,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15250,2299,994,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15251,4144,1006,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15253,2770,1522,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15254,1330,1630,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15255,3388,1756,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15256,3385,1876,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15257,3073,1936,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15259,3496,2062,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15260,4627,385,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15261,2260,667,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15262,871,685,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15263,2935,754,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15264,3160,1321,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15265,5311,1618,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15267,2920,328,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15268,3844,376,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15269,4168,433,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15270,4090,559,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15272,5371,790,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15273,5308,1375,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15274,2083,1387,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15275,2413,1744,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15277,1216,334,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15278,3565,370,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15279,976,631,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15280,2188,661,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15281,3715,1195,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15282,3052,1237,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15283,4591,1279,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15286,2839,1987,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15287,4375,1996,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15290,1501,340,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15291,1564,343,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15292,3007,352,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15293,3640,370,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15294,3124,1393,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15295,2632,1858,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15296,3529,2113,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15297,3556,2173,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15300,5206,511,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15301,1555,700,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15302,796,817,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15303,4192,1312,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15305,1438,346,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15306,1921,355,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15307,4564,391,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15308,2989,622,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15309,1603,1663,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15310,1582,1723,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15311,4267,1936,16,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15312,4864,388,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15314,3946,2110,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15316,3139,601,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15318,3250,1633,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15319,5173,451,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15320,2386,1795,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15321,1792,322,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15322,1144,331,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15325,5260,1669,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15326,3289,1933,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15327,4495,388,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15328,4999,394,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15329,3250,1885,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15330,5269,1306,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15331,3640,1693,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15332,5413,1186,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15334,1162,448,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15335,1042,508,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15336,796,667,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15337,5338,871,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15338,3139,1795,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15341,1156,1693,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15343,1834,412,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15344,1609,1780,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15345,898,616,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15346,5302,811,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15352,5407,997,17,2,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15353,1627,1303,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15354,3010,1342,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15355,4264,1528,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15357,2956,562,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15359,2722,1795,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15361,2863,1927,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15363,934,553,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15364,3040,979,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15365,3613,1255,17,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15366,3670,1867,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15369,5029,580,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15373,3172,1072,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15375,2029,316,15,3,honey,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +19833,5068,1582,17,2,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20318,5077,1204,15,2,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20608,4540,2068,17,2,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20813,1984,505,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20872,2458,685,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20881,3805,757,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20887,2677,460,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20899,3439,763,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20915,1102,739,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20938,886,499,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20939,3940,514,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20948,3952,742,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20959,3871,634,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20968,4417,577,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20969,3409,700,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20976,3697,574,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20977,3991,574,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20980,853,784,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20988,4201,703,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20989,2707,742,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20990,4342,1075,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20995,3631,697,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20996,4129,703,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20997,4210,826,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21013,1906,619,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21014,2632,748,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21015,5125,769,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21016,4306,778,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21017,4948,823,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21018,4411,1084,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21024,4162,757,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21025,4417,958,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21026,4993,1462,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21033,1591,559,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21034,3619,559,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21035,4642,700,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21036,4837,757,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21037,2233,796,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21038,2269,889,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21043,3766,571,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21044,2635,622,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21045,1396,739,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21046,2422,757,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21047,4942,961,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21055,4717,580,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21056,3667,634,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21057,1498,679,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21062,2680,559,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21063,2959,571,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21064,4207,586,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21065,2131,610,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21066,1537,613,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21067,1141,676,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21068,1774,742,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21069,2383,808,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21070,4795,1087,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21080,922,553,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21081,4378,754,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21082,4483,835,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21083,4279,904,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21091,1357,559,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21092,952,616,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21093,1387,616,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21094,4309,628,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21095,2365,685,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21096,3649,757,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21097,4933,1705,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21107,2392,553,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21108,3178,571,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21109,4057,583,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21111,2455,808,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21112,4549,823,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21113,4378,898,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21114,562,1177,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21115,4708,1333,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21116,5002,1582,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21119,2068,520,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21120,3844,562,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21121,3904,571,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21122,4279,574,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21123,2338,619,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21124,1423,682,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21125,2086,682,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21126,1036,739,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21127,4240,766,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21128,958,862,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21132,2458,559,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21133,4642,574,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21134,1321,613,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21135,2560,631,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21136,2167,679,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21137,1069,682,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21138,1735,682,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21139,1834,748,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21140,2482,748,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21141,4420,826,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21142,4585,883,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21143,4702,1453,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21144,4924,1549,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21148,2266,604,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21149,2923,622,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21150,2854,625,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21151,3382,625,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21152,4168,643,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21153,919,676,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21154,3340,682,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21155,3847,706,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21156,3295,754,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21157,5116,877,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21166,3247,586,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21167,1822,622,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21168,1984,625,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21169,3703,691,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21170,2086,817,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21171,847,922,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21172,4927,1462,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21181,1213,559,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21182,1288,559,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21183,2701,610,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21184,1759,619,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21185,3160,631,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21186,4012,664,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21187,742,733,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21188,2272,748,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21189,4501,760,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21190,4975,763,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21196,3142,517,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21198,2596,679,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21199,1873,688,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21200,3769,688,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21201,4285,718,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21202,4591,757,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21203,2530,808,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21204,1795,811,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21205,4810,826,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21206,4273,829,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21207,4720,1090,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21208,853,1180,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21210,1555,499,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21211,3439,511,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21212,4447,523,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21213,1501,553,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21214,1618,607,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21215,1471,619,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21216,3733,637,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21217,4096,649,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21218,3040,679,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21219,3256,694,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21220,4561,697,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21221,2194,748,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21222,916,931,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21223,5086,940,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21224,4732,1027,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21225,4201,1084,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21226,5044,1153,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21228,4966,1642,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21234,4753,523,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21235,1252,610,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21236,3514,637,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21237,4243,637,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21238,3802,640,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21239,1000,667,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21240,2239,670,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21241,1288,682,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21242,2569,754,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21243,4441,757,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21244,3520,763,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21245,5011,949,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21246,4768,1462,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21252,2851,514,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21253,3550,562,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21254,2782,622,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21255,3289,631,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21256,2410,643,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21257,3865,763,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21258,3382,769,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21259,2158,823,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21260,5194,889,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21261,4540,946,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21262,4273,1078,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21263,637,1177,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21264,4669,1378,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21265,4801,1648,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21274,1951,556,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21275,2521,565,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21276,1726,574,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21277,4783,577,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21278,1576,667,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21279,1453,751,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21280,4021,763,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21282,4858,1477,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21286,2746,562,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21287,748,607,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21288,1174,616,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21289,2308,685,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21290,1366,688,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21291,3913,703,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21292,1312,736,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21293,700,814,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21294,4513,895,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21295,4450,1021,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21301,2200,586,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21302,1903,745,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21303,1036,871,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21304,4450,889,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21305,4837,1009,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21306,4312,1024,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21312,2017,688,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21313,2128,724,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21314,628,910,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21315,4342,952,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21316,4990,1060,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21317,4561,1090,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21318,748,1114,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21319,4624,1327,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21322,4849,1690,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21326,3067,514,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21327,3484,562,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21328,2485,625,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21329,3007,628,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21330,4522,637,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21331,3178,688,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21332,4861,688,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21333,5080,694,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21334,292,727,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21335,4681,754,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21336,637,802,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21337,2317,814,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21338,1288,817,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21339,2338,877,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21340,4714,901,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21341,4834,910,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21342,811,988,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21343,5050,1003,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21344,4582,1030,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21345,4654,1273,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21346,4891,1420,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21351,2668,685,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21352,811,742,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21354,562,799,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21355,1867,823,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21356,4648,880,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21357,4273,964,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21358,4834,1588,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21363,2143,520,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21364,2311,565,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21365,2881,568,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21366,3118,574,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21367,2065,607,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21368,1099,616,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21369,4387,631,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21370,844,667,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21371,1657,670,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21372,3469,703,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21373,2050,745,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21374,2017,811,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21375,886,853,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21376,4387,1018,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21377,4978,1234,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21378,4510,1273,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21379,4930,1342,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21386,3361,532,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21387,3310,565,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21388,4144,580,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21389,451,613,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21390,4348,697,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21391,4411,703,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21392,2362,742,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21393,2191,877,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21394,4879,946,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21400,1834,505,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21401,4243,517,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21402,4360,577,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21403,3067,625,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21404,4756,634,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21405,1210,679,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21406,4066,700,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21407,910,748,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21408,4903,775,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21409,778,799,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21410,1729,817,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21411,3394,823,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21412,664,868,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21414,4480,952,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21415,5083,1087,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21416,4642,1186,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21417,4729,1240,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21418,4819,1270,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21419,4897,1651,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21424,1102,499,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21425,1690,502,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21426,4171,520,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21427,2017,553,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21428,1879,565,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21429,664,613,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21430,4675,637,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21431,2893,691,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21432,1690,733,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21433,586,742,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21434,997,808,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21435,4624,814,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21436,4345,844,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21437,4849,1351,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21446,2641,505,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21447,781,673,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21448,703,691,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21449,4750,694,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21450,1240,745,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21451,5071,835,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21452,4912,871,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21453,4636,961,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21460,2029,460,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21462,3211,511,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21463,3520,514,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21464,4024,523,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21465,856,559,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21466,883,610,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21467,3334,817,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21469,622,1045,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21470,607,1123,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21471,445,1243,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21478,2236,529,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21479,712,553,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21480,2962,691,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21481,5155,832,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21482,5008,835,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21484,4777,1717,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21488,3883,520,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21489,4093,520,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21490,1642,538,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21491,2605,556,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21492,1798,562,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21493,817,613,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21494,4051,832,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21495,4492,1063,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21500,2167,454,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21501,1384,511,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21502,988,568,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21503,4480,691,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21504,4741,958,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21505,4672,1129,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21506,4528,1147,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21507,4909,1270,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21513,1144,547,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21514,1063,556,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21515,4594,628,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21516,325,673,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21517,1075,805,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21519,4624,1084,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21520,442,1117,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21521,4972,1522,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21522,4843,1531,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21525,2086,436,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21528,1681,619,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21529,406,664,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21530,673,739,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21531,5059,778,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21532,3928,796,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21533,1432,817,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21534,1114,856,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21535,724,871,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21540,3406,454,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21541,2782,508,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21542,1438,553,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21543,640,673,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21544,5005,703,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21545,4765,760,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21546,4777,901,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21547,667,979,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21548,520,1111,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21549,331,1177,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21550,4786,1207,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21551,460,1360,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21559,3247,457,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21560,3349,469,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21561,3025,568,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21562,3439,631,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21563,3931,643,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21564,979,754,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21565,604,850,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21566,808,871,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21567,1135,919,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21568,5107,1012,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21574,2881,463,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21575,1495,469,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21576,958,499,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21577,1321,511,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21578,787,553,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21579,4483,565,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21580,4822,637,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21581,1810,697,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21582,1147,808,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21583,5155,970,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21584,4678,1015,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21585,793,1048,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21586,4585,1153,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21587,4735,1405,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21591,2452,457,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21592,3181,460,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21593,2398,490,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21594,1246,505,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21595,3727,520,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21596,1027,616,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21597,4447,640,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21598,1177,730,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21599,781,931,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21600,607,970,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21607,2491,511,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21608,2917,511,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21609,559,670,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21610,442,733,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21611,685,1042,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21614,1693,418,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21615,1039,496,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21616,1174,499,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21617,3823,502,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21618,3979,829,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21619,325,1057,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21621,4600,520,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21622,4894,520,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21623,4540,535,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21624,643,538,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21625,4900,619,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21626,418,796,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21627,397,985,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21628,745,1003,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21629,289,1240,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21631,4939,580,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21632,676,1108,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21633,370,1126,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21634,418,1183,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21635,2713,505,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21636,4318,517,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21637,2815,571,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21638,1948,676,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21639,4711,802,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21640,505,808,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21641,496,868,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21642,694,922,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21643,4807,958,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21644,4966,1135,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21646,2818,448,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21647,2566,508,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21648,3415,568,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21649,493,925,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21651,4999,571,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21652,3232,640,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21653,4984,640,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21654,931,811,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21659,1063,445,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21660,1612,484,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21661,3292,496,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21662,1900,505,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21663,1756,508,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21664,2341,508,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21665,529,598,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21666,4876,823,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21667,541,964,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21668,4813,1417,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21671,3907,469,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21672,751,496,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21673,4387,517,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21674,508,715,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21677,502,1165,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21678,4927,1210,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21682,3991,466,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21683,2281,487,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21684,4933,706,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21685,559,901,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21686,304,994,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21687,4522,1009,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21692,3655,517,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21695,1798,451,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21696,454,973,16,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21697,220,997,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21698,391,1354,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21704,4804,709,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21705,397,913,17,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21706,4939,1087,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21707,4963,1294,15,3,honey,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +28179,3028,232,15,2,honey,DSC_0840.JPG +2839,5338,448,17,2,honey,DSC_0844.JPG +28827,352,148,17,3,honey,DSC_0840.JPG +28914,3094,232,15,2,honey,DSC_0840.JPG +29004,1888,226,15,3,honey,DSC_0840.JPG +29147,5263,196,15,2,honey,DSC_0840.JPG +29264,1030,94,15,3,honey,DSC_0840.JPG +29266,1984,166,15,3,honey,DSC_0840.JPG +29592,5026,118,17,3,honey,DSC_0840.JPG +29816,4957,118,17,3,honey,DSC_0840.JPG +29973,5059,265,17,3,honey,DSC_0840.JPG +30117,4687,82,17,3,honey,DSC_0840.JPG +30147,4774,160,15,3,honey,DSC_0840.JPG +30200,4447,94,15,3,honey,DSC_0840.JPG +30233,5125,319,17,3,honey,DSC_0840.JPG +30246,5014,361,17,3,honey,DSC_0840.JPG +30255,1213,40,17,3,honey,DSC_0840.JPG +30256,5293,247,17,3,honey,DSC_0840.JPG +30268,5212,244,15,3,honey,DSC_0840.JPG +30276,4999,37,17,3,honey,DSC_0840.JPG +30277,181,70,15,3,honey,DSC_0840.JPG +30278,253,82,15,3,honey,DSC_0840.JPG +30294,4789,100,15,3,honey,DSC_0840.JPG +30295,4807,238,15,3,honey,DSC_0840.JPG +30296,5149,259,17,3,honey,DSC_0840.JPG +30306,136,130,15,3,honey,DSC_0840.JPG +30316,4867,64,17,3,honey,DSC_0840.JPG +30317,5104,115,17,3,honey,DSC_0840.JPG +30328,1006,31,15,3,honey,DSC_0840.JPG +30329,5326,136,17,3,honey,DSC_0840.JPG +30335,5077,163,15,3,honey,DSC_0840.JPG +30341,5167,118,17,3,honey,DSC_0840.JPG +30342,5158,196,17,3,honey,DSC_0840.JPG +30352,5002,301,15,3,honey,DSC_0840.JPG +30360,4630,76,15,3,honey,DSC_0840.JPG +30371,199,10,15,3,honey,DSC_0840.JPG +30372,4636,163,17,3,honey,DSC_0840.JPG +30375,4852,118,15,3,honey,DSC_0840.JPG +30387,1396,97,15,3,honey,DSC_0840.JPG +30390,4666,10,15,3,honey,DSC_0840.JPG +30392,5044,208,15,3,honey,DSC_0840.JPG +30394,4924,67,15,3,honey,DSC_0840.JPG +30397,715,28,15,3,honey,DSC_0840.JPG +30398,5365,1006,15,2,honey,DSC_0840.JPG +30400,349,34,15,3,honey,DSC_0840.JPG +30412,5101,217,17,3,honey,DSC_0840.JPG +30413,5065,325,17,3,honey,DSC_0840.JPG +30418,4816,34,15,3,honey,DSC_0840.JPG +30419,4717,130,17,3,honey,DSC_0840.JPG +30420,4102,118,15,3,honey,DSC_0840.JPG +30421,5350,1117,17,2,honey,DSC_0840.JPG +30424,4867,7,17,3,honey,DSC_0840.JPG +30432,850,25,15,3,honey,DSC_0840.JPG +30433,4003,124,15,3,honey,DSC_0840.JPG +30437,5377,2008,15,2,honey,DSC_0840.JPG +30450,781,31,15,3,honey,DSC_0840.JPG +30458,4924,7,17,3,honey,DSC_0840.JPG +30459,4018,31,17,3,honey,DSC_0840.JPG +3062,151,433,17,3,honey,DSC_0837.JPG +33963,748,112,16,3,honey,DSC_0841.JPG +34112,148,409,17,3,honey,DSC_0841.JPG +34156,790,175,16,3,honey,DSC_0841.JPG +34195,5119,139,17,3,honey,DSC_0841.JPG +34289,559,166,15,3,honey,DSC_0841.JPG +34531,5227,85,15,3,honey,DSC_0841.JPG +34533,82,646,17,3,honey,DSC_0841.JPG +34797,5395,1498,16,3,honey,DSC_0841.JPG +34917,313,109,15,3,honey,DSC_0841.JPG +34947,5389,76,17,3,honey,DSC_0841.JPG +35086,5188,271,15,2,honey,DSC_0841.JPG +35090,325,730,15,3,honey,DSC_0841.JPG +35256,61,901,17,3,honey,DSC_0841.JPG +35697,115,1306,16,3,honey,DSC_0841.JPG +35750,247,103,17,3,honey,DSC_0841.JPG +35884,5383,1630,16,3,honey,DSC_0841.JPG +35905,274,52,16,3,honey,DSC_0841.JPG +36009,202,1051,15,2,honey,DSC_0841.JPG +36050,727,172,15,3,honey,DSC_0841.JPG +36105,259,178,15,3,honey,DSC_0841.JPG +36127,499,157,15,3,honey,DSC_0841.JPG +36138,58,982,17,3,honey,DSC_0841.JPG +36142,121,1174,17,3,honey,DSC_0841.JPG +36163,415,166,15,3,honey,DSC_0841.JPG +36214,55,1117,15,3,honey,DSC_0841.JPG +36267,679,103,15,3,honey,DSC_0841.JPG +36269,58,1183,17,3,honey,DSC_0841.JPG +36297,58,1297,15,3,honey,DSC_0841.JPG +36333,1288,34,17,3,honey,DSC_0841.JPG +36354,652,289,17,3,honey,DSC_0841.JPG +36357,109,961,17,3,honey,DSC_0841.JPG +36367,121,43,15,3,honey,DSC_0841.JPG +36377,136,1018,17,3,honey,DSC_0841.JPG +36405,370,229,15,3,honey,DSC_0841.JPG +36411,679,364,17,3,honey,DSC_0841.JPG +36423,499,55,15,3,honey,DSC_0841.JPG +36424,898,106,17,3,honey,DSC_0841.JPG +36425,37,127,15,3,honey,DSC_0841.JPG +36445,460,100,15,3,honey,DSC_0841.JPG +36447,52,1051,15,3,honey,DSC_0841.JPG +36448,268,1081,17,3,honey,DSC_0841.JPG +36456,73,1237,15,3,honey,DSC_0841.JPG +36462,166,1135,15,3,honey,DSC_0841.JPG +36464,55,1441,15,3,honey,DSC_0841.JPG +36468,100,106,15,3,honey,DSC_0841.JPG +36474,640,40,15,3,honey,DSC_0841.JPG +36477,421,295,17,3,honey,DSC_0841.JPG +36512,37,598,15,3,honey,DSC_0841.JPG +38939,1255,67,17,2,honey,DSC_0838.JPG +4648,589,196,16,3,honey,DSC_0837.JPG +4758,913,766,15,3,honey,DSC_0837.JPG +4842,5008,178,17,3,honey,DSC_0837.JPG +5251,3181,889,17,2,honey,DSC_0837.JPG +5260,2197,142,16,2,honey,DSC_0837.JPG +5307,1852,403,15,3,honey,DSC_0837.JPG +5327,451,1300,17,2,honey,DSC_0837.JPG +5339,5305,238,15,3,honey,DSC_0837.JPG +5369,4,559,15,3,honey,DSC_0837.JPG +5405,4363,865,17,3,honey,DSC_0837.JPG +5419,3700,163,15,3,honey,DSC_0837.JPG +5433,229,316,15,3,honey,DSC_0837.JPG +5458,4060,172,15,3,honey,DSC_0837.JPG +5474,457,67,17,3,honey,DSC_0837.JPG +5531,4900,412,15,3,honey,DSC_0837.JPG +5547,559,628,17,3,honey,DSC_0837.JPG +5554,2134,406,15,3,honey,DSC_0837.JPG +5555,3985,427,15,3,honey,DSC_0837.JPG +5561,1747,337,15,3,honey,DSC_0837.JPG +5579,5317,367,15,3,honey,DSC_0837.JPG +5588,154,322,15,3,honey,DSC_0837.JPG +5599,4237,238,15,3,honey,DSC_0837.JPG +5600,5380,352,15,3,honey,DSC_0837.JPG +5606,4090,481,15,3,honey,DSC_0837.JPG +5612,5407,913,15,3,honey,DSC_0837.JPG +5618,415,136,15,3,honey,DSC_0837.JPG +5619,1174,583,17,3,honey,DSC_0837.JPG +5628,370,433,15,3,honey,DSC_0837.JPG +5629,5038,1036,17,3,honey,DSC_0837.JPG +5636,301,562,15,3,honey,DSC_0837.JPG +5650,223,82,15,3,honey,DSC_0837.JPG +5651,1990,397,15,3,honey,DSC_0837.JPG +5655,4486,295,17,3,honey,DSC_0837.JPG +5656,4195,304,17,3,honey,DSC_0837.JPG +5657,4633,541,17,3,honey,DSC_0837.JPG +5661,4675,115,15,3,honey,DSC_0837.JPG +5662,1270,910,17,3,honey,DSC_0837.JPG +5669,4585,358,17,3,honey,DSC_0837.JPG +5670,88,688,17,3,honey,DSC_0837.JPG +5673,4330,190,17,3,honey,DSC_0837.JPG +5674,733,316,15,3,honey,DSC_0837.JPG +5675,556,508,15,3,honey,DSC_0837.JPG +5680,4420,415,15,3,honey,DSC_0837.JPG +5681,4759,553,17,3,honey,DSC_0837.JPG +5683,4564,169,17,3,honey,DSC_0837.JPG +5685,5299,610,15,3,honey,DSC_0837.JPG +5686,5089,64,17,3,honey,DSC_0837.JPG +5687,4453,115,15,3,honey,DSC_0837.JPG +5688,4342,424,17,3,honey,DSC_0837.JPG +5689,4414,541,17,3,honey,DSC_0837.JPG +5690,4267,544,17,3,honey,DSC_0837.JPG +5691,271,865,17,3,honey,DSC_0837.JPG +5700,5416,670,17,3,honey,DSC_0837.JPG +5701,4723,745,17,3,honey,DSC_0837.JPG +5704,4213,49,17,3,honey,DSC_0837.JPG +5705,595,316,15,3,honey,DSC_0837.JPG +5706,688,382,15,3,honey,DSC_0837.JPG +5707,4573,421,17,3,honey,DSC_0837.JPG +5708,874,445,15,3,honey,DSC_0837.JPG +5709,1060,646,17,3,honey,DSC_0837.JPG +5713,4930,601,17,3,honey,DSC_0837.JPG +5717,4717,172,17,3,honey,DSC_0837.JPG +5721,169,262,15,3,honey,DSC_0837.JPG +5722,481,376,17,3,honey,DSC_0837.JPG +5724,124,589,15,3,honey,DSC_0837.JPG +5726,2008,4,15,2,honey,DSC_0837.JPG +5727,472,13,15,3,honey,DSC_0837.JPG +5728,376,88,17,3,honey,DSC_0837.JPG +5729,4525,112,17,3,honey,DSC_0837.JPG +5730,493,145,17,3,honey,DSC_0837.JPG +5731,4276,175,15,3,honey,DSC_0837.JPG +5732,331,268,15,3,honey,DSC_0837.JPG +5733,4960,487,17,3,honey,DSC_0837.JPG +5737,5248,61,15,3,honey,DSC_0837.JPG +5738,265,142,15,3,honey,DSC_0837.JPG +5739,5026,235,15,3,honey,DSC_0837.JPG +5740,4735,376,15,3,honey,DSC_0837.JPG +5741,5308,478,15,3,honey,DSC_0837.JPG +5742,5020,487,15,3,honey,DSC_0837.JPG +5743,4735,610,17,3,honey,DSC_0837.JPG +5744,5173,742,17,3,honey,DSC_0837.JPG +5745,5071,979,17,3,honey,DSC_0837.JPG +5747,4588,94,17,3,honey,DSC_0837.JPG +5748,4978,118,17,3,honey,DSC_0837.JPG +5749,4993,409,17,3,honey,DSC_0837.JPG +5750,589,565,17,3,honey,DSC_0837.JPG +5753,409,256,15,3,honey,DSC_0837.JPG +5754,1501,271,17,3,honey,DSC_0837.JPG +5755,4507,346,17,3,honey,DSC_0837.JPG +5756,4519,481,17,3,honey,DSC_0837.JPG +5757,151,514,15,3,honey,DSC_0837.JPG +5763,4768,151,17,3,honey,DSC_0837.JPG +5764,4669,199,15,3,honey,DSC_0837.JPG +5765,3955,232,17,3,honey,DSC_0837.JPG +5766,100,244,15,3,honey,DSC_0837.JPG +5767,553,262,15,3,honey,DSC_0837.JPG +5768,4921,352,15,3,honey,DSC_0837.JPG +5769,4234,487,15,2,honey,DSC_0837.JPG +5770,4873,610,15,3,honey,DSC_0837.JPG +5771,4792,733,15,3,honey,DSC_0837.JPG +5772,271,268,15,3,honey,DSC_0837.JPG +5773,5272,301,17,3,honey,DSC_0837.JPG +5774,559,364,15,3,honey,DSC_0837.JPG +5775,298,478,15,3,honey,DSC_0837.JPG +5776,5236,733,15,3,honey,DSC_0837.JPG +5780,529,70,17,3,honey,DSC_0837.JPG +5781,4171,94,17,3,honey,DSC_0837.JPG +5782,5098,124,17,3,honey,DSC_0837.JPG +5783,376,208,17,3,honey,DSC_0837.JPG +5784,838,265,17,3,honey,DSC_0837.JPG +5785,232,556,15,3,honey,DSC_0837.JPG +5789,3766,412,15,3,honey,DSC_0837.JPG +5790,226,445,17,3,honey,DSC_0837.JPG +5791,4552,550,15,3,honey,DSC_0837.JPG +5792,358,643,15,3,honey,DSC_0837.JPG +5793,5083,208,15,3,honey,DSC_0837.JPG +5794,4630,289,15,3,honey,DSC_0837.JPG +5795,4810,508,17,3,honey,DSC_0837.JPG +5797,4249,115,17,3,honey,DSC_0837.JPG +5798,568,127,15,3,honey,DSC_0837.JPG +5799,229,217,15,3,honey,DSC_0837.JPG +5800,490,628,17,3,honey,DSC_0837.JPG +5803,4393,196,17,3,honey,DSC_0837.JPG +5804,4927,295,15,3,honey,DSC_0837.JPG +5805,4744,301,15,3,honey,DSC_0837.JPG +5806,3736,349,17,3,honey,DSC_0837.JPG +5807,3739,481,17,3,honey,DSC_0837.JPG +5808,211,505,17,3,honey,DSC_0837.JPG +5809,415,616,17,3,honey,DSC_0837.JPG +5811,100,19,15,3,honey,DSC_0837.JPG +5812,874,94,17,3,honey,DSC_0837.JPG +5813,4486,166,17,3,honey,DSC_0837.JPG +5814,4450,367,15,3,honey,DSC_0837.JPG +5815,5017,700,15,3,honey,DSC_0837.JPG +5817,1141,19,15,3,honey,DSC_0837.JPG +5818,4411,289,17,3,honey,DSC_0837.JPG +5819,271,373,15,3,honey,DSC_0837.JPG +5820,4690,424,15,3,honey,DSC_0837.JPG +5821,343,514,15,3,honey,DSC_0837.JPG +5824,1870,22,15,2,honey,DSC_0837.JPG +5825,5167,235,15,3,honey,DSC_0837.JPG +5827,5152,61,15,3,honey,DSC_0837.JPG +5828,3772,151,15,3,honey,DSC_0837.JPG +5829,4162,235,17,3,honey,DSC_0837.JPG +5830,4384,343,17,3,honey,DSC_0837.JPG +5831,3877,358,15,3,honey,DSC_0837.JPG +5832,733,439,17,3,honey,DSC_0837.JPG +5833,4867,553,17,3,honey,DSC_0837.JPG +5835,4732,109,15,3,honey,DSC_0837.JPG +5836,811,193,17,3,honey,DSC_0837.JPG +5838,3853,292,15,3,honey,DSC_0837.JPG +5839,5095,367,15,3,honey,DSC_0837.JPG +5840,181,382,15,3,honey,DSC_0837.JPG +5841,3166,481,15,3,honey,DSC_0837.JPG +5842,5344,661,15,3,honey,DSC_0837.JPG +5844,4135,166,17,3,honey,DSC_0837.JPG +5845,4819,415,15,3,honey,DSC_0837.JPG +5846,5143,964,15,3,honey,DSC_0837.JPG +5848,4693,55,15,3,honey,DSC_0837.JPG +5849,5062,418,15,3,honey,DSC_0837.JPG +5851,1888,76,17,3,honey,DSC_0837.JPG +5852,4321,124,17,3,honey,DSC_0837.JPG +5853,346,757,15,3,honey,DSC_0837.JPG +5855,1522,202,17,3,honey,DSC_0837.JPG +5856,4294,232,15,3,honey,DSC_0837.JPG +5857,4840,295,15,3,honey,DSC_0837.JPG +5858,5122,298,15,3,honey,DSC_0837.JPG +5859,2935,313,15,3,honey,DSC_0837.JPG +5860,4303,349,15,3,honey,DSC_0837.JPG +5861,766,373,15,3,honey,DSC_0837.JPG +5862,5077,736,15,3,honey,DSC_0837.JPG +5865,1951,73,16,3,honey,DSC_0837.JPG +5866,1570,283,15,3,honey,DSC_0837.JPG +5869,4573,34,17,3,honey,DSC_0837.JPG +5870,5038,118,15,3,honey,DSC_0837.JPG +5871,4675,256,17,3,honey,DSC_0837.JPG +5872,4768,436,15,3,honey,DSC_0837.JPG +5875,5017,64,15,3,honey,DSC_0837.JPG +5876,4279,55,17,3,honey,DSC_0837.JPG +5877,520,205,17,3,honey,DSC_0837.JPG +5878,3805,211,15,3,honey,DSC_0837.JPG +5879,13,418,17,3,honey,DSC_0837.JPG +5881,4153,37,17,3,honey,DSC_0837.JPG +5884,139,76,15,3,honey,DSC_0837.JPG +5885,3781,286,17,3,honey,DSC_0837.JPG +5886,298,322,15,3,honey,DSC_0837.JPG +5887,4780,61,15,3,honey,DSC_0837.JPG +5888,4627,145,17,3,honey,DSC_0837.JPG +5889,382,565,15,3,honey,DSC_0837.JPG +5892,265,634,17,3,honey,DSC_0837.JPG +5893,3733,97,15,3,honey,DSC_0837.JPG +5894,3019,361,17,3,honey,DSC_0837.JPG +5895,4633,427,17,3,honey,DSC_0837.JPG +5896,70,553,17,2,honey,DSC_0837.JPG +5899,3688,13,15,3,honey,DSC_0837.JPG +5900,4927,532,17,3,honey,DSC_0837.JPG +5902,5185,919,17,3,honey,DSC_0837.JPG +5904,409,25,17,3,honey,DSC_0837.JPG +5905,79,73,15,3,honey,DSC_0837.JPG +5907,3652,2239,15,3,honey,DSC_0837.JPG +5910,4744,226,15,3,honey,DSC_0837.JPG +5911,4975,652,17,3,honey,DSC_0837.JPG +5912,4288,292,15,3,honey,DSC_0837.JPG +5913,5446,2026,17,2,honey,DSC_0837.JPG +5916,5065,667,15,3,honey,DSC_0837.JPG +5920,4636,43,17,3,honey,DSC_0837.JPG +5921,5140,181,17,3,honey,DSC_0837.JPG +5924,1198,7,15,3,honey,DSC_0837.JPG +5925,376,697,17,3,honey,DSC_0837.JPG +5931,4735,19,15,3,honey,DSC_0837.JPG +5935,4864,355,15,3,honey,DSC_0837.JPG +5936,103,481,17,2,honey,DSC_0837.JPG +6090,4993,622,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7092,1972,481,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7184,3340,1573,17,2,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7252,1405,970,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7308,2935,1498,17,2,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7358,2587,88,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7406,3142,697,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7432,3976,151,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7466,3820,157,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7504,4954,1357,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7606,991,712,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7639,3259,769,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7671,2890,487,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7672,2368,496,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7676,3934,781,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7698,1171,610,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7699,3031,628,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7721,4501,298,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7723,4846,610,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7724,2473,703,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7725,2506,775,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7756,4753,640,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7757,2401,697,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7758,1888,781,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7760,3187,1051,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7783,1483,481,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7786,2317,574,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7787,1066,649,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7810,3589,226,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7811,3220,286,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7813,5035,679,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7815,3562,763,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7817,3559,913,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7837,3040,85,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7838,3601,142,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7844,2272,622,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7848,3505,790,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7850,2929,826,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7871,2473,157,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7872,4507,562,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7874,1276,613,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7877,1441,1174,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7904,4246,622,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7906,4201,694,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7907,3124,763,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7908,1624,790,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7909,3670,847,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7910,2509,928,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7912,3001,967,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7932,2146,298,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7934,1933,424,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7938,4309,778,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7940,4129,832,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7941,2356,850,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7944,4429,967,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7981,3907,181,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7982,3532,562,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7983,1366,625,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7984,1288,781,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7987,3142,829,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7988,2545,856,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8018,2329,142,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8020,2161,157,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8022,1936,307,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8024,2347,400,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8025,1915,502,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8026,2392,571,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8027,907,616,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8028,2320,703,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8030,4258,853,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8031,1867,886,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8032,2968,895,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8033,4810,949,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8047,1948,148,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8048,2254,154,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8049,2437,202,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8050,2215,208,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8051,2230,289,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8054,841,751,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8055,1924,907,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8057,1264,967,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8058,2854,976,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8059,1570,979,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8060,2947,985,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8085,2428,349,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8086,4444,544,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8087,1936,559,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8088,1174,709,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8090,1576,757,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8091,1714,796,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8093,1069,1042,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8101,3235,1660,15,2,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8112,3748,145,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8113,4402,310,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8114,2128,355,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8115,2095,418,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8116,4819,418,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8118,2062,610,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8119,3595,685,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8120,3760,772,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8121,3736,835,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8140,2038,268,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8142,1144,367,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8143,3589,421,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8144,4924,481,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8145,2464,562,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8146,3070,562,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8147,1717,568,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8149,3703,673,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8150,2551,700,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8151,4177,760,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8152,2014,775,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8155,2455,874,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8156,1597,892,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8157,1324,952,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8171,3664,139,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8172,1744,226,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8174,1327,286,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8176,4405,382,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8177,1243,394,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8179,1525,421,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8180,1618,511,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8181,1105,550,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8182,2740,571,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8183,3862,622,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8184,4429,685,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8212,2962,82,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8213,4312,217,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8214,1948,238,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8215,4042,277,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8216,4180,277,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8217,3526,280,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8218,2389,286,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8220,4852,352,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8221,1675,358,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8222,2188,358,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8223,1111,424,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8224,2398,436,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8226,2176,565,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8227,3517,697,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8228,3841,778,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8229,5077,892,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8230,1717,913,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8231,2407,985,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8232,1150,1042,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8233,3112,1042,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8245,2368,79,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8246,1105,283,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8247,3625,355,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8248,1594,409,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8250,2167,448,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8251,4240,463,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8252,1750,505,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8253,1420,547,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8254,2056,553,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8255,4342,574,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8256,1069,592,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8257,3628,619,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8258,3799,628,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8259,2365,643,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8262,4951,688,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8263,2848,691,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8264,1786,697,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8265,4684,754,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8266,2131,796,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8267,4876,826,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8268,4315,835,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8269,3451,856,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8272,1642,982,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8286,1720,148,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8289,1675,235,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8290,1630,301,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8291,4684,343,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8292,4660,478,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8293,4297,484,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8294,1780,553,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8295,3757,559,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8296,2503,631,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8297,4921,634,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8298,952,664,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8299,1405,676,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8300,3829,697,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8302,2743,769,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8303,4795,769,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8304,1162,781,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8305,2224,787,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8306,4210,811,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8307,1945,823,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8308,1207,835,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8309,2848,853,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8310,1000,874,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8311,1072,907,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8312,3037,1030,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8317,2536,151,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8318,4228,208,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8319,4681,223,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8320,1606,232,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8321,1273,331,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8322,1909,358,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8323,2005,361,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8324,1693,475,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8325,3619,484,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8326,3592,535,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8327,1648,562,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8328,1558,568,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8329,967,571,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8330,2545,571,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8331,1495,586,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8332,1816,613,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8333,3073,679,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8334,4741,706,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8335,2803,775,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8336,3634,778,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8337,3178,781,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8338,2404,790,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8339,4669,808,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8340,2029,850,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8341,4954,949,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8343,1900,1054,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8344,2884,1054,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8345,1255,1102,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8358,3637,79,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8359,4354,136,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8360,4366,199,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8361,4171,361,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8363,3067,385,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8364,3226,424,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8366,1264,547,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8367,4945,559,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8369,2200,655,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8371,877,685,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8372,2779,688,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8374,4246,748,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8375,3988,751,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8376,4498,838,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8377,2764,850,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8378,3400,913,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8379,1987,928,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8382,2101,985,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8389,3274,1576,17,2,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8404,2890,79,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8405,2623,157,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8406,4087,208,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8407,1561,295,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8408,1864,316,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8409,4606,337,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8410,2359,343,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8411,1324,385,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8412,1048,400,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8413,2017,415,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8414,4120,418,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8415,4285,418,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8416,2074,481,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8417,2437,493,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8419,3700,577,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8420,2584,643,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8421,1909,673,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8422,3892,700,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8423,4570,826,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8424,1489,847,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8425,1816,847,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8426,4888,952,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8427,3145,964,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8428,2971,1054,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8440,2740,79,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8441,2395,142,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8442,4534,205,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8443,4249,265,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8444,1066,340,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8445,4714,442,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8446,4822,508,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8447,2149,511,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8448,2824,619,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8449,1552,688,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8450,4525,688,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8451,5071,739,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8452,2890,775,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8453,3169,877,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8454,4690,901,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8455,1483,904,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8456,4246,913,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8458,4705,1036,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8459,1414,1108,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8465,3787,1705,15,2,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8477,2767,136,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8478,2983,136,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8479,2029,148,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8480,4111,157,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8481,1405,286,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8483,1747,376,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8484,1810,424,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8485,4546,475,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8486,4462,616,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8487,2251,712,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8488,4624,715,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8489,4852,748,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8490,1519,757,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8492,4477,892,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8493,3106,898,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8495,1813,916,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8497,2908,940,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8498,1843,1003,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8512,3217,145,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8515,4363,424,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8516,997,487,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8517,4576,544,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8518,4303,622,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8519,2896,634,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8520,2329,790,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8521,3802,853,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8523,4999,883,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8524,2047,910,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8525,4660,955,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8538,2509,100,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8539,2944,193,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8540,1039,277,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8541,2062,373,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8542,3550,373,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8543,4474,373,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8544,1684,415,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8545,1399,445,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8546,1846,490,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8547,1066,496,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8548,1432,601,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8549,4636,628,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8550,1006,634,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8551,2725,649,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8552,1219,673,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8553,2170,745,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8554,2959,763,17,2,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8556,2245,856,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8557,3535,856,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8559,2218,928,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8560,2812,931,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8561,4510,982,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8562,1330,1072,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8564,1384,1174,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8574,3847,223,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8575,1195,262,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8577,4657,397,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8578,4591,400,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8579,4897,409,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8580,3106,514,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8581,2116,556,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8582,4732,556,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8583,1330,562,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8584,1222,586,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8585,1990,595,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8586,4540,631,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8587,2125,643,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8589,1330,706,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8590,1684,742,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8591,5005,757,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8592,3700,760,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8593,4945,787,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8594,1048,832,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8595,2134,862,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8596,2404,901,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8597,4315,904,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8598,3703,919,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8600,4597,988,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8612,2428,91,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8613,4471,160,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8614,1711,289,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8615,3169,454,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8616,4417,472,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8617,4768,478,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8618,2275,487,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8619,1363,502,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8620,3715,505,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8621,1210,508,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8622,3163,529,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8623,1027,544,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8624,4696,604,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8625,1759,619,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8626,4399,622,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8627,1666,670,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8628,2056,673,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8629,1729,682,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8630,1465,691,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8631,2107,712,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8633,1408,838,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8634,4627,880,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8636,2281,928,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8637,1780,982,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8650,4207,151,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8651,4603,211,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8652,4579,277,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8653,1192,415,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8654,3499,499,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8657,3199,634,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8658,3751,706,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8659,4324,706,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8660,913,736,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8661,1759,745,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8662,1411,766,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8664,2911,883,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8665,1516,1027,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8672,4159,208,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8673,2140,214,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8674,4357,271,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8675,3970,295,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8676,4285,346,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8677,2947,349,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8678,4012,352,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8679,1615,355,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8680,3034,496,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8681,1870,550,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8682,1510,640,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8683,1858,712,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8684,2077,784,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8685,5035,832,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8686,3634,913,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8687,1480,976,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8695,3148,145,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8696,2887,211,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8697,4468,241,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8698,2296,319,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8699,2281,373,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8700,3163,388,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8701,1747,445,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8702,2215,496,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8703,3817,565,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8704,3097,625,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8705,2692,697,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8706,2362,745,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8707,2572,760,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8708,4471,775,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8709,1549,823,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8710,1342,850,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8711,1669,871,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8712,4546,892,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8725,3079,139,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8726,2101,148,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8727,1837,259,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8728,1468,274,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8729,2092,286,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8730,3784,484,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8731,1300,490,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8732,2851,547,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8733,4276,571,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8734,2428,637,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8736,1993,715,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8737,4549,754,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8738,1828,760,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8739,1777,805,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8740,4732,823,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8741,2182,832,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8742,1288,892,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8744,4714,970,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8745,1360,1024,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8746,1309,1168,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8755,2023,205,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8756,4114,292,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8757,4069,334,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8758,1501,352,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8759,4876,550,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8760,4792,571,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8761,1633,622,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8762,3520,625,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8763,2623,691,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8764,1003,766,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8765,1360,796,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8770,1108,1108,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8781,3106,91,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8782,4285,139,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8783,1450,373,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8784,1642,451,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8785,4366,511,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8786,2230,553,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8788,2467,814,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8789,952,838,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8790,4921,868,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8791,2143,931,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8792,1147,1165,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8793,1222,1168,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8799,1153,520,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8801,4693,676,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8802,1228,745,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8804,1756,1054,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8815,2998,424,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8816,4165,460,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8817,4099,769,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8818,1273,838,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8819,1969,874,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8820,1381,889,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8822,1102,973,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8830,3784,217,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8831,3514,418,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8832,1555,481,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8834,2656,613,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8835,2443,751,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8836,2296,835,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8838,1252,1042,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8847,2992,286,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8848,4225,409,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8849,4534,409,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8850,3106,433,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8851,4360,661,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8852,3223,715,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8853,3667,715,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8854,1699,982,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8855,1828,1066,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8863,4354,355,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8864,1873,406,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8865,4465,436,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8866,4867,472,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8867,3559,490,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8869,4369,865,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8879,3565,100,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8880,4429,202,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8881,1891,211,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8882,4738,286,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8884,3466,640,15,2,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8885,2158,691,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8886,1627,721,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8887,1729,850,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8889,1453,1057,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8897,1219,343,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8898,1330,442,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8899,4657,559,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8900,3955,697,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8902,1480,1114,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8910,3169,76,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8911,2182,256,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8912,3010,340,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8913,4540,343,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8914,3652,550,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8916,4270,685,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8923,3637,199,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8924,3136,280,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8926,2005,649,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8927,1942,748,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8928,1192,1105,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8935,1375,337,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8936,4225,346,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8937,2800,568,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8938,3154,589,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8939,1540,898,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8940,2350,913,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8946,2323,460,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8947,1891,607,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8948,4621,775,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8949,1873,949,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8956,2917,130,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8958,2080,226,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8959,1804,316,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8960,4495,496,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8961,4588,601,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8962,1300,1015,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8969,2659,85,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8971,2683,556,15,2,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8972,1123,637,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8973,1279,679,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8979,3589,313,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8980,3103,343,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8981,1693,619,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8984,4420,892,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8988,2803,70,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8989,1258,256,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8990,1993,304,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8991,1159,310,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8992,1567,631,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8993,2290,751,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8994,4738,766,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9000,4603,457,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9001,3742,634,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9004,4618,1045,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9008,1558,352,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9009,1513,529,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9018,4600,931,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9021,4300,289,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9022,3169,325,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9023,4924,736,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9026,1822,199,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9028,1165,466,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9032,1255,454,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9036,4711,502,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9040,1462,430,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9043,1345,1126,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9047,3946,238,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9048,2002,529,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9049,1651,925,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9050,2449,934,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9051,1897,268,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9053,4582,676,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9057,1765,277,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9061,3574,601,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9063,4036,778,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9064,1201,1018,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9071,1462,790,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9072,3190,928,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9076,4249,523,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9080,4423,133,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9082,3070,748,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9083,4363,808,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9084,949,778,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9088,4381,712,17,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9089,1834,367,15,3,honey,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +1005,550,259,17,4,larves,DSC_0844.JPG +1006,1549,289,16,4,larves,DSC_0844.JPG +1008,3382,457,17,3,larves,DSC_0844.JPG +1010,3268,649,16,4,larves,DSC_0844.JPG +1011,2215,757,15,4,larves,DSC_0844.JPG +1012,2179,817,17,4,larves,DSC_0844.JPG +1014,2488,889,15,4,larves,DSC_0844.JPG +10142,2836,1174,15,3,larves,DSC_0848.JPG +1015,838,1039,15,3,larves,DSC_0844.JPG +1016,3046,1147,16,4,larves,DSC_0844.JPG +1017,1045,1168,15,4,larves,DSC_0844.JPG +1019,1045,1288,15,4,larves,DSC_0844.JPG +102,3868,1879,15,4,larves,DSC_0844.JPG +1020,1390,1294,15,4,larves,DSC_0844.JPG +1023,3391,1516,15,4,larves,DSC_0844.JPG +10235,2839,937,17,3,larves,DSC_0848.JPG +1028,2194,1744,15,4,larves,DSC_0844.JPG +1029,1168,1780,15,3,larves,DSC_0844.JPG +103,3235,1996,15,4,larves,DSC_0844.JPG +1033,3130,2053,15,4,larves,DSC_0844.JPG +1035,3442,2116,15,4,larves,DSC_0844.JPG +1039,2149,499,15,4,larves,DSC_0844.JPG +104,1810,2035,15,4,larves,DSC_0844.JPG +1040,2218,502,15,4,larves,DSC_0844.JPG +1041,1969,559,15,4,larves,DSC_0844.JPG +1042,2884,574,16,4,larves,DSC_0844.JPG +1046,802,976,15,3,larves,DSC_0844.JPG +1047,1186,1174,15,4,larves,DSC_0844.JPG +1048,3007,1330,15,4,larves,DSC_0844.JPG +1049,1039,1402,15,4,larves,DSC_0844.JPG +1050,2548,1507,16,4,larves,DSC_0844.JPG +1051,4294,1513,15,4,larves,DSC_0844.JPG +1052,3487,1696,17,4,larves,DSC_0844.JPG +1054,1882,1792,15,4,larves,DSC_0844.JPG +1057,2011,2152,15,4,larves,DSC_0844.JPG +10587,2416,1999,17,3,larves,DSC_0848.JPG +106,2296,2041,15,4,larves,DSC_0844.JPG +1061,5005,724,17,4,larves,DSC_0844.JPG +1063,2875,961,16,4,larves,DSC_0844.JPG +1065,3853,1222,15,4,larves,DSC_0844.JPG +1066,1564,1246,17,4,larves,DSC_0844.JPG +1067,3568,1336,16,4,larves,DSC_0844.JPG +1068,2827,1507,16,4,larves,DSC_0844.JPG +1070,3700,1576,15,4,larves,DSC_0844.JPG +1073,4468,1819,16,4,larves,DSC_0844.JPG +1074,2503,1924,17,4,larves,DSC_0844.JPG +10764,2026,1228,15,3,larves,DSC_0848.JPG +1081,3520,589,15,3,larves,DSC_0844.JPG +1083,3751,1033,15,3,larves,DSC_0844.JPG +1084,1261,1174,15,4,larves,DSC_0844.JPG +1085,1009,1228,15,4,larves,DSC_0844.JPG +1087,3076,1333,15,4,larves,DSC_0844.JPG +1088,4138,1342,15,3,larves,DSC_0844.JPG +1089,2413,1381,17,4,larves,DSC_0844.JPG +109,2734,829,17,4,larves,DSC_0844.JPG +1090,3184,1393,15,4,larves,DSC_0844.JPG +1093,2686,1507,16,4,larves,DSC_0844.JPG +1094,5044,1567,17,3,larves,DSC_0844.JPG +1098,4246,2059,15,4,larves,DSC_0844.JPG +11,3853,973,15,4,larves,DSC_0844.JPG +110,2755,1627,15,4,larves,DSC_0844.JPG +11000,3217,1243,15,3,larves,DSC_0848.JPG +1105,2821,313,15,4,larves,DSC_0844.JPG +1107,586,715,17,3,larves,DSC_0844.JPG +1108,1435,994,17,4,larves,DSC_0844.JPG +1109,3784,1096,15,4,larves,DSC_0844.JPG +111,3364,967,15,4,larves,DSC_0844.JPG +1111,1255,1294,15,4,larves,DSC_0844.JPG +1112,2515,1321,17,4,larves,DSC_0844.JPG +1113,2446,1324,17,4,larves,DSC_0844.JPG +1114,2899,1390,15,4,larves,DSC_0844.JPG +1117,2512,1444,15,4,larves,DSC_0844.JPG +1118,3073,1453,16,4,larves,DSC_0844.JPG +1119,934,1459,15,4,larves,DSC_0844.JPG +1120,3319,1513,16,3,larves,DSC_0844.JPG +1123,1744,1921,15,4,larves,DSC_0844.JPG +1124,1981,1975,16,4,larves,DSC_0844.JPG +1125,1879,2035,15,4,larves,DSC_0844.JPG +1126,2572,2047,15,4,larves,DSC_0844.JPG +1127,3688,2059,15,4,larves,DSC_0844.JPG +1129,2605,2104,17,4,larves,DSC_0844.JPG +1130,4069,2122,15,4,larves,DSC_0844.JPG +1136,2674,571,17,4,larves,DSC_0844.JPG +1137,442,580,17,3,larves,DSC_0844.JPG +1138,3550,652,15,3,larves,DSC_0844.JPG +1139,2182,694,15,4,larves,DSC_0844.JPG +114,3691,1939,15,4,larves,DSC_0844.JPG +1140,4006,724,15,4,larves,DSC_0844.JPG +1141,1792,745,16,4,larves,DSC_0844.JPG +1142,3688,784,15,4,larves,DSC_0844.JPG +1144,1972,811,15,4,larves,DSC_0844.JPG +1145,3718,847,15,4,larves,DSC_0844.JPG +1149,3673,1399,16,4,larves,DSC_0844.JPG +115,2815,445,17,4,larves,DSC_0844.JPG +1150,616,1501,15,4,larves,DSC_0844.JPG +1153,2023,1675,15,4,larves,DSC_0844.JPG +1156,2329,1744,15,4,larves,DSC_0844.JPG +1157,2056,1861,17,4,larves,DSC_0844.JPG +1159,3793,1999,16,4,larves,DSC_0844.JPG +1164,4789,730,17,3,larves,DSC_0844.JPG +1165,1333,931,15,4,larves,DSC_0844.JPG +1166,3781,1339,15,4,larves,DSC_0844.JPG +1167,721,1567,15,4,larves,DSC_0844.JPG +1169,3559,1699,15,4,larves,DSC_0844.JPG +117,3589,586,15,4,larves,DSC_0844.JPG +1170,2611,1747,15,4,larves,DSC_0844.JPG +1171,2962,1750,15,4,larves,DSC_0844.JPG +1172,3451,1756,17,4,larves,DSC_0844.JPG +1174,4150,1876,15,4,larves,DSC_0844.JPG +118,2878,832,17,4,larves,DSC_0844.JPG +1183,1795,355,16,3,larves,DSC_0844.JPG +1187,3475,904,15,4,larves,DSC_0844.JPG +1189,2797,1201,17,4,larves,DSC_0844.JPG +119,3931,850,15,4,larves,DSC_0844.JPG +1191,3253,1276,15,4,larves,DSC_0844.JPG +1192,1114,1291,15,4,larves,DSC_0844.JPG +1194,3145,1333,15,4,larves,DSC_0844.JPG +1199,3175,1636,17,3,larves,DSC_0844.JPG +12,2128,1618,16,4,larves,DSC_0844.JPG +120,4033,913,15,4,larves,DSC_0844.JPG +1201,4159,1639,15,4,larves,DSC_0844.JPG +1209,2494,637,15,4,larves,DSC_0844.JPG +121,2431,376,15,4,larves,DSC_0844.JPG +1210,1900,685,16,4,larves,DSC_0844.JPG +1214,3994,976,15,4,larves,DSC_0844.JPG +1216,1156,988,15,4,larves,DSC_0844.JPG +1217,334,1009,17,3,larves,DSC_0844.JPG +1219,1192,1054,17,4,larves,DSC_0844.JPG +122,2992,511,16,4,larves,DSC_0844.JPG +1220,2833,1147,17,4,larves,DSC_0844.JPG +1221,2728,1327,15,4,larves,DSC_0844.JPG +1226,2995,1813,16,3,larves,DSC_0844.JPG +1227,3763,1819,15,4,larves,DSC_0844.JPG +1228,3415,1822,17,4,larves,DSC_0844.JPG +123,2848,643,15,3,larves,DSC_0844.JPG +1233,2254,301,17,3,larves,DSC_0844.JPG +1234,1654,487,17,3,larves,DSC_0844.JPG +1235,2602,571,16,4,larves,DSC_0844.JPG +1236,3304,715,15,4,larves,DSC_0844.JPG +1238,1225,988,15,4,larves,DSC_0844.JPG +1239,2146,1012,15,4,larves,DSC_0844.JPG +124,2005,751,16,4,larves,DSC_0844.JPG +1240,3961,1036,15,4,larves,DSC_0844.JPG +1241,976,1045,15,4,larves,DSC_0844.JPG +1242,2623,1141,16,4,larves,DSC_0844.JPG +1243,3568,1216,15,4,larves,DSC_0844.JPG +1245,3604,1282,17,3,larves,DSC_0844.JPG +1247,2827,1387,15,4,larves,DSC_0844.JPG +1248,2233,1561,15,4,larves,DSC_0844.JPG +125,3508,967,16,4,larves,DSC_0844.JPG +1250,1948,1792,15,4,larves,DSC_0844.JPG +1251,4252,1822,15,4,larves,DSC_0844.JPG +1256,625,259,17,4,larves,DSC_0844.JPG +1258,1969,691,15,4,larves,DSC_0844.JPG +1259,3298,841,16,4,larves,DSC_0844.JPG +1261,2731,1081,16,4,larves,DSC_0844.JPG +1262,3112,1273,15,4,larves,DSC_0844.JPG +1263,3817,1282,15,4,larves,DSC_0844.JPG +1264,2338,1378,17,4,larves,DSC_0844.JPG +127,4291,1759,15,4,larves,DSC_0844.JPG +1270,1705,1978,15,4,larves,DSC_0844.JPG +1278,2149,370,15,3,larves,DSC_0844.JPG +1279,2809,706,15,4,larves,DSC_0844.JPG +128,1777,1978,15,4,larves,DSC_0844.JPG +1281,2773,769,15,4,larves,DSC_0844.JPG +1282,2698,892,16,4,larves,DSC_0844.JPG +1283,5107,910,17,4,larves,DSC_0844.JPG +1284,2524,952,16,4,larves,DSC_0844.JPG +1285,3082,1090,15,4,larves,DSC_0844.JPG +1287,1465,1177,15,4,larves,DSC_0844.JPG +1288,2239,1198,16,4,larves,DSC_0844.JPG +1289,3745,1279,15,4,larves,DSC_0844.JPG +1290,2167,1321,15,4,larves,DSC_0844.JPG +1292,1417,1357,17,4,larves,DSC_0844.JPG +1294,2824,1630,15,4,larves,DSC_0844.JPG +1295,4192,1696,15,4,larves,DSC_0844.JPG +1296,3658,1759,15,4,larves,DSC_0844.JPG +1297,2296,1804,15,4,larves,DSC_0844.JPG +1299,3619,1939,15,4,larves,DSC_0844.JPG +13,3028,448,15,4,larves,DSC_0844.JPG +130,2890,442,17,3,larves,DSC_0844.JPG +1304,1588,352,15,3,larves,DSC_0844.JPG +1306,3652,718,17,4,larves,DSC_0844.JPG +1307,2386,949,15,4,larves,DSC_0844.JPG +1308,910,1042,17,4,larves,DSC_0844.JPG +1309,2659,1201,15,4,larves,DSC_0844.JPG +1310,3847,1456,15,4,larves,DSC_0844.JPG +1313,4093,1522,17,4,larves,DSC_0844.JPG +1315,2791,1570,16,4,larves,DSC_0844.JPG +1318,577,1795,15,3,larves,DSC_0844.JPG +1322,1909,2095,15,4,larves,DSC_0844.JPG +1324,3475,2179,17,4,larves,DSC_0844.JPG +133,3235,2116,15,3,larves,DSC_0844.JPG +1332,2146,628,16,4,larves,DSC_0844.JPG +1333,1828,682,15,4,larves,DSC_0844.JPG +1335,2425,766,15,4,larves,DSC_0844.JPG +1339,2347,1012,15,4,larves,DSC_0844.JPG +1340,3331,1030,15,4,larves,DSC_0844.JPG +1341,2695,1264,17,4,larves,DSC_0844.JPG +1342,4234,1285,15,4,larves,DSC_0844.JPG +1343,1456,1294,15,4,larves,DSC_0844.JPG +1347,967,1519,15,4,larves,DSC_0844.JPG +1348,2722,1570,15,4,larves,DSC_0844.JPG +1349,3727,1759,15,4,larves,DSC_0844.JPG +1351,4357,1879,15,4,larves,DSC_0844.JPG +1353,2224,2041,15,4,larves,DSC_0844.JPG +1361,259,880,17,4,larves,DSC_0844.JPG +1362,2317,949,15,4,larves,DSC_0844.JPG +1363,2938,1084,15,4,larves,DSC_0844.JPG +1364,4342,1102,15,4,larves,DSC_0844.JPG +1365,3427,1216,15,4,larves,DSC_0844.JPG +1366,2239,1318,17,4,larves,DSC_0844.JPG +1367,3742,1516,16,4,larves,DSC_0844.JPG +1368,4165,1516,15,4,larves,DSC_0844.JPG +1369,1138,1588,15,4,larves,DSC_0844.JPG +137,4933,724,16,4,larves,DSC_0844.JPG +1371,3664,1636,17,4,larves,DSC_0844.JPG +1372,967,1642,15,4,larves,DSC_0844.JPG +1375,2362,1804,17,4,larves,DSC_0844.JPG +1378,2014,2035,15,4,larves,DSC_0844.JPG +138,3787,847,16,4,larves,DSC_0844.JPG +1380,1909,2215,15,4,larves,DSC_0844.JPG +139,1084,1108,15,4,larves,DSC_0844.JPG +1390,2113,433,16,4,larves,DSC_0844.JPG +1392,2986,646,16,4,larves,DSC_0844.JPG +1394,550,778,17,3,larves,DSC_0844.JPG +1395,1576,871,15,4,larves,DSC_0844.JPG +1396,1663,1057,17,4,larves,DSC_0844.JPG +1398,1360,1117,17,4,larves,DSC_0844.JPG +1399,3538,1153,17,4,larves,DSC_0844.JPG +140,1279,1351,16,4,larves,DSC_0844.JPG +1402,2164,1681,15,4,larves,DSC_0844.JPG +1403,3622,1819,16,4,larves,DSC_0844.JPG +1404,5035,1819,17,3,larves,DSC_0844.JPG +1406,4249,1939,15,4,larves,DSC_0844.JPG +1408,2431,2044,15,4,larves,DSC_0844.JPG +141,3004,1450,15,4,larves,DSC_0844.JPG +1414,2533,568,15,4,larves,DSC_0844.JPG +1415,3124,772,16,4,larves,DSC_0844.JPG +1416,2731,958,16,4,larves,DSC_0844.JPG +1417,4408,1225,15,4,larves,DSC_0844.JPG +1418,2479,1384,15,4,larves,DSC_0844.JPG +1420,2095,1438,15,4,larves,DSC_0844.JPG +1423,1780,1855,15,4,larves,DSC_0844.JPG +1425,2395,2101,16,4,larves,DSC_0844.JPG +143,3523,1756,15,4,larves,DSC_0844.JPG +1434,2317,823,17,4,larves,DSC_0844.JPG +1435,3538,1030,16,4,larves,DSC_0844.JPG +1436,3853,1342,15,4,larves,DSC_0844.JPG +1437,1927,1381,16,4,larves,DSC_0844.JPG +1438,2689,1387,15,4,larves,DSC_0844.JPG +1439,3424,1573,15,4,larves,DSC_0844.JPG +144,2365,1921,17,4,larves,DSC_0844.JPG +1442,1747,1801,15,4,larves,DSC_0844.JPG +1461,2743,706,17,4,larves,DSC_0844.JPG +1464,3295,967,16,4,larves,DSC_0844.JPG +1465,1504,994,15,4,larves,DSC_0844.JPG +1466,2557,1015,15,4,larves,DSC_0844.JPG +1468,1534,1057,15,4,larves,DSC_0844.JPG +1469,4441,1285,15,3,larves,DSC_0844.JPG +147,2080,496,15,4,larves,DSC_0844.JPG +1470,2512,1564,15,4,larves,DSC_0844.JPG +1471,3142,1570,17,4,larves,DSC_0844.JPG +1472,1036,1642,15,4,larves,DSC_0844.JPG +1473,2860,1693,17,4,larves,DSC_0844.JPG +1475,3904,1819,15,4,larves,DSC_0844.JPG +1476,4822,1819,17,3,larves,DSC_0844.JPG +1477,1984,1855,15,4,larves,DSC_0844.JPG +1478,1879,1909,17,4,larves,DSC_0844.JPG +1479,2224,1921,15,4,larves,DSC_0844.JPG +1480,2329,1984,16,4,larves,DSC_0844.JPG +1492,619,778,17,3,larves,DSC_0844.JPG +1493,1366,868,15,4,larves,DSC_0844.JPG +1495,5065,973,16,4,larves,DSC_0844.JPG +1496,3013,1087,15,4,larves,DSC_0844.JPG +1499,4339,1342,15,3,larves,DSC_0844.JPG +150,3859,850,16,4,larves,DSC_0844.JPG +1501,3286,1453,15,4,larves,DSC_0844.JPG +1514,2980,772,17,4,larves,DSC_0844.JPG +1516,2977,1027,15,4,larves,DSC_0844.JPG +1517,1600,1057,15,4,larves,DSC_0844.JPG +1520,940,1225,15,4,larves,DSC_0844.JPG +1522,2482,1261,16,4,larves,DSC_0844.JPG +1523,2203,1378,15,4,larves,DSC_0844.JPG +1524,2725,1447,16,4,larves,DSC_0844.JPG +1525,793,1453,15,3,larves,DSC_0844.JPG +1526,3565,1456,15,4,larves,DSC_0844.JPG +1528,2305,1561,17,4,larves,DSC_0844.JPG +153,3340,2059,16,4,larves,DSC_0844.JPG +1530,2434,1807,15,4,larves,DSC_0844.JPG +1531,2122,1858,15,4,larves,DSC_0844.JPG +1532,2188,1984,17,4,larves,DSC_0844.JPG +15381,1306,1567,16,4,larves,DSC_0818.JPG +15382,3940,1645,15,4,larves,DSC_0818.JPG +15383,3568,736,15,4,larves,DSC_0818.JPG +15385,3466,550,16,4,larves,DSC_0818.JPG +15387,1342,406,17,4,larves,DSC_0818.JPG +1539,1834,163,16,4,larves,DSC_0844.JPG +15391,1165,337,16,4,larves,DSC_0818.JPG +15393,1342,1864,15,4,larves,DSC_0818.JPG +15394,991,1381,15,4,larves,DSC_0818.JPG +15396,3274,1825,16,4,larves,DSC_0818.JPG +15397,3451,1645,16,4,larves,DSC_0818.JPG +15398,3220,484,16,4,larves,DSC_0818.JPG +15399,3112,673,15,4,larves,DSC_0818.JPG +15400,4027,676,17,4,larves,DSC_0818.JPG +15401,1768,1156,16,4,larves,DSC_0818.JPG +15404,4078,1762,15,3,larves,DSC_0818.JPG +15406,1198,400,16,4,larves,DSC_0818.JPG +15411,1237,2041,15,4,larves,DSC_0818.JPG +15415,3604,673,17,4,larves,DSC_0818.JPG +15416,3460,1042,16,4,larves,DSC_0818.JPG +15417,1516,1687,16,4,larves,DSC_0818.JPG +15419,3496,859,15,4,larves,DSC_0818.JPG +15420,3283,982,15,4,larves,DSC_0818.JPG +15421,2719,1342,16,4,larves,DSC_0818.JPG +15423,1087,589,16,4,larves,DSC_0818.JPG +15424,3949,1042,16,4,larves,DSC_0818.JPG +15426,4087,1288,15,3,larves,DSC_0818.JPG +15427,1237,1564,17,4,larves,DSC_0818.JPG +15428,2023,214,17,4,larves,DSC_0818.JPG +15429,1807,343,16,4,larves,DSC_0818.JPG +15430,4060,733,17,4,larves,DSC_0818.JPG +15431,3427,859,16,4,larves,DSC_0818.JPG +15432,3562,1102,15,4,larves,DSC_0818.JPG +15433,811,1318,16,3,larves,DSC_0818.JPG +15434,1339,1390,15,4,larves,DSC_0818.JPG +15435,3145,859,15,4,larves,DSC_0818.JPG +15438,1804,478,15,4,larves,DSC_0818.JPG +15439,2644,1942,15,4,larves,DSC_0818.JPG +15441,1159,463,17,4,larves,DSC_0818.JPG +15442,2554,670,15,4,larves,DSC_0818.JPG +15443,3853,733,15,4,larves,DSC_0818.JPG +15444,4024,796,15,4,larves,DSC_0818.JPG +15445,3310,1765,15,4,larves,DSC_0818.JPG +15446,2425,2176,15,4,larves,DSC_0818.JPG +15448,3463,673,17,4,larves,DSC_0818.JPG +15449,1693,1279,16,4,larves,DSC_0818.JPG +1545,4276,979,15,3,larves,DSC_0844.JPG +15451,1768,409,16,4,larves,DSC_0818.JPG +15452,4690,982,17,3,larves,DSC_0818.JPG +15454,1585,1450,15,4,larves,DSC_0818.JPG +15455,1549,1510,15,4,larves,DSC_0818.JPG +15456,3769,1585,15,4,larves,DSC_0818.JPG +1546,2839,1024,15,4,larves,DSC_0844.JPG +15460,3319,1042,17,4,larves,DSC_0818.JPG +15461,2440,1105,16,4,larves,DSC_0818.JPG +15463,3949,1285,15,4,larves,DSC_0818.JPG +15466,3238,1885,16,4,larves,DSC_0818.JPG +1547,1432,1120,15,4,larves,DSC_0844.JPG +15471,3733,1765,17,4,larves,DSC_0818.JPG +15473,1057,529,17,4,larves,DSC_0818.JPG +15475,1945,1096,17,4,larves,DSC_0818.JPG +15476,1483,1627,15,4,larves,DSC_0818.JPG +15477,1480,1747,15,4,larves,DSC_0818.JPG +15479,1273,1864,15,4,larves,DSC_0818.JPG +1548,2308,1198,16,4,larves,DSC_0844.JPG +15480,1198,2098,17,3,larves,DSC_0818.JPG +15482,1411,409,17,4,larves,DSC_0818.JPG +15483,3637,859,16,4,larves,DSC_0818.JPG +15484,3139,1345,16,4,larves,DSC_0818.JPG +15486,2716,1582,15,4,larves,DSC_0818.JPG +15487,1618,1867,15,4,larves,DSC_0818.JPG +15489,2044,2113,15,4,larves,DSC_0818.JPG +1549,4483,1222,17,3,larves,DSC_0844.JPG +15490,1768,277,17,4,larves,DSC_0818.JPG +15491,2161,850,15,4,larves,DSC_0818.JPG +15493,3730,1645,15,4,larves,DSC_0818.JPG +15494,3205,1825,16,4,larves,DSC_0818.JPG +15495,2953,2005,15,4,larves,DSC_0818.JPG +15499,1375,1447,15,4,larves,DSC_0818.JPG +15500,703,1609,17,4,larves,DSC_0818.JPG +15502,3694,1705,15,4,larves,DSC_0818.JPG +15505,3679,424,17,4,larves,DSC_0818.JPG +15506,3499,736,16,4,larves,DSC_0818.JPG +15507,3253,919,15,4,larves,DSC_0818.JPG +15509,3424,1105,15,4,larves,DSC_0818.JPG +1551,3217,1333,15,4,larves,DSC_0844.JPG +15511,1168,1681,15,4,larves,DSC_0818.JPG +15514,565,646,17,4,larves,DSC_0818.JPG +15515,3664,1285,15,4,larves,DSC_0818.JPG +15517,3415,1705,15,4,larves,DSC_0818.JPG +1552,3325,1396,15,4,larves,DSC_0844.JPG +15520,3109,1042,15,4,larves,DSC_0818.JPG +15521,4123,1102,15,3,larves,DSC_0818.JPG +15522,4015,1285,15,4,larves,DSC_0818.JPG +15523,1375,1333,17,4,larves,DSC_0818.JPG +15524,3454,1408,15,4,larves,DSC_0818.JPG +15525,3799,1645,15,4,larves,DSC_0818.JPG +15526,1060,1738,15,4,larves,DSC_0818.JPG +15527,3415,1825,16,4,larves,DSC_0818.JPG +15534,3643,610,16,4,larves,DSC_0818.JPG +15535,703,772,15,4,larves,DSC_0818.JPG +15537,1480,1273,16,4,larves,DSC_0818.JPG +15539,2821,1765,15,4,larves,DSC_0818.JPG +1554,2266,1618,17,4,larves,DSC_0844.JPG +15540,1447,2044,15,4,larves,DSC_0818.JPG +15541,1663,346,17,4,larves,DSC_0818.JPG +15543,3313,1525,16,4,larves,DSC_0818.JPG +15545,4093,796,17,4,larves,DSC_0818.JPG +15546,4189,1345,15,4,larves,DSC_0818.JPG +15547,3031,1405,16,4,larves,DSC_0818.JPG +15549,2959,1645,16,4,larves,DSC_0818.JPG +15550,4081,1645,15,4,larves,DSC_0818.JPG +15551,2185,1759,16,4,larves,DSC_0818.JPG +15555,2260,544,15,4,larves,DSC_0818.JPG +15556,3112,547,17,4,larves,DSC_0818.JPG +15557,1267,1267,16,4,larves,DSC_0818.JPG +15558,3598,1285,15,4,larves,DSC_0818.JPG +15560,1096,1798,16,4,larves,DSC_0818.JPG +15565,1591,346,17,4,larves,DSC_0818.JPG +15566,1021,466,17,4,larves,DSC_0818.JPG +15568,1090,1081,16,4,larves,DSC_0818.JPG +15569,3877,1285,16,4,larves,DSC_0818.JPG +15571,3169,1645,15,4,larves,DSC_0818.JPG +15572,2428,1822,15,4,larves,DSC_0818.JPG +15573,1201,1864,16,4,larves,DSC_0818.JPG +15576,1690,1990,15,4,larves,DSC_0818.JPG +15577,3340,2062,15,4,larves,DSC_0818.JPG +15579,3505,358,16,4,larves,DSC_0818.JPG +15582,916,1018,15,4,larves,DSC_0818.JPG +15583,985,1018,15,4,larves,DSC_0818.JPG +15584,1768,1033,15,4,larves,DSC_0818.JPG +15585,3142,1102,16,4,larves,DSC_0818.JPG +15586,2965,1285,15,4,larves,DSC_0818.JPG +15588,4084,1525,16,4,larves,DSC_0818.JPG +15589,3097,1765,15,4,larves,DSC_0818.JPG +15591,3376,2005,15,4,larves,DSC_0818.JPG +15592,3484,2062,15,4,larves,DSC_0818.JPG +15597,1987,280,17,4,larves,DSC_0818.JPG +15598,3607,550,16,4,larves,DSC_0818.JPG +15599,3817,796,15,4,larves,DSC_0818.JPG +156,2710,505,16,4,larves,DSC_0844.JPG +1560,2362,2044,15,4,larves,DSC_0844.JPG +15600,3601,1162,15,4,larves,DSC_0818.JPG +15601,3319,1288,17,4,larves,DSC_0818.JPG +15607,3289,610,16,4,larves,DSC_0818.JPG +15608,3922,736,15,4,larves,DSC_0818.JPG +15609,1234,1330,15,4,larves,DSC_0818.JPG +1561,1876,2155,15,4,larves,DSC_0844.JPG +15610,1549,1393,15,4,larves,DSC_0818.JPG +15611,3523,1522,17,4,larves,DSC_0818.JPG +15613,1237,1684,15,4,larves,DSC_0818.JPG +15614,1060,1858,16,4,larves,DSC_0818.JPG +15615,3868,1882,15,4,larves,DSC_0818.JPG +15616,1762,2110,16,4,larves,DSC_0818.JPG +15619,1591,214,16,4,larves,DSC_0818.JPG +15620,3469,421,16,4,larves,DSC_0818.JPG +15621,3676,547,17,4,larves,DSC_0818.JPG +15622,3676,796,16,4,larves,DSC_0818.JPG +15627,847,1261,16,4,larves,DSC_0818.JPG +15628,3382,1528,15,4,larves,DSC_0818.JPG +15629,1234,1804,15,4,larves,DSC_0818.JPG +15631,3694,1942,16,4,larves,DSC_0818.JPG +15632,3199,2062,15,4,larves,DSC_0818.JPG +15633,2149,2176,15,4,larves,DSC_0818.JPG +15634,1699,277,17,4,larves,DSC_0818.JPG +15635,673,463,17,4,larves,DSC_0818.JPG +15636,706,649,16,4,larves,DSC_0818.JPG +15638,1840,910,17,4,larves,DSC_0818.JPG +15639,490,1012,17,4,larves,DSC_0818.JPG +15640,2050,1159,15,4,larves,DSC_0818.JPG +15641,3943,1525,15,4,larves,DSC_0818.JPG +15642,3979,1585,15,4,larves,DSC_0818.JPG +15643,1096,1678,17,4,larves,DSC_0818.JPG +15644,2182,1996,15,4,larves,DSC_0818.JPG +15648,1378,340,16,4,larves,DSC_0818.JPG +15649,3010,481,16,4,larves,DSC_0818.JPG +15650,3925,487,16,4,larves,DSC_0818.JPG +15651,3358,610,15,4,larves,DSC_0818.JPG +15653,985,1141,15,4,larves,DSC_0818.JPG +15654,4402,1465,16,3,larves,DSC_0818.JPG +15655,4189,1585,16,4,larves,DSC_0818.JPG +15656,4330,1585,16,4,larves,DSC_0818.JPG +15657,1270,1744,15,4,larves,DSC_0818.JPG +15659,1585,1927,16,4,larves,DSC_0818.JPG +15663,3256,418,17,4,larves,DSC_0818.JPG +15664,3328,421,16,4,larves,DSC_0818.JPG +15665,775,523,15,4,larves,DSC_0818.JPG +15666,847,526,16,4,larves,DSC_0818.JPG +15667,1195,535,16,4,larves,DSC_0818.JPG +15668,3256,547,16,4,larves,DSC_0818.JPG +15674,1126,400,17,4,larves,DSC_0818.JPG +15676,2902,916,16,4,larves,DSC_0818.JPG +1568,3844,394,16,3,larves,DSC_0844.JPG +15680,3127,2065,15,4,larves,DSC_0818.JPG +15682,1732,346,17,4,larves,DSC_0818.JPG +15683,2191,541,15,4,larves,DSC_0818.JPG +15684,601,586,16,4,larves,DSC_0818.JPG +15685,418,646,17,3,larves,DSC_0818.JPG +15686,916,649,17,4,larves,DSC_0818.JPG +15687,2590,730,15,4,larves,DSC_0818.JPG +15688,2659,853,16,4,larves,DSC_0818.JPG +15690,1096,1324,15,4,larves,DSC_0818.JPG +15697,3325,547,16,4,larves,DSC_0818.JPG +15698,3112,796,16,4,larves,DSC_0818.JPG +15699,880,955,15,4,larves,DSC_0818.JPG +157,3232,715,15,4,larves,DSC_0844.JPG +15701,847,1018,16,4,larves,DSC_0818.JPG +15703,811,1435,16,4,larves,DSC_0818.JPG +15704,4645,1522,17,3,larves,DSC_0818.JPG +15705,4222,1525,17,4,larves,DSC_0818.JPG +15706,2395,1882,16,4,larves,DSC_0818.JPG +1571,2956,577,15,4,larves,DSC_0844.JPG +15710,3397,418,16,4,larves,DSC_0818.JPG +15711,1015,838,15,4,larves,DSC_0818.JPG +15712,3391,1042,16,4,larves,DSC_0818.JPG +15713,1126,1141,15,4,larves,DSC_0818.JPG +15714,1585,1216,16,4,larves,DSC_0818.JPG +15715,988,1258,15,4,larves,DSC_0818.JPG +15718,1831,1633,15,4,larves,DSC_0818.JPG +15719,3559,1705,15,4,larves,DSC_0818.JPG +15725,4099,673,17,3,larves,DSC_0818.JPG +15726,3394,796,17,4,larves,DSC_0818.JPG +15728,1942,976,15,4,larves,DSC_0818.JPG +1573,2077,628,17,4,larves,DSC_0844.JPG +15730,4189,1465,15,4,larves,DSC_0818.JPG +15731,3802,1525,15,4,larves,DSC_0818.JPG +15733,3418,1585,15,4,larves,DSC_0818.JPG +15734,1129,1738,17,4,larves,DSC_0818.JPG +15736,1201,1981,16,4,larves,DSC_0818.JPG +15738,2746,2005,15,4,larves,DSC_0818.JPG +1574,1864,745,15,4,larves,DSC_0844.JPG +15744,3253,673,16,4,larves,DSC_0818.JPG +15747,3391,1165,16,4,larves,DSC_0818.JPG +15748,3736,1285,16,4,larves,DSC_0818.JPG +1575,1120,799,15,4,larves,DSC_0844.JPG +15752,3526,1408,17,4,larves,DSC_0818.JPG +15753,1093,1444,15,4,larves,DSC_0818.JPG +15755,1480,1507,17,4,larves,DSC_0818.JPG +15757,1201,1624,16,4,larves,DSC_0818.JPG +15759,4009,1765,15,3,larves,DSC_0818.JPG +1576,2455,826,16,4,larves,DSC_0844.JPG +15760,1834,2110,15,4,larves,DSC_0818.JPG +15761,3022,2122,15,4,larves,DSC_0818.JPG +15765,3430,733,17,4,larves,DSC_0818.JPG +15766,3322,799,15,4,larves,DSC_0818.JPG +1577,1783,868,15,4,larves,DSC_0844.JPG +15770,1126,1264,15,4,larves,DSC_0818.JPG +15772,3769,1345,15,4,larves,DSC_0818.JPG +15773,1060,1381,17,4,larves,DSC_0818.JPG +15774,595,1432,16,4,larves,DSC_0818.JPG +15775,2542,1519,17,4,larves,DSC_0818.JPG +15776,3277,1705,15,4,larves,DSC_0818.JPG +15777,778,1732,15,3,larves,DSC_0818.JPG +15779,3538,421,17,4,larves,DSC_0818.JPG +1578,2014,880,17,4,larves,DSC_0844.JPG +15780,3748,547,17,4,larves,DSC_0818.JPG +15782,2626,916,15,4,larves,DSC_0818.JPG +15783,3673,919,16,4,larves,DSC_0818.JPG +15784,4162,922,15,4,larves,DSC_0818.JPG +15785,2857,1222,17,4,larves,DSC_0818.JPG +15786,775,1375,17,4,larves,DSC_0818.JPG +15789,1339,1627,15,4,larves,DSC_0818.JPG +1579,2452,1075,17,4,larves,DSC_0844.JPG +15790,2290,1819,15,4,larves,DSC_0818.JPG +15792,1516,1924,17,4,larves,DSC_0818.JPG +15798,3856,487,17,4,larves,DSC_0818.JPG +15800,2767,790,15,4,larves,DSC_0818.JPG +15801,2053,916,17,4,larves,DSC_0818.JPG +15803,3775,1105,17,4,larves,DSC_0818.JPG +15804,3667,1165,15,4,larves,DSC_0818.JPG +15805,4444,1168,17,3,larves,DSC_0818.JPG +15807,3382,1765,16,4,larves,DSC_0818.JPG +15808,2500,1939,17,4,larves,DSC_0818.JPG +1581,3712,1096,15,4,larves,DSC_0844.JPG +15810,1165,2041,15,4,larves,DSC_0818.JPG +15811,1585,2047,15,4,larves,DSC_0818.JPG +15812,3058,2062,15,4,larves,DSC_0818.JPG +15816,3604,796,16,4,larves,DSC_0818.JPG +15817,3493,982,15,4,larves,DSC_0818.JPG +1582,4204,1105,15,4,larves,DSC_0844.JPG +15820,949,1438,15,4,larves,DSC_0818.JPG +15823,2647,1705,15,4,larves,DSC_0818.JPG +15824,3169,1765,15,4,larves,DSC_0818.JPG +15826,3346,1825,15,4,larves,DSC_0818.JPG +15827,1093,1918,15,4,larves,DSC_0818.JPG +15829,2116,1996,15,4,larves,DSC_0818.JPG +1583,2137,1132,15,4,larves,DSC_0844.JPG +15831,1132,2098,15,4,larves,DSC_0818.JPG +15832,1621,2107,16,4,larves,DSC_0818.JPG +15833,2671,2122,15,4,larves,DSC_0818.JPG +15834,1657,2167,15,4,larves,DSC_0818.JPG +15839,808,712,15,4,larves,DSC_0818.JPG +15841,1981,1039,16,4,larves,DSC_0818.JPG +15842,3739,1165,16,4,larves,DSC_0818.JPG +15844,2398,1402,17,4,larves,DSC_0818.JPG +15846,3799,1765,15,4,larves,DSC_0818.JPG +15847,3307,1885,15,4,larves,DSC_0818.JPG +15848,3235,2005,15,4,larves,DSC_0818.JPG +1585,298,1189,15,3,larves,DSC_0844.JPG +15857,2020,601,16,4,larves,DSC_0818.JPG +15858,3748,673,15,4,larves,DSC_0818.JPG +15859,2296,850,15,4,larves,DSC_0818.JPG +1586,1078,1228,16,4,larves,DSC_0844.JPG +15860,2869,853,16,4,larves,DSC_0818.JPG +15861,3358,859,16,4,larves,DSC_0818.JPG +15864,3355,979,15,4,larves,DSC_0818.JPG +15866,1618,1156,17,4,larves,DSC_0818.JPG +15867,3493,1225,15,4,larves,DSC_0818.JPG +15868,2224,1339,17,4,larves,DSC_0818.JPG +1587,3640,1339,16,3,larves,DSC_0844.JPG +15870,1657,1453,16,4,larves,DSC_0818.JPG +15871,3346,1468,17,4,larves,DSC_0818.JPG +15872,3487,1588,17,4,larves,DSC_0818.JPG +15874,1027,1798,15,4,larves,DSC_0818.JPG +15875,2464,2002,15,4,larves,DSC_0818.JPG +15878,1843,277,17,4,larves,DSC_0818.JPG +1588,2854,1813,16,3,larves,DSC_0844.JPG +15880,3115,418,16,4,larves,DSC_0818.JPG +15882,1843,541,16,4,larves,DSC_0818.JPG +15885,1873,850,17,4,larves,DSC_0818.JPG +15886,3388,919,15,4,larves,DSC_0818.JPG +15887,3883,919,16,4,larves,DSC_0818.JPG +15889,4018,1165,15,4,larves,DSC_0818.JPG +1589,5110,1816,17,3,larves,DSC_0844.JPG +15891,1909,1279,15,4,larves,DSC_0818.JPG +15892,3388,1288,17,4,larves,DSC_0818.JPG +15895,3175,1402,17,4,larves,DSC_0818.JPG +15896,1375,1567,15,4,larves,DSC_0818.JPG +15897,2851,1582,15,4,larves,DSC_0818.JPG +15899,1342,1984,15,4,larves,DSC_0818.JPG +159,2818,1870,16,3,larves,DSC_0844.JPG +1590,3370,2116,15,4,larves,DSC_0844.JPG +15900,3094,2002,15,4,larves,DSC_0818.JPG +15902,2740,2122,15,4,larves,DSC_0818.JPG +15907,1270,274,16,4,larves,DSC_0818.JPG +15908,3010,349,17,3,larves,DSC_0818.JPG +15909,2485,541,17,4,larves,DSC_0818.JPG +15910,3079,733,16,4,larves,DSC_0818.JPG +15912,3778,979,16,4,larves,DSC_0818.JPG +15913,739,1075,17,4,larves,DSC_0818.JPG +15915,1801,1219,16,4,larves,DSC_0818.JPG +15916,3565,1222,15,4,larves,DSC_0818.JPG +15917,3697,1582,16,4,larves,DSC_0818.JPG +15918,3028,1762,15,4,larves,DSC_0818.JPG +15919,3592,1765,16,4,larves,DSC_0818.JPG +15920,1513,1807,15,4,larves,DSC_0818.JPG +15921,2506,1822,15,4,larves,DSC_0818.JPG +15922,2785,1825,16,4,larves,DSC_0818.JPG +15923,919,1855,16,4,larves,DSC_0818.JPG +15925,2218,2176,15,4,larves,DSC_0818.JPG +15927,3610,418,15,4,larves,DSC_0818.JPG +15928,2158,601,17,4,larves,DSC_0818.JPG +15929,2938,730,15,4,larves,DSC_0818.JPG +15930,2902,793,16,4,larves,DSC_0818.JPG +15931,4414,862,17,3,larves,DSC_0818.JPG +15934,3004,1102,15,4,larves,DSC_0818.JPG +15935,3949,1165,15,3,larves,DSC_0818.JPG +15936,3631,1345,16,4,larves,DSC_0818.JPG +15937,1768,1396,15,4,larves,DSC_0818.JPG +15940,1939,1810,17,4,larves,DSC_0818.JPG +15941,2926,1825,16,4,larves,DSC_0818.JPG +15942,952,1915,17,4,larves,DSC_0818.JPG +15946,1627,277,17,4,larves,DSC_0818.JPG +15947,1093,463,15,4,larves,DSC_0818.JPG +15948,3079,481,16,4,larves,DSC_0818.JPG +15950,2941,607,16,4,larves,DSC_0818.JPG +15951,3043,670,16,4,larves,DSC_0818.JPG +15953,3850,859,15,4,larves,DSC_0818.JPG +15955,3109,916,15,4,larves,DSC_0818.JPG +15956,3742,1042,17,4,larves,DSC_0818.JPG +15958,3877,1165,15,4,larves,DSC_0818.JPG +15959,1024,1204,15,4,larves,DSC_0818.JPG +15962,3352,1345,16,4,larves,DSC_0818.JPG +15963,1165,1801,16,4,larves,DSC_0818.JPG +15966,706,523,15,4,larves,DSC_0818.JPG +15972,847,1138,16,4,larves,DSC_0818.JPG +15973,955,1321,17,4,larves,DSC_0818.JPG +15974,3277,1468,15,4,larves,DSC_0818.JPG +15975,1516,1570,15,4,larves,DSC_0818.JPG +15976,2752,1642,17,4,larves,DSC_0818.JPG +15977,3031,1642,15,4,larves,DSC_0818.JPG +15978,2749,1885,15,4,larves,DSC_0818.JPG +15980,1477,1987,17,4,larves,DSC_0818.JPG +15981,3028,2005,17,4,larves,DSC_0818.JPG +15991,919,400,17,4,larves,DSC_0818.JPG +15992,3502,487,17,4,larves,DSC_0818.JPG +15993,1987,538,16,4,larves,DSC_0818.JPG +15995,2407,673,15,4,larves,DSC_0818.JPG +15996,2479,673,15,4,larves,DSC_0818.JPG +15999,814,1078,15,4,larves,DSC_0818.JPG +16,2635,634,15,4,larves,DSC_0844.JPG +160,2434,1924,15,4,larves,DSC_0844.JPG +16001,3139,1222,17,4,larves,DSC_0818.JPG +16003,3244,1525,16,4,larves,DSC_0818.JPG +16005,1270,1627,15,4,larves,DSC_0818.JPG +16006,2926,1705,16,4,larves,DSC_0818.JPG +16007,3484,1705,15,4,larves,DSC_0818.JPG +1601,3877,463,17,3,larves,DSC_0844.JPG +16011,1762,1990,15,4,larves,DSC_0818.JPG +16019,814,463,15,4,larves,DSC_0818.JPG +16020,1060,1141,17,4,larves,DSC_0818.JPG +16021,1837,1156,16,4,larves,DSC_0818.JPG +16022,3979,1225,15,4,larves,DSC_0818.JPG +16023,1444,1450,16,4,larves,DSC_0818.JPG +16024,739,1552,15,4,larves,DSC_0818.JPG +16025,1624,1630,17,4,larves,DSC_0818.JPG +16026,1306,1687,16,4,larves,DSC_0818.JPG +16027,559,1726,16,4,larves,DSC_0818.JPG +16028,1552,1747,17,4,larves,DSC_0818.JPG +16029,1903,1993,15,4,larves,DSC_0818.JPG +1603,2323,568,16,4,larves,DSC_0844.JPG +16031,1723,2050,15,4,larves,DSC_0818.JPG +16036,3886,676,17,4,larves,DSC_0818.JPG +16037,454,826,17,4,larves,DSC_0818.JPG +16038,2368,850,16,4,larves,DSC_0818.JPG +16039,778,895,16,4,larves,DSC_0818.JPG +1604,2458,697,17,4,larves,DSC_0844.JPG +16040,562,1012,17,4,larves,DSC_0818.JPG +16041,952,1078,15,4,larves,DSC_0818.JPG +16043,1060,1261,17,4,larves,DSC_0818.JPG +16044,1837,1279,15,4,larves,DSC_0818.JPG +16045,3808,1285,15,4,larves,DSC_0818.JPG +16048,1375,2161,16,4,larves,DSC_0818.JPG +1605,3019,712,17,4,larves,DSC_0844.JPG +16054,3214,856,17,4,larves,DSC_0818.JPG +16055,3214,982,16,4,larves,DSC_0818.JPG +16056,3916,982,16,4,larves,DSC_0818.JPG +16057,3073,1099,17,4,larves,DSC_0818.JPG +16058,3355,1102,17,4,larves,DSC_0818.JPG +16059,2329,1159,16,4,larves,DSC_0818.JPG +16061,1336,1273,17,4,larves,DSC_0818.JPG +16063,3178,1288,17,4,larves,DSC_0818.JPG +16064,1303,1330,15,4,larves,DSC_0818.JPG +16065,3805,1405,15,4,larves,DSC_0818.JPG +16066,2887,1642,15,4,larves,DSC_0818.JPG +16068,4012,1645,16,4,larves,DSC_0818.JPG +16069,3205,1702,17,4,larves,DSC_0818.JPG +1607,2524,829,15,4,larves,DSC_0844.JPG +16071,2497,2056,17,4,larves,DSC_0818.JPG +16072,2425,2059,15,4,larves,DSC_0818.JPG +16079,2125,409,17,4,larves,DSC_0818.JPG +1608,1717,862,15,4,larves,DSC_0844.JPG +16080,2905,544,17,4,larves,DSC_0818.JPG +16081,2446,607,15,4,larves,DSC_0818.JPG +16082,2128,667,16,4,larves,DSC_0818.JPG +16083,2263,670,15,4,larves,DSC_0818.JPG +16084,490,766,15,3,larves,DSC_0818.JPG +16086,4339,1105,17,3,larves,DSC_0818.JPG +16087,3874,1405,15,4,larves,DSC_0818.JPG +16089,1798,1453,15,4,larves,DSC_0818.JPG +1609,2560,892,16,4,larves,DSC_0844.JPG +16090,3421,1468,15,4,larves,DSC_0818.JPG +16091,3595,1525,16,4,larves,DSC_0818.JPG +16092,1060,1621,15,4,larves,DSC_0818.JPG +16095,3241,1765,16,4,larves,DSC_0818.JPG +16097,3133,1825,15,4,larves,DSC_0818.JPG +16099,3937,1885,17,4,larves,DSC_0818.JPG +1610,3016,967,15,4,larves,DSC_0844.JPG +16100,1024,1915,15,4,larves,DSC_0818.JPG +16101,1657,1927,15,4,larves,DSC_0818.JPG +16102,2044,1993,17,4,larves,DSC_0818.JPG +16103,2149,2056,16,4,larves,DSC_0818.JPG +16104,1552,2104,15,4,larves,DSC_0818.JPG +16107,1093,334,16,4,larves,DSC_0818.JPG +1611,1576,997,16,4,larves,DSC_0844.JPG +16111,3364,484,17,4,larves,DSC_0818.JPG +16112,3148,487,15,4,larves,DSC_0818.JPG +16113,3046,544,16,4,larves,DSC_0818.JPG +16116,4447,1045,17,3,larves,DSC_0818.JPG +16117,1729,1093,17,4,larves,DSC_0818.JPG +1612,3148,1090,17,4,larves,DSC_0844.JPG +16121,2680,1762,17,4,larves,DSC_0818.JPG +16123,1444,2164,16,4,larves,DSC_0818.JPG +16124,2986,2185,15,4,larves,DSC_0818.JPG +1613,2938,1207,16,4,larves,DSC_0844.JPG +16130,1018,589,15,4,larves,DSC_0818.JPG +16132,2974,670,16,4,larves,DSC_0818.JPG +16133,946,712,16,4,larves,DSC_0818.JPG +16134,3712,733,17,4,larves,DSC_0818.JPG +16135,949,955,17,4,larves,DSC_0818.JPG +16136,3670,1039,15,4,larves,DSC_0818.JPG +16139,919,1381,15,4,larves,DSC_0818.JPG +1614,3010,1207,17,3,larves,DSC_0844.JPG +16141,2995,1462,15,4,larves,DSC_0818.JPG +16142,3067,1465,16,4,larves,DSC_0818.JPG +16143,3838,1465,15,4,larves,DSC_0818.JPG +16144,3031,1522,15,4,larves,DSC_0818.JPG +16145,1168,1564,15,4,larves,DSC_0818.JPG +16147,2578,1702,15,4,larves,DSC_0818.JPG +16149,2995,1825,15,4,larves,DSC_0818.JPG +1615,2557,1261,17,4,larves,DSC_0844.JPG +16153,1375,1927,17,4,larves,DSC_0818.JPG +16155,1936,2053,15,4,larves,DSC_0818.JPG +16157,3058,2182,15,4,larves,DSC_0818.JPG +16158,1621,2224,15,4,larves,DSC_0818.JPG +1616,799,1339,15,3,larves,DSC_0844.JPG +16161,2944,346,17,3,larves,DSC_0818.JPG +16163,3046,418,15,4,larves,DSC_0818.JPG +16164,3784,613,17,4,larves,DSC_0818.JPG +16165,982,772,16,4,larves,DSC_0818.JPG +16166,1087,958,15,4,larves,DSC_0818.JPG +16167,1339,1150,15,4,larves,DSC_0818.JPG +1617,3670,1519,17,4,larves,DSC_0844.JPG +16170,2959,1405,15,4,larves,DSC_0818.JPG +16171,3133,1585,15,4,larves,DSC_0818.JPG +16172,4048,1585,16,4,larves,DSC_0818.JPG +16173,2470,1642,16,4,larves,DSC_0818.JPG +16175,3064,1825,16,4,larves,DSC_0818.JPG +16176,1759,1870,15,4,larves,DSC_0818.JPG +16177,3481,1945,15,4,larves,DSC_0818.JPG +16178,1129,1978,15,4,larves,DSC_0818.JPG +16180,2848,2065,15,4,larves,DSC_0818.JPG +16181,1483,2104,15,4,larves,DSC_0818.JPG +16184,2251,2356,15,3,larves,DSC_0818.JPG +16187,955,334,17,4,larves,DSC_0818.JPG +16188,988,400,16,4,larves,DSC_0818.JPG +16190,2839,544,15,4,larves,DSC_0818.JPG +16191,3148,610,16,4,larves,DSC_0818.JPG +16194,3463,799,17,4,larves,DSC_0818.JPG +16195,670,835,17,4,larves,DSC_0818.JPG +16196,1018,958,15,4,larves,DSC_0818.JPG +16198,3004,976,17,4,larves,DSC_0818.JPG +16199,3880,1039,15,4,larves,DSC_0818.JPG +1620,2749,1747,15,4,larves,DSC_0844.JPG +16201,3250,1165,16,4,larves,DSC_0818.JPG +16202,811,1198,16,4,larves,DSC_0818.JPG +16203,2788,1345,16,4,larves,DSC_0818.JPG +16204,1201,1504,15,4,larves,DSC_0818.JPG +16205,2254,1642,17,4,larves,DSC_0818.JPG +16206,4153,1645,16,4,larves,DSC_0818.JPG +16207,1762,1750,15,4,larves,DSC_0818.JPG +16208,1621,1753,17,4,larves,DSC_0818.JPG +1621,2020,1792,17,4,larves,DSC_0844.JPG +16211,3343,1942,17,4,larves,DSC_0818.JPG +16213,1060,1978,15,4,larves,DSC_0818.JPG +16214,1549,1987,16,4,larves,DSC_0818.JPG +1622,2644,1810,17,4,larves,DSC_0844.JPG +16222,4171,2299,15,3,larves,DSC_0818.JPG +16227,3430,484,17,4,larves,DSC_0818.JPG +16228,3643,484,16,4,larves,DSC_0818.JPG +16229,3715,484,16,4,larves,DSC_0818.JPG +1623,1846,1855,15,4,larves,DSC_0844.JPG +16234,742,709,15,4,larves,DSC_0818.JPG +16236,916,772,17,4,larves,DSC_0818.JPG +16237,706,895,15,4,larves,DSC_0818.JPG +16238,4375,922,16,3,larves,DSC_0818.JPG +16239,3637,979,16,4,larves,DSC_0818.JPG +1624,3304,1999,16,4,larves,DSC_0844.JPG +16242,775,1255,17,4,larves,DSC_0818.JPG +16243,1660,1333,17,4,larves,DSC_0818.JPG +16244,3664,1402,17,4,larves,DSC_0818.JPG +16245,2221,1462,16,4,larves,DSC_0818.JPG +16247,4156,1525,15,4,larves,DSC_0818.JPG +16248,3838,1588,17,4,larves,DSC_0818.JPG +16250,1306,1807,17,4,larves,DSC_0818.JPG +16251,2152,1819,15,4,larves,DSC_0818.JPG +16253,3766,1822,16,4,larves,DSC_0818.JPG +16254,1831,1873,15,4,larves,DSC_0818.JPG +16257,3307,2005,16,4,larves,DSC_0818.JPG +16258,2080,2056,16,4,larves,DSC_0818.JPG +16260,1306,2161,15,4,larves,DSC_0818.JPG +16261,2707,2182,15,4,larves,DSC_0818.JPG +16267,3397,547,16,4,larves,DSC_0818.JPG +16269,2905,670,16,4,larves,DSC_0818.JPG +16270,3532,919,16,4,larves,DSC_0818.JPG +16271,4024,922,17,4,larves,DSC_0818.JPG +16272,919,1261,15,4,larves,DSC_0818.JPG +16274,1024,1441,16,4,larves,DSC_0818.JPG +16275,1690,1513,17,4,larves,DSC_0818.JPG +16276,3694,1822,15,4,larves,DSC_0818.JPG +16277,883,1912,17,4,larves,DSC_0818.JPG +16278,1165,1918,17,4,larves,DSC_0818.JPG +16279,1237,1924,15,4,larves,DSC_0818.JPG +16280,3274,1945,15,4,larves,DSC_0818.JPG +16281,2251,1999,15,4,larves,DSC_0818.JPG +16293,2332,667,15,4,larves,DSC_0818.JPG +16296,3424,979,17,4,larves,DSC_0818.JPG +16297,3178,1042,15,4,larves,DSC_0818.JPG +163,1936,622,16,4,larves,DSC_0844.JPG +16300,2014,1219,16,4,larves,DSC_0818.JPG +16302,883,1318,16,4,larves,DSC_0818.JPG +16303,1270,1387,16,4,larves,DSC_0818.JPG +16305,4120,1465,17,4,larves,DSC_0818.JPG +16307,2857,1705,15,4,larves,DSC_0818.JPG +16311,3169,1882,16,4,larves,DSC_0818.JPG +16314,2008,2173,15,4,larves,DSC_0818.JPG +16315,2917,2182,15,4,larves,DSC_0818.JPG +16321,2077,2296,16,4,larves,DSC_0818.JPG +16325,2020,478,17,4,larves,DSC_0818.JPG +16326,670,589,15,4,larves,DSC_0818.JPG +16328,3991,736,16,4,larves,DSC_0818.JPG +16329,565,769,17,4,larves,DSC_0818.JPG +16331,2479,913,17,4,larves,DSC_0818.JPG +16332,4234,919,17,4,larves,DSC_0818.JPG +16333,2938,979,15,4,larves,DSC_0818.JPG +16334,1057,1021,17,4,larves,DSC_0818.JPG +16335,3319,1165,16,4,larves,DSC_0818.JPG +16336,1732,1219,15,4,larves,DSC_0818.JPG +16338,1693,1393,15,4,larves,DSC_0818.JPG +16340,1762,1513,15,4,larves,DSC_0818.JPG +16341,2926,1582,15,4,larves,DSC_0818.JPG +16342,3904,1585,17,4,larves,DSC_0818.JPG +16343,1411,1627,17,4,larves,DSC_0818.JPG +16344,2251,2116,15,4,larves,DSC_0818.JPG +16345,3235,2125,15,4,larves,DSC_0818.JPG +16348,1882,214,17,4,larves,DSC_0818.JPG +1635,2080,880,15,4,larves,DSC_0844.JPG +16351,3502,613,16,4,larves,DSC_0818.JPG +16352,2767,667,15,4,larves,DSC_0818.JPG +16353,3676,673,16,4,larves,DSC_0818.JPG +16355,3007,736,17,4,larves,DSC_0818.JPG +16357,1984,787,17,4,larves,DSC_0818.JPG +16358,3745,796,16,4,larves,DSC_0818.JPG +16359,2443,853,15,4,larves,DSC_0818.JPG +1636,3544,901,17,3,larves,DSC_0844.JPG +16364,2902,1039,15,4,larves,DSC_0818.JPG +16365,883,1201,15,4,larves,DSC_0818.JPG +16366,3700,1345,16,4,larves,DSC_0818.JPG +16368,2395,1522,16,4,larves,DSC_0818.JPG +16369,559,1606,17,4,larves,DSC_0818.JPG +16371,2959,1765,16,4,larves,DSC_0818.JPG +16372,3625,1825,16,4,larves,DSC_0818.JPG +16374,2680,1885,15,4,larves,DSC_0818.JPG +16385,3751,424,15,4,larves,DSC_0818.JPG +16387,2977,544,16,4,larves,DSC_0818.JPG +16388,3994,610,17,4,larves,DSC_0818.JPG +16389,844,649,16,4,larves,DSC_0818.JPG +16390,880,712,17,4,larves,DSC_0818.JPG +16391,2230,727,15,4,larves,DSC_0818.JPG +16392,3529,796,15,4,larves,DSC_0818.JPG +16393,598,832,16,4,larves,DSC_0818.JPG +16396,1441,1333,15,4,larves,DSC_0818.JPG +16397,1624,1396,15,4,larves,DSC_0818.JPG +16399,3559,1462,17,4,larves,DSC_0818.JPG +164,3709,1339,15,4,larves,DSC_0844.JPG +16400,1132,1504,15,4,larves,DSC_0818.JPG +16402,1129,1624,17,4,larves,DSC_0818.JPG +1641,1186,1291,15,4,larves,DSC_0844.JPG +16412,2056,409,16,4,larves,DSC_0818.JPG +16413,3076,610,17,4,larves,DSC_0818.JPG +16415,3322,670,17,4,larves,DSC_0818.JPG +16416,3535,673,17,4,larves,DSC_0818.JPG +16417,454,706,17,4,larves,DSC_0818.JPG +16419,2263,790,15,4,larves,DSC_0818.JPG +16420,3043,796,17,4,larves,DSC_0818.JPG +16421,3958,799,17,4,larves,DSC_0818.JPG +16422,4129,859,16,4,larves,DSC_0818.JPG +16423,706,1012,17,4,larves,DSC_0818.JPG +16428,2617,1282,15,3,larves,DSC_0818.JPG +16429,1939,1339,15,3,larves,DSC_0818.JPG +1643,3067,1696,17,4,larves,DSC_0844.JPG +16430,1303,1447,15,4,larves,DSC_0818.JPG +16431,3136,1465,16,3,larves,DSC_0818.JPG +16432,3490,1465,16,4,larves,DSC_0818.JPG +16436,703,1735,17,4,larves,DSC_0818.JPG +16437,2395,1759,17,4,larves,DSC_0818.JPG +16438,2323,1762,15,4,larves,DSC_0818.JPG +16440,2923,1945,15,4,larves,DSC_0818.JPG +16442,916,1972,15,4,larves,DSC_0818.JPG +16444,1516,2047,15,4,larves,DSC_0818.JPG +16445,3268,2062,15,4,larves,DSC_0818.JPG +16447,2461,2119,15,4,larves,DSC_0818.JPG +1645,1984,1732,17,4,larves,DSC_0844.JPG +16452,2875,478,15,4,larves,DSC_0818.JPG +16453,2731,604,15,4,larves,DSC_0818.JPG +16454,2806,607,15,4,larves,DSC_0818.JPG +16455,493,649,17,4,larves,DSC_0818.JPG +16456,2368,730,15,4,larves,DSC_0818.JPG +16458,4198,859,15,3,larves,DSC_0818.JPG +16459,2335,913,17,4,larves,DSC_0818.JPG +16461,3250,1039,17,4,larves,DSC_0818.JPG +16462,3637,1102,15,4,larves,DSC_0818.JPG +16463,4549,1105,16,4,larves,DSC_0818.JPG +16464,736,1198,15,4,larves,DSC_0818.JPG +16465,3772,1225,16,4,larves,DSC_0818.JPG +16466,487,1252,16,4,larves,DSC_0818.JPG +16468,1198,1387,15,4,larves,DSC_0818.JPG +16469,1798,1570,17,4,larves,DSC_0818.JPG +1647,2161,1801,15,4,larves,DSC_0844.JPG +16470,1972,1756,15,4,larves,DSC_0818.JPG +16473,3484,1822,17,4,larves,DSC_0818.JPG +16474,1975,1873,17,4,larves,DSC_0818.JPG +16475,1831,1993,15,4,larves,DSC_0818.JPG +16485,2122,544,17,4,larves,DSC_0818.JPG +16488,949,838,15,4,larves,DSC_0818.JPG +16489,2968,919,17,4,larves,DSC_0818.JPG +1649,931,1819,15,3,larves,DSC_0844.JPG +16490,811,955,15,4,larves,DSC_0818.JPG +16491,4234,1042,15,3,larves,DSC_0818.JPG +16492,526,1072,16,4,larves,DSC_0818.JPG +16494,1978,1279,15,4,larves,DSC_0818.JPG +16495,3103,1405,16,4,larves,DSC_0818.JPG +16498,847,1498,15,4,larves,DSC_0818.JPG +16499,1339,1510,15,4,larves,DSC_0818.JPG +165,2476,1504,15,4,larves,DSC_0844.JPG +1650,2539,1864,15,3,larves,DSC_0844.JPG +16501,2290,1585,15,4,larves,DSC_0818.JPG +16502,2464,1882,15,4,larves,DSC_0818.JPG +16507,2044,2230,15,4,larves,DSC_0818.JPG +1651,2017,1915,15,4,larves,DSC_0844.JPG +16515,1198,271,17,4,larves,DSC_0818.JPG +16516,2020,343,17,4,larves,DSC_0818.JPG +16519,982,649,16,4,larves,DSC_0818.JPG +16521,1162,1084,16,4,larves,DSC_0818.JPG +16522,2155,1096,15,4,larves,DSC_0818.JPG +16523,3910,1105,17,3,larves,DSC_0818.JPG +16524,3355,1225,16,4,larves,DSC_0818.JPG +16525,4546,1225,16,3,larves,DSC_0818.JPG +16526,2755,1285,15,3,larves,DSC_0818.JPG +16529,847,1378,15,4,larves,DSC_0818.JPG +16530,3244,1405,16,4,larves,DSC_0818.JPG +16532,3910,1465,15,4,larves,DSC_0818.JPG +16533,3067,1582,15,4,larves,DSC_0818.JPG +16535,3871,1645,16,4,larves,DSC_0818.JPG +16538,2785,1705,15,4,larves,DSC_0818.JPG +16539,2785,1945,15,4,larves,DSC_0818.JPG +1654,3898,2062,15,4,larves,DSC_0844.JPG +16543,1585,2164,15,4,larves,DSC_0818.JPG +16547,916,526,16,4,larves,DSC_0818.JPG +16549,2368,607,15,4,larves,DSC_0818.JPG +16550,3010,610,17,4,larves,DSC_0818.JPG +16551,3217,736,17,4,larves,DSC_0818.JPG +16555,3043,919,17,4,larves,DSC_0818.JPG +16556,2365,973,16,4,larves,DSC_0818.JPG +16557,3106,1162,15,4,larves,DSC_0818.JPG +16558,1198,1264,15,4,larves,DSC_0818.JPG +16559,3109,1282,17,4,larves,DSC_0818.JPG +16560,1234,1444,16,4,larves,DSC_0818.JPG +16561,3208,1462,17,4,larves,DSC_0818.JPG +16564,2395,1642,15,4,larves,DSC_0818.JPG +16567,2506,1702,16,4,larves,DSC_0818.JPG +16568,3835,1705,15,4,larves,DSC_0818.JPG +16569,1411,1747,15,4,larves,DSC_0818.JPG +16572,1093,2035,15,4,larves,DSC_0818.JPG +16573,1870,2167,17,4,larves,DSC_0818.JPG +16574,4492,2236,17,3,larves,DSC_0818.JPG +16582,3292,484,16,4,larves,DSC_0818.JPG +16583,775,649,16,4,larves,DSC_0818.JPG +16584,2836,667,17,4,larves,DSC_0818.JPG +16585,3358,733,15,4,larves,DSC_0818.JPG +16586,634,1015,15,4,larves,DSC_0818.JPG +16587,4018,1042,16,3,larves,DSC_0818.JPG +16588,3706,1102,15,4,larves,DSC_0818.JPG +16590,595,1198,17,4,larves,DSC_0818.JPG +16591,1942,1219,15,4,larves,DSC_0818.JPG +16592,1618,1279,17,4,larves,DSC_0818.JPG +16593,739,1315,15,4,larves,DSC_0818.JPG +16597,3874,1525,15,4,larves,DSC_0818.JPG +16598,2431,1582,16,4,larves,DSC_0818.JPG +16599,1693,1633,15,4,larves,DSC_0818.JPG +166,4393,1819,15,4,larves,DSC_0844.JPG +16604,2323,1882,17,4,larves,DSC_0818.JPG +16606,1726,1930,15,4,larves,DSC_0818.JPG +16608,3517,1999,17,4,larves,DSC_0818.JPG +16615,2125,274,17,4,larves,DSC_0818.JPG +16621,3184,547,16,4,larves,DSC_0818.JPG +16622,3565,859,17,4,larves,DSC_0818.JPG +16623,1909,913,16,4,larves,DSC_0818.JPG +16624,3460,922,17,4,larves,DSC_0818.JPG +16625,1873,1093,17,4,larves,DSC_0818.JPG +16628,3070,1342,15,4,larves,DSC_0818.JPG +16629,4156,1408,16,4,larves,DSC_0818.JPG +1663,1792,622,15,4,larves,DSC_0844.JPG +16630,2992,1582,17,4,larves,DSC_0818.JPG +16631,4399,1582,17,4,larves,DSC_0818.JPG +16632,1762,1633,15,4,larves,DSC_0818.JPG +16633,3904,1705,15,4,larves,DSC_0818.JPG +16634,1375,1804,16,4,larves,DSC_0818.JPG +16635,1411,1867,15,4,larves,DSC_0818.JPG +16636,1900,1876,15,4,larves,DSC_0818.JPG +16639,1726,2170,15,4,larves,DSC_0818.JPG +1664,3217,1213,15,4,larves,DSC_0844.JPG +16645,2053,280,17,4,larves,DSC_0818.JPG +16648,3181,796,16,4,larves,DSC_0818.JPG +16649,3250,796,17,4,larves,DSC_0818.JPG +16651,1909,1036,16,4,larves,DSC_0818.JPG +16652,3601,1042,16,4,larves,DSC_0818.JPG +16653,1303,1087,17,3,larves,DSC_0818.JPG +16654,2935,1099,15,4,larves,DSC_0818.JPG +16655,916,1138,15,4,larves,DSC_0818.JPG +16656,2083,1219,16,4,larves,DSC_0818.JPG +16657,3037,1282,15,4,larves,DSC_0818.JPG +16658,775,1492,15,4,larves,DSC_0818.JPG +1666,4168,1282,15,4,larves,DSC_0844.JPG +16660,1339,1747,15,4,larves,DSC_0818.JPG +16662,2182,1876,17,4,larves,DSC_0818.JPG +1667,1897,1315,15,4,larves,DSC_0844.JPG +16674,850,400,17,4,larves,DSC_0818.JPG +16676,883,463,17,4,larves,DSC_0818.JPG +16677,2089,475,16,4,larves,DSC_0818.JPG +16679,811,586,16,4,larves,DSC_0818.JPG +1668,862,1456,17,3,larves,DSC_0844.JPG +16681,3391,673,15,4,larves,DSC_0818.JPG +16684,4093,922,16,4,larves,DSC_0818.JPG +16685,2437,970,16,4,larves,DSC_0818.JPG +16688,3910,1222,17,4,larves,DSC_0818.JPG +1669,3637,1459,15,4,larves,DSC_0844.JPG +16690,2926,1342,17,4,larves,DSC_0818.JPG +16691,1831,1513,15,4,larves,DSC_0818.JPG +16692,1447,1927,15,4,larves,DSC_0818.JPG +16693,991,1975,15,4,larves,DSC_0818.JPG +16695,3163,2008,17,4,larves,DSC_0818.JPG +16696,2920,2062,16,4,larves,DSC_0818.JPG +16699,2632,2299,15,4,larves,DSC_0818.JPG +167,3376,1876,17,4,larves,DSC_0844.JPG +16702,1951,214,17,4,larves,DSC_0818.JPG +16703,1948,343,17,4,larves,DSC_0818.JPG +16704,709,400,17,4,larves,DSC_0818.JPG +16705,1987,409,17,4,larves,DSC_0818.JPG +16706,949,586,15,4,larves,DSC_0818.JPG +16710,742,835,17,4,larves,DSC_0818.JPG +16711,3712,859,17,4,larves,DSC_0818.JPG +16712,2695,916,16,4,larves,DSC_0818.JPG +16715,2662,979,15,4,larves,DSC_0818.JPG +16716,2020,1096,15,4,larves,DSC_0818.JPG +16717,1198,1144,16,4,larves,DSC_0818.JPG +16720,3349,1588,16,4,larves,DSC_0818.JPG +16721,3766,1702,17,4,larves,DSC_0818.JPG +16722,4042,1702,15,4,larves,DSC_0818.JPG +16723,2221,1819,15,4,larves,DSC_0818.JPG +16726,1480,1867,15,4,larves,DSC_0818.JPG +16732,1798,2170,16,4,larves,DSC_0818.JPG +16733,2356,2173,15,4,larves,DSC_0818.JPG +16734,3337,2185,17,4,larves,DSC_0818.JPG +16736,1732,211,17,4,larves,DSC_0818.JPG +16740,3184,418,16,4,larves,DSC_0818.JPG +16742,2521,607,15,4,larves,DSC_0818.JPG +16743,3715,613,17,4,larves,DSC_0818.JPG +16744,2728,727,15,4,larves,DSC_0818.JPG +16747,1093,1204,16,4,larves,DSC_0818.JPG +16749,3070,1225,17,4,larves,DSC_0818.JPG +16751,4261,1465,17,4,larves,DSC_0818.JPG +16752,3979,1468,17,4,larves,DSC_0818.JPG +16753,4012,1522,17,4,larves,DSC_0818.JPG +16754,1657,1573,15,4,larves,DSC_0818.JPG +16755,1552,1630,15,4,larves,DSC_0818.JPG +16756,3346,1708,17,4,larves,DSC_0818.JPG +16758,1690,1750,15,4,larves,DSC_0818.JPG +16759,3451,1765,16,4,larves,DSC_0818.JPG +1676,2158,1918,17,4,larves,DSC_0844.JPG +16761,2218,1939,15,4,larves,DSC_0818.JPG +16764,2287,2176,15,4,larves,DSC_0818.JPG +16766,3970,2182,17,3,larves,DSC_0818.JPG +16767,1903,2230,15,4,larves,DSC_0818.JPG +1677,2713,1927,17,3,larves,DSC_0844.JPG +16772,1843,409,16,4,larves,DSC_0818.JPG +16773,949,460,17,4,larves,DSC_0818.JPG +16775,1012,712,17,4,larves,DSC_0818.JPG +16777,808,832,15,4,larves,DSC_0818.JPG +16778,3529,1162,16,4,larves,DSC_0818.JPG +16779,670,1198,15,4,larves,DSC_0818.JPG +1678,2257,1984,15,4,larves,DSC_0844.JPG +16780,2857,1345,15,4,larves,DSC_0818.JPG +16781,1477,1393,15,4,larves,DSC_0818.JPG +16782,1867,1576,15,4,larves,DSC_0818.JPG +16783,3595,1645,15,4,larves,DSC_0818.JPG +16785,2890,1765,16,4,larves,DSC_0818.JPG +16790,781,400,17,4,larves,DSC_0818.JPG +16792,2407,790,15,4,larves,DSC_0818.JPG +16797,670,1078,15,4,larves,DSC_0818.JPG +16798,883,1078,15,4,larves,DSC_0818.JPG +16799,3496,1105,17,4,larves,DSC_0818.JPG +168,3067,382,16,4,larves,DSC_0844.JPG +16800,955,1201,15,4,larves,DSC_0818.JPG +16801,3001,1222,15,4,larves,DSC_0818.JPG +16802,1801,1336,15,4,larves,DSC_0818.JPG +16803,2080,1342,15,4,larves,DSC_0818.JPG +16804,3910,1345,15,4,larves,DSC_0818.JPG +16805,1870,1456,15,4,larves,DSC_0818.JPG +16807,2008,1696,15,4,larves,DSC_0818.JPG +16808,2080,1699,16,4,larves,DSC_0818.JPG +16817,3292,355,17,4,larves,DSC_0818.JPG +16819,1234,469,17,4,larves,DSC_0818.JPG +16821,568,523,17,4,larves,DSC_0818.JPG +16823,3958,676,17,4,larves,DSC_0818.JPG +16824,3145,733,17,4,larves,DSC_0818.JPG +16825,2335,787,15,4,larves,DSC_0818.JPG +16826,2263,910,15,4,larves,DSC_0818.JPG +16827,2125,913,16,4,larves,DSC_0818.JPG +16828,739,955,16,4,larves,DSC_0818.JPG +16831,1021,1078,15,4,larves,DSC_0818.JPG +16832,2584,1222,15,4,larves,DSC_0818.JPG +16833,3211,1222,17,4,larves,DSC_0818.JPG +16834,1408,1273,16,4,larves,DSC_0818.JPG +16836,2116,1399,16,4,larves,DSC_0818.JPG +16838,3733,1402,17,4,larves,DSC_0818.JPG +16841,3205,1582,17,4,larves,DSC_0818.JPG +16843,3100,1639,17,4,larves,DSC_0818.JPG +16845,2149,1702,17,4,larves,DSC_0818.JPG +16846,1834,1753,15,4,larves,DSC_0818.JPG +1685,4408,268,15,4,larves,DSC_0844.JPG +16851,1939,1936,15,4,larves,DSC_0818.JPG +16852,1267,1981,15,4,larves,DSC_0818.JPG +16853,2218,2056,15,4,larves,DSC_0818.JPG +16854,2710,2062,15,4,larves,DSC_0818.JPG +16861,1234,340,16,4,larves,DSC_0818.JPG +16865,3922,610,17,4,larves,DSC_0818.JPG +16866,2695,664,15,4,larves,DSC_0818.JPG +16869,2515,733,15,4,larves,DSC_0818.JPG +16873,847,895,16,4,larves,DSC_0818.JPG +16874,3286,1105,15,4,larves,DSC_0818.JPG +16876,2932,1225,17,4,larves,DSC_0818.JPG +16878,1765,1276,15,4,larves,DSC_0818.JPG +16879,1024,1324,17,3,larves,DSC_0818.JPG +16882,2047,1639,15,3,larves,DSC_0818.JPG +16883,3313,1645,15,4,larves,DSC_0818.JPG +16885,2437,1702,15,4,larves,DSC_0818.JPG +16886,3976,1705,17,4,larves,DSC_0818.JPG +16888,2320,1999,15,4,larves,DSC_0818.JPG +1689,3751,910,15,4,larves,DSC_0844.JPG +16892,1975,2113,15,4,larves,DSC_0818.JPG +16897,673,337,17,4,larves,DSC_0818.JPG +16898,1876,472,17,4,larves,DSC_0818.JPG +16901,3571,613,17,4,larves,DSC_0818.JPG +16903,3184,673,16,4,larves,DSC_0818.JPG +16905,4447,799,16,4,larves,DSC_0818.JPG +16907,2293,973,17,4,larves,DSC_0818.JPG +16908,3982,1099,17,4,larves,DSC_0818.JPG +16909,4051,1105,15,3,larves,DSC_0818.JPG +1691,1633,1120,15,4,larves,DSC_0844.JPG +16911,1408,1390,15,4,larves,DSC_0818.JPG +16912,2152,1462,15,4,larves,DSC_0818.JPG +16914,1411,1507,17,4,larves,DSC_0818.JPG +16915,4114,1702,15,4,larves,DSC_0818.JPG +16917,2854,1825,15,4,larves,DSC_0818.JPG +1692,2038,1189,15,4,larves,DSC_0844.JPG +16925,1915,277,17,4,larves,DSC_0818.JPG +16927,1306,337,16,4,larves,DSC_0818.JPG +1693,3430,1336,15,4,larves,DSC_0844.JPG +16930,2800,730,16,4,larves,DSC_0818.JPG +16931,4306,799,16,3,larves,DSC_0818.JPG +16932,880,838,17,4,larves,DSC_0818.JPG +16933,2731,853,16,4,larves,DSC_0818.JPG +16934,2935,853,15,4,larves,DSC_0818.JPG +16935,2158,973,15,3,larves,DSC_0818.JPG +16936,2590,976,16,4,larves,DSC_0818.JPG +16937,3145,982,15,4,larves,DSC_0818.JPG +16939,598,1075,16,4,larves,DSC_0818.JPG +16941,3457,1165,15,4,larves,DSC_0818.JPG +16942,3247,1288,17,4,larves,DSC_0818.JPG +16943,1585,1336,15,4,larves,DSC_0818.JPG +16944,4405,1348,17,3,larves,DSC_0818.JPG +16946,2185,1642,16,4,larves,DSC_0818.JPG +16947,3520,1765,15,4,larves,DSC_0818.JPG +16948,1375,2041,16,4,larves,DSC_0818.JPG +1695,2863,1447,15,4,larves,DSC_0844.JPG +16960,2698,541,17,4,larves,DSC_0818.JPG +16961,3538,547,16,4,larves,DSC_0818.JPG +16962,3889,547,15,4,larves,DSC_0818.JPG +16964,3007,859,15,4,larves,DSC_0818.JPG +16967,2365,1099,17,4,larves,DSC_0818.JPG +16969,2758,1162,16,4,larves,DSC_0818.JPG +16971,2047,1282,15,4,larves,DSC_0818.JPG +16972,2824,1285,15,4,larves,DSC_0818.JPG +16974,667,1432,16,4,larves,DSC_0818.JPG +16976,3625,1585,16,4,larves,DSC_0818.JPG +16978,2116,1639,15,4,larves,DSC_0818.JPG +16979,2818,1645,15,4,larves,DSC_0818.JPG +16981,2047,1756,15,4,larves,DSC_0818.JPG +16983,2080,1939,15,4,larves,DSC_0818.JPG +16985,2008,2053,15,4,larves,DSC_0818.JPG +1699,4858,1879,17,3,larves,DSC_0844.JPG +16994,2092,343,17,4,larves,DSC_0818.JPG +16995,3361,358,17,4,larves,DSC_0818.JPG +170,4369,475,17,3,larves,DSC_0844.JPG +1700,2053,1978,15,4,larves,DSC_0844.JPG +17001,2053,790,17,4,larves,DSC_0818.JPG +17005,2764,919,15,4,larves,DSC_0818.JPG +17006,2863,1099,17,4,larves,DSC_0818.JPG +17008,1552,1276,15,4,larves,DSC_0818.JPG +17009,1516,1453,15,4,larves,DSC_0818.JPG +17011,1447,1573,17,4,larves,DSC_0818.JPG +17013,3523,1645,16,4,larves,DSC_0818.JPG +17017,1690,1867,17,4,larves,DSC_0818.JPG +17018,2392,1999,15,4,larves,DSC_0818.JPG +17020,2950,2122,17,4,larves,DSC_0818.JPG +17021,4312,2296,17,3,larves,DSC_0818.JPG +17028,2629,532,17,4,larves,DSC_0818.JPG +17029,3853,607,17,4,larves,DSC_0818.JPG +17031,3181,916,15,4,larves,DSC_0818.JPG +17033,4300,1045,15,3,larves,DSC_0818.JPG +17035,2722,1222,15,3,larves,DSC_0818.JPG +17036,3841,1345,16,4,larves,DSC_0818.JPG +17038,2185,1399,17,4,larves,DSC_0818.JPG +17039,2821,1405,15,4,larves,DSC_0818.JPG +17040,3172,1525,16,4,larves,DSC_0818.JPG +17041,3454,1525,16,4,larves,DSC_0818.JPG +17043,988,1618,15,4,larves,DSC_0818.JPG +17046,811,1795,17,3,larves,DSC_0818.JPG +17049,2359,1939,15,4,larves,DSC_0818.JPG +17050,3061,1942,16,4,larves,DSC_0818.JPG +17051,2677,2002,15,4,larves,DSC_0818.JPG +17055,1939,2170,17,4,larves,DSC_0818.JPG +17059,2089,208,17,4,larves,DSC_0818.JPG +17060,1555,277,17,4,larves,DSC_0818.JPG +17062,2230,607,17,4,larves,DSC_0818.JPG +17063,3220,607,17,4,larves,DSC_0818.JPG +17064,1945,850,17,4,larves,DSC_0818.JPG +17066,3319,919,17,4,larves,DSC_0818.JPG +17067,1837,1036,16,4,larves,DSC_0818.JPG +17068,2056,1036,15,4,larves,DSC_0818.JPG +17071,2896,1165,17,4,larves,DSC_0818.JPG +17073,1234,1207,15,4,larves,DSC_0818.JPG +17076,1444,1807,15,4,larves,DSC_0818.JPG +17079,3412,1942,15,4,larves,DSC_0818.JPG +1708,1087,736,15,3,larves,DSC_0844.JPG +17081,3091,2122,15,4,larves,DSC_0818.JPG +17084,3817,547,17,4,larves,DSC_0818.JPG +17085,2833,790,15,4,larves,DSC_0818.JPG +17086,3814,919,16,4,larves,DSC_0818.JPG +17087,3565,982,16,4,larves,DSC_0818.JPG +17088,2767,1039,17,4,larves,DSC_0818.JPG +17089,1870,1219,15,4,larves,DSC_0818.JPG +1709,2560,763,17,4,larves,DSC_0844.JPG +17090,2290,1342,15,4,larves,DSC_0818.JPG +17091,2998,1342,17,4,larves,DSC_0818.JPG +17092,3490,1342,17,4,larves,DSC_0818.JPG +17095,2542,1762,15,4,larves,DSC_0818.JPG +17096,1798,1810,15,4,larves,DSC_0818.JPG +17098,2182,2116,15,4,larves,DSC_0818.JPG +171,2284,886,15,4,larves,DSC_0844.JPG +17107,1483,274,17,4,larves,DSC_0818.JPG +17109,3991,484,17,4,larves,DSC_0818.JPG +1711,2593,955,16,4,larves,DSC_0844.JPG +17111,3430,610,17,4,larves,DSC_0818.JPG +17113,2194,664,17,4,larves,DSC_0818.JPG +17115,982,898,16,4,larves,DSC_0818.JPG +17117,2260,1036,15,4,larves,DSC_0818.JPG +17118,2089,1096,16,4,larves,DSC_0818.JPG +1712,445,958,17,3,larves,DSC_0844.JPG +17120,2890,1405,15,4,larves,DSC_0818.JPG +17121,1093,1564,17,4,larves,DSC_0818.JPG +17122,2608,1879,17,4,larves,DSC_0818.JPG +17123,2356,2056,15,4,larves,DSC_0818.JPG +17124,2884,2125,15,4,larves,DSC_0818.JPG +1713,3466,1033,15,4,larves,DSC_0844.JPG +17135,526,709,17,4,larves,DSC_0818.JPG +17136,2659,730,16,4,larves,DSC_0818.JPG +17137,2974,793,17,4,larves,DSC_0818.JPG +17139,2401,910,15,4,larves,DSC_0818.JPG +1714,1327,1180,15,4,larves,DSC_0844.JPG +17140,3181,1162,15,4,larves,DSC_0818.JPG +17141,1300,1210,15,4,larves,DSC_0818.JPG +17142,3526,1285,15,4,larves,DSC_0818.JPG +17148,991,1855,15,4,larves,DSC_0818.JPG +17150,3799,1879,17,4,larves,DSC_0818.JPG +17151,1972,1993,15,4,larves,DSC_0818.JPG +17152,1903,2110,16,4,larves,DSC_0818.JPG +1716,2902,1270,17,4,larves,DSC_0844.JPG +17161,1519,343,17,4,larves,DSC_0818.JPG +17162,1450,346,15,4,larves,DSC_0818.JPG +17164,1918,532,15,4,larves,DSC_0818.JPG +17165,877,589,17,4,larves,DSC_0818.JPG +17168,2227,850,15,4,larves,DSC_0818.JPG +17169,4447,925,17,3,larves,DSC_0818.JPG +17170,3532,1039,17,4,larves,DSC_0818.JPG +17173,3316,1405,15,4,larves,DSC_0818.JPG +17175,3661,1522,17,4,larves,DSC_0818.JPG +17176,2257,1525,17,4,larves,DSC_0818.JPG +17177,2752,1525,16,4,larves,DSC_0818.JPG +17179,3559,1585,15,4,larves,DSC_0818.JPG +1718,2785,1690,15,4,larves,DSC_0844.JPG +17188,742,586,17,4,larves,DSC_0818.JPG +17189,601,709,16,4,larves,DSC_0818.JPG +1719,934,1696,15,3,larves,DSC_0844.JPG +17190,3073,859,15,4,larves,DSC_0818.JPG +17194,2296,1222,15,4,larves,DSC_0818.JPG +17195,3283,1225,16,4,larves,DSC_0818.JPG +17197,3421,1345,15,4,larves,DSC_0818.JPG +17198,3559,1345,16,4,larves,DSC_0818.JPG +172,256,1126,15,3,larves,DSC_0844.JPG +1720,3628,1699,17,4,larves,DSC_0844.JPG +17201,2923,1459,17,4,larves,DSC_0818.JPG +17202,2500,1579,17,4,larves,DSC_0818.JPG +17203,3277,1585,16,4,larves,DSC_0818.JPG +17206,2752,1762,17,4,larves,DSC_0818.JPG +17209,2989,2062,15,4,larves,DSC_0818.JPG +17216,1060,400,16,4,larves,DSC_0818.JPG +17217,2227,478,16,4,larves,DSC_0818.JPG +17218,4063,484,16,4,larves,DSC_0818.JPG +17220,2773,547,15,4,larves,DSC_0818.JPG +17221,2443,730,17,4,larves,DSC_0818.JPG +17222,3919,856,15,4,larves,DSC_0818.JPG +17226,343,1246,16,4,larves,DSC_0818.JPG +17228,2890,1285,15,4,larves,DSC_0818.JPG +17232,4258,1585,16,4,larves,DSC_0818.JPG +17233,1444,1690,15,4,larves,DSC_0818.JPG +17234,1798,1690,17,4,larves,DSC_0818.JPG +17237,2149,1939,15,4,larves,DSC_0818.JPG +17238,2428,1942,15,4,larves,DSC_0818.JPG +1724,3934,2002,16,3,larves,DSC_0844.JPG +17241,2815,2005,15,4,larves,DSC_0818.JPG +17242,2887,2008,16,4,larves,DSC_0818.JPG +17243,2815,2125,15,4,larves,DSC_0818.JPG +17246,4597,2293,15,3,larves,DSC_0818.JPG +17256,3601,916,17,4,larves,DSC_0818.JPG +17257,634,1135,17,4,larves,DSC_0818.JPG +17258,2224,1219,15,4,larves,DSC_0818.JPG +17259,4054,1222,15,3,larves,DSC_0818.JPG +17260,415,1249,17,3,larves,DSC_0818.JPG +17262,2365,1342,15,4,larves,DSC_0818.JPG +17263,1726,1570,15,4,larves,DSC_0818.JPG +17264,2713,1702,17,4,larves,DSC_0818.JPG +17265,2287,1945,17,3,larves,DSC_0818.JPG +17282,3037,1162,15,4,larves,DSC_0818.JPG +17284,2254,1405,17,3,larves,DSC_0818.JPG +17286,3100,1525,15,4,larves,DSC_0818.JPG +17287,1726,1693,16,4,larves,DSC_0818.JPG +17288,2224,1702,17,4,larves,DSC_0818.JPG +17289,1726,1810,15,4,larves,DSC_0818.JPG +17291,2539,1879,16,4,larves,DSC_0818.JPG +17294,2323,2236,15,4,larves,DSC_0818.JPG +17295,2005,2290,17,4,larves,DSC_0818.JPG +17299,1339,274,17,4,larves,DSC_0818.JPG +173,3607,1156,16,4,larves,DSC_0844.JPG +17302,1915,409,16,4,larves,DSC_0818.JPG +17306,3961,550,17,4,larves,DSC_0818.JPG +17311,778,1015,15,4,larves,DSC_0818.JPG +17312,2191,1036,15,4,larves,DSC_0818.JPG +17314,1660,1216,17,4,larves,DSC_0818.JPG +17315,3703,1225,15,4,larves,DSC_0818.JPG +17319,2578,1582,15,4,larves,DSC_0818.JPG +17320,1972,1636,17,4,larves,DSC_0818.JPG +17321,1903,1753,17,4,larves,DSC_0818.JPG +17323,2713,1825,15,4,larves,DSC_0818.JPG +17325,1867,1933,16,4,larves,DSC_0818.JPG +17326,1834,2227,17,4,larves,DSC_0818.JPG +17335,2659,601,15,4,larves,DSC_0818.JPG +17336,2872,607,16,4,larves,DSC_0818.JPG +17338,2299,730,15,4,larves,DSC_0818.JPG +17339,2128,790,15,4,larves,DSC_0818.JPG +17341,2800,853,15,4,larves,DSC_0818.JPG +17342,493,889,17,4,larves,DSC_0818.JPG +17343,2086,976,15,4,larves,DSC_0818.JPG +17346,2329,1285,17,3,larves,DSC_0818.JPG +17347,3214,1345,17,4,larves,DSC_0818.JPG +17348,1588,1570,15,4,larves,DSC_0818.JPG +17349,1375,1690,15,4,larves,DSC_0818.JPG +17361,1804,1093,17,4,larves,DSC_0818.JPG +17362,2290,1096,15,4,larves,DSC_0818.JPG +17363,1267,1144,17,4,larves,DSC_0818.JPG +17365,4261,1348,15,3,larves,DSC_0818.JPG +17367,2716,1462,16,4,larves,DSC_0818.JPG +17368,1621,1513,15,4,larves,DSC_0818.JPG +17371,3133,1705,15,4,larves,DSC_0818.JPG +17373,2044,1879,17,4,larves,DSC_0818.JPG +17374,2992,1942,16,4,larves,DSC_0818.JPG +17377,3130,2185,17,4,larves,DSC_0818.JPG +17386,2056,664,16,4,larves,DSC_0818.JPG +17387,2623,667,15,4,larves,DSC_0818.JPG +17390,847,772,15,4,larves,DSC_0818.JPG +17395,1372,1213,15,4,larves,DSC_0818.JPG +17396,3280,1348,17,4,larves,DSC_0818.JPG +17397,2683,1402,15,4,larves,DSC_0818.JPG +17398,2611,1522,16,4,larves,DSC_0818.JPG +174,2605,436,17,4,larves,DSC_0844.JPG +1740,4414,1105,17,3,larves,DSC_0844.JPG +17405,811,337,16,4,larves,DSC_0818.JPG +1741,1294,1114,15,4,larves,DSC_0844.JPG +17410,3286,736,15,4,larves,DSC_0818.JPG +17412,2191,913,17,4,larves,DSC_0818.JPG +17413,3745,919,15,4,larves,DSC_0818.JPG +17414,2224,973,15,4,larves,DSC_0818.JPG +17415,2401,1036,17,4,larves,DSC_0818.JPG +17417,1909,1159,17,4,larves,DSC_0818.JPG +17418,3427,1225,17,4,larves,DSC_0818.JPG +17419,1513,1333,15,4,larves,DSC_0818.JPG +17420,1129,1387,15,4,larves,DSC_0818.JPG +17421,1975,1519,15,4,larves,DSC_0818.JPG +17422,2326,1522,16,4,larves,DSC_0818.JPG +17427,3988,982,17,3,larves,DSC_0818.JPG +17428,2695,1039,15,4,larves,DSC_0818.JPG +1743,655,1327,17,3,larves,DSC_0844.JPG +17430,703,1255,17,4,larves,DSC_0818.JPG +17431,1057,1501,15,4,larves,DSC_0818.JPG +17432,2680,1522,15,4,larves,DSC_0818.JPG +17433,2080,1579,15,4,larves,DSC_0818.JPG +17436,2116,1762,17,4,larves,DSC_0818.JPG +17437,1582,1807,17,4,larves,DSC_0818.JPG +17438,2116,1879,15,4,larves,DSC_0818.JPG +17439,2890,1882,17,4,larves,DSC_0818.JPG +1744,2656,1327,15,4,larves,DSC_0844.JPG +17448,1879,604,17,4,larves,DSC_0818.JPG +17449,2197,790,15,4,larves,DSC_0818.JPG +1745,940,1342,17,4,larves,DSC_0844.JPG +17450,4729,925,15,3,larves,DSC_0818.JPG +17451,2866,973,17,4,larves,DSC_0818.JPG +17452,2797,979,15,4,larves,DSC_0818.JPG +17454,3214,1102,16,4,larves,DSC_0818.JPG +17455,1588,1690,15,4,larves,DSC_0818.JPG +17456,3064,1705,16,4,larves,DSC_0818.JPG +1746,1348,1354,15,4,larves,DSC_0844.JPG +17466,2977,412,16,4,larves,DSC_0818.JPG +17468,775,769,17,4,larves,DSC_0818.JPG +17469,3781,856,15,4,larves,DSC_0818.JPG +17475,3628,1702,17,4,larves,DSC_0818.JPG +17477,1867,1816,16,4,larves,DSC_0818.JPG +17478,1132,1861,17,4,larves,DSC_0818.JPG +17479,2962,1888,17,4,larves,DSC_0818.JPG +17493,3643,733,17,4,larves,DSC_0818.JPG +17495,2221,1096,15,4,larves,DSC_0818.JPG +17496,1978,1156,15,4,larves,DSC_0818.JPG +17497,2620,1165,17,4,larves,DSC_0818.JPG +17499,2011,1576,17,4,larves,DSC_0818.JPG +175,3481,649,15,4,larves,DSC_0844.JPG +17500,3241,1642,17,4,larves,DSC_0818.JPG +17502,2080,1816,16,4,larves,DSC_0818.JPG +17503,2647,1825,15,4,larves,DSC_0818.JPG +17504,1798,1930,15,4,larves,DSC_0818.JPG +1751,2047,2215,17,4,larves,DSC_0844.JPG +17517,1060,268,17,4,larves,DSC_0818.JPG +17518,1024,337,15,4,larves,DSC_0818.JPG +17519,1876,346,15,4,larves,DSC_0818.JPG +17524,2968,1039,15,4,larves,DSC_0818.JPG +17525,2548,1162,15,4,larves,DSC_0818.JPG +17526,1441,1213,15,4,larves,DSC_0818.JPG +17527,2791,1225,15,4,larves,DSC_0818.JPG +17528,2188,1279,15,4,larves,DSC_0818.JPG +17529,706,1375,15,4,larves,DSC_0818.JPG +17531,2785,1465,15,4,larves,DSC_0818.JPG +17534,847,1852,15,4,larves,DSC_0818.JPG +17536,2182,2233,17,4,larves,DSC_0818.JPG +17544,2743,490,15,4,larves,DSC_0818.JPG +17545,3847,979,16,4,larves,DSC_0818.JPG +17547,2155,1216,17,4,larves,DSC_0818.JPG +17549,4120,1585,15,4,larves,DSC_0818.JPG +1755,3280,385,17,3,larves,DSC_0844.JPG +1756,4330,538,17,3,larves,DSC_0844.JPG +17560,3886,799,15,4,larves,DSC_0818.JPG +17561,3709,979,15,4,larves,DSC_0818.JPG +17563,2725,1105,17,3,larves,DSC_0818.JPG +17564,2830,1162,15,4,larves,DSC_0818.JPG +17570,1867,1699,17,4,larves,DSC_0818.JPG +17573,2569,1942,15,4,larves,DSC_0818.JPG +1758,2425,634,15,4,larves,DSC_0844.JPG +17582,631,769,17,4,larves,DSC_0818.JPG +17583,1441,850,15,4,larves,DSC_0818.JPG +17587,2125,1030,17,4,larves,DSC_0818.JPG +17588,2626,1042,15,4,larves,DSC_0818.JPG +17589,2260,1159,15,4,larves,DSC_0818.JPG +1759,3337,778,16,4,larves,DSC_0844.JPG +17590,1162,1207,15,4,larves,DSC_0818.JPG +17592,2362,1585,17,4,larves,DSC_0818.JPG +17595,2539,1642,15,4,larves,DSC_0818.JPG +176,2839,898,15,4,larves,DSC_0844.JPG +17610,2623,793,15,3,larves,DSC_0818.JPG +17611,1234,1087,15,4,larves,DSC_0818.JPG +17612,2119,1159,15,4,larves,DSC_0818.JPG +17613,2152,1339,15,4,larves,DSC_0818.JPG +17614,2152,1582,15,4,larves,DSC_0818.JPG +17616,2359,1825,17,4,larves,DSC_0818.JPG +17619,2113,2116,15,4,larves,DSC_0818.JPG +1762,2557,1141,17,4,larves,DSC_0844.JPG +17629,2056,538,16,4,larves,DSC_0818.JPG +1763,4447,1165,15,3,larves,DSC_0844.JPG +17631,631,895,17,4,larves,DSC_0818.JPG +17632,916,898,15,4,larves,DSC_0818.JPG +17633,1870,976,15,4,larves,DSC_0818.JPG +17634,2560,1042,17,4,larves,DSC_0818.JPG +17636,775,1135,17,4,larves,DSC_0818.JPG +17637,1870,1339,17,4,larves,DSC_0818.JPG +17638,3388,1405,15,4,larves,DSC_0818.JPG +17639,1729,1453,15,4,larves,DSC_0818.JPG +1764,3040,1390,16,4,larves,DSC_0844.JPG +1765,3742,1399,15,4,larves,DSC_0844.JPG +17653,3289,862,17,4,larves,DSC_0818.JPG +17664,1051,772,15,4,larves,DSC_0818.JPG +17666,2551,796,15,4,larves,DSC_0818.JPG +17668,2968,1162,15,4,larves,DSC_0818.JPG +17670,2188,1519,17,4,larves,DSC_0818.JPG +17671,2464,1522,15,4,larves,DSC_0818.JPG +17675,1693,2107,15,4,larves,DSC_0818.JPG +17677,1516,2164,16,4,larves,DSC_0818.JPG +17681,3817,676,17,4,larves,DSC_0818.JPG +17683,2797,1102,15,4,larves,DSC_0818.JPG +17685,706,1138,15,4,larves,DSC_0818.JPG +17686,1732,1336,15,4,larves,DSC_0818.JPG +1769,2125,1741,15,4,larves,DSC_0844.JPG +17697,2854,1462,17,4,larves,DSC_0818.JPG +17698,2080,1465,17,3,larves,DSC_0818.JPG +17699,2680,1639,17,4,larves,DSC_0818.JPG +177,3643,967,15,3,larves,DSC_0844.JPG +17700,2362,1702,15,4,larves,DSC_0818.JPG +17701,3661,1762,17,4,larves,DSC_0818.JPG +17712,2326,1036,17,4,larves,DSC_0818.JPG +17713,2191,1156,16,4,larves,DSC_0818.JPG +17721,2164,727,15,4,larves,DSC_0818.JPG +17726,2254,1279,15,4,larves,DSC_0818.JPG +17727,2650,1345,15,4,larves,DSC_0818.JPG +17729,2716,1942,17,4,larves,DSC_0818.JPG +17737,2155,475,17,4,larves,DSC_0818.JPG +17738,2089,850,17,4,larves,DSC_0818.JPG +1774,2854,379,15,4,larves,DSC_0844.JPG +17740,1975,1396,17,4,larves,DSC_0818.JPG +1775,406,385,17,4,larves,DSC_0844.JPG +17752,1981,913,17,4,larves,DSC_0818.JPG +17755,2326,1639,17,4,larves,DSC_0818.JPG +1776,1231,478,17,3,larves,DSC_0844.JPG +17765,2587,850,17,4,larves,DSC_0818.JPG +17767,2515,1102,17,4,larves,DSC_0818.JPG +17769,2008,1813,15,4,larves,DSC_0818.JPG +1777,3505,1093,15,4,larves,DSC_0844.JPG +17774,2017,979,17,4,larves,DSC_0818.JPG +17778,2851,1951,17,4,larves,DSC_0818.JPG +17785,2047,1396,17,4,larves,DSC_0818.JPG +17786,2644,1462,15,4,larves,DSC_0818.JPG +17787,2218,1582,15,3,larves,DSC_0818.JPG +17788,1903,1633,15,4,larves,DSC_0818.JPG +17796,2614,1762,15,4,larves,DSC_0818.JPG +17797,1864,2053,17,4,larves,DSC_0818.JPG +178,3436,970,16,4,larves,DSC_0844.JPG +1780,2104,1195,16,4,larves,DSC_0844.JPG +17807,2020,727,17,4,larves,DSC_0818.JPG +17812,526,1666,15,4,larves,DSC_0818.JPG +17814,2254,1882,15,4,larves,DSC_0818.JPG +17822,1522,208,16,4,larves,DSC_0818.JPG +1783,4183,1939,15,4,larves,DSC_0844.JPG +17836,1903,1396,15,4,larves,DSC_0818.JPG +17837,2008,1459,15,4,larves,DSC_0818.JPG +17838,2257,1759,15,4,larves,DSC_0818.JPG +17846,2749,1405,17,4,larves,DSC_0818.JPG +17847,2887,1525,15,4,larves,DSC_0818.JPG +17857,2482,793,15,4,larves,DSC_0818.JPG +17860,457,952,15,3,larves,DSC_0818.JPG +17863,3379,1882,15,4,larves,DSC_0818.JPG +17864,2008,1936,15,4,larves,DSC_0818.JPG +17870,2671,463,17,4,larves,DSC_0818.JPG +17873,2044,1519,16,4,larves,DSC_0818.JPG +17875,1939,1696,15,4,larves,DSC_0818.JPG +17876,2293,1705,16,4,larves,DSC_0818.JPG +17882,2653,1222,15,4,larves,DSC_0818.JPG +17907,2590,1102,15,3,larves,DSC_0818.JPG +1791,442,322,17,4,larves,DSC_0844.JPG +17917,2833,1042,17,3,larves,DSC_0818.JPG +17918,2398,1282,15,4,larves,DSC_0818.JPG +1792,550,388,17,4,larves,DSC_0844.JPG +17920,2692,790,17,4,larves,DSC_0818.JPG +17921,2404,1165,15,4,larves,DSC_0818.JPG +17924,2506,1462,15,4,larves,DSC_0818.JPG +17925,1906,1516,17,4,larves,DSC_0818.JPG +17933,2818,1525,15,4,larves,DSC_0818.JPG +17942,1942,1462,17,4,larves,DSC_0818.JPG +17952,1948,727,17,4,larves,DSC_0818.JPG +17954,2116,1282,15,4,larves,DSC_0818.JPG +17966,2014,1339,17,4,larves,DSC_0818.JPG +1797,3259,1027,15,4,larves,DSC_0844.JPG +17971,2596,469,17,4,larves,DSC_0818.JPG +17972,2119,1522,17,4,larves,DSC_0818.JPG +1798,1504,1117,17,4,larves,DSC_0844.JPG +17981,2608,1642,17,4,larves,DSC_0818.JPG +17991,2518,478,17,4,larves,DSC_0818.JPG +17992,2686,1165,17,4,larves,DSC_0818.JPG +17997,1984,667,17,4,larves,DSC_0818.JPG +18,4240,1042,15,4,larves,DSC_0844.JPG +180,1084,985,15,4,larves,DSC_0844.JPG +1801,1108,1525,15,4,larves,DSC_0844.JPG +18010,2611,1405,16,4,larves,DSC_0818.JPG +18017,2404,526,17,4,larves,DSC_0818.JPG +1802,1438,1675,16,4,larves,DSC_0844.JPG +1803,2293,1924,15,4,larves,DSC_0844.JPG +1805,2122,1978,15,4,larves,DSC_0844.JPG +1806,3514,1996,17,4,larves,DSC_0844.JPG +18064,2365,451,17,4,larves,DSC_0818.JPG +1819,3577,841,15,4,larves,DSC_0844.JPG +182,4222,1759,15,4,larves,DSC_0844.JPG +1820,2419,886,15,4,larves,DSC_0844.JPG +1821,3358,1336,15,4,larves,DSC_0844.JPG +1822,1951,1672,15,4,larves,DSC_0844.JPG +18237,2824,1891,17,4,larves,DSC_0818.JPG +18243,2515,403,17,4,larves,DSC_0818.JPG +18251,1267,1498,17,4,larves,DSC_0818.JPG +18259,2275,406,15,4,larves,DSC_0818.JPG +18283,2533,1276,15,4,larves,DSC_0818.JPG +18284,2680,1276,17,3,larves,DSC_0818.JPG +183,3484,1819,15,4,larves,DSC_0844.JPG +1832,2494,760,15,4,larves,DSC_0844.JPG +18321,1942,1582,15,4,larves,DSC_0818.JPG +1833,5032,910,17,4,larves,DSC_0844.JPG +1834,2053,943,15,4,larves,DSC_0844.JPG +18349,3751,2308,17,3,larves,DSC_0818.JPG +18356,3436,1885,16,4,larves,DSC_0818.JPG +1836,1261,1051,15,4,larves,DSC_0844.JPG +18367,997,520,17,4,larves,DSC_0818.JPG +1837,4237,1165,15,4,larves,DSC_0844.JPG +184,2641,2050,15,4,larves,DSC_0844.JPG +1842,1003,1702,15,4,larves,DSC_0844.JPG +18427,2938,472,17,4,larves,DSC_0818.JPG +18480,2101,619,15,4,larves,DSC_0818.JPG +18485,1012,1678,15,4,larves,DSC_0818.JPG +18492,682,706,15,4,larves,DSC_0818.JPG +18499,3790,745,15,4,larves,DSC_0818.JPG +185,3268,2056,15,4,larves,DSC_0844.JPG +18500,1174,1330,17,4,larves,DSC_0818.JPG +18501,1645,1693,17,4,larves,DSC_0818.JPG +18502,3640,1213,15,4,larves,DSC_0818.JPG +18507,2821,913,17,4,larves,DSC_0818.JPG +18508,3640,1468,17,4,larves,DSC_0818.JPG +18512,1171,1435,15,4,larves,DSC_0818.JPG +1856,2077,751,15,4,larves,DSC_0844.JPG +1857,1570,1120,15,4,larves,DSC_0844.JPG +1860,3814,1399,15,4,larves,DSC_0844.JPG +1862,1072,1582,15,4,larves,DSC_0844.JPG +1864,2572,1927,16,4,larves,DSC_0844.JPG +1865,2851,1933,15,4,larves,DSC_0844.JPG +1871,1612,808,15,4,larves,DSC_0844.JPG +1873,1087,859,17,3,larves,DSC_0844.JPG +18730,2296,2293,15,3,larves,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1874,4168,1159,17,4,larves,DSC_0844.JPG +1877,5080,1627,17,3,larves,DSC_0844.JPG +1879,1069,1825,15,4,larves,DSC_0844.JPG +189,3157,838,16,3,larves,DSC_0844.JPG +1890,481,388,17,4,larves,DSC_0844.JPG +1893,2566,637,16,4,larves,DSC_0844.JPG +1894,3508,841,15,3,larves,DSC_0844.JPG +1896,4777,856,15,4,larves,DSC_0844.JPG +190,3229,841,16,4,larves,DSC_0844.JPG +1901,3046,1036,15,4,larves,DSC_0844.JPG +1902,4372,1285,15,4,larves,DSC_0844.JPG +1903,2101,1321,15,4,larves,DSC_0844.JPG +1917,2485,1012,17,4,larves,DSC_0844.JPG +1919,2587,1201,15,4,larves,DSC_0844.JPG +192,1294,1234,15,4,larves,DSC_0844.JPG +1921,2410,1261,15,4,larves,DSC_0844.JPG +1922,2623,1264,16,4,larves,DSC_0844.JPG +1933,2248,697,17,4,larves,DSC_0844.JPG +1934,2287,760,17,4,larves,DSC_0844.JPG +1936,4591,1162,16,3,larves,DSC_0844.JPG +1937,4102,1279,15,4,larves,DSC_0844.JPG +19380,4243,2548,17,3,larves,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1939,4132,1459,15,4,larves,DSC_0844.JPG +1940,2758,1510,15,4,larves,DSC_0844.JPG +1953,2038,562,15,4,larves,DSC_0844.JPG +1957,1297,991,15,4,larves,DSC_0844.JPG +1958,2908,1027,16,4,larves,DSC_0844.JPG +1959,2521,1201,15,4,larves,DSC_0844.JPG +1961,2866,1324,17,4,larves,DSC_0844.JPG +1962,901,1516,17,4,larves,DSC_0844.JPG +1967,1813,1918,17,4,larves,DSC_0844.JPG +1968,4111,1939,15,4,larves,DSC_0844.JPG +197,3856,1099,15,4,larves,DSC_0844.JPG +1977,2008,496,15,4,larves,DSC_0844.JPG +1978,3376,721,15,4,larves,DSC_0844.JPG +1979,4066,976,16,4,larves,DSC_0844.JPG +198,1012,1105,15,4,larves,DSC_0844.JPG +1980,5098,1033,16,4,larves,DSC_0844.JPG +1981,2104,1066,15,4,larves,DSC_0844.JPG +1982,2869,1087,17,4,larves,DSC_0844.JPG +1983,3574,1093,15,4,larves,DSC_0844.JPG +1986,4045,1816,17,4,larves,DSC_0844.JPG +1995,1789,1483,17,4,larves,DSC_0844.JPG +1996,1759,1678,15,4,larves,DSC_0844.JPG +1998,3556,1819,17,4,larves,DSC_0844.JPG +20,2776,640,15,4,larves,DSC_0844.JPG +201,4405,1342,15,4,larves,DSC_0844.JPG +2010,2590,1078,15,4,larves,DSC_0844.JPG +2012,898,1630,17,4,larves,DSC_0844.JPG +202,4030,1396,16,4,larves,DSC_0844.JPG +2023,3124,904,15,4,larves,DSC_0844.JPG +2026,1429,1237,15,4,larves,DSC_0844.JPG +2029,1783,1738,16,4,larves,DSC_0844.JPG +2030,1036,1759,16,4,larves,DSC_0844.JPG +20346,3157,2794,15,3,larves,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2035,3511,2239,17,4,larves,DSC_0844.JPG +2039,373,574,17,4,larves,DSC_0844.JPG +204,3697,1696,15,4,larves,DSC_0844.JPG +2040,4966,784,16,4,larves,DSC_0844.JPG +2041,2455,955,17,4,larves,DSC_0844.JPG +2042,4066,1219,17,4,larves,DSC_0844.JPG +2043,3781,1456,17,4,larves,DSC_0844.JPG +20436,4024,2803,17,3,larves,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2054,3835,658,15,3,larves,DSC_0844.JPG +2055,2356,757,17,4,larves,DSC_0844.JPG +2056,1438,868,16,4,larves,DSC_0844.JPG +2057,1609,931,17,4,larves,DSC_0844.JPG +2058,1681,1174,17,4,larves,DSC_0844.JPG +2059,3394,1399,15,4,larves,DSC_0844.JPG +206,3340,1936,16,3,larves,DSC_0844.JPG +2061,1822,1552,15,4,larves,DSC_0844.JPG +2063,1885,1672,15,4,larves,DSC_0844.JPG +2065,5113,1687,17,3,larves,DSC_0844.JPG +2066,3022,1993,15,3,larves,DSC_0844.JPG +20766,2878,2293,15,3,larves,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2077,2107,694,17,4,larves,DSC_0844.JPG +208,3058,646,16,3,larves,DSC_0844.JPG +209,2935,1330,15,4,larves,DSC_0844.JPG +2090,1867,622,15,4,larves,DSC_0844.JPG +21,4003,853,15,4,larves,DSC_0844.JPG +210,3250,1513,15,3,larves,DSC_0844.JPG +2105,1621,289,17,4,larves,DSC_0844.JPG +2109,1324,1294,15,4,larves,DSC_0844.JPG +2110,1816,1792,15,4,larves,DSC_0844.JPG +2116,2254,565,17,4,larves,DSC_0844.JPG +2117,1474,808,15,4,larves,DSC_0844.JPG +2118,2629,892,15,4,larves,DSC_0844.JPG +2119,3922,1099,16,4,larves,DSC_0844.JPG +212,3652,1999,15,4,larves,DSC_0844.JPG +2121,4258,1456,15,4,larves,DSC_0844.JPG +2124,517,454,15,4,larves,DSC_0844.JPG +2125,2116,943,15,4,larves,DSC_0844.JPG +2126,2179,946,15,4,larves,DSC_0844.JPG +2127,4708,979,17,3,larves,DSC_0844.JPG +214,2782,376,16,4,larves,DSC_0844.JPG +2142,2359,640,15,4,larves,DSC_0844.JPG +2145,1099,1768,15,4,larves,DSC_0844.JPG +2155,259,760,17,4,larves,DSC_0844.JPG +2156,3547,781,15,4,larves,DSC_0844.JPG +2158,3220,1090,15,4,larves,DSC_0844.JPG +2159,2005,1255,16,4,larves,DSC_0844.JPG +2162,4129,1582,17,3,larves,DSC_0844.JPG +2163,1141,1714,15,4,larves,DSC_0844.JPG +2165,4186,1822,15,4,larves,DSC_0844.JPG +217,1618,682,15,3,larves,DSC_0844.JPG +2172,2215,634,17,4,larves,DSC_0844.JPG +2175,4135,1222,15,4,larves,DSC_0844.JPG +2176,2032,1318,15,4,larves,DSC_0844.JPG +218,1759,682,15,4,larves,DSC_0844.JPG +2184,664,331,15,4,larves,DSC_0844.JPG +2188,409,1018,17,3,larves,DSC_0844.JPG +2189,4738,1045,17,3,larves,DSC_0844.JPG +219,1120,1048,15,4,larves,DSC_0844.JPG +2190,2659,1078,17,4,larves,DSC_0844.JPG +2196,1687,550,17,3,larves,DSC_0844.JPG +2199,2668,703,15,4,larves,DSC_0844.JPG +22,2713,370,17,4,larves,DSC_0844.JPG +220,2902,1144,15,4,larves,DSC_0844.JPG +2201,2626,1015,17,4,larves,DSC_0844.JPG +2207,2572,1810,17,4,larves,DSC_0844.JPG +221,3640,1219,15,4,larves,DSC_0844.JPG +2214,3985,1213,17,4,larves,DSC_0844.JPG +2217,1171,1522,15,3,larves,DSC_0844.JPG +2218,4225,1633,17,4,larves,DSC_0844.JPG +222,3712,1219,16,4,larves,DSC_0844.JPG +2222,2602,2224,15,3,larves,DSC_0844.JPG +223,3994,1339,15,4,larves,DSC_0844.JPG +2231,517,319,17,4,larves,DSC_0844.JPG +2234,2695,1018,15,4,larves,DSC_0844.JPG +2235,5044,1696,17,3,larves,DSC_0844.JPG +2237,2542,1987,17,4,larves,DSC_0844.JPG +224,2620,1384,15,4,larves,DSC_0844.JPG +2244,5074,724,17,4,larves,DSC_0844.JPG +2247,4669,919,17,3,larves,DSC_0844.JPG +2248,3118,1033,15,4,larves,DSC_0844.JPG +2249,2380,1078,15,4,larves,DSC_0844.JPG +225,3112,1396,15,4,larves,DSC_0844.JPG +2258,334,634,17,4,larves,DSC_0844.JPG +226,2233,1441,16,4,larves,DSC_0844.JPG +2263,4105,2059,15,4,larves,DSC_0844.JPG +2267,4300,472,17,3,larves,DSC_0844.JPG +2268,2665,958,15,4,larves,DSC_0844.JPG +227,2899,1507,17,4,larves,DSC_0844.JPG +2271,1852,1612,15,4,larves,DSC_0844.JPG +2278,5140,847,15,3,larves,DSC_0844.JPG +2281,2476,1627,17,3,larves,DSC_0844.JPG +2283,2638,2164,17,4,larves,DSC_0844.JPG +2289,2389,823,15,4,larves,DSC_0844.JPG +2294,649,2392,17,4,larves,DSC_0844.JPG +2299,1876,1435,15,3,larves,DSC_0844.JPG +23,979,919,15,3,larves,DSC_0844.JPG +2308,223,814,17,4,larves,DSC_0844.JPG +2310,295,1066,17,3,larves,DSC_0844.JPG +2311,1825,1675,15,4,larves,DSC_0844.JPG +2318,1801,232,17,4,larves,DSC_0844.JPG +232,3454,454,16,3,larves,DSC_0844.JPG +2322,1603,1180,15,4,larves,DSC_0844.JPG +2325,4216,1879,15,4,larves,DSC_0844.JPG +2332,1651,1261,16,4,larves,DSC_0844.JPG +2334,1747,1561,15,4,larves,DSC_0844.JPG +234,2275,1138,16,3,larves,DSC_0844.JPG +2348,2761,1390,15,4,larves,DSC_0844.JPG +235,3925,1339,15,4,larves,DSC_0844.JPG +2355,2149,880,17,4,larves,DSC_0844.JPG +2356,2131,1381,17,4,larves,DSC_0844.JPG +2357,4120,1819,17,4,larves,DSC_0844.JPG +2358,1576,1846,17,4,larves,DSC_0844.JPG +236,1993,1375,15,4,larves,DSC_0844.JPG +2367,2089,1003,15,4,larves,DSC_0844.JPG +2369,1393,1804,17,4,larves,DSC_0844.JPG +237,3463,1399,17,4,larves,DSC_0844.JPG +2377,826,1642,15,3,larves,DSC_0844.JPG +2378,1174,1660,16,4,larves,DSC_0844.JPG +2387,4294,1393,17,4,larves,DSC_0844.JPG +2396,1639,1369,17,4,larves,DSC_0844.JPG +24,904,1282,15,4,larves,DSC_0844.JPG +2406,1510,868,15,4,larves,DSC_0844.JPG +2407,1966,1324,15,4,larves,DSC_0844.JPG +241,2680,307,15,4,larves,DSC_0844.JPG +2415,334,508,17,4,larves,DSC_0844.JPG +2419,1699,1633,17,4,larves,DSC_0844.JPG +2425,1312,1765,17,4,larves,DSC_0844.JPG +24307,2530,244,15,4,larves,DSC_0819.JPG +24308,2566,310,16,4,larves,DSC_0819.JPG +24309,3955,2257,16,4,larves,DSC_0819.JPG +24311,1894,877,15,4,larves,DSC_0819.JPG +24312,2098,1837,15,4,larves,DSC_0819.JPG +24314,2140,814,16,4,larves,DSC_0819.JPG +24315,2629,1897,15,4,larves,DSC_0819.JPG +24318,1963,1360,16,4,larves,DSC_0819.JPG +24319,2452,1837,16,4,larves,DSC_0819.JPG +24320,2521,1960,15,4,larves,DSC_0819.JPG +24321,2671,244,16,4,larves,DSC_0819.JPG +24322,1756,1117,16,4,larves,DSC_0819.JPG +24324,2812,244,17,4,larves,DSC_0819.JPG +24327,2107,628,16,4,larves,DSC_0819.JPG +24328,1753,1600,15,4,larves,DSC_0819.JPG +2433,4195,1447,17,4,larves,DSC_0844.JPG +24332,2140,1057,15,4,larves,DSC_0819.JPG +24333,2626,1780,15,4,larves,DSC_0819.JPG +24335,2458,505,16,4,larves,DSC_0819.JPG +2434,1297,1591,15,4,larves,DSC_0844.JPG +24340,2029,1837,15,4,larves,DSC_0819.JPG +24345,2638,181,16,4,larves,DSC_0819.JPG +24348,1963,1480,15,4,larves,DSC_0819.JPG +24349,2206,1897,16,4,larves,DSC_0819.JPG +24350,1792,1300,15,4,larves,DSC_0819.JPG +24351,3271,184,16,4,larves,DSC_0819.JPG +24353,2101,997,15,4,larves,DSC_0819.JPG +24356,2521,2077,15,4,larves,DSC_0819.JPG +24360,2599,244,17,4,larves,DSC_0819.JPG +24362,2065,1420,16,4,larves,DSC_0819.JPG +24363,2242,1837,15,4,larves,DSC_0819.JPG +24367,2380,1837,15,4,larves,DSC_0819.JPG +24368,2173,1603,17,4,larves,DSC_0819.JPG +24369,2065,1777,15,4,larves,DSC_0819.JPG +24373,1441,937,16,3,larves,DSC_0819.JPG +24374,2101,1717,16,4,larves,DSC_0819.JPG +24382,3325,2260,15,4,larves,DSC_0819.JPG +24383,1861,934,17,4,larves,DSC_0819.JPG +24384,1540,1597,15,4,larves,DSC_0819.JPG +24389,3130,184,17,4,larves,DSC_0819.JPG +24390,2425,310,16,4,larves,DSC_0819.JPG +24397,2035,628,15,4,larves,DSC_0819.JPG +24398,2104,751,16,4,larves,DSC_0819.JPG +24399,2104,874,16,4,larves,DSC_0819.JPG +244,2911,769,16,4,larves,DSC_0844.JPG +24400,2176,997,15,4,larves,DSC_0819.JPG +24401,1822,1600,16,4,larves,DSC_0819.JPG +24409,1960,1117,17,4,larves,DSC_0819.JPG +2441,5140,967,17,4,larves,DSC_0844.JPG +24411,2527,505,17,4,larves,DSC_0819.JPG +24413,1927,1660,15,4,larves,DSC_0819.JPG +24416,2413,2134,15,4,larves,DSC_0819.JPG +24417,3919,2197,17,4,larves,DSC_0819.JPG +2442,1372,1435,17,4,larves,DSC_0844.JPG +24420,1756,1240,16,4,larves,DSC_0819.JPG +24424,2068,814,15,4,larves,DSC_0819.JPG +24425,4942,1648,16,4,larves,DSC_0819.JPG +24427,3364,1963,15,4,larves,DSC_0819.JPG +24428,2695,2137,16,4,larves,DSC_0819.JPG +24429,3889,2140,15,4,larves,DSC_0819.JPG +24430,2353,937,17,4,larves,DSC_0819.JPG +24432,2029,1600,15,4,larves,DSC_0819.JPG +24433,3013,1723,15,4,larves,DSC_0819.JPG +24437,2815,373,17,4,larves,DSC_0819.JPG +24438,2209,568,16,4,larves,DSC_0819.JPG +24439,2209,1180,15,4,larves,DSC_0819.JPG +24441,2173,1240,15,4,larves,DSC_0819.JPG +24442,2386,1603,15,4,larves,DSC_0819.JPG +24443,2065,2014,16,4,larves,DSC_0819.JPG +24445,2632,940,16,4,larves,DSC_0819.JPG +24447,2314,1600,16,4,larves,DSC_0819.JPG +24449,2068,691,17,4,larves,DSC_0819.JPG +24451,2245,1480,15,4,larves,DSC_0819.JPG +24452,3682,1657,17,4,larves,DSC_0819.JPG +24453,2905,2017,17,4,larves,DSC_0819.JPG +24457,3307,250,16,4,larves,DSC_0819.JPG +24462,2638,313,15,4,larves,DSC_0819.JPG +24463,2566,439,17,4,larves,DSC_0819.JPG +24465,2176,628,17,4,larves,DSC_0819.JPG +24468,1786,1660,16,4,larves,DSC_0819.JPG +24472,2779,310,16,4,larves,DSC_0819.JPG +24473,1963,502,16,4,larves,DSC_0819.JPG +24475,2311,1837,17,4,larves,DSC_0819.JPG +24480,1825,1360,15,4,larves,DSC_0819.JPG +24481,1612,1597,17,4,larves,DSC_0819.JPG +24483,2659,1960,15,4,larves,DSC_0819.JPG +24494,1966,754,15,4,larves,DSC_0819.JPG +24497,3007,2200,15,4,larves,DSC_0819.JPG +245,2761,1264,15,4,larves,DSC_0844.JPG +2450,592,328,17,3,larves,DSC_0844.JPG +24502,2527,376,17,4,larves,DSC_0819.JPG +24505,2104,1480,15,4,larves,DSC_0819.JPG +24507,3961,2020,15,4,larves,DSC_0819.JPG +24508,2170,2074,15,4,larves,DSC_0819.JPG +24509,3781,2200,16,4,larves,DSC_0819.JPG +24517,1924,1417,17,4,larves,DSC_0819.JPG +24518,2281,1420,15,4,larves,DSC_0819.JPG +24519,1999,1660,17,4,larves,DSC_0819.JPG +2452,2974,1138,15,4,larves,DSC_0844.JPG +24521,1015,2002,17,3,larves,DSC_0819.JPG +24524,2659,2197,16,4,larves,DSC_0819.JPG +24528,2353,307,15,4,larves,DSC_0819.JPG +2453,1696,1498,16,3,larves,DSC_0844.JPG +24531,1894,1360,15,4,larves,DSC_0819.JPG +24534,3571,2197,15,4,larves,DSC_0819.JPG +24537,2176,751,16,4,larves,DSC_0819.JPG +24538,2422,817,17,4,larves,DSC_0819.JPG +24539,1930,1057,16,4,larves,DSC_0819.JPG +24541,2380,1957,15,4,larves,DSC_0819.JPG +24542,1747,2071,15,3,larves,DSC_0819.JPG +24548,2317,376,16,4,larves,DSC_0819.JPG +24549,2599,376,16,4,larves,DSC_0819.JPG +24550,2671,631,17,4,larves,DSC_0819.JPG +2456,1660,226,15,4,larves,DSC_0844.JPG +24561,2908,1900,15,4,larves,DSC_0819.JPG +24571,1894,1237,15,4,larves,DSC_0819.JPG +24572,1648,1540,15,4,larves,DSC_0819.JPG +24573,1330,1600,17,4,larves,DSC_0819.JPG +24574,4102,1900,16,4,larves,DSC_0819.JPG +24576,2872,1960,15,4,larves,DSC_0819.JPG +24579,2800,2077,17,4,larves,DSC_0819.JPG +24580,3289,2080,15,4,larves,DSC_0819.JPG +24584,2035,877,15,4,larves,DSC_0819.JPG +24587,1858,1057,15,4,larves,DSC_0819.JPG +24588,2068,1057,16,4,larves,DSC_0819.JPG +24589,2314,1120,17,4,larves,DSC_0819.JPG +24590,2068,1180,16,4,larves,DSC_0819.JPG +24591,2032,1237,16,4,larves,DSC_0819.JPG +24592,2209,1300,15,4,larves,DSC_0819.JPG +24594,1648,1420,16,4,larves,DSC_0819.JPG +24599,2458,247,17,4,larves,DSC_0819.JPG +246,1000,1819,15,3,larves,DSC_0844.JPG +24602,2566,568,15,4,larves,DSC_0819.JPG +24603,2776,568,17,4,larves,DSC_0819.JPG +24604,1615,751,15,3,larves,DSC_0819.JPG +24608,2242,1240,15,4,larves,DSC_0819.JPG +2461,1030,1891,17,4,larves,DSC_0844.JPG +24610,2029,1720,15,4,larves,DSC_0819.JPG +24611,2941,1843,15,4,larves,DSC_0819.JPG +24612,3607,1903,15,4,larves,DSC_0819.JPG +24614,3328,2020,15,4,larves,DSC_0819.JPG +24617,2779,181,16,4,larves,DSC_0819.JPG +24625,1783,1777,15,3,larves,DSC_0819.JPG +24627,3892,1903,16,4,larves,DSC_0819.JPG +24633,1894,1117,16,4,larves,DSC_0819.JPG +24636,2134,1777,15,4,larves,DSC_0819.JPG +2464,1729,1096,17,4,larves,DSC_0844.JPG +24645,2248,502,16,4,larves,DSC_0819.JPG +24646,2491,565,16,4,larves,DSC_0819.JPG +24647,2317,631,17,4,larves,DSC_0819.JPG +24648,1858,1537,15,4,larves,DSC_0819.JPG +24649,3121,1666,17,4,larves,DSC_0819.JPG +24650,2455,1720,15,4,larves,DSC_0819.JPG +24651,2587,2077,15,4,larves,DSC_0819.JPG +24659,1825,754,16,4,larves,DSC_0819.JPG +24660,1927,934,17,4,larves,DSC_0819.JPG +24662,2104,1237,15,4,larves,DSC_0819.JPG +24664,4285,1717,15,4,larves,DSC_0819.JPG +24665,4174,1780,15,4,larves,DSC_0819.JPG +24674,2173,502,17,4,larves,DSC_0819.JPG +24678,2455,1240,16,4,larves,DSC_0819.JPG +24679,2170,1480,15,4,larves,DSC_0819.JPG +24680,4177,1660,16,4,larves,DSC_0819.JPG +24683,3166,247,17,4,larves,DSC_0819.JPG +24687,2386,874,16,4,larves,DSC_0819.JPG +24690,1825,997,15,4,larves,DSC_0819.JPG +24694,2032,1357,15,4,larves,DSC_0819.JPG +24695,2314,1360,16,4,larves,DSC_0819.JPG +24696,2278,1660,15,4,larves,DSC_0819.JPG +24699,2800,1960,15,4,larves,DSC_0819.JPG +2470,1135,1828,15,4,larves,DSC_0844.JPG +24701,3010,2077,17,4,larves,DSC_0819.JPG +24702,3502,2083,16,4,larves,DSC_0819.JPG +24706,2389,502,15,4,larves,DSC_0819.JPG +24708,2209,1540,17,4,larves,DSC_0819.JPG +24709,2278,1540,16,4,larves,DSC_0819.JPG +24718,2389,376,16,4,larves,DSC_0819.JPG +24721,2248,874,15,4,larves,DSC_0819.JPG +24722,1654,1057,16,4,larves,DSC_0819.JPG +24733,2029,997,17,4,larves,DSC_0819.JPG +24735,1576,1540,15,4,larves,DSC_0819.JPG +24736,1717,1540,16,4,larves,DSC_0819.JPG +24738,1924,1777,15,4,larves,DSC_0819.JPG +24741,4309,2014,16,4,larves,DSC_0819.JPG +24742,2449,2074,15,4,larves,DSC_0819.JPG +24745,3220,2203,15,4,larves,DSC_0819.JPG +2475,5071,847,17,4,larves,DSC_0844.JPG +24753,1858,691,16,4,larves,DSC_0819.JPG +24755,2284,1057,15,4,larves,DSC_0819.JPG +24757,2137,1300,16,4,larves,DSC_0819.JPG +24758,1861,1420,17,4,larves,DSC_0819.JPG +24760,2347,1777,17,4,larves,DSC_0819.JPG +24761,2557,1780,16,4,larves,DSC_0819.JPG +24762,1993,1894,17,4,larves,DSC_0819.JPG +24764,3997,1960,16,4,larves,DSC_0819.JPG +24765,3013,1963,15,4,larves,DSC_0819.JPG +24767,3679,2026,17,4,larves,DSC_0819.JPG +24768,3082,2083,17,4,larves,DSC_0819.JPG +24772,2887,244,17,4,larves,DSC_0819.JPG +24773,2494,310,17,4,larves,DSC_0819.JPG +24777,2704,568,17,4,larves,DSC_0819.JPG +24780,1999,934,15,4,larves,DSC_0819.JPG +24781,1681,1483,17,4,larves,DSC_0819.JPG +24782,4033,1780,16,4,larves,DSC_0819.JPG +24783,1819,1837,16,4,larves,DSC_0819.JPG +24784,2524,1837,15,4,larves,DSC_0819.JPG +24786,2167,1957,15,4,larves,DSC_0819.JPG +24788,3604,2257,16,4,larves,DSC_0819.JPG +24792,2563,694,17,4,larves,DSC_0819.JPG +24793,2668,757,17,4,larves,DSC_0819.JPG +24798,1753,1363,15,4,larves,DSC_0819.JPG +24799,2311,1720,15,4,larves,DSC_0819.JPG +2480,5035,787,16,4,larves,DSC_0844.JPG +24800,2275,1780,15,4,larves,DSC_0819.JPG +24802,2593,1837,15,4,larves,DSC_0819.JPG +24803,2698,1900,15,4,larves,DSC_0819.JPG +24805,2731,1957,17,4,larves,DSC_0819.JPG +2481,1714,1423,16,4,larves,DSC_0844.JPG +24810,3607,2140,15,4,larves,DSC_0819.JPG +24818,3166,379,17,4,larves,DSC_0819.JPG +24821,2143,691,15,4,larves,DSC_0819.JPG +24824,2419,937,15,4,larves,DSC_0819.JPG +24825,2491,1177,17,4,larves,DSC_0819.JPG +24828,1894,1477,17,4,larves,DSC_0819.JPG +24829,1756,1480,15,4,larves,DSC_0819.JPG +24831,3118,1903,15,4,larves,DSC_0819.JPG +24833,2206,2017,15,4,larves,DSC_0819.JPG +24834,2485,2017,15,4,larves,DSC_0819.JPG +24836,2938,2080,17,4,larves,DSC_0819.JPG +24842,2422,568,17,4,larves,DSC_0819.JPG +24846,2137,934,17,4,larves,DSC_0819.JPG +24848,2353,1057,16,4,larves,DSC_0819.JPG +24851,2032,1117,17,4,larves,DSC_0819.JPG +24852,2383,1360,16,4,larves,DSC_0819.JPG +24853,2386,1480,15,4,larves,DSC_0819.JPG +24854,2419,1543,15,4,larves,DSC_0819.JPG +24855,1894,1600,15,4,larves,DSC_0819.JPG +24856,3895,1654,17,4,larves,DSC_0819.JPG +24858,1681,1714,17,4,larves,DSC_0819.JPG +24859,1963,1720,17,4,larves,DSC_0819.JPG +24860,4216,1720,15,4,larves,DSC_0819.JPG +24863,2977,1903,15,4,larves,DSC_0819.JPG +24864,3646,1963,15,4,larves,DSC_0819.JPG +24865,3466,2020,17,4,larves,DSC_0819.JPG +24871,2422,439,17,4,larves,DSC_0819.JPG +24872,3904,442,16,3,larves,DSC_0819.JPG +24875,4072,1720,16,4,larves,DSC_0819.JPG +24876,3856,1963,15,4,larves,DSC_0819.JPG +24878,3043,2143,17,4,larves,DSC_0819.JPG +2488,1381,1603,17,4,larves,DSC_0844.JPG +24887,3799,505,17,3,larves,DSC_0819.JPG +24896,2212,937,17,4,larves,DSC_0819.JPG +24898,1894,994,15,4,larves,DSC_0819.JPG +24902,1855,1657,17,4,larves,DSC_0819.JPG +24914,3358,2200,15,4,larves,DSC_0819.JPG +24920,3523,247,17,4,larves,DSC_0819.JPG +24923,2281,568,17,4,larves,DSC_0819.JPG +24925,2317,877,15,4,larves,DSC_0819.JPG +2493,4996,847,17,4,larves,DSC_0844.JPG +24931,1996,1180,15,4,larves,DSC_0819.JPG +24932,5023,1291,16,4,larves,DSC_0819.JPG +24933,1720,1300,16,4,larves,DSC_0819.JPG +24934,2068,1663,17,4,larves,DSC_0819.JPG +24935,1858,1777,15,4,larves,DSC_0819.JPG +24938,4348,1951,17,4,larves,DSC_0819.JPG +24939,4138,1957,16,4,larves,DSC_0819.JPG +24940,3082,2200,15,4,larves,DSC_0819.JPG +24953,2311,1960,16,4,larves,DSC_0819.JPG +24955,2626,2137,16,4,larves,DSC_0819.JPG +24970,2455,631,17,4,larves,DSC_0819.JPG +24971,1894,754,16,4,larves,DSC_0819.JPG +24975,1927,1180,15,4,larves,DSC_0819.JPG +24976,1825,1477,15,4,larves,DSC_0819.JPG +24977,1684,1597,17,4,larves,DSC_0819.JPG +24978,4492,1714,16,4,larves,DSC_0819.JPG +2498,187,871,17,4,larves,DSC_0844.JPG +24981,2767,1900,16,4,larves,DSC_0819.JPG +24982,4030,2017,15,4,larves,DSC_0819.JPG +24984,3148,2083,15,4,larves,DSC_0819.JPG +2499,3913,1168,16,4,larves,DSC_0844.JPG +25,3223,967,16,4,larves,DSC_0844.JPG +250,3160,709,15,4,larves,DSC_0844.JPG +2500,1282,1423,17,4,larves,DSC_0844.JPG +25000,1996,1060,17,4,larves,DSC_0819.JPG +25002,4945,1411,17,4,larves,DSC_0819.JPG +25003,1891,1717,15,4,larves,DSC_0819.JPG +25005,2554,2017,15,4,larves,DSC_0819.JPG +25013,1720,1180,17,4,larves,DSC_0819.JPG +25014,4669,1417,15,4,larves,DSC_0819.JPG +25016,1747,1720,15,4,larves,DSC_0819.JPG +25019,3220,2080,17,4,larves,DSC_0819.JPG +25021,3466,2143,16,4,larves,DSC_0819.JPG +25027,3202,313,16,4,larves,DSC_0819.JPG +25028,3343,316,16,4,larves,DSC_0819.JPG +25030,2248,751,15,4,larves,DSC_0819.JPG +25034,2350,1660,15,4,larves,DSC_0819.JPG +25035,1609,1717,15,4,larves,DSC_0819.JPG +25036,3328,1780,17,4,larves,DSC_0819.JPG +25046,1966,874,17,4,larves,DSC_0819.JPG +25048,2245,1120,15,4,larves,DSC_0819.JPG +25050,2350,1423,17,4,larves,DSC_0819.JPG +25051,1225,1654,15,3,larves,DSC_0819.JPG +25054,2065,1894,15,4,larves,DSC_0819.JPG +25055,3823,1900,15,4,larves,DSC_0819.JPG +25056,3190,1903,15,4,larves,DSC_0819.JPG +25058,3928,1963,15,4,larves,DSC_0819.JPG +2506,1945,1270,15,3,larves,DSC_0844.JPG +25060,3748,2023,16,4,larves,DSC_0819.JPG +25062,3430,2200,15,4,larves,DSC_0819.JPG +2507,1339,1672,16,4,larves,DSC_0844.JPG +25072,2002,817,17,4,larves,DSC_0819.JPG +25073,2635,817,17,4,larves,DSC_0819.JPG +25075,2209,1057,16,4,larves,DSC_0819.JPG +25076,2107,1117,17,4,larves,DSC_0819.JPG +25077,2524,1600,15,4,larves,DSC_0819.JPG +25078,4867,1648,15,4,larves,DSC_0819.JPG +25079,2626,1660,15,4,larves,DSC_0819.JPG +25081,2908,1780,17,4,larves,DSC_0819.JPG +25083,3931,1843,15,4,larves,DSC_0819.JPG +25085,4522,1891,16,4,larves,DSC_0819.JPG +25086,3331,1903,17,4,larves,DSC_0819.JPG +25088,3889,2020,15,4,larves,DSC_0819.JPG +25093,3907,316,17,4,larves,DSC_0819.JPG +25099,2278,811,17,4,larves,DSC_0819.JPG +251,3607,1030,17,4,larves,DSC_0844.JPG +25102,2731,1600,16,4,larves,DSC_0819.JPG +25103,4387,1657,15,4,larves,DSC_0819.JPG +25107,4069,1840,16,4,larves,DSC_0819.JPG +25108,3784,1843,17,4,larves,DSC_0819.JPG +25110,3397,2140,15,4,larves,DSC_0819.JPG +25118,3238,250,16,4,larves,DSC_0819.JPG +25127,5167,1285,15,4,larves,DSC_0819.JPG +25128,2065,1297,17,4,larves,DSC_0819.JPG +25129,2422,1297,15,4,larves,DSC_0819.JPG +25130,1717,1420,15,4,larves,DSC_0819.JPG +25131,2137,1540,16,4,larves,DSC_0819.JPG +25135,3259,1903,16,4,larves,DSC_0819.JPG +25137,1996,2014,16,4,larves,DSC_0819.JPG +25144,3919,2317,17,4,larves,DSC_0819.JPG +25153,2527,757,15,4,larves,DSC_0819.JPG +25156,1552,1120,17,3,larves,DSC_0819.JPG +25157,1861,1177,15,4,larves,DSC_0819.JPG +25160,2140,1420,15,4,larves,DSC_0819.JPG +25161,1714,1660,16,4,larves,DSC_0819.JPG +25162,2488,1777,17,4,larves,DSC_0819.JPG +25163,3964,1777,17,4,larves,DSC_0819.JPG +25164,2770,1780,17,4,larves,DSC_0819.JPG +25165,3151,1843,15,4,larves,DSC_0819.JPG +25167,3154,1963,15,4,larves,DSC_0819.JPG +25168,2626,2020,15,4,larves,DSC_0819.JPG +25170,2974,2137,17,4,larves,DSC_0819.JPG +25171,3745,2140,15,4,larves,DSC_0819.JPG +25185,1963,997,16,4,larves,DSC_0819.JPG +25187,1825,1120,17,4,larves,DSC_0819.JPG +2519,1618,1468,15,4,larves,DSC_0844.JPG +25190,2314,1237,17,4,larves,DSC_0819.JPG +25191,2599,1240,17,4,larves,DSC_0819.JPG +25195,2134,1657,17,4,larves,DSC_0819.JPG +25196,1396,1831,15,4,larves,DSC_0819.JPG +25197,3784,1960,17,4,larves,DSC_0819.JPG +25199,3115,2023,15,4,larves,DSC_0819.JPG +252,3433,1096,15,4,larves,DSC_0844.JPG +2520,1207,1588,17,4,larves,DSC_0844.JPG +25200,3820,2023,16,4,larves,DSC_0819.JPG +25205,3346,187,17,4,larves,DSC_0819.JPG +25207,2386,994,17,4,larves,DSC_0819.JPG +25208,2314,997,16,4,larves,DSC_0819.JPG +25211,2488,1297,17,4,larves,DSC_0819.JPG +25212,1513,1300,15,3,larves,DSC_0819.JPG +25213,1582,1300,16,3,larves,DSC_0819.JPG +25215,1573,1657,15,4,larves,DSC_0819.JPG +25216,2557,1660,16,4,larves,DSC_0819.JPG +25218,4417,1834,15,4,larves,DSC_0819.JPG +25225,2710,310,17,4,larves,DSC_0819.JPG +25231,2314,754,17,4,larves,DSC_0819.JPG +25234,1258,1117,17,4,larves,DSC_0819.JPG +25235,2143,1180,17,4,larves,DSC_0819.JPG +25237,1858,1300,15,4,larves,DSC_0819.JPG +25238,2170,1357,17,4,larves,DSC_0819.JPG +25239,1960,1600,15,4,larves,DSC_0819.JPG +25240,1501,1657,16,4,larves,DSC_0819.JPG +25242,2554,1900,17,4,larves,DSC_0819.JPG +25244,4378,2014,15,4,larves,DSC_0819.JPG +25245,2764,2020,15,4,larves,DSC_0819.JPG +2525,1213,1357,15,4,larves,DSC_0844.JPG +25254,2356,565,17,4,larves,DSC_0819.JPG +25256,2281,691,16,4,larves,DSC_0819.JPG +2526,1237,1819,17,4,larves,DSC_0844.JPG +25261,1963,1237,16,4,larves,DSC_0819.JPG +25262,1822,1240,15,4,larves,DSC_0819.JPG +25264,2521,1720,15,4,larves,DSC_0819.JPG +25266,2662,1840,15,4,larves,DSC_0819.JPG +25268,2590,1960,15,4,larves,DSC_0819.JPG +25282,2029,1483,17,4,larves,DSC_0819.JPG +25283,1789,1537,17,4,larves,DSC_0819.JPG +25284,4600,1537,17,4,larves,DSC_0819.JPG +25286,2245,1717,17,4,larves,DSC_0819.JPG +25287,1714,1777,15,4,larves,DSC_0819.JPG +25289,4276,1954,15,4,larves,DSC_0819.JPG +25290,3226,1963,17,4,larves,DSC_0819.JPG +25292,3535,2020,17,4,larves,DSC_0819.JPG +25293,3646,2083,15,4,larves,DSC_0819.JPG +25295,2557,2137,15,4,larves,DSC_0819.JPG +25296,3991,2197,15,4,larves,DSC_0819.JPG +25299,2599,628,17,4,larves,DSC_0819.JPG +25301,2455,754,15,4,larves,DSC_0819.JPG +25303,1858,814,17,4,larves,DSC_0819.JPG +25307,2383,1120,15,4,larves,DSC_0819.JPG +25310,1927,1300,15,4,larves,DSC_0819.JPG +25312,4984,1351,15,4,larves,DSC_0819.JPG +25313,2314,1483,17,4,larves,DSC_0819.JPG +25316,4657,1885,17,3,larves,DSC_0819.JPG +25318,4315,1894,15,4,larves,DSC_0819.JPG +25319,4207,1954,15,4,larves,DSC_0819.JPG +25320,3295,1963,15,4,larves,DSC_0819.JPG +25333,4978,1591,17,4,larves,DSC_0819.JPG +25334,4423,1717,16,4,larves,DSC_0819.JPG +25337,2278,1897,15,4,larves,DSC_0819.JPG +25339,4375,2128,17,4,larves,DSC_0819.JPG +25350,2704,442,16,4,larves,DSC_0819.JPG +25361,2875,1840,17,4,larves,DSC_0819.JPG +25362,3715,1843,17,4,larves,DSC_0819.JPG +25363,3859,1846,17,4,larves,DSC_0819.JPG +25367,4168,2131,15,4,larves,DSC_0819.JPG +25368,2833,2140,15,3,larves,DSC_0819.JPG +25369,3184,2140,15,4,larves,DSC_0819.JPG +2537,2026,1036,17,4,larves,DSC_0844.JPG +25380,2848,310,17,4,larves,DSC_0819.JPG +25382,2320,505,15,4,larves,DSC_0819.JPG +25385,1825,874,15,4,larves,DSC_0819.JPG +25386,2071,934,17,4,larves,DSC_0819.JPG +25388,1684,1357,17,4,larves,DSC_0819.JPG +25392,3400,1900,17,4,larves,DSC_0819.JPG +25393,3430,1963,17,4,larves,DSC_0819.JPG +25394,3607,2023,16,4,larves,DSC_0819.JPG +25395,4411,2071,15,4,larves,DSC_0819.JPG +25399,1330,373,15,3,larves,DSC_0819.JPG +25402,2632,691,17,4,larves,DSC_0819.JPG +25404,2353,814,17,4,larves,DSC_0819.JPG +25408,5242,1279,17,4,larves,DSC_0819.JPG +25411,2350,1300,15,4,larves,DSC_0819.JPG +25412,2065,1540,15,4,larves,DSC_0819.JPG +25414,2344,1900,15,4,larves,DSC_0819.JPG +25415,3748,1903,15,4,larves,DSC_0819.JPG +25428,2632,568,15,4,larves,DSC_0819.JPG +25433,1792,1180,15,4,larves,DSC_0819.JPG +25434,1789,1420,16,4,larves,DSC_0819.JPG +25435,2662,1483,15,4,larves,DSC_0819.JPG +25436,2701,1777,17,4,larves,DSC_0819.JPG +25437,3256,1783,15,4,larves,DSC_0819.JPG +25444,3994,2314,15,4,larves,DSC_0819.JPG +25448,3937,505,17,3,larves,DSC_0819.JPG +25449,4648,622,15,4,larves,DSC_0819.JPG +2545,1588,1765,17,4,larves,DSC_0844.JPG +25450,2245,631,17,4,larves,DSC_0819.JPG +25452,2350,1177,15,4,larves,DSC_0819.JPG +25455,2452,1600,15,4,larves,DSC_0819.JPG +25456,2836,1666,17,4,larves,DSC_0819.JPG +25457,3820,1780,15,4,larves,DSC_0819.JPG +25458,4105,1780,15,4,larves,DSC_0819.JPG +2546,1336,1855,17,4,larves,DSC_0844.JPG +25460,3046,1903,15,4,larves,DSC_0819.JPG +25468,4759,439,15,4,larves,DSC_0819.JPG +25472,1792,817,17,4,larves,DSC_0819.JPG +25475,2278,1177,17,4,larves,DSC_0819.JPG +25477,2737,1483,15,4,larves,DSC_0819.JPG +25479,3190,1783,15,4,larves,DSC_0819.JPG +25483,2242,1954,17,4,larves,DSC_0819.JPG +25485,3361,2080,15,4,larves,DSC_0819.JPG +25486,3574,2083,15,4,larves,DSC_0819.JPG +25492,2491,439,17,4,larves,DSC_0819.JPG +25493,4795,499,17,4,larves,DSC_0819.JPG +25497,2593,1363,15,4,larves,DSC_0819.JPG +25498,2209,1420,15,4,larves,DSC_0819.JPG +255,2578,1687,15,4,larves,DSC_0844.JPG +25501,4909,1588,17,4,larves,DSC_0819.JPG +25504,2974,2017,17,3,larves,DSC_0819.JPG +25505,3256,2020,17,4,larves,DSC_0819.JPG +25511,2599,505,16,4,larves,DSC_0819.JPG +25513,1654,934,16,3,larves,DSC_0819.JPG +25516,2701,1303,15,4,larves,DSC_0819.JPG +25517,2698,1420,17,4,larves,DSC_0819.JPG +25519,1996,1537,17,4,larves,DSC_0819.JPG +25521,4528,1771,15,4,larves,DSC_0819.JPG +25522,2839,1783,15,4,larves,DSC_0819.JPG +25523,4558,1828,17,4,larves,DSC_0819.JPG +25524,3718,1963,15,4,larves,DSC_0819.JPG +25526,1924,2011,17,4,larves,DSC_0819.JPG +25532,1678,244,17,3,larves,DSC_0819.JPG +25535,3061,442,17,4,larves,DSC_0819.JPG +25536,3025,508,16,4,larves,DSC_0819.JPG +25537,4150,508,15,3,larves,DSC_0819.JPG +25542,2491,694,16,4,larves,DSC_0819.JPG +25545,2176,871,17,4,larves,DSC_0819.JPG +25547,2281,937,17,4,larves,DSC_0819.JPG +25548,5032,1045,16,4,larves,DSC_0819.JPG +25549,1333,1117,17,4,larves,DSC_0819.JPG +25551,2629,1426,17,4,larves,DSC_0819.JPG +25552,1192,1480,15,3,larves,DSC_0819.JPG +25554,4210,1600,17,4,larves,DSC_0819.JPG +25559,4243,1897,15,4,larves,DSC_0819.JPG +25569,2923,307,17,4,larves,DSC_0819.JPG +2557,1873,1237,16,4,larves,DSC_0844.JPG +25575,1081,934,17,3,larves,DSC_0819.JPG +25576,1723,934,16,4,larves,DSC_0819.JPG +25582,2281,1300,15,4,larves,DSC_0819.JPG +25584,1612,1363,17,4,larves,DSC_0819.JPG +25585,2101,1597,17,4,larves,DSC_0819.JPG +25586,4351,1600,17,3,larves,DSC_0819.JPG +25587,3085,1843,15,4,larves,DSC_0819.JPG +25588,2416,1900,15,4,larves,DSC_0819.JPG +2559,1555,1531,17,4,larves,DSC_0844.JPG +25590,2695,2020,15,4,larves,DSC_0819.JPG +256,2677,1867,15,4,larves,DSC_0844.JPG +25601,2386,751,17,4,larves,DSC_0819.JPG +25608,2767,1663,16,4,larves,DSC_0819.JPG +25609,3154,1723,15,4,larves,DSC_0819.JPG +25611,3115,1783,15,4,larves,DSC_0819.JPG +25612,3436,1837,17,4,larves,DSC_0819.JPG +25613,3541,1903,15,4,larves,DSC_0819.JPG +25615,2311,2074,15,4,larves,DSC_0819.JPG +25616,3328,2137,15,4,larves,DSC_0819.JPG +25618,4408,2188,15,4,larves,DSC_0819.JPG +25619,2938,2200,15,4,larves,DSC_0819.JPG +25638,3577,1843,17,4,larves,DSC_0819.JPG +25639,3466,1903,17,4,larves,DSC_0819.JPG +25664,2875,1600,17,4,larves,DSC_0819.JPG +25666,3295,1720,17,4,larves,DSC_0819.JPG +25668,4030,1900,17,4,larves,DSC_0819.JPG +25681,1477,874,16,3,larves,DSC_0819.JPG +25683,2242,1000,17,4,larves,DSC_0819.JPG +25685,2530,1117,15,4,larves,DSC_0819.JPG +2569,1969,1198,16,3,larves,DSC_0844.JPG +25690,4561,1597,17,4,larves,DSC_0819.JPG +25697,2767,2137,15,4,larves,DSC_0819.JPG +257,2467,1984,15,4,larves,DSC_0844.JPG +2570,1792,1618,16,3,larves,DSC_0844.JPG +25705,3097,376,16,4,larves,DSC_0819.JPG +25707,2353,691,16,4,larves,DSC_0819.JPG +25709,5134,1225,16,4,larves,DSC_0819.JPG +25713,4180,1537,17,4,larves,DSC_0819.JPG +25714,4108,1657,15,4,larves,DSC_0819.JPG +25715,2941,1723,15,4,larves,DSC_0819.JPG +25716,2344,2020,17,4,larves,DSC_0819.JPG +25722,2992,307,15,4,larves,DSC_0819.JPG +25737,4600,1414,17,4,larves,DSC_0819.JPG +25738,2695,1660,15,4,larves,DSC_0819.JPG +25740,3253,2143,17,4,larves,DSC_0819.JPG +25753,4687,433,17,4,larves,DSC_0819.JPG +25755,4792,619,17,4,larves,DSC_0819.JPG +25756,2599,757,17,4,larves,DSC_0819.JPG +25761,2662,1360,17,4,larves,DSC_0819.JPG +25763,2350,1540,16,4,larves,DSC_0819.JPG +25764,2239,1603,17,4,larves,DSC_0819.JPG +25765,2488,1657,17,4,larves,DSC_0819.JPG +25766,3505,1840,17,4,larves,DSC_0819.JPG +25767,2659,2077,16,4,larves,DSC_0819.JPG +25771,3025,241,17,4,larves,DSC_0819.JPG +25774,5068,862,17,4,larves,DSC_0819.JPG +25776,5140,1105,17,4,larves,DSC_0819.JPG +25778,1996,1294,17,4,larves,DSC_0819.JPG +25781,4144,1723,17,4,larves,DSC_0819.JPG +25784,4138,1837,15,4,larves,DSC_0819.JPG +25785,2452,1960,17,4,larves,DSC_0819.JPG +25786,3184,2023,15,4,larves,DSC_0819.JPG +25788,4096,2257,17,4,larves,DSC_0819.JPG +258,3163,1996,16,3,larves,DSC_0844.JPG +25800,2698,1540,15,4,larves,DSC_0819.JPG +25801,3013,1603,16,4,larves,DSC_0819.JPG +25802,2593,1717,17,4,larves,DSC_0819.JPG +25805,3295,1843,15,4,larves,DSC_0819.JPG +25807,4447,2128,16,3,larves,DSC_0819.JPG +25816,2956,505,17,4,larves,DSC_0819.JPG +25818,2524,631,17,4,larves,DSC_0819.JPG +25819,1789,688,16,4,larves,DSC_0819.JPG +25820,5002,745,17,4,larves,DSC_0819.JPG +25823,2530,1240,17,4,larves,DSC_0819.JPG +25826,2419,1660,15,4,larves,DSC_0819.JPG +25827,2206,1663,16,4,larves,DSC_0819.JPG +25829,2386,1720,17,4,larves,DSC_0819.JPG +2583,1798,1387,15,4,larves,DSC_0844.JPG +25830,2869,1720,17,4,larves,DSC_0819.JPG +25832,2836,1900,15,4,larves,DSC_0819.JPG +25849,2887,373,16,4,larves,DSC_0819.JPG +25854,2422,1060,17,4,larves,DSC_0819.JPG +25856,2419,1177,17,4,larves,DSC_0819.JPG +25858,2386,1240,15,4,larves,DSC_0819.JPG +25859,3400,1417,17,3,larves,DSC_0819.JPG +25864,2419,1783,17,4,larves,DSC_0819.JPG +25865,2980,1783,17,4,larves,DSC_0819.JPG +25871,3781,2320,17,4,larves,DSC_0819.JPG +25878,4687,562,15,4,larves,DSC_0819.JPG +25880,5107,805,16,4,larves,DSC_0819.JPG +25884,2455,1120,17,4,larves,DSC_0819.JPG +25886,2419,1417,17,4,larves,DSC_0819.JPG +25888,2521,1480,17,4,larves,DSC_0819.JPG +25890,2662,1720,15,4,larves,DSC_0819.JPG +25892,3676,2140,16,4,larves,DSC_0819.JPG +259,2257,2098,15,4,larves,DSC_0844.JPG +25900,2671,379,15,4,larves,DSC_0819.JPG +25901,2992,442,17,4,larves,DSC_0819.JPG +25917,3757,1657,17,4,larves,DSC_0819.JPG +25918,4246,1777,15,4,larves,DSC_0819.JPG +25926,2743,379,17,4,larves,DSC_0819.JPG +25927,2458,997,15,4,larves,DSC_0819.JPG +25929,5134,1345,16,4,larves,DSC_0819.JPG +25932,4318,1534,17,4,larves,DSC_0819.JPG +25933,2488,1543,16,4,larves,DSC_0819.JPG +25935,4144,1600,17,4,larves,DSC_0819.JPG +25936,3226,1843,15,4,larves,DSC_0819.JPG +25937,3364,1843,16,4,larves,DSC_0819.JPG +2595,1720,1330,16,4,larves,DSC_0844.JPG +25953,2104,1360,15,4,larves,DSC_0819.JPG +25959,4555,1951,15,4,larves,DSC_0819.JPG +2596,1555,1372,15,4,larves,DSC_0844.JPG +25961,3499,2197,15,4,larves,DSC_0819.JPG +25966,2419,691,17,4,larves,DSC_0819.JPG +25970,5065,1105,17,4,larves,DSC_0819.JPG +25972,1996,1420,16,4,larves,DSC_0819.JPG +25973,5053,1471,17,4,larves,DSC_0819.JPG +25974,4564,1477,17,4,larves,DSC_0819.JPG +25975,4456,1774,15,4,larves,DSC_0819.JPG +25976,3013,1843,16,4,larves,DSC_0819.JPG +25984,2386,631,17,4,larves,DSC_0819.JPG +25986,2491,817,16,4,larves,DSC_0819.JPG +25993,2455,1477,17,4,larves,DSC_0819.JPG +25999,3133,310,15,4,larves,DSC_0819.JPG +26009,4741,1291,17,4,larves,DSC_0819.JPG +26010,4882,1291,15,4,larves,DSC_0819.JPG +26011,4954,1291,17,4,larves,DSC_0819.JPG +26012,2524,1360,16,4,larves,DSC_0819.JPG +26013,4321,1660,17,4,larves,DSC_0819.JPG +26014,4831,1708,15,4,larves,DSC_0819.JPG +26015,2728,1837,15,4,larves,DSC_0819.JPG +26018,3571,1960,17,4,larves,DSC_0819.JPG +26023,2635,436,17,4,larves,DSC_0819.JPG +26026,4939,496,17,4,larves,DSC_0819.JPG +26027,2740,502,15,4,larves,DSC_0819.JPG +26035,5101,1042,17,4,larves,DSC_0819.JPG +26037,4246,1537,17,4,larves,DSC_0819.JPG +26038,3331,1540,17,3,larves,DSC_0819.JPG +26039,2593,1597,15,4,larves,DSC_0819.JPG +26040,4282,1600,17,4,larves,DSC_0819.JPG +26043,3970,1903,17,4,larves,DSC_0819.JPG +26046,2833,2257,17,4,larves,DSC_0819.JPG +26053,4654,499,17,4,larves,DSC_0819.JPG +26057,2527,880,17,4,larves,DSC_0819.JPG +26061,3049,1783,15,4,larves,DSC_0819.JPG +2607,1411,1879,17,4,larves,DSC_0844.JPG +26072,4753,685,15,4,larves,DSC_0819.JPG +26073,2212,814,15,4,larves,DSC_0819.JPG +26074,5176,922,15,4,larves,DSC_0819.JPG +26075,5068,985,17,4,larves,DSC_0819.JPG +26076,1789,1054,17,4,larves,DSC_0819.JPG +26081,2491,1420,17,4,larves,DSC_0819.JPG +26082,2770,1423,15,4,larves,DSC_0819.JPG +26083,3367,1474,17,4,larves,DSC_0819.JPG +26084,4633,1474,15,4,larves,DSC_0819.JPG +26085,4456,1537,15,4,larves,DSC_0819.JPG +26086,3085,1603,16,4,larves,DSC_0819.JPG +26089,2206,1780,15,4,larves,DSC_0819.JPG +26101,4969,559,17,4,larves,DSC_0819.JPG +26104,2599,874,17,4,larves,DSC_0819.JPG +26108,4993,1108,15,4,larves,DSC_0819.JPG +26112,4492,1474,17,4,larves,DSC_0819.JPG +26114,3826,1657,17,4,larves,DSC_0819.JPG +26118,3712,2083,15,4,larves,DSC_0819.JPG +26127,2875,997,17,4,larves,DSC_0819.JPG +26130,2242,1360,16,4,larves,DSC_0819.JPG +26131,5128,1465,17,4,larves,DSC_0819.JPG +26133,2803,1603,15,4,larves,DSC_0819.JPG +26135,4489,1831,17,4,larves,DSC_0819.JPG +26138,3712,2200,15,4,larves,DSC_0819.JPG +2615,1306,1996,16,4,larves,DSC_0844.JPG +26159,2662,1600,15,4,larves,DSC_0819.JPG +26161,3928,1723,17,4,larves,DSC_0819.JPG +26173,2560,1180,17,4,larves,DSC_0819.JPG +26177,5092,1408,15,4,larves,DSC_0819.JPG +26188,5107,685,15,4,larves,DSC_0819.JPG +26189,3061,694,17,4,larves,DSC_0819.JPG +26190,5071,745,17,4,larves,DSC_0819.JPG +26192,2491,937,15,4,larves,DSC_0819.JPG +26197,4813,1171,17,4,larves,DSC_0819.JPG +26198,2629,1303,15,4,larves,DSC_0819.JPG +26200,2452,1360,17,4,larves,DSC_0819.JPG +26206,4066,1957,17,4,larves,DSC_0819.JPG +26226,5038,559,15,4,larves,DSC_0819.JPG +26229,5104,1162,15,4,larves,DSC_0819.JPG +26230,5029,1168,17,4,larves,DSC_0819.JPG +26231,5056,1348,17,4,larves,DSC_0819.JPG +26234,4249,1657,17,4,larves,DSC_0819.JPG +26238,3271,313,15,4,larves,DSC_0819.JPG +26239,2956,373,17,4,larves,DSC_0819.JPG +2624,1648,1549,16,4,larves,DSC_0844.JPG +26243,5098,1285,17,4,larves,DSC_0819.JPG +26246,5017,1528,17,4,larves,DSC_0819.JPG +26249,4861,1765,17,4,larves,DSC_0819.JPG +26250,2803,1840,15,4,larves,DSC_0819.JPG +26253,3505,1960,15,4,larves,DSC_0819.JPG +26256,2812,511,17,4,larves,DSC_0819.JPG +26257,4756,559,17,4,larves,DSC_0819.JPG +26264,4672,1294,17,4,larves,DSC_0819.JPG +26278,1441,814,16,3,larves,DSC_0819.JPG +26280,4924,1108,17,4,larves,DSC_0819.JPG +26282,4810,1411,17,4,larves,DSC_0819.JPG +26283,2767,1540,15,4,larves,DSC_0819.JPG +26285,3046,1666,17,4,larves,DSC_0819.JPG +26286,3994,1837,17,4,larves,DSC_0819.JPG +26287,4414,1951,17,4,larves,DSC_0819.JPG +26294,2668,505,16,4,larves,DSC_0819.JPG +26295,4945,1531,17,4,larves,DSC_0819.JPG +26296,2629,1543,15,4,larves,DSC_0819.JPG +26298,4558,1714,17,4,larves,DSC_0819.JPG +26299,2803,1720,15,4,larves,DSC_0819.JPG +26314,5023,1408,15,4,larves,DSC_0819.JPG +26316,2593,1486,17,4,larves,DSC_0819.JPG +2632,1795,949,17,4,larves,DSC_0844.JPG +26325,5173,1042,17,4,larves,DSC_0819.JPG +26341,2779,439,17,4,larves,DSC_0819.JPG +26353,2839,1540,16,3,larves,DSC_0819.JPG +26364,5005,622,17,4,larves,DSC_0819.JPG +26369,5035,925,17,4,larves,DSC_0819.JPG +26370,2530,997,17,4,larves,DSC_0819.JPG +26372,4993,1225,17,4,larves,DSC_0819.JPG +26373,4921,1234,17,4,larves,DSC_0819.JPG +26378,4003,1717,16,4,larves,DSC_0819.JPG +264,4072,850,15,4,larves,DSC_0844.JPG +26401,2455,877,17,4,larves,DSC_0819.JPG +26402,5137,979,17,4,larves,DSC_0819.JPG +26407,2947,1486,17,4,larves,DSC_0819.JPG +26409,2560,1540,15,4,larves,DSC_0819.JPG +26410,3748,1777,15,4,larves,DSC_0819.JPG +26415,4903,556,15,4,larves,DSC_0819.JPG +26416,4822,805,17,4,larves,DSC_0819.JPG +2642,1630,1678,17,4,larves,DSC_0844.JPG +26421,5068,1225,17,4,larves,DSC_0819.JPG +26422,2560,1294,16,4,larves,DSC_0819.JPG +26427,4390,1537,17,4,larves,DSC_0819.JPG +26428,2908,1663,15,4,larves,DSC_0819.JPG +26440,3835,439,17,3,larves,DSC_0819.JPG +26441,4825,682,17,4,larves,DSC_0819.JPG +26450,3466,1780,17,4,larves,DSC_0819.JPG +26464,4906,1474,17,4,larves,DSC_0819.JPG +26475,5035,802,17,4,larves,DSC_0819.JPG +26477,5104,922,17,4,larves,DSC_0819.JPG +2648,1435,1507,17,4,larves,DSC_0844.JPG +26485,2560,1420,15,4,larves,DSC_0819.JPG +26493,3031,373,17,4,larves,DSC_0819.JPG +26496,4720,745,17,4,larves,DSC_0819.JPG +26497,4789,745,17,4,larves,DSC_0819.JPG +26499,4759,928,17,4,larves,DSC_0819.JPG +26504,4567,1354,17,4,larves,DSC_0819.JPG +26522,4036,1654,17,4,larves,DSC_0819.JPG +26534,4528,1417,17,4,larves,DSC_0819.JPG +26536,4492,1591,17,4,larves,DSC_0819.JPG +26537,2977,1666,15,4,larves,DSC_0819.JPG +26540,3643,1846,17,4,larves,DSC_0819.JPG +26549,4789,988,17,4,larves,DSC_0819.JPG +26554,3892,1786,17,4,larves,DSC_0819.JPG +26561,2494,1057,17,4,larves,DSC_0819.JPG +26573,4894,805,17,4,larves,DSC_0819.JPG +26574,4753,808,17,4,larves,DSC_0819.JPG +26580,4426,1597,17,4,larves,DSC_0819.JPG +266,1399,931,17,3,larves,DSC_0844.JPG +2660,1936,877,17,4,larves,DSC_0844.JPG +26601,4888,1171,17,4,larves,DSC_0819.JPG +26603,4639,1357,17,4,larves,DSC_0819.JPG +26604,4462,1417,17,4,larves,DSC_0819.JPG +2661,1696,1735,16,4,larves,DSC_0844.JPG +26615,4960,1171,17,4,larves,DSC_0819.JPG +26623,4750,1048,17,4,larves,DSC_0819.JPG +26624,4960,1051,17,4,larves,DSC_0819.JPG +26640,4924,991,17,4,larves,DSC_0819.JPG +26643,5164,1402,17,4,larves,DSC_0819.JPG +26663,4528,1537,17,4,larves,DSC_0819.JPG +26677,4789,865,17,4,larves,DSC_0819.JPG +2668,1984,970,15,4,larves,DSC_0844.JPG +26681,4774,1108,17,4,larves,DSC_0819.JPG +26684,4423,1477,17,4,larves,DSC_0819.JPG +26696,4705,1234,17,4,larves,DSC_0819.JPG +26698,2977,1540,17,4,larves,DSC_0819.JPG +267,1366,991,15,4,larves,DSC_0844.JPG +26713,4861,745,17,4,larves,DSC_0819.JPG +26715,4849,1237,15,4,larves,DSC_0819.JPG +26725,4903,433,17,4,larves,DSC_0819.JPG +2673,1249,1510,17,4,larves,DSC_0844.JPG +26730,4933,742,17,4,larves,DSC_0819.JPG +26734,4858,865,17,4,larves,DSC_0819.JPG +26738,4855,1111,17,4,larves,DSC_0819.JPG +2674,1246,1666,16,4,larves,DSC_0844.JPG +26752,2920,439,15,4,larves,DSC_0819.JPG +26757,4894,925,17,4,larves,DSC_0819.JPG +26783,4870,499,17,4,larves,DSC_0819.JPG +2681,1696,931,17,4,larves,DSC_0844.JPG +26812,4996,985,17,4,larves,DSC_0819.JPG +26840,4867,625,17,4,larves,DSC_0819.JPG +26858,4777,1234,17,4,larves,DSC_0819.JPG +26878,4966,802,17,4,larves,DSC_0819.JPG +2688,1825,1051,16,4,larves,DSC_0844.JPG +26916,5170,1168,15,4,larves,DSC_0819.JPG +26933,4822,931,15,4,larves,DSC_0819.JPG +26935,4816,1045,16,4,larves,DSC_0819.JPG +26941,5089,1528,17,4,larves,DSC_0819.JPG +26948,2851,442,17,4,larves,DSC_0819.JPG +26949,3766,445,17,3,larves,DSC_0819.JPG +26950,4927,619,15,4,larves,DSC_0819.JPG +26961,3064,304,17,4,larves,DSC_0819.JPG +26968,4717,1114,15,3,larves,DSC_0819.JPG +26986,1639,1648,17,4,larves,DSC_0819.JPG +26994,4999,865,17,4,larves,DSC_0819.JPG +27,2197,1498,15,4,larves,DSC_0844.JPG +270,4366,1399,15,4,larves,DSC_0844.JPG +27005,4894,685,17,4,larves,DSC_0819.JPG +2702,1501,1912,16,4,larves,DSC_0844.JPG +27021,4969,685,17,4,larves,DSC_0819.JPG +27023,2557,820,15,4,larves,DSC_0819.JPG +27025,4963,928,17,4,larves,DSC_0819.JPG +27058,4894,1048,15,4,larves,DSC_0819.JPG +27088,4855,988,17,4,larves,DSC_0819.JPG +27114,4909,1357,17,4,larves,DSC_0819.JPG +27126,4747,1162,17,4,larves,DSC_0819.JPG +27181,4930,856,17,4,larves,DSC_0819.JPG +272,649,1564,15,3,larves,DSC_0844.JPG +2720,1738,1012,17,4,larves,DSC_0844.JPG +27214,4825,442,15,4,larves,DSC_0819.JPG +2722,1738,1231,17,4,larves,DSC_0844.JPG +27264,4720,610,15,4,larves,DSC_0819.JPG +2733,1531,1687,17,4,larves,DSC_0844.JPG +27333,2935,1957,15,4,larves,DSC_0819.JPG +27336,19,1150,17,3,larves,DSC_0819.JPG +2734,1477,1828,15,4,larves,DSC_0844.JPG +27341,2878,493,17,4,larves,DSC_0819.JPG +27375,3091,1717,15,4,larves,DSC_0819.JPG +27392,4837,553,15,4,larves,DSC_0819.JPG +2743,1894,952,15,4,larves,DSC_0844.JPG +27433,4966,1468,17,4,larves,DSC_0819.JPG +27461,3052,2008,17,4,larves,DSC_0819.JPG +2748,1477,1591,15,4,larves,DSC_0844.JPG +27483,715,397,16,4,larves,DSC_0840.JPG +27486,1957,355,16,4,larves,DSC_0840.JPG +27488,502,514,16,4,larves,DSC_0840.JPG +27489,1036,340,16,3,larves,DSC_0840.JPG +27490,1885,352,16,4,larves,DSC_0840.JPG +27491,643,397,15,4,larves,DSC_0840.JPG +27492,2380,607,16,4,larves,DSC_0840.JPG +27494,502,391,15,4,larves,DSC_0840.JPG +27496,928,280,15,4,larves,DSC_0840.JPG +275,4285,1879,15,4,larves,DSC_0844.JPG +27500,2524,355,15,4,larves,DSC_0840.JPG +27503,607,334,16,4,larves,DSC_0840.JPG +27505,502,271,17,4,larves,DSC_0840.JPG +27509,748,460,15,4,larves,DSC_0840.JPG +27511,2455,229,16,3,larves,DSC_0840.JPG +27513,679,457,17,4,larves,DSC_0840.JPG +27518,4540,565,16,4,larves,DSC_0840.JPG +27544,2491,166,15,4,larves,DSC_0840.JPG +27554,679,334,15,4,larves,DSC_0840.JPG +27572,2527,229,15,4,larves,DSC_0840.JPG +27574,538,457,17,4,larves,DSC_0840.JPG +27580,4933,1885,17,4,larves,DSC_0840.JPG +27587,2272,664,17,4,larves,DSC_0840.JPG +2759,1813,1288,17,4,larves,DSC_0844.JPG +27590,2878,361,17,3,larves,DSC_0840.JPG +27596,571,394,15,4,larves,DSC_0840.JPG +27612,2350,292,15,4,larves,DSC_0840.JPG +27618,1000,280,15,4,larves,DSC_0840.JPG +27619,496,637,15,4,larves,DSC_0840.JPG +27620,1849,661,17,4,larves,DSC_0840.JPG +27626,895,460,15,3,larves,DSC_0840.JPG +27628,2203,667,17,4,larves,DSC_0840.JPG +27630,964,340,16,4,larves,DSC_0840.JPG +27639,2827,1756,17,4,larves,DSC_0840.JPG +27649,1816,352,17,3,larves,DSC_0840.JPG +27650,211,751,17,3,larves,DSC_0840.JPG +27654,748,337,15,4,larves,DSC_0840.JPG +27668,2488,292,15,4,larves,DSC_0840.JPG +27670,784,400,16,4,larves,DSC_0840.JPG +27672,2242,481,16,4,larves,DSC_0840.JPG +27674,211,508,16,4,larves,DSC_0840.JPG +27690,460,823,16,4,larves,DSC_0840.JPG +27697,538,331,15,4,larves,DSC_0840.JPG +277,2683,175,15,4,larves,DSC_0844.JPG +27705,856,397,15,4,larves,DSC_0840.JPG +27711,1270,2200,17,4,larves,DSC_0840.JPG +2772,1453,1423,17,4,larves,DSC_0844.JPG +27733,4549,445,17,3,larves,DSC_0840.JPG +27745,1990,904,17,4,larves,DSC_0840.JPG +27746,2056,1030,15,4,larves,DSC_0840.JPG +27753,2245,226,15,4,larves,DSC_0840.JPG +27755,427,511,17,4,larves,DSC_0840.JPG +27774,571,271,16,4,larves,DSC_0840.JPG +27775,2419,292,15,4,larves,DSC_0840.JPG +27776,820,457,17,4,larves,DSC_0840.JPG +27789,1168,2134,16,3,larves,DSC_0840.JPG +27792,2386,229,15,4,larves,DSC_0840.JPG +27794,820,337,16,4,larves,DSC_0840.JPG +27819,463,331,17,3,larves,DSC_0840.JPG +27820,250,694,15,4,larves,DSC_0840.JPG +27823,673,1189,16,4,larves,DSC_0840.JPG +27857,1201,2197,15,4,larves,DSC_0840.JPG +27869,424,1003,17,4,larves,DSC_0840.JPG +27874,397,2233,15,3,larves,DSC_0840.JPG +27884,175,448,15,4,larves,DSC_0840.JPG +27894,2209,292,15,4,larves,DSC_0840.JPG +279,2638,505,15,4,larves,DSC_0844.JPG +2790,2785,1453,15,4,larves,DSC_0844.JPG +27901,463,2119,15,3,larves,DSC_0840.JPG +27903,4165,241,17,4,larves,DSC_0840.JPG +27904,3772,304,15,4,larves,DSC_0840.JPG +27905,430,394,17,4,larves,DSC_0840.JPG +27906,4474,442,16,4,larves,DSC_0840.JPG +2791,1570,1612,17,4,larves,DSC_0844.JPG +27910,1951,970,17,4,larves,DSC_0840.JPG +27945,1492,1378,17,4,larves,DSC_0840.JPG +27950,4129,307,16,4,larves,DSC_0840.JPG +27957,1450,1909,16,3,larves,DSC_0840.JPG +27960,1990,295,17,4,larves,DSC_0840.JPG +27964,280,511,17,4,larves,DSC_0840.JPG +27969,2827,1273,17,3,larves,DSC_0840.JPG +27979,394,451,17,4,larves,DSC_0840.JPG +27980,4507,505,16,4,larves,DSC_0840.JPG +27987,2119,1741,17,3,larves,DSC_0840.JPG +27999,2200,790,16,3,larves,DSC_0840.JPG +28004,2689,1390,15,3,larves,DSC_0840.JPG +28021,5149,2002,17,4,larves,DSC_0840.JPG +28033,532,1069,17,4,larves,DSC_0840.JPG +28042,2764,1156,17,3,larves,DSC_0840.JPG +28048,1486,1849,17,4,larves,DSC_0840.JPG +28059,244,571,17,4,larves,DSC_0840.JPG +28060,211,631,16,4,larves,DSC_0840.JPG +28063,1345,1372,16,4,larves,DSC_0840.JPG +28089,418,1234,17,4,larves,DSC_0840.JPG +28096,175,568,15,4,larves,DSC_0840.JPG +28099,1528,964,15,4,larves,DSC_0840.JPG +28105,1417,2086,17,4,larves,DSC_0840.JPG +28128,4057,304,15,4,larves,DSC_0840.JPG +28152,1774,904,15,4,larves,DSC_0840.JPG +28156,1027,2248,17,4,larves,DSC_0840.JPG +28167,532,2125,16,3,larves,DSC_0840.JPG +28185,712,1012,16,4,larves,DSC_0840.JPG +28193,1378,2263,17,4,larves,DSC_0840.JPG +282,3646,844,15,4,larves,DSC_0844.JPG +28211,640,271,16,4,larves,DSC_0840.JPG +28212,1675,349,17,4,larves,DSC_0840.JPG +28226,1636,901,17,4,larves,DSC_0840.JPG +28237,1594,1909,17,4,larves,DSC_0840.JPG +28238,1630,2089,15,3,larves,DSC_0840.JPG +28245,1741,964,16,4,larves,DSC_0840.JPG +28261,1639,661,16,4,larves,DSC_0840.JPG +28273,5035,2065,15,4,larves,DSC_0840.JPG +28279,175,688,15,4,larves,DSC_0840.JPG +28298,1162,2257,15,4,larves,DSC_0840.JPG +283,1225,1111,15,4,larves,DSC_0844.JPG +28307,5149,1879,17,4,larves,DSC_0840.JPG +28327,991,2305,15,3,larves,DSC_0840.JPG +28340,3271,301,15,3,larves,DSC_0840.JPG +28384,1450,1789,15,4,larves,DSC_0840.JPG +28385,5110,1942,17,4,larves,DSC_0840.JPG +28387,1345,2326,17,4,larves,DSC_0840.JPG +284,3958,1276,16,4,larves,DSC_0844.JPG +28418,1627,2455,17,4,larves,DSC_0840.JPG +2844,1861,1375,17,3,larves,DSC_0844.JPG +28451,106,565,15,4,larves,DSC_0840.JPG +28463,250,448,15,4,larves,DSC_0840.JPG +28478,958,2014,17,3,larves,DSC_0840.JPG +28490,4126,2056,16,3,larves,DSC_0840.JPG +285,931,1579,15,4,larves,DSC_0844.JPG +28510,3220,1102,17,4,larves,DSC_0840.JPG +28520,4648,631,17,3,larves,DSC_0840.JPG +28537,1732,2146,17,4,larves,DSC_0840.JPG +28555,136,508,15,4,larves,DSC_0840.JPG +28565,4624,2428,17,4,larves,DSC_0840.JPG +28590,4021,238,17,4,larves,DSC_0840.JPG +28604,1273,1963,17,4,larves,DSC_0840.JPG +28606,1312,2398,17,4,larves,DSC_0840.JPG +2864,2755,1021,17,4,larves,DSC_0844.JPG +28690,178,2293,17,4,larves,DSC_0840.JPG +28749,265,2302,17,4,larves,DSC_0840.JPG +28793,1231,2260,17,3,larves,DSC_0840.JPG +288,3376,1996,16,4,larves,DSC_0844.JPG +28810,3805,364,16,4,larves,DSC_0840.JPG +2885,2314,1309,17,4,larves,DSC_0844.JPG +28885,97,1819,17,4,larves,DSC_0840.JPG +28890,190,2146,17,4,larves,DSC_0840.JPG +289,1774,2095,15,4,larves,DSC_0844.JPG +28932,1414,1852,17,4,larves,DSC_0840.JPG +28935,139,2221,17,4,larves,DSC_0840.JPG +28956,1276,2326,17,4,larves,DSC_0840.JPG +2897,2707,772,17,4,larves,DSC_0844.JPG +29,3289,1216,16,4,larves,DSC_0844.JPG +2905,4255,1234,15,4,larves,DSC_0844.JPG +29054,289,628,15,4,larves,DSC_0840.JPG +29088,67,1894,17,4,larves,DSC_0840.JPG +2913,976,1396,17,4,larves,DSC_0844.JPG +2915,2353,493,15,4,larves,DSC_0844.JPG +2917,2452,1189,17,3,larves,DSC_0844.JPG +29202,2911,295,15,4,larves,DSC_0840.JPG +2925,1516,1765,15,3,larves,DSC_0844.JPG +29260,889,2248,15,4,larves,DSC_0840.JPG +29358,3547,550,15,3,larves,DSC_0840.JPG +2936,4471,1348,17,3,larves,DSC_0844.JPG +29383,1516,2260,17,4,larves,DSC_0840.JPG +2940,715,1213,17,4,larves,DSC_0844.JPG +29414,4624,2194,16,4,larves,DSC_0840.JPG +29437,4330,2302,15,3,larves,DSC_0840.JPG +2947,2269,1852,17,4,larves,DSC_0844.JPG +29478,1111,2386,15,4,larves,DSC_0840.JPG +29493,100,1222,17,4,larves,DSC_0840.JPG +2952,3625,775,15,4,larves,DSC_0844.JPG +2953,1159,1243,17,4,larves,DSC_0844.JPG +2957,3910,1225,17,3,larves,DSC_0844.JPG +29585,220,2221,17,4,larves,DSC_0840.JPG +2960,3331,2167,17,3,larves,DSC_0844.JPG +29633,1393,2389,17,4,larves,DSC_0840.JPG +29657,1624,2368,16,4,larves,DSC_0840.JPG +2967,1585,730,15,4,larves,DSC_0844.JPG +2973,1162,358,15,4,larves,DSC_0844.JPG +2978,1621,1744,15,4,larves,DSC_0837.JPG +298,3166,580,15,4,larves,DSC_0844.JPG +2989,1774,1030,15,3,larves,DSC_0837.JPG +29905,4366,2437,17,4,larves,DSC_0840.JPG +2993,1486,1504,15,3,larves,DSC_0837.JPG +29944,1555,2422,15,3,larves,DSC_0840.JPG +2997,3856,1105,15,4,larves,DSC_0837.JPG +29980,130,991,17,4,larves,DSC_0840.JPG +2999,1630,1150,15,3,larves,DSC_0837.JPG +3,1444,214,17,3,larves,DSC_0844.JPG +30,3025,580,15,4,larves,DSC_0844.JPG +300,3289,1093,15,4,larves,DSC_0844.JPG +30069,1189,2323,17,4,larves,DSC_0840.JPG +3012,1843,1027,15,3,larves,DSC_0837.JPG +3022,1552,1744,15,3,larves,DSC_0837.JPG +3024,1774,904,15,3,larves,DSC_0837.JPG +3029,2722,1705,15,3,larves,DSC_0837.JPG +303,4399,1696,15,4,larves,DSC_0844.JPG +3031,2899,1639,15,4,larves,DSC_0837.JPG +3039,1690,1744,16,3,larves,DSC_0837.JPG +30414,886,331,17,4,larves,DSC_0840.JPG +30427,124,622,17,4,larves,DSC_0840.JPG +3043,3526,1405,15,3,larves,DSC_0837.JPG +30442,478,451,15,4,larves,DSC_0840.JPG +30471,1414,406,15,4,larves,DSC_0840.JPG +30474,1627,2215,15,4,larves,DSC_0820.JPG +30480,859,1852,15,4,larves,DSC_0820.JPG +30481,2665,253,16,4,larves,DSC_0820.JPG +30482,4813,1537,15,4,larves,DSC_0820.JPG +30483,1381,1915,16,4,larves,DSC_0820.JPG +30484,3793,769,17,4,larves,DSC_0820.JPG +30491,1663,2155,16,4,larves,DSC_0820.JPG +30497,1453,1795,16,4,larves,DSC_0820.JPG +30499,1420,2092,15,4,larves,DSC_0820.JPG +305,2959,448,16,4,larves,DSC_0844.JPG +30501,1534,115,16,4,larves,DSC_0820.JPG +30502,4288,376,15,3,larves,DSC_0820.JPG +30504,2434,2275,17,4,larves,DSC_0820.JPG +30510,826,2263,15,4,larves,DSC_0820.JPG +30512,2500,2269,17,4,larves,DSC_0820.JPG +30513,2818,1972,17,4,larves,DSC_0820.JPG +30514,1243,2032,15,4,larves,DSC_0820.JPG +30515,1135,2089,15,4,larves,DSC_0820.JPG +30516,1873,2155,15,4,larves,DSC_0820.JPG +30519,3373,1018,16,3,larves,DSC_0820.JPG +3052,1972,1996,15,4,larves,DSC_0837.JPG +30522,1276,2329,17,4,larves,DSC_0820.JPG +30523,688,250,17,4,larves,DSC_0820.JPG +30524,892,1789,15,4,larves,DSC_0820.JPG +30527,4288,2074,15,3,larves,DSC_0820.JPG +30528,1942,2155,15,4,larves,DSC_0820.JPG +30533,3691,451,15,4,larves,DSC_0820.JPG +30535,2281,457,16,4,larves,DSC_0820.JPG +30540,3403,589,17,4,larves,DSC_0820.JPG +30541,2638,838,15,4,larves,DSC_0820.JPG +30545,2050,2095,15,4,larves,DSC_0820.JPG +30547,1732,2155,15,4,larves,DSC_0820.JPG +30549,4150,238,17,4,larves,DSC_0820.JPG +30550,4219,2074,16,3,larves,DSC_0820.JPG +30551,2083,2272,17,4,larves,DSC_0820.JPG +30553,3124,955,16,4,larves,DSC_0820.JPG +30556,862,187,16,4,larves,DSC_0820.JPG +30557,2743,781,16,3,larves,DSC_0820.JPG +30562,2983,325,17,4,larves,DSC_0820.JPG +30563,508,1957,16,4,larves,DSC_0820.JPG +30569,2875,256,17,3,larves,DSC_0820.JPG +3057,2359,1942,15,4,larves,DSC_0837.JPG +30570,1123,511,16,3,larves,DSC_0820.JPG +30573,577,2077,15,4,larves,DSC_0820.JPG +30574,3238,2200,16,3,larves,DSC_0820.JPG +30576,2014,2272,17,3,larves,DSC_0820.JPG +30578,721,184,15,4,larves,DSC_0820.JPG +30579,4042,307,15,4,larves,DSC_0820.JPG +30580,3370,775,17,4,larves,DSC_0820.JPG +30583,1555,2095,15,4,larves,DSC_0820.JPG +30584,1768,2095,17,4,larves,DSC_0820.JPG +30597,1345,1972,17,4,larves,DSC_0820.JPG +306,2923,511,15,4,larves,DSC_0844.JPG +30600,682,1549,16,3,larves,DSC_0820.JPG +30601,541,2017,15,4,larves,DSC_0820.JPG +30603,1909,2215,15,4,larves,DSC_0820.JPG +30607,928,1612,16,4,larves,DSC_0820.JPG +30614,2878,655,16,3,larves,DSC_0820.JPG +30615,4675,697,15,4,larves,DSC_0820.JPG +30621,751,2143,15,4,larves,DSC_0820.JPG +30622,2854,2149,17,4,larves,DSC_0820.JPG +30628,1204,1972,15,4,larves,DSC_0820.JPG +30629,2152,2155,15,4,larves,DSC_0820.JPG +3063,2722,862,15,4,larves,DSC_0837.JPG +30630,2047,2212,15,4,larves,DSC_0820.JPG +30637,2119,2335,16,3,larves,DSC_0820.JPG +3064,1522,1207,15,3,larves,DSC_0837.JPG +30645,1558,2212,15,4,larves,DSC_0820.JPG +3065,1663,1330,15,3,larves,DSC_0837.JPG +30650,1927,457,16,4,larves,DSC_0820.JPG +30653,1381,2032,16,4,larves,DSC_0820.JPG +30655,1381,2269,15,4,larves,DSC_0820.JPG +30656,2536,2332,17,3,larves,DSC_0820.JPG +30659,1963,388,16,4,larves,DSC_0820.JPG +30660,1999,454,17,4,larves,DSC_0820.JPG +30664,826,1909,15,4,larves,DSC_0820.JPG +30665,823,2146,15,4,larves,DSC_0820.JPG +30667,754,1789,17,4,larves,DSC_0820.JPG +30669,1102,1915,17,3,larves,DSC_0820.JPG +30674,1066,1972,15,3,larves,DSC_0820.JPG +30675,1768,2212,17,4,larves,DSC_0820.JPG +30678,859,2323,15,3,larves,DSC_0820.JPG +30680,3019,652,16,4,larves,DSC_0820.JPG +30681,4777,1480,15,4,larves,DSC_0820.JPG +30683,1030,1912,15,4,larves,DSC_0820.JPG +30689,1288,178,15,4,larves,DSC_0820.JPG +30693,2533,391,17,4,larves,DSC_0820.JPG +30695,4918,1594,15,4,larves,DSC_0820.JPG +30697,859,2086,16,4,larves,DSC_0820.JPG +30698,649,2200,17,3,larves,DSC_0820.JPG +30699,4219,241,16,4,larves,DSC_0820.JPG +3070,2575,1945,15,3,larves,DSC_0837.JPG +30702,2080,1081,17,4,larves,DSC_0820.JPG +30704,1210,2206,17,3,larves,DSC_0820.JPG +30706,1972,898,17,4,larves,DSC_0820.JPG +30720,4771,1834,15,4,larves,DSC_0820.JPG +30721,616,2137,15,4,larves,DSC_0820.JPG +30722,3517,2200,15,4,larves,DSC_0820.JPG +30723,2995,2263,15,4,larves,DSC_0820.JPG +30724,3724,247,15,4,larves,DSC_0820.JPG +30725,1609,250,17,4,larves,DSC_0820.JPG +30730,2395,1018,16,4,larves,DSC_0820.JPG +30731,2113,1021,17,3,larves,DSC_0820.JPG +30736,2152,2275,15,4,larves,DSC_0820.JPG +30737,2914,463,17,4,larves,DSC_0820.JPG +30738,730,580,17,3,larves,DSC_0820.JPG +3074,1876,1216,15,4,larves,DSC_0837.JPG +30740,4888,817,15,4,larves,DSC_0820.JPG +30744,1066,2086,15,4,larves,DSC_0820.JPG +30749,658,577,17,3,larves,DSC_0820.JPG +3075,1900,1873,15,3,larves,DSC_0837.JPG +30751,2641,715,15,4,larves,DSC_0820.JPG +30752,1192,766,17,4,larves,DSC_0820.JPG +30755,2119,2095,15,4,larves,DSC_0820.JPG +30757,2818,2206,16,4,larves,DSC_0820.JPG +30762,3580,388,16,4,larves,DSC_0820.JPG +30763,916,1015,17,3,larves,DSC_0820.JPG +30765,4987,1594,15,3,larves,DSC_0820.JPG +30766,754,1909,17,3,larves,DSC_0820.JPG +30767,2959,2203,15,4,larves,DSC_0820.JPG +30772,4741,1540,15,4,larves,DSC_0820.JPG +30773,649,1846,15,4,larves,DSC_0820.JPG +30777,895,2266,15,3,larves,DSC_0820.JPG +30778,2806,253,17,4,larves,DSC_0820.JPG +30782,2182,898,17,3,larves,DSC_0820.JPG +30783,3340,955,17,4,larves,DSC_0820.JPG +30787,4633,1837,15,4,larves,DSC_0820.JPG +30788,964,1912,15,4,larves,DSC_0820.JPG +30789,2218,2155,17,4,larves,DSC_0820.JPG +30790,577,2197,17,3,larves,DSC_0820.JPG +30791,3028,2200,17,4,larves,DSC_0820.JPG +30795,898,253,17,4,larves,DSC_0820.JPG +30796,1432,322,17,3,larves,DSC_0820.JPG +30797,3013,526,15,4,larves,DSC_0820.JPG +30798,3508,646,17,4,larves,DSC_0820.JPG +30799,2077,958,17,4,larves,DSC_0820.JPG +30804,964,2146,15,4,larves,DSC_0820.JPG +30807,2560,319,17,4,larves,DSC_0820.JPG +30808,2389,391,16,4,larves,DSC_0820.JPG +30815,3448,2200,17,3,larves,DSC_0820.JPG +30816,2467,2209,16,3,larves,DSC_0820.JPG +30818,1243,2269,15,4,larves,DSC_0820.JPG +30820,1537,253,17,3,larves,DSC_0820.JPG +30821,1999,322,17,4,larves,DSC_0820.JPG +30824,1135,1975,15,4,larves,DSC_0820.JPG +30829,2779,961,16,4,larves,DSC_0820.JPG +30830,2950,1024,16,4,larves,DSC_0820.JPG +30834,1519,2152,15,4,larves,DSC_0820.JPG +30837,931,181,17,4,larves,DSC_0820.JPG +3084,1630,1390,15,3,larves,DSC_0837.JPG +30842,2707,718,15,4,larves,DSC_0820.JPG +30843,646,1606,15,4,larves,DSC_0820.JPG +30844,754,1666,17,4,larves,DSC_0820.JPG +30848,1000,1972,15,4,larves,DSC_0820.JPG +3085,1378,1444,15,3,larves,DSC_0837.JPG +30850,3202,2263,17,3,larves,DSC_0820.JPG +30852,1678,394,16,4,larves,DSC_0820.JPG +30855,2179,772,15,4,larves,DSC_0820.JPG +30856,2707,841,15,4,larves,DSC_0820.JPG +30857,4777,1600,15,4,larves,DSC_0820.JPG +30859,997,1855,15,4,larves,DSC_0820.JPG +30863,1315,2032,17,4,larves,DSC_0820.JPG +30865,928,2086,15,4,larves,DSC_0820.JPG +30866,1450,2152,17,4,larves,DSC_0820.JPG +30867,2260,2215,15,3,larves,DSC_0820.JPG +30868,3973,2248,15,4,larves,DSC_0820.JPG +30870,1075,187,17,4,larves,DSC_0820.JPG +30872,4111,307,17,3,larves,DSC_0820.JPG +30874,1867,709,17,4,larves,DSC_0820.JPG +30877,646,1492,17,4,larves,DSC_0820.JPG +30878,4666,1891,16,4,larves,DSC_0820.JPG +3088,1702,1030,15,3,larves,DSC_0837.JPG +30888,1855,325,15,4,larves,DSC_0820.JPG +30890,2212,583,17,4,larves,DSC_0820.JPG +30893,1624,1975,16,4,larves,DSC_0820.JPG +30894,3376,2200,17,4,larves,DSC_0820.JPG +30895,2326,2215,15,4,larves,DSC_0820.JPG +30897,964,2266,15,4,larves,DSC_0820.JPG +309,1438,742,15,4,larves,DSC_0844.JPG +30900,1396,253,16,4,larves,DSC_0820.JPG +30902,3334,457,16,4,larves,DSC_0820.JPG +30904,4672,1540,16,4,larves,DSC_0820.JPG +30908,721,1963,17,4,larves,DSC_0820.JPG +30909,2992,2143,15,4,larves,DSC_0820.JPG +30914,2599,775,15,4,larves,DSC_0820.JPG +30915,2116,898,17,3,larves,DSC_0820.JPG +30922,1453,2272,16,4,larves,DSC_0820.JPG +30927,2425,586,17,4,larves,DSC_0820.JPG +30935,2086,2155,15,4,larves,DSC_0820.JPG +30936,685,2260,15,4,larves,DSC_0820.JPG +30937,2677,2329,16,3,larves,DSC_0820.JPG +30944,4852,880,16,3,larves,DSC_0820.JPG +30945,4669,1780,17,4,larves,DSC_0820.JPG +30946,1276,1972,16,4,larves,DSC_0820.JPG +30947,1522,2038,15,3,larves,DSC_0820.JPG +30958,1312,1912,17,4,larves,DSC_0820.JPG +30959,3340,2140,16,4,larves,DSC_0820.JPG +30961,754,2260,15,4,larves,DSC_0820.JPG +30962,3340,2260,17,3,larves,DSC_0820.JPG +30963,1801,2278,15,4,larves,DSC_0820.JPG +30966,1717,181,16,4,larves,DSC_0820.JPG +30968,4288,235,17,4,larves,DSC_0820.JPG +30972,1936,838,17,4,larves,DSC_0820.JPG +30973,2329,1975,16,4,larves,DSC_0820.JPG +30977,2887,2206,16,4,larves,DSC_0820.JPG +30987,718,2083,15,4,larves,DSC_0820.JPG +30989,2362,2398,15,4,larves,DSC_0820.JPG +30991,4708,634,15,3,larves,DSC_0820.JPG +30995,4738,1777,15,4,larves,DSC_0820.JPG +30996,1351,2089,15,4,larves,DSC_0820.JPG +31,4102,1039,16,4,larves,DSC_0844.JPG +310,1471,928,15,4,larves,DSC_0844.JPG +31004,970,256,17,3,larves,DSC_0820.JPG +31005,2842,325,16,4,larves,DSC_0820.JPG +31006,3298,391,16,4,larves,DSC_0820.JPG +31009,2152,961,15,4,larves,DSC_0820.JPG +31011,2293,1561,17,4,larves,DSC_0820.JPG +31013,3133,2263,15,4,larves,DSC_0820.JPG +31019,910,643,17,4,larves,DSC_0820.JPG +31020,2215,712,16,4,larves,DSC_0820.JPG +31024,2821,1741,17,4,larves,DSC_0820.JPG +31025,472,1780,15,4,larves,DSC_0820.JPG +31030,835,388,17,3,larves,DSC_0820.JPG +31031,2707,457,17,3,larves,DSC_0820.JPG +31032,1015,706,17,4,larves,DSC_0820.JPG +31036,346,1477,15,4,larves,DSC_0820.JPG +31038,4771,1717,15,4,larves,DSC_0820.JPG +3104,1483,1621,16,3,larves,DSC_0837.JPG +31042,721,2203,15,4,larves,DSC_0820.JPG +31043,1699,2215,16,4,larves,DSC_0820.JPG +31044,1420,2332,17,4,larves,DSC_0820.JPG +31045,1486,2335,15,4,larves,DSC_0820.JPG +31048,3865,238,17,4,larves,DSC_0820.JPG +31050,2776,463,15,3,larves,DSC_0820.JPG +31051,1051,514,16,3,larves,DSC_0820.JPG +31052,2605,649,17,4,larves,DSC_0820.JPG +31053,2143,712,17,4,larves,DSC_0820.JPG +31055,2671,775,15,4,larves,DSC_0820.JPG +31057,4879,1654,17,3,larves,DSC_0820.JPG +31059,1105,2032,17,4,larves,DSC_0820.JPG +3106,3559,1822,15,3,larves,DSC_0837.JPG +31060,649,2080,16,4,larves,DSC_0820.JPG +31061,1279,2089,17,4,larves,DSC_0820.JPG +31064,790,2203,15,4,larves,DSC_0820.JPG +31065,2119,2212,17,4,larves,DSC_0820.JPG +31066,4396,160,16,4,larves,DSC_0820.JPG +31069,2638,454,16,4,larves,DSC_0820.JPG +31072,823,1792,17,4,larves,DSC_0820.JPG +31074,1591,2155,16,4,larves,DSC_0820.JPG +31076,1348,2332,16,3,larves,DSC_0820.JPG +31077,2467,2335,16,4,larves,DSC_0820.JPG +31081,3262,460,15,4,larves,DSC_0820.JPG +31082,2707,589,17,4,larves,DSC_0820.JPG +31086,787,1729,17,4,larves,DSC_0820.JPG +31089,1870,2275,16,4,larves,DSC_0820.JPG +31090,1942,2275,16,4,larves,DSC_0820.JPG +31093,697,640,17,3,larves,DSC_0820.JPG +31095,4780,883,17,3,larves,DSC_0820.JPG +31096,880,1075,15,4,larves,DSC_0820.JPG +311,976,1168,15,4,larves,DSC_0844.JPG +31102,4702,1837,17,4,larves,DSC_0820.JPG +31107,856,2203,17,4,larves,DSC_0820.JPG +31108,2398,2209,17,4,larves,DSC_0820.JPG +31109,2362,2275,16,4,larves,DSC_0820.JPG +31117,805,706,16,4,larves,DSC_0820.JPG +31119,817,1312,17,4,larves,DSC_0820.JPG +31124,505,1720,17,4,larves,DSC_0820.JPG +31126,724,1849,15,3,larves,DSC_0820.JPG +31127,3904,2140,17,4,larves,DSC_0820.JPG +31128,2290,2275,17,4,larves,DSC_0820.JPG +31130,2188,2338,15,3,larves,DSC_0820.JPG +31131,1453,2392,15,4,larves,DSC_0820.JPG +31134,1468,250,17,4,larves,DSC_0820.JPG +31136,1321,253,17,4,larves,DSC_0820.JPG +3114,2308,856,15,4,larves,DSC_0837.JPG +31142,2257,2338,15,3,larves,DSC_0820.JPG +31143,1102,2389,15,4,larves,DSC_0820.JPG +31145,1180,250,16,4,larves,DSC_0820.JPG +3115,1807,967,15,4,larves,DSC_0837.JPG +31150,2809,658,17,4,larves,DSC_0820.JPG +31154,5032,811,17,3,larves,DSC_0820.JPG +31157,2920,2266,17,4,larves,DSC_0820.JPG +31160,2356,589,17,4,larves,DSC_0820.JPG +31164,2185,2212,17,4,larves,DSC_0820.JPG +31170,4399,304,17,3,larves,DSC_0820.JPG +31171,2911,328,15,4,larves,DSC_0820.JPG +31174,2779,592,17,4,larves,DSC_0820.JPG +31176,2773,841,17,4,larves,DSC_0820.JPG +31180,4705,1720,15,3,larves,DSC_0820.JPG +31181,1174,2032,17,4,larves,DSC_0820.JPG +31183,868,322,17,4,larves,DSC_0820.JPG +31184,1504,454,17,3,larves,DSC_0820.JPG +31185,2209,454,16,4,larves,DSC_0820.JPG +31187,2464,649,17,4,larves,DSC_0820.JPG +31189,2287,712,16,4,larves,DSC_0820.JPG +3119,1234,1678,15,3,larves,DSC_0837.JPG +31190,736,829,15,4,larves,DSC_0820.JPG +31191,2149,838,17,3,larves,DSC_0820.JPG +31193,433,1603,17,4,larves,DSC_0820.JPG +31195,826,2026,17,4,larves,DSC_0820.JPG +31198,3451,2320,17,4,larves,DSC_0820.JPG +312,4330,1456,15,4,larves,DSC_0844.JPG +31202,433,310,15,4,larves,DSC_0820.JPG +31205,3088,520,17,4,larves,DSC_0820.JPG +31209,3727,1966,17,4,larves,DSC_0820.JPG +31211,1069,2203,17,4,larves,DSC_0820.JPG +31212,1663,2275,15,4,larves,DSC_0820.JPG +31219,3049,454,15,3,larves,DSC_0820.JPG +31222,847,1015,16,4,larves,DSC_0820.JPG +31228,2749,2329,16,3,larves,DSC_0820.JPG +31233,1003,184,15,4,larves,DSC_0820.JPG +31236,1900,775,16,4,larves,DSC_0820.JPG +31237,706,892,16,3,larves,DSC_0820.JPG +31241,361,1600,15,4,larves,DSC_0820.JPG +31243,2293,1798,17,4,larves,DSC_0820.JPG +31244,682,2143,15,4,larves,DSC_0820.JPG +31247,787,2323,15,3,larves,DSC_0820.JPG +31259,2491,325,16,3,larves,DSC_0820.JPG +3126,2686,1765,15,4,larves,DSC_0837.JPG +31263,184,619,16,4,larves,DSC_0820.JPG +31264,769,769,17,4,larves,DSC_0820.JPG +31269,1033,2029,15,3,larves,DSC_0820.JPG +31270,1453,2035,15,4,larves,DSC_0820.JPG +31272,2221,2272,17,4,larves,DSC_0820.JPG +31279,2419,322,17,4,larves,DSC_0820.JPG +31282,2881,1024,16,4,larves,DSC_0820.JPG +31289,1138,2329,15,4,larves,DSC_0820.JPG +31291,2668,391,17,3,larves,DSC_0820.JPG +31294,2104,520,16,4,larves,DSC_0820.JPG +31295,1357,577,15,4,larves,DSC_0820.JPG +31297,4819,694,15,3,larves,DSC_0820.JPG +31299,772,889,17,4,larves,DSC_0820.JPG +31301,4804,1774,15,3,larves,DSC_0820.JPG +31302,2398,1858,17,4,larves,DSC_0820.JPG +31303,2467,1858,16,4,larves,DSC_0820.JPG +31307,931,2206,15,4,larves,DSC_0820.JPG +31310,1213,181,17,4,larves,DSC_0820.JPG +31311,724,454,17,3,larves,DSC_0820.JPG +31314,2497,589,17,4,larves,DSC_0820.JPG +31317,853,1492,16,4,larves,DSC_0820.JPG +31318,820,1669,15,4,larves,DSC_0820.JPG +31319,4840,1714,17,4,larves,DSC_0820.JPG +3132,1594,1210,15,4,larves,DSC_0837.JPG +31322,1429,184,17,4,larves,DSC_0820.JPG +31328,2320,775,17,4,larves,DSC_0820.JPG +31332,649,1963,16,4,larves,DSC_0820.JPG +31333,3763,2254,16,4,larves,DSC_0820.JPG +31336,1642,184,17,3,larves,DSC_0820.JPG +31340,2425,454,15,4,larves,DSC_0820.JPG +31341,2461,526,17,4,larves,DSC_0820.JPG +31342,1504,580,17,4,larves,DSC_0820.JPG +31344,781,1255,15,4,larves,DSC_0820.JPG +31346,322,1660,16,3,larves,DSC_0820.JPG +31349,895,2143,17,4,larves,DSC_0820.JPG +3135,1558,1270,15,3,larves,DSC_0837.JPG +31350,2428,2152,17,4,larves,DSC_0820.JPG +31352,3871,2197,17,4,larves,DSC_0820.JPG +31356,403,376,17,4,larves,DSC_0820.JPG +31359,2878,391,16,4,larves,DSC_0820.JPG +31364,2812,1024,17,4,larves,DSC_0820.JPG +3137,2539,1642,15,4,larves,DSC_0837.JPG +31370,790,1849,15,4,larves,DSC_0820.JPG +31375,2326,2341,15,4,larves,DSC_0820.JPG +31377,1147,190,15,4,larves,DSC_0820.JPG +31381,3226,520,16,4,larves,DSC_0820.JPG +31384,949,952,17,4,larves,DSC_0820.JPG +31385,2185,1141,17,4,larves,DSC_0820.JPG +31387,988,1255,17,4,larves,DSC_0820.JPG +31389,820,1552,17,4,larves,DSC_0820.JPG +3139,1549,1864,15,3,larves,DSC_0837.JPG +31393,964,1792,17,3,larves,DSC_0820.JPG +31395,3622,2023,17,4,larves,DSC_0820.JPG +31397,1627,2095,16,4,larves,DSC_0820.JPG +31398,4111,2137,17,4,larves,DSC_0820.JPG +314,2674,2107,15,4,larves,DSC_0844.JPG +31402,2029,250,17,4,larves,DSC_0820.JPG +31404,2566,589,17,4,larves,DSC_0820.JPG +31405,2980,589,15,4,larves,DSC_0820.JPG +31406,2845,721,15,4,larves,DSC_0820.JPG +3141,2452,604,15,3,larves,DSC_0837.JPG +31412,3376,2314,17,3,larves,DSC_0820.JPG +31413,4612,163,16,4,larves,DSC_0820.JPG +31414,4360,232,17,4,larves,DSC_0820.JPG +31416,2707,322,17,3,larves,DSC_0820.JPG +31417,1501,325,15,4,larves,DSC_0820.JPG +31419,1321,388,15,3,larves,DSC_0820.JPG +31428,2746,2206,15,4,larves,DSC_0820.JPG +31430,1555,2335,15,4,larves,DSC_0820.JPG +31434,1927,322,17,4,larves,DSC_0820.JPG +31436,844,889,17,4,larves,DSC_0820.JPG +31437,913,892,17,4,larves,DSC_0820.JPG +31444,610,2017,16,3,larves,DSC_0820.JPG +31446,1036,2146,17,4,larves,DSC_0820.JPG +31447,1105,2266,16,4,larves,DSC_0820.JPG +31448,2959,2323,17,4,larves,DSC_0820.JPG +31455,2809,388,15,4,larves,DSC_0820.JPG +31458,919,1135,17,4,larves,DSC_0820.JPG +31464,1210,2329,15,4,larves,DSC_0820.JPG +31468,2461,394,17,4,larves,DSC_0820.JPG +31469,1429,451,17,4,larves,DSC_0820.JPG +31473,3058,1438,16,4,larves,DSC_0820.JPG +31475,3445,1852,17,4,larves,DSC_0820.JPG +31477,3832,2140,17,4,larves,DSC_0820.JPG +31478,2773,322,17,3,larves,DSC_0820.JPG +31479,2032,388,15,4,larves,DSC_0820.JPG +31480,2071,454,17,4,larves,DSC_0820.JPG +31481,3511,517,16,3,larves,DSC_0820.JPG +31482,2323,649,16,3,larves,DSC_0820.JPG +31484,2845,1084,17,4,larves,DSC_0820.JPG +31489,790,1972,17,3,larves,DSC_0820.JPG +3149,3751,1045,15,4,larves,DSC_0837.JPG +31491,1036,2266,17,4,larves,DSC_0820.JPG +31494,1501,181,16,4,larves,DSC_0820.JPG +31496,1288,445,17,4,larves,DSC_0820.JPG +31497,1357,451,15,4,larves,DSC_0820.JPG +31505,778,1135,16,4,larves,DSC_0820.JPG +31519,2104,388,17,3,larves,DSC_0820.JPG +31531,1171,2266,17,4,larves,DSC_0820.JPG +31534,1681,100,17,4,larves,DSC_0820.JPG +31536,2278,328,15,4,larves,DSC_0820.JPG +31540,3793,892,17,4,larves,DSC_0820.JPG +31542,685,2026,15,4,larves,DSC_0820.JPG +31543,3904,2254,15,4,larves,DSC_0820.JPG +31544,1699,2341,17,4,larves,DSC_0820.JPG +31546,2350,325,17,4,larves,DSC_0820.JPG +31548,2671,520,16,4,larves,DSC_0820.JPG +31549,2740,523,16,4,larves,DSC_0820.JPG +31557,4150,100,17,4,larves,DSC_0820.JPG +31560,1360,187,16,4,larves,DSC_0820.JPG +31563,946,580,17,4,larves,DSC_0820.JPG +31567,997,2206,15,4,larves,DSC_0820.JPG +31568,1525,2275,15,4,larves,DSC_0820.JPG +31569,1066,2326,15,3,larves,DSC_0820.JPG +31572,2947,394,16,4,larves,DSC_0820.JPG +31573,2530,523,15,4,larves,DSC_0820.JPG +31574,2674,652,17,4,larves,DSC_0820.JPG +31576,1975,1021,17,4,larves,DSC_0820.JPG +31578,781,1372,15,4,larves,DSC_0820.JPG +31584,4075,2077,15,4,larves,DSC_0820.JPG +31589,2173,388,17,4,larves,DSC_0820.JPG +31594,4819,1291,17,4,larves,DSC_0820.JPG +31595,4780,1357,17,4,larves,DSC_0820.JPG +31599,3121,319,16,3,larves,DSC_0820.JPG +3160,1630,1273,15,3,larves,DSC_0837.JPG +31601,2569,457,15,4,larves,DSC_0820.JPG +31602,1855,460,17,4,larves,DSC_0820.JPG +31605,883,949,17,4,larves,DSC_0820.JPG +31606,1024,1081,17,4,larves,DSC_0820.JPG +3161,3604,1291,15,3,larves,DSC_0837.JPG +31610,1417,1975,15,4,larves,DSC_0820.JPG +31614,2644,2269,17,3,larves,DSC_0820.JPG +31615,1768,2335,17,4,larves,DSC_0820.JPG +31616,2572,2389,17,4,larves,DSC_0820.JPG +31618,2011,2398,17,4,larves,DSC_0820.JPG +31622,1966,526,15,4,larves,DSC_0820.JPG +31624,5323,673,17,4,larves,DSC_0820.JPG +31626,850,1132,17,4,larves,DSC_0820.JPG +31633,3937,2197,15,3,larves,DSC_0820.JPG +31636,2071,322,17,3,larves,DSC_0820.JPG +31637,2206,328,17,4,larves,DSC_0820.JPG +31639,3655,514,15,4,larves,DSC_0820.JPG +31646,4888,1303,17,3,larves,DSC_0820.JPG +31650,2254,1507,17,4,larves,DSC_0820.JPG +31652,280,1594,16,4,larves,DSC_0820.JPG +31660,883,1315,17,4,larves,DSC_0820.JPG +31668,3511,388,16,4,larves,DSC_0820.JPG +31670,2530,652,17,4,larves,DSC_0820.JPG +31677,688,1789,17,4,larves,DSC_0820.JPG +31680,1153,448,16,4,larves,DSC_0820.JPG +31685,3622,2137,15,4,larves,DSC_0820.JPG +31693,1861,589,17,4,larves,DSC_0820.JPG +31696,2110,1144,17,4,larves,DSC_0820.JPG +31697,4681,1186,17,4,larves,DSC_0820.JPG +31700,3688,1318,17,4,larves,DSC_0820.JPG +31719,967,2029,17,4,larves,DSC_0820.JPG +31734,2395,2332,17,4,larves,DSC_0820.JPG +31736,1315,2389,15,3,larves,DSC_0820.JPG +31739,2353,463,15,4,larves,DSC_0820.JPG +31740,2845,589,17,3,larves,DSC_0820.JPG +3175,1912,1153,15,4,larves,DSC_0837.JPG +31750,2362,2155,15,4,larves,DSC_0820.JPG +31752,1978,2338,15,4,larves,DSC_0820.JPG +31755,2737,391,17,4,larves,DSC_0820.JPG +3176,2047,1396,15,4,larves,DSC_0837.JPG +31760,3868,2314,17,3,larves,DSC_0820.JPG +31763,4432,370,16,4,larves,DSC_0820.JPG +31772,931,2323,17,3,larves,DSC_0820.JPG +31774,2785,2392,17,4,larves,DSC_0820.JPG +31775,2635,322,16,3,larves,DSC_0820.JPG +31777,1255,508,17,4,larves,DSC_0820.JPG +31787,2605,2332,17,4,larves,DSC_0820.JPG +31788,2050,2338,15,4,larves,DSC_0820.JPG +318,2206,1138,17,4,larves,DSC_0844.JPG +31806,292,430,17,4,larves,DSC_0820.JPG +31808,1390,514,15,4,larves,DSC_0820.JPG +31816,760,2020,15,4,larves,DSC_0820.JPG +31835,2575,2266,15,4,larves,DSC_0820.JPG +31847,4819,949,17,4,larves,DSC_0820.JPG +31853,847,1252,17,3,larves,DSC_0820.JPG +3186,1810,841,15,3,larves,DSC_0837.JPG +31862,4636,1720,15,4,larves,DSC_0820.JPG +3188,1702,1150,15,4,larves,DSC_0837.JPG +31883,4324,307,17,4,larves,DSC_0820.JPG +319,2866,1207,15,4,larves,DSC_0844.JPG +3192,1879,844,16,4,larves,DSC_0837.JPG +31923,2602,526,17,4,larves,DSC_0820.JPG +31934,817,1435,17,4,larves,DSC_0820.JPG +31963,1822,391,17,4,larves,DSC_0820.JPG +3197,2164,724,17,3,larves,DSC_0837.JPG +31993,2947,523,17,4,larves,DSC_0820.JPG +31996,739,703,15,4,larves,DSC_0820.JPG +320,2407,1501,16,4,larves,DSC_0844.JPG +3201,1900,1993,15,3,larves,DSC_0837.JPG +3203,2779,2155,15,4,larves,DSC_0837.JPG +32070,3727,1615,17,4,larves,DSC_0820.JPG +3209,1864,2050,15,3,larves,DSC_0837.JPG +321,3460,1516,15,4,larves,DSC_0844.JPG +32109,331,373,17,4,larves,DSC_0820.JPG +32110,1465,391,17,4,larves,DSC_0820.JPG +3213,1267,1735,15,3,larves,DSC_0837.JPG +3216,1690,1864,15,4,larves,DSC_0837.JPG +32167,4603,694,15,4,larves,DSC_0820.JPG +32173,952,1078,15,4,larves,DSC_0820.JPG +32197,259,496,17,4,larves,DSC_0820.JPG +322,3601,1516,16,4,larves,DSC_0844.JPG +3220,2689,676,15,3,larves,DSC_0837.JPG +32225,1138,2206,17,4,larves,DSC_0820.JPG +32226,1174,2389,15,3,larves,DSC_0820.JPG +32252,2431,2392,17,3,larves,DSC_0820.JPG +32281,2500,2389,15,3,larves,DSC_0820.JPG +32290,4744,694,15,4,larves,DSC_0820.JPG +323,2965,1633,15,4,larves,DSC_0844.JPG +32310,400,1660,15,4,larves,DSC_0820.JPG +32322,4567,763,17,4,larves,DSC_0820.JPG +3235,1879,967,15,4,larves,DSC_0837.JPG +32358,772,646,17,4,larves,DSC_0820.JPG +3237,3118,1162,15,4,larves,DSC_0837.JPG +3238,2323,1756,16,4,larves,DSC_0837.JPG +32399,262,1123,17,4,larves,DSC_0820.JPG +3240,2077,1813,15,4,larves,DSC_0837.JPG +3241,1654,1927,15,4,larves,DSC_0837.JPG +3247,2272,793,15,3,larves,DSC_0837.JPG +32473,2605,397,17,4,larves,DSC_0820.JPG +3248,2197,913,15,3,larves,DSC_0837.JPG +32492,223,1177,15,4,larves,DSC_0820.JPG +325,4471,1696,15,4,larves,DSC_0844.JPG +3252,1867,1810,15,3,larves,DSC_0837.JPG +3253,2290,1819,16,3,larves,DSC_0837.JPG +32550,2923,2380,15,3,larves,DSC_0820.JPG +32567,352,1237,15,4,larves,DSC_0820.JPG +3257,3607,1045,15,3,larves,DSC_0837.JPG +3258,1555,1504,15,3,larves,DSC_0837.JPG +3259,2467,1885,16,3,larves,DSC_0837.JPG +3265,2236,856,15,3,larves,DSC_0837.JPG +3266,1666,967,16,3,larves,DSC_0837.JPG +32687,307,1318,15,4,larves,DSC_0820.JPG +32707,2494,457,16,4,larves,DSC_0820.JPG +3273,2797,865,15,3,larves,DSC_0837.JPG +32743,1243,2386,17,3,larves,DSC_0820.JPG +3279,3535,1285,15,4,larves,DSC_0837.JPG +32812,1663,2398,15,3,larves,DSC_0820.JPG +3283,1831,1747,15,4,larves,DSC_0837.JPG +32896,217,556,17,4,larves,DSC_0820.JPG +33,3757,2182,15,3,larves,DSC_0844.JPG +330,2995,382,16,4,larves,DSC_0844.JPG +33005,2332,901,15,4,larves,DSC_0820.JPG +3304,1558,1387,17,3,larves,DSC_0837.JPG +3308,1936,2053,15,3,larves,DSC_0837.JPG +331,1192,799,15,4,larves,DSC_0844.JPG +3315,1555,1624,15,3,larves,DSC_0837.JPG +33153,799,2077,17,4,larves,DSC_0820.JPG +3316,3523,2005,15,3,larves,DSC_0837.JPG +33184,2155,2389,15,3,larves,DSC_0820.JPG +3326,1450,1330,15,3,larves,DSC_0837.JPG +3329,1696,1624,15,3,larves,DSC_0837.JPG +3330,1972,1876,15,3,larves,DSC_0837.JPG +33353,256,1243,17,4,larves,DSC_0820.JPG +3340,2089,973,16,4,larves,DSC_0837.JPG +3341,3043,1162,17,4,larves,DSC_0837.JPG +33413,1399,379,17,4,larves,DSC_0820.JPG +33466,940,313,15,3,larves,DSC_0820.JPG +33473,2266,1015,17,4,larves,DSC_0820.JPG +3348,2794,1834,15,4,larves,DSC_0837.JPG +33482,2353,1795,15,4,larves,DSC_0820.JPG +33486,1405,2209,17,4,larves,DSC_0820.JPG +33489,1528,529,17,4,larves,DSC_0820.JPG +335,3397,1156,15,3,larves,DSC_0844.JPG +33503,1984,2203,15,4,larves,DSC_0820.JPG +33506,3574,202,15,3,larves,DSC_0841.JPG +33509,1939,319,17,4,larves,DSC_0841.JPG +33510,4678,406,16,3,larves,DSC_0841.JPG +33515,4564,595,15,4,larves,DSC_0841.JPG +33516,3436,328,16,3,larves,DSC_0841.JPG +33520,4393,535,17,3,larves,DSC_0841.JPG +33522,4072,466,16,4,larves,DSC_0841.JPG +33523,4921,592,15,4,larves,DSC_0841.JPG +33536,4954,655,15,4,larves,DSC_0841.JPG +33538,4960,532,16,4,larves,DSC_0841.JPG +33540,2614,517,16,4,larves,DSC_0841.JPG +33544,1657,307,16,4,larves,DSC_0841.JPG +33546,4531,535,15,4,larves,DSC_0841.JPG +3355,1735,841,15,3,larves,DSC_0837.JPG +33550,4963,400,16,3,larves,DSC_0841.JPG +33552,2650,454,17,4,larves,DSC_0841.JPG +33555,4426,472,15,3,larves,DSC_0841.JPG +33556,5068,469,17,4,larves,DSC_0841.JPG +33558,3826,400,15,4,larves,DSC_0841.JPG +3356,1525,964,15,3,larves,DSC_0837.JPG +33563,5245,655,17,4,larves,DSC_0841.JPG +33564,4213,466,16,4,larves,DSC_0841.JPG +33571,1726,181,17,3,larves,DSC_0841.JPG +33572,4354,472,15,4,larves,DSC_0841.JPG +33575,526,1744,15,4,larves,DSC_0841.JPG +33578,3646,466,17,3,larves,DSC_0841.JPG +33580,4465,406,15,3,larves,DSC_0841.JPG +33584,5314,1009,17,4,larves,DSC_0841.JPG +33588,3043,262,17,3,larves,DSC_0841.JPG +33589,3472,265,15,3,larves,DSC_0841.JPG +33590,3505,202,16,3,larves,DSC_0841.JPG +33595,4879,775,15,4,larves,DSC_0841.JPG +33600,4993,592,16,4,larves,DSC_0841.JPG +33601,5134,592,15,4,larves,DSC_0841.JPG +33607,3007,193,17,3,larves,DSC_0841.JPG +33608,2755,262,15,4,larves,DSC_0841.JPG +33609,4144,466,16,4,larves,DSC_0841.JPG +3361,1591,1330,15,3,larves,DSC_0837.JPG +33610,5170,775,16,3,larves,DSC_0841.JPG +33615,1081,46,17,4,larves,DSC_0841.JPG +33618,5068,2185,15,4,larves,DSC_0841.JPG +33630,5068,592,17,4,larves,DSC_0841.JPG +3365,1516,1801,15,3,larves,DSC_0837.JPG +33652,1435,436,17,4,larves,DSC_0841.JPG +33659,3190,262,17,4,larves,DSC_0841.JPG +3366,2113,1876,15,4,larves,DSC_0837.JPG +33660,3007,460,17,4,larves,DSC_0841.JPG +33661,5173,655,17,4,larves,DSC_0841.JPG +3367,1864,1930,16,3,larves,DSC_0837.JPG +33675,4567,472,15,3,larves,DSC_0841.JPG +33684,3613,400,16,4,larves,DSC_0841.JPG +33686,4846,712,15,4,larves,DSC_0841.JPG +33695,4891,532,15,4,larves,DSC_0841.JPG +33699,5281,712,15,4,larves,DSC_0841.JPG +33720,3508,334,17,4,larves,DSC_0841.JPG +33725,4990,715,16,4,larves,DSC_0841.JPG +33728,451,1627,16,3,larves,DSC_0841.JPG +33731,3223,193,17,4,larves,DSC_0841.JPG +33734,5248,529,17,4,larves,DSC_0841.JPG +33735,5281,592,16,4,larves,DSC_0841.JPG +33741,5353,709,17,3,larves,DSC_0841.JPG +33752,631,2266,15,4,larves,DSC_0841.JPG +33758,5173,529,17,4,larves,DSC_0841.JPG +33767,5137,469,17,3,larves,DSC_0841.JPG +33788,5209,589,17,4,larves,DSC_0841.JPG +33789,5029,652,17,4,larves,DSC_0841.JPG +33793,1054,2158,17,4,larves,DSC_0841.JPG +33799,3610,268,15,4,larves,DSC_0841.JPG +33800,3292,325,17,4,larves,DSC_0841.JPG +33804,4882,649,16,3,larves,DSC_0841.JPG +33808,454,1744,15,4,larves,DSC_0841.JPG +33811,4570,2311,17,3,larves,DSC_0841.JPG +33821,4606,2248,17,4,larves,DSC_0841.JPG +33826,2827,262,16,4,larves,DSC_0841.JPG +33831,847,2035,16,3,larves,DSC_0841.JPG +33835,5101,655,16,4,larves,DSC_0841.JPG +33846,4636,472,15,3,larves,DSC_0841.JPG +33847,5101,529,17,4,larves,DSC_0841.JPG +3385,2800,736,15,4,larves,DSC_0837.JPG +33852,3226,328,17,4,larves,DSC_0841.JPG +33853,5209,466,17,4,larves,DSC_0841.JPG +33855,5209,712,17,4,larves,DSC_0841.JPG +33868,1762,382,15,4,larves,DSC_0841.JPG +3387,1594,1087,15,3,larves,DSC_0837.JPG +33870,4996,2185,17,4,larves,DSC_0841.JPG +33884,5320,526,17,4,larves,DSC_0841.JPG +33889,5356,589,15,4,larves,DSC_0841.JPG +3389,1840,1276,15,3,larves,DSC_0837.JPG +33891,415,1684,17,4,larves,DSC_0841.JPG +339,2401,1864,16,4,larves,DSC_0844.JPG +3390,1909,1276,15,4,larves,DSC_0837.JPG +33905,5164,895,17,4,larves,DSC_0841.JPG +33911,5320,652,16,4,larves,DSC_0841.JPG +33912,5134,715,17,4,larves,DSC_0841.JPG +3392,2758,1642,15,4,larves,DSC_0837.JPG +33932,4981,1075,17,3,larves,DSC_0841.JPG +33949,5032,529,17,4,larves,DSC_0841.JPG +3395,3703,1705,15,3,larves,DSC_0837.JPG +33958,5317,772,16,4,larves,DSC_0841.JPG +3396,1408,1738,15,3,larves,DSC_0837.JPG +33965,4774,709,15,4,larves,DSC_0841.JPG +33966,5062,715,17,4,larves,DSC_0841.JPG +33977,3403,262,16,4,larves,DSC_0841.JPG +33987,1867,319,16,4,larves,DSC_0841.JPG +33988,3685,400,16,4,larves,DSC_0841.JPG +33995,2545,388,17,4,larves,DSC_0841.JPG +34,4069,1339,15,4,larves,DSC_0844.JPG +340,2608,1987,15,3,larves,DSC_0844.JPG +3400,2869,862,15,3,larves,DSC_0837.JPG +34001,1030,2494,17,4,larves,DSC_0841.JPG +34018,3541,265,15,4,larves,DSC_0841.JPG +34022,5278,829,15,3,larves,DSC_0841.JPG +34029,5239,772,17,4,larves,DSC_0841.JPG +3404,2761,1513,17,3,larves,DSC_0837.JPG +34057,4978,1309,17,4,larves,DSC_0841.JPG +34064,4855,466,17,3,larves,DSC_0841.JPG +3407,1270,1618,15,3,larves,DSC_0837.JPG +34086,3079,331,16,4,larves,DSC_0841.JPG +3409,1939,1690,15,3,larves,DSC_0837.JPG +3410,3631,1705,15,3,larves,DSC_0837.JPG +34120,4639,2308,15,4,larves,DSC_0841.JPG +3414,1723,1927,15,4,larves,DSC_0837.JPG +34158,5314,889,16,4,larves,DSC_0841.JPG +3416,2848,2158,15,4,larves,DSC_0837.JPG +34193,4708,2311,15,4,larves,DSC_0841.JPG +34202,5233,1012,17,4,larves,DSC_0841.JPG +34223,4816,2251,15,4,larves,DSC_0841.JPG +34248,5032,2128,15,4,larves,DSC_0841.JPG +34271,4396,2251,17,4,larves,DSC_0841.JPG +34288,4531,2371,17,4,larves,DSC_0841.JPG +343,4207,979,15,4,larves,DSC_0844.JPG +34326,3577,331,15,4,larves,DSC_0841.JPG +3434,1558,1024,15,3,larves,DSC_0837.JPG +3439,1627,1507,15,3,larves,DSC_0837.JPG +34427,592,1267,17,3,larves,DSC_0841.JPG +34457,3856,2452,17,4,larves,DSC_0841.JPG +34461,4663,535,15,3,larves,DSC_0841.JPG +3449,1486,1270,15,3,larves,DSC_0837.JPG +345,2830,1264,17,4,larves,DSC_0844.JPG +34508,5332,2059,15,4,larves,DSC_0841.JPG +3451,3568,1348,17,4,larves,DSC_0837.JPG +34530,4012,2452,17,4,larves,DSC_0841.JPG +34553,4093,2440,15,3,larves,DSC_0841.JPG +3457,1375,1918,15,3,larves,DSC_0837.JPG +346,3499,1336,15,4,larves,DSC_0844.JPG +34631,325,2143,15,4,larves,DSC_0841.JPG +34633,4372,2437,16,4,larves,DSC_0841.JPG +347,1009,1345,15,4,larves,DSC_0844.JPG +34703,5296,1360,17,3,larves,DSC_0841.JPG +3471,1915,1030,15,3,larves,DSC_0837.JPG +3479,2740,2086,15,4,larves,DSC_0837.JPG +348,5149,1750,17,3,larves,DSC_0844.JPG +34842,2662,2521,17,3,larves,DSC_0841.JPG +3487,1735,1090,15,4,larves,DSC_0837.JPG +3488,1774,1153,15,4,larves,DSC_0837.JPG +3489,3640,1228,15,3,larves,DSC_0837.JPG +349,2953,1990,17,3,larves,DSC_0844.JPG +3493,3526,1762,15,3,larves,DSC_0837.JPG +3495,1726,1807,15,3,larves,DSC_0837.JPG +34950,2980,262,17,4,larves,DSC_0841.JPG +35,4063,1456,15,4,larves,DSC_0844.JPG +350,2083,2038,15,4,larves,DSC_0844.JPG +3501,1459,712,16,3,larves,DSC_0837.JPG +351,3721,2119,15,4,larves,DSC_0844.JPG +3513,2362,1819,15,4,larves,DSC_0837.JPG +35161,4231,2488,15,4,larves,DSC_0841.JPG +3522,1588,1684,15,3,larves,DSC_0837.JPG +3528,3628,1942,15,3,larves,DSC_0837.JPG +35288,3934,2458,17,4,larves,DSC_0841.JPG +3537,1915,784,15,3,larves,DSC_0837.JPG +3538,2125,913,16,4,larves,DSC_0837.JPG +3539,1630,1027,15,3,larves,DSC_0837.JPG +3543,2182,1750,16,3,larves,DSC_0837.JPG +3544,3451,2002,15,3,larves,DSC_0837.JPG +355,3235,580,16,4,larves,DSC_0844.JPG +3551,2020,850,15,3,larves,DSC_0837.JPG +3557,1663,1567,15,3,larves,DSC_0837.JPG +3559,1828,1870,15,4,larves,DSC_0837.JPG +356,3196,649,17,4,larves,DSC_0844.JPG +3560,2251,1879,15,4,larves,DSC_0837.JPG +3565,2347,916,15,4,larves,DSC_0837.JPG +3568,3127,1282,15,4,larves,DSC_0837.JPG +357,3409,778,15,4,larves,DSC_0844.JPG +3579,1759,1987,15,3,larves,DSC_0837.JPG +358,1336,805,15,4,larves,DSC_0844.JPG +3581,2500,2062,15,3,larves,DSC_0837.JPG +3590,1876,1093,15,3,larves,DSC_0837.JPG +3592,3184,1159,17,4,larves,DSC_0837.JPG +3593,1735,1213,15,3,larves,DSC_0837.JPG +35990,5233,1897,17,4,larves,DSC_0841.JPG +36,2227,1801,16,4,larves,DSC_0844.JPG +360,3193,904,15,4,larves,DSC_0844.JPG +36000,4285,2437,17,4,larves,DSC_0841.JPG +36001,3229,2452,17,4,larves,DSC_0841.JPG +36003,2626,262,15,4,larves,DSC_0841.JPG +3607,2053,913,17,4,larves,DSC_0837.JPG +3611,1735,1564,15,3,larves,DSC_0837.JPG +3615,2647,1705,15,4,larves,DSC_0837.JPG +3617,1480,1741,15,3,larves,DSC_0837.JPG +3619,1795,1807,15,4,larves,DSC_0837.JPG +362,3325,1279,15,4,larves,DSC_0844.JPG +3622,2146,2176,15,3,larves,DSC_0837.JPG +36272,4924,1960,17,3,larves,DSC_0841.JPG +36303,5101,2368,17,3,larves,DSC_0841.JPG +3632,1702,904,15,3,larves,DSC_0837.JPG +36345,3772,2449,15,4,larves,DSC_0841.JPG +3635,1384,1327,17,3,larves,DSC_0837.JPG +3642,1870,1687,15,3,larves,DSC_0837.JPG +365,3721,1999,15,4,larves,DSC_0844.JPG +36529,5002,478,17,3,larves,DSC_0841.JPG +36565,3553,172,16,4,larves,DSC_0838.JPG +3658,1666,1090,15,3,larves,DSC_0837.JPG +3659,3157,1099,15,4,larves,DSC_0837.JPG +36595,3904,445,17,3,larves,DSC_0838.JPG +36598,3520,373,17,4,larves,DSC_0838.JPG +36620,3100,235,16,4,larves,DSC_0838.JPG +36626,3484,301,16,4,larves,DSC_0838.JPG +3667,2539,2005,15,4,larves,DSC_0837.JPG +36682,4027,1441,15,3,larves,DSC_0838.JPG +36703,2482,1054,17,3,larves,DSC_0838.JPG +36704,3541,1075,17,3,larves,DSC_0838.JPG +36711,3820,1078,16,3,larves,DSC_0838.JPG +36712,3889,1078,16,3,larves,DSC_0838.JPG +36719,2449,1117,17,3,larves,DSC_0838.JPG +36722,3433,1375,17,3,larves,DSC_0838.JPG +36726,3979,1855,15,3,larves,DSC_0838.JPG +36738,3085,1003,16,3,larves,DSC_0838.JPG +36744,4813,571,17,4,larves,DSC_0838.JPG +3677,2518,736,15,3,larves,DSC_0837.JPG +36773,1741,2302,17,3,larves,DSC_0838.JPG +36807,4681,187,17,3,larves,DSC_0838.JPG +36845,550,322,15,4,larves,DSC_0838.JPG +36873,1192,205,15,4,larves,DSC_0838.JPG +3688,1339,1858,15,3,larves,DSC_0837.JPG +36884,688,328,17,4,larves,DSC_0838.JPG +36894,4120,445,16,4,larves,DSC_0838.JPG +36896,2521,1117,17,3,larves,DSC_0838.JPG +36898,2767,1429,17,3,larves,DSC_0838.JPG +36899,3748,1441,17,3,larves,DSC_0838.JPG +36907,3661,379,17,4,larves,DSC_0838.JPG +36944,5053,877,16,3,larves,DSC_0838.JPG +36948,5080,1783,16,4,larves,DSC_0838.JPG +36970,3910,178,17,4,larves,DSC_0838.JPG +36971,4501,382,17,4,larves,DSC_0838.JPG +36996,3910,313,17,4,larves,DSC_0838.JPG +37,2749,172,16,4,larves,DSC_0844.JPG +37002,3622,304,17,4,larves,DSC_0838.JPG +37011,3766,310,17,4,larves,DSC_0838.JPG +3702,2014,1093,15,3,larves,DSC_0837.JPG +37043,619,325,16,4,larves,DSC_0838.JPG +37046,3649,889,16,3,larves,DSC_0838.JPG +37054,4330,313,17,4,larves,DSC_0838.JPG +37056,445,388,17,4,larves,DSC_0838.JPG +37058,4915,757,16,3,larves,DSC_0838.JPG +3707,2506,1702,15,4,larves,DSC_0837.JPG +37077,796,265,17,4,larves,DSC_0838.JPG +371,3094,577,16,4,larves,DSC_0844.JPG +37107,1330,208,15,4,larves,DSC_0838.JPG +3711,2467,2005,15,4,larves,DSC_0837.JPG +37130,148,622,15,4,larves,DSC_0838.JPG +37132,4918,880,17,4,larves,DSC_0838.JPG +37137,2302,1717,16,3,larves,DSC_0838.JPG +37151,1474,211,17,4,larves,DSC_0838.JPG +37152,3733,238,17,4,larves,DSC_0838.JPG +37154,4780,763,17,4,larves,DSC_0838.JPG +37167,3841,175,17,4,larves,DSC_0838.JPG +37181,1117,337,16,4,larves,DSC_0838.JPG +37182,265,442,17,4,larves,DSC_0838.JPG +37183,4675,577,17,4,larves,DSC_0838.JPG +37185,4744,697,15,4,larves,DSC_0838.JPG +37188,3223,1006,17,3,larves,DSC_0838.JPG +37199,799,394,17,3,larves,DSC_0838.JPG +37201,5092,1054,15,4,larves,DSC_0838.JPG +37215,4882,697,16,3,larves,DSC_0838.JPG +3723,2434,1702,15,4,larves,DSC_0837.JPG +37232,3190,946,17,3,larves,DSC_0838.JPG +37233,5056,997,17,4,larves,DSC_0838.JPG +37240,3955,1441,15,3,larves,DSC_0838.JPG +37246,4813,700,17,4,larves,DSC_0838.JPG +37247,3511,760,17,3,larves,DSC_0838.JPG +3725,2611,1765,15,4,larves,DSC_0837.JPG +3726,2146,1936,15,4,larves,DSC_0837.JPG +37282,724,262,15,4,larves,DSC_0838.JPG +37283,1438,271,17,4,larves,DSC_0838.JPG +37284,4396,445,17,4,larves,DSC_0838.JPG +37285,4711,634,17,3,larves,DSC_0838.JPG +37286,130,1054,17,4,larves,DSC_0838.JPG +37307,1615,214,17,4,larves,DSC_0838.JPG +37308,868,265,17,4,larves,DSC_0838.JPG +37318,3772,172,17,4,larves,DSC_0838.JPG +3733,1666,715,17,3,larves,DSC_0837.JPG +37333,4048,313,16,4,larves,DSC_0838.JPG +37335,760,328,15,4,larves,DSC_0838.JPG +37337,4645,508,15,4,larves,DSC_0838.JPG +37338,4750,571,17,4,larves,DSC_0838.JPG +37344,2266,1894,17,4,larves,DSC_0838.JPG +3735,1738,967,16,4,larves,DSC_0837.JPG +37351,4606,445,17,4,larves,DSC_0838.JPG +3736,1948,1093,15,3,larves,DSC_0837.JPG +37364,1258,208,17,4,larves,DSC_0838.JPG +37366,5125,994,17,3,larves,DSC_0838.JPG +37369,3943,1912,17,3,larves,DSC_0838.JPG +37378,3799,241,17,4,larves,DSC_0838.JPG +3739,1978,1276,15,4,larves,DSC_0837.JPG +37398,187,565,15,4,larves,DSC_0838.JPG +37399,4777,637,17,4,larves,DSC_0838.JPG +374,2947,964,15,4,larves,DSC_0844.JPG +37402,328,1888,17,3,larves,DSC_0838.JPG +37407,3874,376,17,4,larves,DSC_0838.JPG +37419,1177,2284,15,4,larves,DSC_0838.JPG +3742,1729,1684,15,3,larves,DSC_0837.JPG +37422,3730,379,16,4,larves,DSC_0838.JPG +37424,4711,508,17,3,larves,DSC_0838.JPG +37425,5020,817,17,3,larves,DSC_0838.JPG +37426,91,868,17,4,larves,DSC_0838.JPG +37430,616,2137,15,4,larves,DSC_0838.JPG +37437,1510,274,16,4,larves,DSC_0838.JPG +37438,3979,316,17,4,larves,DSC_0838.JPG +37441,4918,634,17,3,larves,DSC_0838.JPG +37446,508,2068,15,4,larves,DSC_0838.JPG +3745,2005,1936,15,3,larves,DSC_0837.JPG +37454,295,511,17,4,larves,DSC_0838.JPG +37455,82,616,15,3,larves,DSC_0838.JPG +37470,4951,814,15,3,larves,DSC_0838.JPG +37481,1225,271,17,4,larves,DSC_0838.JPG +37494,1153,271,17,4,larves,DSC_0838.JPG +37496,4537,445,17,4,larves,DSC_0838.JPG +37507,1405,208,16,4,larves,DSC_0838.JPG +37513,3979,1975,15,4,larves,DSC_0838.JPG +37518,1012,268,17,4,larves,DSC_0838.JPG +37519,226,505,17,4,larves,DSC_0838.JPG +37521,79,745,17,4,larves,DSC_0838.JPG +37528,118,1291,17,4,larves,DSC_0838.JPG +3753,3301,610,16,4,larves,DSC_0837.JPG +37543,4576,508,17,4,larves,DSC_0838.JPG +37553,685,2143,17,4,larves,DSC_0838.JPG +37561,5020,940,17,4,larves,DSC_0838.JPG +3759,3607,1168,15,4,larves,DSC_0837.JPG +37592,4366,379,17,4,larves,DSC_0838.JPG +37599,4987,1003,15,4,larves,DSC_0838.JPG +376,3643,1093,16,4,larves,DSC_0844.JPG +37604,1036,2278,17,4,larves,DSC_0838.JPG +3761,4555,1216,17,4,larves,DSC_0837.JPG +3762,3640,1351,15,3,larves,DSC_0837.JPG +37634,4639,640,17,4,larves,DSC_0838.JPG +37636,112,682,17,4,larves,DSC_0838.JPG +3764,1522,1447,15,3,larves,DSC_0837.JPG +37664,4261,445,17,4,larves,DSC_0838.JPG +3769,2218,1816,16,4,larves,DSC_0837.JPG +377,3466,1159,15,4,larves,DSC_0844.JPG +3770,2110,1996,15,4,larves,DSC_0837.JPG +37709,4543,574,17,4,larves,DSC_0838.JPG +37741,4609,574,16,4,larves,DSC_0838.JPG +37757,1354,2341,15,4,larves,DSC_0838.JPG +37777,4849,637,15,4,larves,DSC_0838.JPG +378,3427,1459,15,4,larves,DSC_0844.JPG +37832,3838,313,17,4,larves,DSC_0838.JPG +3784,2827,1768,17,4,larves,DSC_0837.JPG +37855,793,2206,15,4,larves,DSC_0838.JPG +37862,940,268,17,4,larves,DSC_0838.JPG +3787,3415,2182,15,3,larves,DSC_0837.JPG +37870,4882,823,17,4,larves,DSC_0838.JPG +37888,3697,307,17,4,larves,DSC_0838.JPG +37908,5185,1834,17,4,larves,DSC_0838.JPG +37919,4846,757,17,4,larves,DSC_0838.JPG +37938,5149,1897,17,4,larves,DSC_0838.JPG +37963,1549,211,17,4,larves,DSC_0838.JPG +37974,160,742,17,4,larves,DSC_0838.JPG +37980,5227,1774,15,4,larves,DSC_0838.JPG +3799,1522,1330,16,3,larves,DSC_0837.JPG +37995,4255,313,17,4,larves,DSC_0838.JPG +37996,4087,376,17,4,larves,DSC_0838.JPG +38,3100,451,16,4,larves,DSC_0844.JPG +380,4261,1699,15,4,larves,DSC_0844.JPG +38023,4225,379,17,4,larves,DSC_0838.JPG +38078,5191,1717,17,4,larves,DSC_0838.JPG +38096,1297,274,17,4,larves,DSC_0838.JPG +381,2506,1807,16,3,larves,DSC_0844.JPG +38105,157,994,17,4,larves,DSC_0838.JPG +38125,859,2212,17,4,larves,DSC_0838.JPG +38134,4297,382,17,4,larves,DSC_0838.JPG +3816,2482,799,15,3,larves,DSC_0837.JPG +38163,928,2215,17,4,larves,DSC_0838.JPG +38186,5257,1705,17,4,larves,DSC_0838.JPG +382,3760,1936,17,4,larves,DSC_0844.JPG +3820,1981,1153,15,4,larves,DSC_0837.JPG +3824,2935,1708,17,4,larves,DSC_0837.JPG +3825,2542,1765,15,4,larves,DSC_0837.JPG +38308,4117,313,17,4,larves,DSC_0838.JPG +3832,2380,856,15,4,larves,DSC_0837.JPG +3833,3214,1267,16,4,larves,DSC_0837.JPG +3836,1627,1624,15,3,larves,DSC_0837.JPG +3837,1834,1627,15,3,larves,DSC_0837.JPG +3838,1972,1750,15,4,larves,DSC_0837.JPG +38391,76,1114,15,4,larves,DSC_0838.JPG +384,2533,2224,16,3,larves,DSC_0844.JPG +38440,214,1825,15,4,larves,DSC_0838.JPG +38480,577,2077,15,4,larves,DSC_0838.JPG +38494,112,796,15,4,larves,DSC_0838.JPG +3852,2092,850,16,4,larves,DSC_0837.JPG +38542,4948,943,17,4,larves,DSC_0838.JPG +3856,3484,1462,17,3,larves,DSC_0837.JPG +3857,2011,1684,17,4,larves,DSC_0837.JPG +3860,1444,1801,15,3,larves,DSC_0837.JPG +3861,2287,1942,15,4,larves,DSC_0837.JPG +38675,3802,376,17,4,larves,DSC_0838.JPG +38740,118,1396,17,4,larves,DSC_0838.JPG +3876,1807,1216,15,4,larves,DSC_0837.JPG +3877,1417,1270,15,3,larves,DSC_0837.JPG +3879,2431,1576,16,3,larves,DSC_0837.JPG +38796,259,1879,17,4,larves,DSC_0838.JPG +388,1687,679,15,4,larves,DSC_0844.JPG +3880,1585,1804,15,3,larves,DSC_0837.JPG +3881,1618,1984,15,3,larves,DSC_0837.JPG +3889,2758,799,15,3,larves,DSC_0837.JPG +389,2878,709,17,4,larves,DSC_0844.JPG +3891,1984,1033,15,3,larves,DSC_0837.JPG +38917,88,1453,17,3,larves,DSC_0838.JPG +3892,3085,1225,15,3,larves,DSC_0837.JPG +3894,1408,1858,15,3,larves,DSC_0837.JPG +39,3514,715,16,4,larves,DSC_0844.JPG +390,4141,853,15,4,larves,DSC_0844.JPG +39055,124,934,17,4,larves,DSC_0838.JPG +3908,2128,1162,17,4,larves,DSC_0837.JPG +391,1189,925,15,4,larves,DSC_0844.JPG +3910,1765,1624,15,3,larves,DSC_0837.JPG +3911,2614,1642,15,4,larves,DSC_0837.JPG +3912,2791,1705,15,4,larves,DSC_0837.JPG +3914,1654,1804,15,3,larves,DSC_0837.JPG +3921,3307,2122,16,4,larves,DSC_0837.JPG +39275,331,1999,15,4,larves,DSC_0838.JPG +393,1330,1054,15,4,larves,DSC_0844.JPG +3933,2731,613,16,3,larves,DSC_0837.JPG +3936,1948,970,15,4,larves,DSC_0837.JPG +3939,1807,1090,15,4,larves,DSC_0837.JPG +394,874,1099,16,4,larves,DSC_0844.JPG +3941,1558,1150,15,3,larves,DSC_0837.JPG +3944,2182,1876,16,4,larves,DSC_0837.JPG +395,4273,1102,15,4,larves,DSC_0844.JPG +3954,1915,904,15,3,larves,DSC_0837.JPG +39553,130,1534,15,4,larves,DSC_0838.JPG +3959,1702,1507,15,4,larves,DSC_0837.JPG +396,3499,1456,15,4,larves,DSC_0844.JPG +3962,598,1900,17,3,larves,DSC_0837.JPG +397,3181,1513,15,4,larves,DSC_0844.JPG +3974,2977,1042,15,4,larves,DSC_0837.JPG +3975,1663,1213,15,3,larves,DSC_0837.JPG +3978,3451,1393,17,3,larves,DSC_0837.JPG +3979,2116,1402,17,4,larves,DSC_0837.JPG +398,1843,2095,15,4,larves,DSC_0844.JPG +3980,2647,1825,15,4,larves,DSC_0837.JPG +3987,2059,787,17,3,larves,DSC_0837.JPG +3989,3160,1222,15,4,larves,DSC_0837.JPG +3992,1975,1393,17,3,larves,DSC_0837.JPG +3996,2470,1762,15,4,larves,DSC_0837.JPG +3999,1585,1927,15,3,larves,DSC_0837.JPG +4,4138,979,15,4,larves,DSC_0844.JPG +4004,1054,2086,16,3,larves,DSC_0837.JPG +4011,2062,535,16,3,larves,DSC_0837.JPG +4015,2200,793,15,3,larves,DSC_0837.JPG +4018,3358,1114,15,3,larves,DSC_0837.JPG +402,1831,556,15,4,larves,DSC_0844.JPG +4022,1945,1216,15,3,larves,DSC_0837.JPG +4024,1906,1396,15,4,larves,DSC_0837.JPG +4031,1585,2044,15,3,larves,DSC_0837.JPG +4047,1873,1336,15,3,larves,DSC_0837.JPG +405,1264,802,15,4,larves,DSC_0844.JPG +4050,2650,1582,16,4,larves,DSC_0837.JPG +4055,2179,1999,15,4,larves,DSC_0837.JPG +4056,2686,2014,15,3,larves,DSC_0837.JPG +406,1543,808,15,4,larves,DSC_0844.JPG +4066,2017,973,15,3,larves,DSC_0837.JPG +4067,3568,1102,15,3,larves,DSC_0837.JPG +407,2587,1324,15,4,larves,DSC_0844.JPG +4070,814,1546,17,3,larves,DSC_0837.JPG +408,2164,1435,15,4,larves,DSC_0844.JPG +4090,2860,1708,15,4,larves,DSC_0837.JPG +4110,1942,1336,15,3,larves,DSC_0837.JPG +4113,2467,1639,15,4,larves,DSC_0837.JPG +4115,1762,1744,15,4,larves,DSC_0837.JPG +4117,2008,1816,15,3,larves,DSC_0837.JPG +412,3457,1636,16,4,larves,DSC_0844.JPG +4121,2041,1996,15,3,larves,DSC_0837.JPG +413,3529,1636,15,4,larves,DSC_0844.JPG +4137,3967,1168,15,3,larves,DSC_0837.JPG +4139,1414,1384,15,3,larves,DSC_0837.JPG +4144,2860,1834,15,4,larves,DSC_0837.JPG +415,3271,1939,15,4,larves,DSC_0844.JPG +4152,1735,1336,15,3,larves,DSC_0837.JPG +4153,1768,1396,17,3,larves,DSC_0837.JPG +4157,2041,1522,15,4,larves,DSC_0837.JPG +4158,1798,1684,15,4,larves,DSC_0837.JPG +4159,1903,1750,15,4,larves,DSC_0837.JPG +416,3445,1999,15,4,larves,DSC_0844.JPG +4161,1795,1930,15,4,larves,DSC_0837.JPG +4162,1690,1987,15,3,larves,DSC_0837.JPG +4163,2323,2002,15,4,larves,DSC_0837.JPG +4164,2215,2059,15,4,larves,DSC_0837.JPG +4167,2050,1036,16,3,larves,DSC_0837.JPG +4168,2128,1036,15,4,larves,DSC_0837.JPG +4169,1384,1084,15,3,larves,DSC_0837.JPG +4172,2146,1813,15,4,larves,DSC_0837.JPG +419,3064,514,16,3,larves,DSC_0844.JPG +4194,3379,1999,15,4,larves,DSC_0837.JPG +4196,2464,2125,16,4,larves,DSC_0837.JPG +420,2599,700,16,4,larves,DSC_0844.JPG +421,3829,787,15,4,larves,DSC_0844.JPG +4213,2089,1099,15,4,larves,DSC_0837.JPG +4214,2161,1099,17,4,larves,DSC_0837.JPG +4219,1837,1510,15,3,larves,DSC_0837.JPG +4220,2794,1573,15,4,larves,DSC_0837.JPG +424,3076,1213,15,4,larves,DSC_0844.JPG +4245,1843,907,15,3,larves,DSC_0837.JPG +425,3784,1219,16,4,larves,DSC_0844.JPG +4251,1519,1564,15,4,larves,DSC_0837.JPG +4253,2686,1645,15,4,larves,DSC_0837.JPG +4256,1621,1867,15,3,larves,DSC_0837.JPG +4257,2395,1882,15,4,larves,DSC_0837.JPG +426,3463,1279,15,3,larves,DSC_0844.JPG +4260,2797,1957,15,3,larves,DSC_0837.JPG +4273,2236,976,15,4,larves,DSC_0837.JPG +4278,1969,1516,15,4,larves,DSC_0837.JPG +4281,2683,1888,15,4,larves,DSC_0837.JPG +4301,2164,853,15,4,larves,DSC_0837.JPG +4303,3262,1030,15,4,larves,DSC_0837.JPG +4304,955,1078,15,3,larves,DSC_0837.JPG +4305,2050,1153,17,4,larves,DSC_0837.JPG +4306,3235,1195,17,4,larves,DSC_0837.JPG +431,3859,2122,15,4,larves,DSC_0844.JPG +4329,1771,1276,15,4,larves,DSC_0837.JPG +4337,2215,1939,15,4,larves,DSC_0837.JPG +434,2950,832,17,4,larves,DSC_0844.JPG +435,3088,838,15,3,larves,DSC_0844.JPG +4351,2311,979,15,4,larves,DSC_0837.JPG +4353,3568,1228,15,3,larves,DSC_0837.JPG +4354,2014,1336,15,3,larves,DSC_0837.JPG +4356,1342,1501,15,3,larves,DSC_0837.JPG +4374,1492,775,17,3,larves,DSC_0837.JPG +4375,1984,910,15,4,larves,DSC_0837.JPG +438,1264,928,15,4,larves,DSC_0844.JPG +4385,2428,2062,15,4,larves,DSC_0837.JPG +439,2803,961,15,4,larves,DSC_0844.JPG +4394,1489,1390,17,3,larves,DSC_0837.JPG +4396,2359,1693,17,4,larves,DSC_0837.JPG +44,868,1339,15,4,larves,DSC_0844.JPG +440,3154,970,16,4,larves,DSC_0844.JPG +4401,2611,2002,17,3,larves,DSC_0837.JPG +4417,3007,1219,15,4,larves,DSC_0837.JPG +442,2173,1075,15,4,larves,DSC_0844.JPG +4424,1975,1630,17,3,larves,DSC_0837.JPG +4427,1936,1936,15,4,larves,DSC_0837.JPG +4428,2809,2095,15,4,larves,DSC_0837.JPG +443,943,1105,15,4,larves,DSC_0844.JPG +4442,916,1018,15,3,larves,DSC_0837.JPG +4449,2575,1828,15,4,larves,DSC_0837.JPG +4455,2812,2221,15,4,larves,DSC_0837.JPG +446,1219,1234,15,4,larves,DSC_0844.JPG +4470,1702,1273,15,3,larves,DSC_0837.JPG +4473,2395,1639,17,4,larves,DSC_0837.JPG +448,2968,1510,16,4,larves,DSC_0844.JPG +4486,1846,784,17,3,larves,DSC_0837.JPG +449,1039,1525,15,4,larves,DSC_0844.JPG +4494,3496,1342,15,3,larves,DSC_0837.JPG +4497,2080,1465,17,4,larves,DSC_0837.JPG +4504,2395,2002,15,3,larves,DSC_0837.JPG +4507,1795,2167,15,3,larves,DSC_0837.JPG +4518,3427,1111,15,3,larves,DSC_0837.JPG +4521,1837,1399,15,3,larves,DSC_0837.JPG +4522,1450,1447,16,3,larves,DSC_0837.JPG +4524,703,1720,16,3,larves,DSC_0837.JPG +453,4339,265,17,4,larves,DSC_0844.JPG +4542,2755,1768,15,3,larves,DSC_0837.JPG +4543,3052,1819,17,4,larves,DSC_0837.JPG +4544,2536,1885,15,3,larves,DSC_0837.JPG +4557,2116,1747,15,4,larves,DSC_0837.JPG +4558,2323,1882,15,4,larves,DSC_0837.JPG +4560,2251,1999,15,3,larves,DSC_0837.JPG +458,2215,886,15,4,larves,DSC_0844.JPG +4589,3019,2116,15,3,larves,DSC_0837.JPG +459,3403,904,17,3,larves,DSC_0844.JPG +46,1048,922,15,4,larves,DSC_0844.JPG +4606,2323,1633,16,4,larves,DSC_0837.JPG +461,4132,1102,15,4,larves,DSC_0844.JPG +462,3115,1150,15,4,larves,DSC_0844.JPG +463,799,1219,15,4,larves,DSC_0844.JPG +4632,2269,1042,15,4,larves,DSC_0837.JPG +4636,2728,1450,15,4,larves,DSC_0837.JPG +464,1360,1237,15,4,larves,DSC_0844.JPG +4661,2503,1825,15,4,larves,DSC_0837.JPG +4670,2617,802,15,4,larves,DSC_0837.JPG +4677,1306,1561,16,3,larves,DSC_0837.JPG +470,3754,2059,15,4,larves,DSC_0844.JPG +4702,2047,1750,17,4,larves,DSC_0837.JPG +4707,2503,1942,16,4,larves,DSC_0837.JPG +472,2464,439,16,4,larves,DSC_0844.JPG +4721,2419,916,17,4,larves,DSC_0837.JPG +4726,2173,1228,17,4,larves,DSC_0837.JPG +473,3376,583,15,4,larves,DSC_0844.JPG +4730,1936,1456,15,4,larves,DSC_0837.JPG +4731,2575,1702,15,4,larves,DSC_0837.JPG +475,2320,697,15,4,larves,DSC_0844.JPG +4750,2644,2170,15,4,larves,DSC_0837.JPG +476,1507,742,15,4,larves,DSC_0844.JPG +477,4102,916,15,4,larves,DSC_0844.JPG +478,2212,1012,15,4,larves,DSC_0844.JPG +4780,2017,1213,17,4,larves,DSC_0837.JPG +4781,1900,1630,15,4,larves,DSC_0837.JPG +4784,2287,2062,15,4,larves,DSC_0837.JPG +479,3679,1033,15,4,larves,DSC_0844.JPG +480,3988,1111,17,4,larves,DSC_0844.JPG +4801,2608,1888,15,4,larves,DSC_0837.JPG +481,2794,1327,15,4,larves,DSC_0844.JPG +4812,2212,1687,17,4,larves,DSC_0837.JPG +4813,3457,1756,15,3,larves,DSC_0837.JPG +4815,2974,2053,15,4,larves,DSC_0837.JPG +482,2653,1447,16,4,larves,DSC_0844.JPG +4830,3463,1171,15,3,larves,DSC_0837.JPG +4832,2089,1219,16,4,larves,DSC_0837.JPG +4833,1870,1453,15,4,larves,DSC_0837.JPG +485,2269,1498,15,4,larves,DSC_0844.JPG +4853,2722,1579,17,4,larves,DSC_0837.JPG +4856,2833,1639,17,4,larves,DSC_0837.JPG +486,3001,1576,15,3,larves,DSC_0844.JPG +4880,2863,1336,15,4,larves,DSC_0837.JPG +489,3421,1696,15,4,larves,DSC_0844.JPG +4893,2866,1102,15,3,larves,DSC_0837.JPG +4896,1804,1336,15,3,larves,DSC_0837.JPG +490,1072,1705,15,4,larves,DSC_0844.JPG +4933,2902,925,15,3,larves,DSC_0837.JPG +4945,2272,919,15,4,larves,DSC_0837.JPG +4948,2203,1162,17,4,larves,DSC_0837.JPG +4953,2431,1942,15,4,larves,DSC_0837.JPG +4964,2053,1276,15,4,larves,DSC_0837.JPG +4966,2158,1339,16,4,larves,DSC_0837.JPG +4968,1933,1570,17,4,larves,DSC_0837.JPG +497,2464,568,17,4,larves,DSC_0844.JPG +4971,2899,1774,16,3,larves,DSC_0837.JPG +4979,2686,799,15,3,larves,DSC_0837.JPG +4988,2434,1822,15,4,larves,DSC_0837.JPG +499,1681,805,15,4,larves,DSC_0844.JPG +50,2362,376,15,4,larves,DSC_0844.JPG +500,1900,811,15,4,larves,DSC_0844.JPG +5008,2251,1753,15,4,larves,DSC_0837.JPG +501,3016,835,15,4,larves,DSC_0844.JPG +5021,2500,1579,16,4,larves,DSC_0837.JPG +504,2416,1141,17,4,larves,DSC_0844.JPG +5047,2620,1522,17,3,larves,DSC_0837.JPG +5065,2158,1477,17,4,larves,DSC_0837.JPG +507,3598,1636,16,4,larves,DSC_0844.JPG +5074,2758,922,15,3,larves,DSC_0837.JPG +5076,2830,1162,15,3,larves,DSC_0837.JPG +5078,3202,1339,17,4,larves,DSC_0837.JPG +5079,2866,1567,17,4,larves,DSC_0837.JPG +508,4435,1756,17,3,larves,DSC_0844.JPG +5091,2824,1897,16,3,larves,DSC_0837.JPG +5115,2968,1642,15,4,larves,DSC_0837.JPG +512,3547,2059,17,4,larves,DSC_0844.JPG +5129,2395,1759,15,4,larves,DSC_0837.JPG +5142,2008,1459,15,4,larves,DSC_0837.JPG +5143,2077,1687,16,3,larves,DSC_0837.JPG +5144,778,1840,15,3,larves,DSC_0837.JPG +516,622,397,16,4,larves,DSC_0844.JPG +5163,2200,1039,15,4,larves,DSC_0837.JPG +518,3169,448,17,4,larves,DSC_0844.JPG +519,295,823,16,4,larves,DSC_0844.JPG +5191,2722,1828,15,4,larves,DSC_0837.JPG +5199,2245,1477,16,3,larves,DSC_0837.JPG +520,3820,913,15,4,larves,DSC_0844.JPG +5200,2074,1939,15,3,larves,DSC_0837.JPG +521,3817,1033,15,4,larves,DSC_0844.JPG +5217,1771,1507,15,4,larves,DSC_0837.JPG +522,1114,1168,16,4,larves,DSC_0844.JPG +523,3502,1216,15,4,larves,DSC_0844.JPG +524,3958,1399,16,4,larves,DSC_0844.JPG +526,2332,1624,17,3,larves,DSC_0844.JPG +5264,1804,1456,15,4,larves,DSC_0837.JPG +527,4012,1759,15,4,larves,DSC_0844.JPG +528,3481,1939,15,4,larves,DSC_0844.JPG +529,1846,1975,15,4,larves,DSC_0844.JPG +5292,2119,1546,17,3,larves,DSC_0837.JPG +5293,2008,1579,17,4,larves,DSC_0837.JPG +5295,2284,1690,15,4,larves,DSC_0837.JPG +53,1759,421,17,3,larves,DSC_0844.JPG +5308,2896,1168,15,4,larves,DSC_0837.JPG +5317,2125,1282,17,3,larves,DSC_0837.JPG +5318,2593,1453,17,4,larves,DSC_0837.JPG +5319,2938,1570,16,4,larves,DSC_0837.JPG +5331,2725,1951,17,4,larves,DSC_0837.JPG +534,4270,265,16,4,larves,DSC_0844.JPG +5353,2212,1291,16,3,larves,DSC_0837.JPG +536,2182,436,15,4,larves,DSC_0844.JPG +537,1651,745,15,4,larves,DSC_0844.JPG +5375,3241,1876,16,3,larves,DSC_0837.JPG +539,2062,1375,15,4,larves,DSC_0844.JPG +5395,3139,2323,16,3,larves,DSC_0837.JPG +54,871,472,17,3,larves,DSC_0844.JPG +540,2860,1570,15,4,larves,DSC_0844.JPG +5407,2233,1105,17,4,larves,DSC_0837.JPG +5408,3406,1465,17,4,larves,DSC_0837.JPG +5410,2971,1783,17,4,larves,DSC_0837.JPG +5431,3364,1546,16,4,larves,DSC_0837.JPG +544,1753,805,15,4,larves,DSC_0844.JPG +545,2665,829,16,4,larves,DSC_0844.JPG +5459,2353,1204,17,4,larves,DSC_0837.JPG +546,2911,898,15,4,larves,DSC_0844.JPG +5465,2083,1615,17,4,larves,DSC_0837.JPG +5477,3457,1525,16,4,larves,DSC_0837.JPG +548,3784,970,15,4,larves,DSC_0844.JPG +5482,2506,1423,16,4,larves,DSC_0837.JPG +5483,2689,1519,17,4,larves,DSC_0837.JPG +5485,2773,2290,17,4,larves,DSC_0837.JPG +5488,3127,1633,16,4,larves,DSC_0837.JPG +549,2800,1084,16,4,larves,DSC_0844.JPG +5499,3184,1711,17,4,larves,DSC_0837.JPG +55,1900,556,15,4,larves,DSC_0844.JPG +550,3748,1159,17,4,larves,DSC_0844.JPG +551,3826,1159,15,4,larves,DSC_0844.JPG +5516,2347,1039,15,4,larves,DSC_0837.JPG +5518,2404,1291,15,4,larves,DSC_0837.JPG +5523,2269,1381,16,3,larves,DSC_0837.JPG +553,1078,1345,15,4,larves,DSC_0844.JPG +5535,2197,1402,17,4,larves,DSC_0837.JPG +554,1075,1465,15,4,larves,DSC_0844.JPG +5548,3289,1324,17,4,larves,DSC_0837.JPG +555,2650,1567,15,4,larves,DSC_0844.JPG +556,4261,1576,15,4,larves,DSC_0844.JPG +5562,2899,1048,17,3,larves,DSC_0837.JPG +5564,3160,1546,16,4,larves,DSC_0837.JPG +5565,2878,1966,16,4,larves,DSC_0837.JPG +5567,3127,1786,16,4,larves,DSC_0837.JPG +557,3103,1633,15,4,larves,DSC_0844.JPG +5572,3358,1384,17,4,larves,DSC_0837.JPG +558,2542,1747,15,4,larves,DSC_0844.JPG +559,3727,1876,15,4,larves,DSC_0844.JPG +56,2917,643,16,4,larves,DSC_0844.JPG +5601,3313,964,16,3,larves,DSC_0837.JPG +5604,2464,1507,16,4,larves,DSC_0837.JPG +561,2155,2038,15,4,larves,DSC_0844.JPG +5615,3223,1801,17,4,larves,DSC_0837.JPG +5620,2305,1294,17,4,larves,DSC_0837.JPG +5621,3319,1471,17,4,larves,DSC_0837.JPG +5622,3334,1615,17,4,larves,DSC_0837.JPG +5637,2251,1225,16,3,larves,DSC_0837.JPG +5645,3253,1399,16,4,larves,DSC_0837.JPG +5649,2326,1453,17,4,larves,DSC_0837.JPG +565,2923,379,15,4,larves,DSC_0844.JPG +5652,2443,1198,17,4,larves,DSC_0837.JPG +5664,2464,1357,15,4,larves,DSC_0837.JPG +5665,2359,1369,17,4,larves,DSC_0837.JPG +5693,2494,1276,15,4,larves,DSC_0837.JPG +5694,2557,1342,16,4,larves,DSC_0837.JPG +57,2392,700,15,4,larves,DSC_0844.JPG +570,3610,904,15,4,larves,DSC_0844.JPG +572,3964,916,16,4,larves,DSC_0844.JPG +573,2419,1015,17,3,larves,DSC_0844.JPG +5734,3265,1549,17,4,larves,DSC_0837.JPG +575,838,1159,15,4,larves,DSC_0844.JPG +5758,3211,1477,17,4,larves,DSC_0837.JPG +577,4024,1519,15,4,larves,DSC_0844.JPG +5786,2284,1144,17,3,larves,DSC_0837.JPG +579,2092,1678,15,4,larves,DSC_0844.JPG +58,2950,709,16,4,larves,DSC_0844.JPG +580,4324,1822,15,4,larves,DSC_0844.JPG +582,3199,2056,15,4,larves,DSC_0844.JPG +588,2530,700,16,4,larves,DSC_0844.JPG +59,1228,739,15,4,larves,DSC_0844.JPG +590,2311,1075,15,4,larves,DSC_0844.JPG +592,3361,1093,16,4,larves,DSC_0844.JPG +593,3325,1156,16,3,larves,DSC_0844.JPG +594,2380,1198,15,4,larves,DSC_0844.JPG +595,4513,1285,15,4,larves,DSC_0844.JPG +596,4105,1402,15,4,larves,DSC_0844.JPG +597,4153,1759,15,4,larves,DSC_0844.JPG +598,2092,1798,17,4,larves,DSC_0844.JPG +6,2323,439,15,4,larves,DSC_0844.JPG +600,3937,1879,15,4,larves,DSC_0844.JPG +601,4078,1879,15,4,larves,DSC_0844.JPG +602,3409,2059,15,4,larves,DSC_0844.JPG +604,3334,904,15,4,larves,DSC_0844.JPG +605,3187,1027,15,4,larves,DSC_0844.JPG +606,1156,1111,15,4,larves,DSC_0844.JPG +608,2971,1273,17,4,larves,DSC_0844.JPG +609,3604,1399,15,4,larves,DSC_0844.JPG +61,3694,1819,15,4,larves,DSC_0844.JPG +610,2305,1441,15,4,larves,DSC_0844.JPG +611,1003,1462,15,3,larves,DSC_0844.JPG +613,2131,1498,15,4,larves,DSC_0844.JPG +614,1003,1582,15,4,larves,DSC_0844.JPG +616,1948,2032,17,4,larves,DSC_0844.JPG +617,1738,2038,15,4,larves,DSC_0844.JPG +621,1336,415,17,3,larves,DSC_0844.JPG +627,3892,913,16,4,larves,DSC_0844.JPG +628,1120,922,16,4,larves,DSC_0844.JPG +629,1543,931,15,4,larves,DSC_0844.JPG +630,1399,1057,15,4,larves,DSC_0844.JPG +631,2269,1381,16,4,larves,DSC_0844.JPG +632,898,1399,15,3,larves,DSC_0844.JPG +634,1852,1732,15,4,larves,DSC_0844.JPG +635,3976,1816,15,4,larves,DSC_0844.JPG +636,3796,1876,15,4,larves,DSC_0844.JPG +638,4321,1936,17,4,larves,DSC_0844.JPG +64,2533,436,17,4,larves,DSC_0844.JPG +642,2047,2095,15,4,larves,DSC_0844.JPG +643,2116,2095,15,4,larves,DSC_0844.JPG +648,1834,292,17,4,larves,DSC_0844.JPG +649,2608,307,16,4,larves,DSC_0844.JPG +65,2392,571,16,4,larves,DSC_0844.JPG +651,2500,502,15,4,larves,DSC_0844.JPG +652,3415,520,17,3,larves,DSC_0844.JPG +654,1369,742,15,4,larves,DSC_0844.JPG +656,3052,898,15,4,larves,DSC_0844.JPG +657,1015,982,15,4,larves,DSC_0844.JPG +658,4171,1042,15,4,larves,DSC_0844.JPG +66,3940,1759,15,4,larves,DSC_0844.JPG +660,2521,1078,16,4,larves,DSC_0844.JPG +661,868,1219,15,4,larves,DSC_0844.JPG +662,973,1285,15,4,larves,DSC_0844.JPG +663,3532,1396,15,4,larves,DSC_0844.JPG +665,4366,1516,15,4,larves,DSC_0844.JPG +666,2374,1564,15,4,larves,DSC_0844.JPG +667,2230,1681,15,4,larves,DSC_0844.JPG +668,4084,1759,15,4,larves,DSC_0844.JPG +669,4075,1999,15,4,larves,DSC_0844.JPG +67,2290,373,16,4,larves,DSC_0844.JPG +674,2044,430,15,4,larves,DSC_0844.JPG +675,3409,652,15,4,larves,DSC_0844.JPG +677,3967,787,16,3,larves,DSC_0844.JPG +679,3679,1156,15,4,larves,DSC_0844.JPG +682,3355,1453,15,4,larves,DSC_0844.JPG +683,2341,1501,17,4,larves,DSC_0844.JPG +684,3634,1576,15,4,larves,DSC_0844.JPG +686,3655,1879,15,4,larves,DSC_0844.JPG +687,2641,1930,15,4,larves,DSC_0844.JPG +689,2500,2044,15,4,larves,DSC_0844.JPG +690,3094,2113,17,4,larves,DSC_0844.JPG +698,2182,565,16,4,larves,DSC_0844.JPG +699,2743,574,16,4,larves,DSC_0844.JPG +7,898,1753,15,4,larves,DSC_0844.JPG +70,1921,1612,15,4,larves,DSC_0844.JPG +702,1051,796,15,4,larves,DSC_0844.JPG +703,2353,889,16,4,larves,DSC_0844.JPG +704,3400,1033,16,4,larves,DSC_0844.JPG +705,2584,1447,15,4,larves,DSC_0844.JPG +707,3706,1459,15,4,larves,DSC_0844.JPG +708,3490,1576,15,4,larves,DSC_0844.JPG +709,2197,1618,15,4,larves,DSC_0844.JPG +710,4297,1636,16,4,larves,DSC_0844.JPG +715,2950,2113,17,4,larves,DSC_0844.JPG +720,2404,172,17,4,larves,DSC_0844.JPG +723,1693,289,17,4,larves,DSC_0844.JPG +725,2395,439,15,4,larves,DSC_0844.JPG +726,3133,514,17,4,larves,DSC_0844.JPG +73,3898,787,16,4,larves,DSC_0844.JPG +730,3265,778,16,4,larves,DSC_0844.JPG +731,2248,820,17,4,larves,DSC_0844.JPG +732,3679,907,16,3,larves,DSC_0844.JPG +734,1048,1048,15,4,larves,DSC_0844.JPG +735,3184,1153,16,4,larves,DSC_0844.JPG +736,4102,1162,15,4,larves,DSC_0844.JPG +737,4306,1162,15,4,larves,DSC_0844.JPG +738,1534,1180,15,4,larves,DSC_0844.JPG +739,3151,1213,16,4,larves,DSC_0844.JPG +74,4030,1042,15,4,larves,DSC_0844.JPG +740,763,1276,15,3,larves,DSC_0844.JPG +741,1957,1432,15,3,larves,DSC_0844.JPG +742,3922,1459,15,4,larves,DSC_0844.JPG +749,685,1867,17,3,larves,DSC_0844.JPG +757,1498,1240,15,4,larves,DSC_0844.JPG +758,3394,1276,15,4,larves,DSC_0844.JPG +759,2164,1561,17,4,larves,DSC_0844.JPG +760,3385,1639,17,4,larves,DSC_0844.JPG +761,1918,1732,15,4,larves,DSC_0844.JPG +762,2194,1861,15,4,larves,DSC_0844.JPG +763,3901,1942,16,4,larves,DSC_0844.JPG +764,2677,1990,16,3,larves,DSC_0844.JPG +765,2188,2101,15,4,larves,DSC_0844.JPG +766,3652,2119,16,4,larves,DSC_0844.JPG +767,2080,2155,15,3,larves,DSC_0844.JPG +77,586,460,16,4,larves,DSC_0844.JPG +776,3445,715,16,4,larves,DSC_0844.JPG +777,2041,817,15,4,larves,DSC_0844.JPG +779,2770,895,16,3,larves,DSC_0844.JPG +782,3886,1399,15,4,larves,DSC_0844.JPG +784,2443,1561,17,4,larves,DSC_0844.JPG +785,2686,1630,17,4,larves,DSC_0844.JPG +786,4438,1639,15,4,larves,DSC_0844.JPG +787,1105,1648,15,4,larves,DSC_0844.JPG +789,4006,1879,15,4,larves,DSC_0844.JPG +790,3583,1999,15,4,larves,DSC_0844.JPG +795,2425,502,17,4,larves,DSC_0844.JPG +797,2845,769,17,4,larves,DSC_0844.JPG +798,1405,805,15,4,larves,DSC_0844.JPG +7993,16,1522,17,3,larves,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8,3094,1996,15,4,larves,DSC_0844.JPG +801,904,1162,15,4,larves,DSC_0844.JPG +805,4051,1699,15,4,larves,DSC_0844.JPG +806,3592,1756,16,4,larves,DSC_0844.JPG +807,2710,2050,16,4,larves,DSC_0844.JPG +81,2644,373,17,4,larves,DSC_0844.JPG +816,2008,364,15,3,larves,DSC_0844.JPG +819,1654,619,16,4,larves,DSC_0844.JPG +82,2569,502,16,4,larves,DSC_0844.JPG +821,3796,721,15,3,larves,DSC_0844.JPG +822,3055,772,15,4,larves,DSC_0844.JPG +823,3082,967,17,4,larves,DSC_0844.JPG +826,3889,1279,15,4,larves,DSC_0844.JPG +827,1525,1297,15,3,larves,DSC_0844.JPG +830,862,1573,15,4,larves,DSC_0844.JPG +833,2332,1864,15,4,larves,DSC_0844.JPG +841,3205,517,15,4,larves,DSC_0844.JPG +842,2812,574,16,4,larves,DSC_0844.JPG +843,2287,634,16,4,larves,DSC_0844.JPG +844,406,643,17,4,larves,DSC_0844.JPG +845,3091,712,15,4,larves,DSC_0844.JPG +847,1720,745,15,4,larves,DSC_0844.JPG +848,2281,1012,16,4,larves,DSC_0844.JPG +849,3040,1270,15,3,larves,DSC_0844.JPG +850,4030,1282,16,4,larves,DSC_0844.JPG +851,1114,1405,17,3,larves,DSC_0844.JPG +852,4327,1696,17,4,larves,DSC_0844.JPG +853,967,1756,15,4,larves,DSC_0844.JPG +856,3448,1876,17,4,larves,DSC_0844.JPG +857,3589,1879,17,4,larves,DSC_0844.JPG +858,3832,1939,15,4,larves,DSC_0844.JPG +859,4282,1996,15,4,larves,DSC_0844.JPG +86,2803,832,17,4,larves,DSC_0844.JPG +860,4354,1999,16,4,larves,DSC_0844.JPG +866,4402,538,17,3,larves,DSC_0844.JPG +867,2113,565,15,4,larves,DSC_0844.JPG +869,2707,640,16,4,larves,DSC_0844.JPG +87,1297,865,16,4,larves,DSC_0844.JPG +870,3130,646,17,4,larves,DSC_0844.JPG +872,2041,688,15,4,larves,DSC_0844.JPG +875,2692,1141,15,4,larves,DSC_0844.JPG +876,2170,1198,17,4,larves,DSC_0844.JPG +879,2551,1384,15,4,larves,DSC_0844.JPG +880,2932,1450,16,4,larves,DSC_0844.JPG +881,760,1510,15,3,larves,DSC_0844.JPG +884,2299,1681,17,4,larves,DSC_0844.JPG +887,3550,1939,16,4,larves,DSC_0844.JPG +89,4366,1636,15,4,larves,DSC_0844.JPG +890,1978,2215,15,4,larves,DSC_0844.JPG +894,2503,373,15,4,larves,DSC_0844.JPG +898,1936,493,15,4,larves,DSC_0844.JPG +899,2854,511,15,4,larves,DSC_0844.JPG +900,3445,586,15,4,larves,DSC_0844.JPG +901,730,595,17,3,larves,DSC_0844.JPG +902,3691,655,15,3,larves,DSC_0844.JPG +904,3442,841,15,4,larves,DSC_0844.JPG +905,943,982,15,3,larves,DSC_0844.JPG +907,2485,1141,15,4,larves,DSC_0844.JPG +908,2764,1144,17,4,larves,DSC_0844.JPG +909,835,1279,15,3,larves,DSC_0844.JPG +910,2617,1507,16,4,larves,DSC_0844.JPG +911,3811,1519,17,4,larves,DSC_0844.JPG +912,4441,1519,15,4,larves,DSC_0844.JPG +914,4405,1579,15,4,larves,DSC_0844.JPG +9148,2140,805,15,3,larves,DSC_0848.JPG +916,2926,1690,17,3,larves,DSC_0844.JPG +917,1912,1852,17,4,larves,DSC_0844.JPG +918,964,1882,15,3,larves,DSC_0844.JPG +9183,1858,1288,15,3,larves,DSC_0848.JPG +919,2086,1921,15,4,larves,DSC_0844.JPG +9204,2941,1237,15,3,larves,DSC_0848.JPG +922,1087,478,17,3,larves,DSC_0844.JPG +923,1513,484,17,3,larves,DSC_0844.JPG +924,2005,625,16,4,larves,DSC_0844.JPG +926,2632,766,15,4,larves,DSC_0844.JPG +927,2596,829,16,4,larves,DSC_0844.JPG +928,3373,844,17,4,larves,DSC_0844.JPG +929,3577,967,17,4,larves,DSC_0844.JPG +930,3715,970,15,4,larves,DSC_0844.JPG +931,3889,1036,15,4,larves,DSC_0844.JPG +932,766,1159,15,4,larves,DSC_0844.JPG +933,3676,1279,15,4,larves,DSC_0844.JPG +934,2971,1390,15,4,larves,DSC_0844.JPG +937,2443,1441,15,4,larves,DSC_0844.JPG +938,3979,1699,15,4,larves,DSC_0844.JPG +939,3412,1939,15,4,larves,DSC_0844.JPG +940,2401,1984,15,4,larves,DSC_0844.JPG +941,4144,1999,15,4,larves,DSC_0844.JPG +943,1765,160,17,4,larves,DSC_0844.JPG +944,2893,316,17,4,larves,DSC_0844.JPG +945,2218,370,16,3,larves,DSC_0844.JPG +948,2146,757,15,4,larves,DSC_0844.JPG +95,2782,508,15,4,larves,DSC_0844.JPG +950,1645,871,15,4,larves,DSC_0844.JPG +951,2068,1126,16,4,larves,DSC_0844.JPG +952,4036,1165,15,4,larves,DSC_0844.JPG +953,1396,1177,15,4,larves,DSC_0844.JPG +954,2728,1204,16,4,larves,DSC_0844.JPG +955,4201,1222,15,4,larves,DSC_0844.JPG +958,2374,1441,15,4,larves,DSC_0844.JPG +960,1138,1465,17,4,larves,DSC_0844.JPG +961,4228,1516,15,4,larves,DSC_0844.JPG +965,1912,1975,16,4,larves,DSC_0844.JPG +967,3058,2053,16,4,larves,DSC_0844.JPG +9683,2797,1948,17,3,larves,DSC_0848.JPG +969,2326,2101,16,4,larves,DSC_0844.JPG +974,1933,748,15,4,larves,DSC_0844.JPG +976,1825,808,15,4,larves,DSC_0844.JPG +977,2110,820,15,4,larves,DSC_0844.JPG +978,3259,907,15,4,larves,DSC_0844.JPG +980,3925,973,15,4,larves,DSC_0844.JPG +981,2242,1075,15,4,larves,DSC_0844.JPG +982,4066,1102,15,4,larves,DSC_0844.JPG +984,2377,1321,16,4,larves,DSC_0844.JPG +985,3532,1516,15,4,larves,DSC_0844.JPG +987,793,1573,15,3,larves,DSC_0844.JPG +99,2251,436,15,4,larves,DSC_0844.JPG +990,3565,1576,15,4,larves,DSC_0844.JPG +991,2056,1738,16,4,larves,DSC_0844.JPG +992,2263,1741,15,4,larves,DSC_0844.JPG +993,2821,1750,16,3,larves,DSC_0844.JPG +994,3028,1873,15,3,larves,DSC_0844.JPG +995,3619,2056,15,4,larves,DSC_0844.JPG +996,4036,2059,17,4,larves,DSC_0844.JPG +10296,4390,337,17,4,nectar,DSC_0848.JPG +10297,3937,394,16,4,nectar,DSC_0848.JPG +10327,4570,400,15,4,nectar,DSC_0848.JPG +10476,5053,895,17,4,nectar,DSC_0848.JPG +1060,130,166,17,5,nectar,DSC_0844.JPG +10663,4387,460,17,4,nectar,DSC_0848.JPG +12323,589,1300,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12324,1537,2008,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12325,2689,2458,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12327,661,1303,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12328,4006,2467,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12329,655,682,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12330,481,988,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12331,5218,1843,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12332,2236,2395,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12333,5506,508,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12334,625,1480,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12336,2857,2524,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12337,3382,2461,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12338,556,1117,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12339,508,799,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12340,5317,2137,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12341,619,868,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12342,5407,1891,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12343,1816,2020,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12344,5137,2200,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12345,3691,2407,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12346,724,559,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12347,2620,2458,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12348,544,742,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12349,616,745,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12350,5539,1117,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12351,5575,1180,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12352,3727,2347,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12353,1744,2488,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12354,904,2209,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12355,5353,394,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12356,793,562,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12357,592,1054,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12358,4051,2293,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12359,4918,2329,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12360,5575,502,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12361,727,685,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12362,2824,2464,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12363,2794,2284,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12364,1357,2530,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12365,5608,1237,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12366,5434,2314,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12367,1429,2533,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12368,5647,1297,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12369,619,1834,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12370,5284,2194,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12371,2131,2449,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12372,688,622,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12373,2062,2206,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12374,1810,2608,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12375,796,328,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12376,832,385,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12377,514,925,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12378,766,994,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12379,520,1051,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12380,736,1429,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12381,5107,2140,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12382,5281,391,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12383,616,496,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12384,439,670,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12385,3763,2290,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12386,5026,2389,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12387,5533,1243,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12388,5029,2266,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12389,1225,2284,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12390,5533,685,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12391,5419,1546,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12392,2029,2029,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12393,2203,2212,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12394,5098,2263,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12395,1147,2527,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12396,484,1111,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12397,3319,2230,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12398,2377,2275,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12399,901,2332,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12400,625,991,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12401,5611,1114,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12402,4192,2293,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12403,865,325,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12404,1078,334,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12405,1666,2602,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12407,4777,2689,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12408,5212,2197,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12409,1474,2242,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12410,5059,2449,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12411,475,610,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12412,631,1240,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12413,802,1672,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12414,5395,2257,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12415,1714,2311,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12416,2269,2455,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12417,3139,2518,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12418,3379,2575,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12419,2827,2656,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12420,5032,2143,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12421,5356,2197,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12422,796,2263,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12423,2587,2275,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12424,1189,2347,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12425,3448,2575,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12427,775,1372,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12428,5218,1960,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12429,1153,2161,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12430,4957,2263,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12431,868,1795,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12432,2134,2209,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12433,1288,2530,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12434,5317,454,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12435,2935,2047,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12436,868,2266,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12437,3001,2287,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12438,2167,2512,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12439,2476,2575,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12441,5503,1054,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12442,5461,1369,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12443,430,1645,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12444,1711,2194,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12445,2371,2395,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12446,3517,2575,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12447,580,556,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12448,580,682,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12449,5572,1303,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12450,724,1897,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12451,1048,1981,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12452,3145,2170,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12453,2926,2521,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12454,3862,2578,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12455,652,559,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12456,655,2008,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12457,5143,2080,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12458,2380,2155,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12459,2896,2224,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12460,1954,2380,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12461,1396,2473,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12462,1105,2581,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12463,616,379,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12464,5614,1477,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12465,1333,2353,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12466,5569,742,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12467,5578,1051,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12468,2026,2143,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12469,940,2152,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12470,3769,2173,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12471,4432,2344,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12472,652,439,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12473,586,928,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12474,3727,2233,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12475,4159,2233,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12476,2998,2404,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12477,3862,2464,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12478,1465,2476,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12479,1672,2485,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12480,2581,2515,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12481,3208,2518,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12482,1075,2521,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12483,2143,2572,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12484,5455,688,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12485,664,1054,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12486,400,1231,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12487,1675,1897,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12488,904,1972,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12489,2755,2461,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12490,1417,2653,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12492,472,736,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12493,5560,865,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12494,598,1180,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12495,4912,2452,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12496,3931,2695,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12498,478,1234,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12499,1819,1903,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12500,1264,2227,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12501,3142,2287,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12503,3520,2344,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12504,1924,2443,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12505,2059,2449,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12506,2722,2521,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12507,721,322,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12508,1501,1714,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12509,5371,1837,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12510,5554,1891,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12511,1228,2050,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12512,1084,2275,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12513,3793,2464,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12514,5308,1492,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12515,5437,2074,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12516,5248,2257,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12517,2761,2338,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12518,5620,988,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12519,847,1375,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12520,619,1720,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12521,2029,1792,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12523,2551,2218,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12525,2512,2395,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12526,3136,2638,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12529,868,565,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12530,472,1357,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12531,5461,1489,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12532,5584,1537,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12533,766,1609,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12534,2446,2155,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12535,1888,2377,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12536,3898,2410,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12537,3517,2461,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12538,2962,2464,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12540,5401,2014,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12541,4123,2173,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12542,4333,2173,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12543,1438,2299,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12544,1345,2650,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12546,634,1117,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12547,5608,1360,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12548,439,1531,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12549,508,1654,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12550,835,1735,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12552,2275,2095,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12553,3073,2170,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12554,4435,2227,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12555,2725,2281,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12556,3037,2347,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12557,2236,2515,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12558,760,388,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12559,5494,745,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12560,760,748,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12561,5530,802,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12562,520,1174,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12563,5644,1177,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12564,4873,1627,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12565,976,1861,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12566,2134,1972,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12567,760,2074,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12568,658,2251,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12569,1153,2284,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12570,1960,2503,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12571,3691,2521,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12572,1777,2548,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12573,3034,2578,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12574,4114,2635,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12575,937,328,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12576,544,493,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12577,544,865,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12578,5383,1489,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12579,505,1765,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12580,3988,1822,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12581,5524,1831,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12582,940,2032,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12583,2167,2269,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12584,2092,2389,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12585,3244,2461,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12586,3313,2461,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12587,4219,2461,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12588,901,385,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12589,5464,565,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12591,5461,1249,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12592,625,1360,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12593,2029,1912,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12594,2101,2032,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12595,4117,2407,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12596,2548,2455,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12597,1636,2542,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12598,3205,2632,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12600,1045,391,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12601,577,436,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12602,580,805,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12603,1540,2128,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12604,2170,2152,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12605,2344,2215,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12607,1297,2293,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12608,2830,2341,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12609,2443,2395,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12610,1294,2413,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12611,2893,2464,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12612,2287,2575,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12613,5335,1780,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12614,2875,1807,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12615,2413,2215,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12616,3556,2287,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12617,1120,2341,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12618,3175,2458,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12619,2545,2578,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12620,727,445,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12621,835,505,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12622,475,862,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12623,1012,1807,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12624,5293,1954,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12625,4675,2164,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12626,3217,2170,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12627,2446,2275,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12628,3487,2290,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12629,4120,2290,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12630,1849,2434,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12631,3655,2464,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12632,4459,2512,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12633,1318,2590,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12634,4255,2632,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12635,2329,2650,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12636,5650,1048,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12638,1750,2134,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12639,1012,2275,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12640,1783,2314,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12641,2062,2329,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12642,937,2392,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12643,5203,2446,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12644,2308,2515,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12646,625,1600,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12647,1570,1831,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12648,691,1837,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12649,1606,2011,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12650,3661,2230,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12651,763,2323,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12652,5134,2326,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12654,2791,2521,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12655,4219,2572,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12656,1882,2614,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12657,2188,2644,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12658,5428,391,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12660,907,1615,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12661,4237,1882,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12662,1921,1966,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12663,868,2026,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12665,1192,2224,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12666,3418,2290,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12667,2407,2332,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12668,4774,2335,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12669,3655,2347,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12670,3865,2347,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12671,3655,2578,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12672,5470,451,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12673,5428,508,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12674,547,616,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12675,1294,1816,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12676,1153,1927,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12677,1432,1942,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12678,1084,2041,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12679,5284,2074,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12680,1993,2083,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12681,2590,2158,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12682,2623,2218,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12683,2476,2455,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12684,4702,2692,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12685,5392,451,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12686,472,1474,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12687,547,1477,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12688,868,1678,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12689,907,1741,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12690,5260,1783,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12691,4921,2212,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12692,2935,2281,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12693,2866,2284,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12694,1456,2593,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12696,3481,2635,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12697,3622,2635,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12698,1207,2641,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12699,5389,574,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12700,5680,1240,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12701,1084,1804,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12702,1504,1945,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12703,2692,2098,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12704,1645,2308,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12705,3103,2344,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12706,4255,2518,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12707,4147,2578,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12708,3790,2695,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12709,760,505,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12711,5419,748,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12713,586,1420,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12714,550,1942,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12715,1189,1990,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12716,3736,1996,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12717,4576,2107,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12718,5170,2260,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12719,3625,2287,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12720,4951,2389,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12721,2722,2404,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12722,4699,2455,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12723,1813,2491,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12724,4324,2521,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12725,3067,2635,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12727,5539,562,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12728,5464,1117,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12729,5437,1954,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12730,3118,1990,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12731,3904,2287,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12732,4042,2521,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12733,1498,2536,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12734,1708,2545,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12735,3310,2575,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12736,4219,2689,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12738,5599,802,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12739,5497,1429,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12740,5563,1768,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12741,5179,1903,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12742,1783,2197,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12743,4996,2206,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12744,4708,2218,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12745,3481,2404,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12746,1000,2515,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12748,1486,2653,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12749,685,382,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12750,865,448,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12751,733,1549,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12752,442,1876,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12753,2380,2038,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12754,1612,2131,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12755,1681,2134,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12756,4606,2167,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12757,1300,2170,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12758,4192,2176,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12759,973,2332,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12760,2551,2338,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12761,3796,2347,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12762,2026,2386,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12763,3211,2401,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12764,3067,2404,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12765,4078,2464,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12766,616,619,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12767,430,799,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12768,511,1417,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12769,5584,1951,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12770,4924,2092,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12771,4306,2113,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12772,5395,2134,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12773,3355,2173,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12774,3835,2287,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12775,3970,2404,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12776,1435,2416,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12777,3619,2518,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12778,4426,2569,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12779,2656,2629,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12780,2617,2686,16,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12781,5569,619,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12782,5590,928,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12783,5548,988,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12784,1120,1747,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12785,5110,1903,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12786,976,1981,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12787,5509,2074,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12788,2485,2098,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12789,3697,2170,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12790,3589,2230,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12791,5062,2329,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12792,4705,2338,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12793,2584,2398,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12794,1216,2530,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12795,3967,2638,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12796,3514,2692,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12798,5605,1705,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12799,1360,1825,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12800,2242,1912,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12801,1996,1969,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12802,4651,1990,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12803,2659,2038,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12804,3289,2053,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12805,3769,2056,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12806,904,2089,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12807,4882,2272,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12808,2692,2338,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12809,3937,2347,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12810,1816,2374,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12811,799,2386,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12812,2656,2401,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12813,3280,2401,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12814,2794,2404,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12815,3484,2515,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12816,2800,2587,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12817,1387,2593,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12818,2581,2629,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12820,658,2131,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12821,4738,2278,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12822,4534,2629,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12824,583,1660,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12825,658,1663,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12826,5479,1891,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12827,583,2002,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12828,5326,2014,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12829,2167,2035,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12830,4549,2047,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12831,4855,2098,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12832,1012,2155,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12833,2518,2158,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12834,4639,2224,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12835,2620,2341,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12836,1888,2497,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12838,2443,2515,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12839,4636,2575,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12840,3895,2635,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12843,5410,868,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12844,5542,1594,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12845,1891,2026,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12846,3286,2173,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12847,2971,2227,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12848,3178,2227,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12849,4228,2230,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12850,4078,2581,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12851,1555,2656,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12852,586,1537,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12853,1888,1906,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12854,5365,1954,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12855,4885,2155,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12856,1084,2158,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12857,4813,2158,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12858,3799,2227,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12859,3868,2233,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12860,1678,2248,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12861,1819,2254,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12862,1957,2260,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12863,3757,2407,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12864,1504,2419,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12865,3937,2464,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12866,4702,2575,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12867,2719,2587,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12868,1528,2599,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12869,3757,2638,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12870,4075,2692,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12873,5497,1183,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12874,556,1240,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12875,772,1489,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12876,5380,1609,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12877,5452,1834,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12878,1960,2026,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12879,4963,2029,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12880,1300,2050,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12881,973,2455,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12882,3589,2575,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12883,3343,2632,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12884,904,1855,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12885,5332,1894,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12886,5110,2023,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12887,1363,2056,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12888,4441,2110,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12889,727,2131,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12890,868,2146,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12891,3835,2170,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12892,4534,2281,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12893,5281,2311,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12894,1711,2428,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12895,4771,2452,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12896,1537,2479,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12897,4324,2629,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12898,3412,2632,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12900,5455,805,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12901,5458,1603,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12902,5377,1723,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12903,763,1729,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12904,580,1771,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12905,1714,1840,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12906,652,1891,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12907,478,1939,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12908,5143,1963,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12909,5545,2011,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12910,3043,2110,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12911,583,2125,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12912,1228,2167,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12913,5470,2257,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12914,4402,2290,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12915,3178,2344,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12916,4948,2515,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12917,4987,2575,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12918,700,1240,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12919,400,1345,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12920,694,1723,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12921,1855,2083,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12922,2062,2086,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12923,976,2092,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12924,4372,2113,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12925,4156,2119,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12926,4957,2152,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12927,3385,2233,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12928,3073,2287,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12929,4084,2350,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12930,4600,2395,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12931,1993,2443,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12932,2098,2512,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12933,3826,2638,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12934,3724,2689,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12935,5632,865,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12936,5500,1546,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12937,832,1966,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12938,727,2014,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12939,5173,2140,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12940,4540,2170,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12941,3346,2401,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12942,3418,2404,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12943,2203,2452,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12944,4876,2629,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12945,3028,2689,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12947,5476,2011,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12948,793,2020,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12949,2731,2041,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12951,1642,2071,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12952,3256,2113,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12953,1471,2122,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12954,3493,2170,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12955,3247,2230,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12956,4225,2350,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12957,3106,2461,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12958,5020,2509,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12959,3346,2518,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12960,3553,2521,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12961,3826,2521,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12962,4498,2569,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12963,4003,2578,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12964,1177,2584,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12965,1597,2599,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12966,4459,2629,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12967,4495,2683,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12970,736,1057,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12971,661,1423,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12972,5575,1426,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12973,4024,1765,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12974,1468,1888,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12975,1537,1891,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12976,1468,2005,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12977,1747,2017,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12978,2968,2107,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12980,2827,2224,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12981,5320,2257,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12982,2200,2332,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12983,3034,2461,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12984,4771,2572,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12985,3169,2578,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12986,4393,2629,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12987,5473,994,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12989,5539,1369,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12990,697,1489,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12991,727,1666,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12992,1465,1768,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12993,940,1801,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12994,1639,1837,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12995,3946,1876,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12996,517,2002,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12997,4195,2059,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12998,1045,2098,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12999,2098,2146,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13000,2689,2221,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13001,1609,2248,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13002,868,2392,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13003,2407,2455,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13004,2512,2518,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13005,3970,2521,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13006,1246,2587,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13007,1951,2617,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13008,5500,625,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13010,5509,931,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13011,442,1171,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13012,5542,1486,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13013,655,1780,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13014,5113,1792,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13015,1255,1876,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13016,1609,1897,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13017,5509,1951,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13018,2206,1975,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13019,5074,2086,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13020,3427,2173,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13022,3352,2290,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13023,4465,2290,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13024,3589,2344,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13025,5392,2371,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13026,4183,2407,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13027,3898,2524,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13028,4357,2689,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13030,508,550,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13031,661,1546,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13032,1261,2110,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13033,5467,2137,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13034,799,2143,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13035,2275,2209,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13036,727,2260,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13037,3976,2290,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13038,5095,2389,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13039,5161,2506,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13040,4393,2512,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13041,2074,2572,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13042,3685,2638,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13045,547,1360,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13046,5572,1654,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13047,1009,1921,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13048,1120,1987,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13049,2971,1990,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13050,1402,2119,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13051,2797,2158,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13052,625,2185,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13053,2515,2278,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13054,4633,2338,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13055,1078,2401,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13056,2875,2590,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13057,2998,2632,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13058,1276,2647,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13059,4633,2692,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13060,505,673,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13062,5179,2017,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13063,4234,2113,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13064,520,2125,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13065,1369,2176,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13066,2026,2263,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13067,4987,2326,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13068,2965,2344,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13069,2305,2395,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13070,2863,2404,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13071,1777,2431,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13072,4630,2455,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13073,2374,2518,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13074,4738,2518,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13075,1033,2578,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13076,772,1246,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13077,469,1705,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13078,760,1843,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13079,3004,2047,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13080,4123,2053,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13081,3100,2578,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13082,3271,2635,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13084,1012,448,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13085,808,1312,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13086,694,1606,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13087,1744,1900,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13088,1399,1999,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13089,4615,2044,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13090,4510,2110,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13091,3004,2170,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13093,1993,2206,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13094,1366,2296,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13095,1474,2356,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13096,2164,2392,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13097,3832,2404,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13098,4561,2455,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13099,4150,2464,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13100,2032,2512,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13101,1993,2569,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13102,4600,2632,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13103,4288,2683,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13108,439,1408,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13109,1396,1648,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13110,2134,2092,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13111,4153,2353,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13112,4813,2392,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13113,1228,2407,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13114,5425,2425,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13115,4492,2455,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13116,1606,2482,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13117,4597,2515,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13118,4531,2518,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13119,4183,2521,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13120,3553,2638,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13121,4147,2692,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13122,4843,2692,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13123,3655,2695,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13124,688,745,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13125,553,988,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13126,736,1312,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13127,1087,1690,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13128,1192,1753,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13129,1504,1828,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13130,5599,1828,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13131,1783,1843,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13132,1117,1864,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13133,580,1885,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13134,1783,1960,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13135,3667,1996,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13136,1504,2065,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13137,2554,2101,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13138,2239,2167,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13139,1504,2299,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13140,2134,2332,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13141,1747,2371,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13142,5278,2440,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13143,832,2449,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13144,1330,2476,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13145,2659,2521,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13146,1915,2557,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13147,4429,2686,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13148,3586,2695,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13149,937,445,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13150,976,505,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13152,1849,1963,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13153,1675,2014,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13154,5032,2026,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13155,2521,2038,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13156,4504,2230,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13157,4369,2233,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13158,4810,2278,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13159,1990,2323,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13160,3382,2347,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13161,5239,2497,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13162,2686,2683,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13163,4090,1996,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13164,4054,2053,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13165,1786,2080,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13166,4405,2173,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13167,1438,2179,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13168,5062,2206,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13169,4777,2218,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13170,1675,2365,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13171,4669,2392,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13172,3448,2461,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13173,3586,2461,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13174,1258,2470,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13175,4666,2518,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13176,4285,2575,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13178,3859,2698,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13179,5431,1051,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13180,517,1300,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13181,5494,1657,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13182,5458,1720,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13183,2413,2098,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13184,3661,2113,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13185,3037,2233,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13186,4261,2290,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13187,1921,2320,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13188,1009,2398,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13189,3622,2401,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13190,1183,2470,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13191,2215,2578,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13192,4039,2638,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13193,2542,2686,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13194,739,1183,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13196,469,1591,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13197,1327,1879,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13198,4198,1939,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13199,1366,1942,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13200,1924,2083,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13201,4744,2161,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13202,1924,2197,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13203,3526,2230,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13205,4879,2392,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13206,2428,2617,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13207,2899,2653,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13208,5383,685,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13209,547,1597,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13210,544,1825,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13211,5257,1900,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13212,1576,1954,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13213,2065,1969,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13214,2281,1978,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13215,2311,2035,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13216,5248,2140,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13217,1852,2203,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13219,5056,2566,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13220,2506,2632,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13222,5410,1780,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13223,5185,1789,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13224,1150,1810,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13225,2341,1858,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13226,4720,1981,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13227,3112,2113,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13228,1819,2146,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13229,2305,2152,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13230,2932,2170,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13231,1885,2257,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13232,940,2272,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13233,3691,2290,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13234,4849,2332,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13235,3064,2521,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13237,5599,679,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13238,544,1711,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13239,1333,2119,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13240,4084,2230,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13241,1570,2422,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13242,994,2626,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13243,4741,2635,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13244,1135,2641,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13246,760,622,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13248,1534,1654,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13249,1258,1996,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13250,2239,2035,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13251,4756,2035,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13252,4999,2095,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13253,4267,2173,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13254,757,2197,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13255,3109,2230,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13256,1747,2254,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13258,2482,2338,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13259,4360,2347,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13260,931,2512,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13261,4666,2635,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13263,1006,328,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13264,5245,448,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13265,688,871,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13266,5383,1372,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13267,808,1432,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13268,2098,1912,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13269,4294,2233,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13270,1543,2248,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13271,1042,2338,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13272,2902,2347,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13273,4393,2401,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13274,4045,2410,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13275,2992,2527,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13276,5119,2677,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13279,508,1882,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13280,4861,1975,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13281,3322,2113,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13282,5203,2323,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13283,4360,2467,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13284,5125,2560,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13285,4564,2572,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13286,4945,2629,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13288,790,448,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13290,5146,1846,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13291,3742,1882,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13292,5254,2017,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13293,4681,2044,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13294,1438,2062,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13295,5434,2197,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13296,4738,2395,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13297,3796,2578,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13299,4003,2689,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13300,580,319,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13301,5290,1843,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13302,619,2068,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13303,1573,2068,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13304,3733,2113,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13305,1888,2143,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13306,2479,2212,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13307,4846,2215,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13308,2308,2275,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13309,3283,2287,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13310,4564,2344,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13311,4012,2347,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13312,5353,2434,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13313,5128,2452,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13314,2353,2581,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13315,5230,2611,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13316,4813,2629,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13318,973,388,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13319,5677,1108,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13320,5491,1306,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13321,5428,1432,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13322,3985,1702,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13323,1261,1756,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13324,3880,1756,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13325,1156,2044,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13326,3217,2056,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13327,2761,2221,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13328,964,2572,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13329,4357,2572,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13330,4183,2635,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13332,5638,619,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13333,5422,625,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13334,808,1552,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13335,5608,1591,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13336,5149,1741,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13337,1852,1843,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13338,3043,1993,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13339,1015,2035,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13340,2449,2038,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13341,1117,2107,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13342,5242,2383,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13343,1153,2401,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13344,3931,2581,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13345,2260,2647,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13346,946,1678,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13347,4471,2170,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13348,973,2215,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13349,835,2326,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13351,2341,2458,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13352,4426,2461,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13353,5089,2626,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13354,3952,1762,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13355,3916,1816,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13356,1399,1882,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13357,2200,2092,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13358,4570,2224,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13359,2269,2335,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13360,2338,2335,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13361,3724,2461,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13362,826,2554,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13365,5485,868,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13366,700,1117,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13367,5353,1549,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13368,5416,1666,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13369,5530,1711,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13370,1642,1954,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13371,5074,1966,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13372,1120,2221,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13373,5503,2305,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13374,3763,2521,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13375,4909,2566,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13376,2050,2635,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13377,4567,2686,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13380,5686,982,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13381,700,1363,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13382,829,1849,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13383,1714,1957,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13384,688,2068,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13386,2344,2092,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13387,4783,2098,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13388,3808,2110,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13389,3181,2113,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13390,835,2203,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13391,3211,2284,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13392,1849,2314,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13393,1261,2350,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13395,652,325,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13397,979,1747,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13398,1996,1846,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13399,799,1906,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13400,940,1915,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13401,1084,1924,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13402,3454,2233,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13403,5542,2254,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13404,4294,2347,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13405,1405,2359,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13406,4114,2518,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13407,442,1294,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13408,883,1435,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13409,1429,1822,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13410,2173,1915,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13411,3700,2053,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13412,5212,2077,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13413,4528,2401,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13414,4327,2407,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13415,901,2446,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13416,2614,2572,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13421,5296,1726,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13422,2947,1810,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13423,1711,2074,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13424,3244,2347,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13425,1042,2458,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13427,3241,2572,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13429,5626,739,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13431,508,1537,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13432,2980,1867,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13434,1333,1999,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13435,5359,2074,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13436,1576,2191,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13437,1402,2239,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13438,4498,2347,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13439,1609,2365,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13440,4285,2464,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13445,1327,1762,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13446,5488,1774,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13447,472,1819,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13448,2416,1978,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13451,5596,562,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13452,763,1957,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13453,3985,2047,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13454,2620,2098,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13455,1336,2233,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13456,2239,2272,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13457,2935,2404,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13458,1564,2539,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13459,5200,2557,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13461,2713,2743,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13464,2374,1915,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13465,2590,2041,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13466,1957,2146,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13467,1543,2362,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13470,2977,421,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13474,835,1615,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13475,1429,1702,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13476,5635,1765,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13477,1186,1870,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13479,3631,2053,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13480,1189,2104,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13481,3412,2515,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13482,2947,2587,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13484,5017,2626,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13487,3916,1693,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13488,3073,2053,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13489,4090,2110,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13490,5497,2416,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13491,5383,2482,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13493,1051,1744,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13495,835,2083,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13496,4648,2104,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13497,4600,2278,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13498,1576,2302,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13500,4876,2512,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13504,796,1786,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13506,4669,2281,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13507,3319,2344,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13508,3142,2404,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13509,1366,2413,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13511,5155,2620,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13512,652,799,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13513,5650,1417,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13515,622,1948,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13516,2728,2155,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13517,4015,2230,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13518,5356,2317,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13520,5224,1726,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13521,4267,2056,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13522,1642,2188,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13525,5614,445,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13526,5437,934,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13528,5002,1969,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13529,3562,2044,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13531,4717,2101,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13532,3550,2404,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13537,5680,1357,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13538,898,2563,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13540,868,1909,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13541,2095,2266,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13543,1846,2551,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13546,1225,1933,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13548,670,1186,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13549,436,1759,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13550,1396,1762,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13552,3853,1930,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13554,5095,2512,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13560,5347,1663,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13561,3127,1870,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13562,3919,1933,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13563,4462,2404,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13568,2938,1924,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13569,2764,2098,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13570,5053,2683,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13576,1048,1867,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13577,3772,1939,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13578,2863,2164,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13579,3631,2164,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13581,4846,2455,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13582,1225,1819,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13583,2959,2683,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13585,5353,631,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13587,3706,1939,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13589,5467,2365,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13591,4981,2686,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13599,1021,1681,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13600,3604,1993,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13604,5164,2389,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13610,3463,2107,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13611,1507,2185,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13612,3451,2344,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13613,4984,2452,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13614,3277,2524,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13615,4843,2569,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13619,658,928,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13620,4051,2170,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13621,5413,2530,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13626,5320,2491,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13628,5653,922,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13636,4792,1978,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13647,2905,1981,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13648,5314,2383,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13655,1960,1909,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13656,3811,1996,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13660,1051,1627,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13671,5263,2548,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13687,4807,2515,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13691,691,994,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13699,1228,1693,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13710,4339,2059,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13711,2896,2095,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13716,877,1552,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13718,1924,1837,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13720,5212,394,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13743,5356,1420,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13747,2548,1978,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13750,5563,2401,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13754,1111,385,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13755,5317,559,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13767,907,1498,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13786,727,1795,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13790,2827,2101,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13791,3982,2161,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13792,4327,2287,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13797,5350,502,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13823,721,811,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13827,847,1246,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13838,4480,2038,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13848,766,871,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13853,727,940,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13874,1297,1945,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13891,880,1315,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13894,844,1486,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13897,2137,1858,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13938,1363,1711,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13941,2302,1915,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13942,4132,1933,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13943,5344,2545,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13973,3880,1996,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13978,901,508,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13979,5284,514,16,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14030,5455,2473,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14064,1291,1696,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14067,2065,1855,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14068,4015,2101,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14108,4222,2005,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14109,3154,2053,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14152,3193,1876,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14194,2653,2149,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14195,3910,2167,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14272,781,1111,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14347,3811,1864,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14348,2347,1963,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14351,5374,2596,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14468,2488,1981,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14469,3847,2044,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14515,4159,1990,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1454,4990,268,17,5,nectar,DSC_0844.JPG +14625,694,1966,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14626,5617,2014,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14627,1645,2434,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14666,1741,1786,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14675,2917,610,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14706,949,1444,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14725,2869,2044,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14791,982,1621,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1488,5026,337,15,5,nectar,DSC_0844.JPG +14935,3184,1996,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14976,2908,1867,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14980,4828,2032,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15077,802,1186,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15090,1039,2212,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15108,2413,2563,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15135,3718,2572,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15145,847,1114,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15202,3883,1882,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15223,3016,1933,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15224,4408,2056,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15258,3913,2050,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15266,3652,1921,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15284,5416,1312,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15285,2629,1981,17,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15298,3940,2215,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15299,4249,2413,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15304,3598,2116,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15313,2203,1861,15,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15347,5032,1918,15,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15348,835,622,16,4,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15374,679,511,17,5,nectar,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15508,4159,1042,15,4,nectar,DSC_0818.JPG +16115,4483,862,17,4,nectar,DSC_0818.JPG +16627,4726,1162,17,4,nectar,DSC_0818.JPG +17591,526,1312,15,4,nectar,DSC_0818.JPG +17809,4585,925,15,4,nectar,DSC_0818.JPG +1815,5101,334,17,5,nectar,DSC_0844.JPG +18522,2587,2416,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18529,1294,2410,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18535,1540,1498,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18536,2848,1387,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18543,1762,1501,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18550,1546,1867,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18552,4090,1024,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18555,2695,2236,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18558,2704,1135,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18562,1330,2350,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18564,3085,2542,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18567,1726,937,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18568,2158,1069,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18569,1903,1501,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18571,1870,1315,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18572,1399,1375,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18581,2014,1687,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18582,2980,2479,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1859,4942,1393,15,4,nectar,DSC_0844.JPG +18590,2764,2599,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18592,1582,1438,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18595,2737,1819,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18598,1468,1123,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18605,3202,2119,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18607,3124,2482,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18608,2812,1324,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18609,2233,1441,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18613,3808,2422,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18614,1969,2596,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18616,676,1849,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18617,1150,1918,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18620,2965,1078,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18621,814,1366,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18628,454,1600,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18629,2233,1687,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18630,3643,1759,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18634,1258,2227,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18641,2845,1510,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18648,1936,2533,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18654,3019,2416,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18655,3376,2422,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18659,1945,1318,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18661,2083,2170,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18662,2728,2536,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18663,2818,949,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18667,2044,2473,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18668,1471,1000,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18670,670,1612,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18677,2269,1006,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18680,1111,1498,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18683,2620,2476,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18684,2656,2536,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18685,3232,2671,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18687,4264,1210,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18691,2416,1009,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18692,3538,1327,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18693,1831,1378,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18694,2737,1693,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18697,1690,1867,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18701,823,2338,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18710,2518,1816,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18715,2551,2356,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18717,2584,2533,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18719,1504,940,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18720,4126,1084,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18721,2086,1192,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18722,3757,1204,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18725,1942,1810,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18726,3535,1819,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18735,4225,1645,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18736,490,1666,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18742,2620,2602,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18748,2302,1810,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18751,3748,1939,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18752,1507,2410,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18758,2305,1195,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18759,1363,1435,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18762,3391,1819,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18768,3829,1204,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18770,1402,1621,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18774,1330,2227,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18775,3418,2242,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18776,4204,2248,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18777,4033,2305,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18781,1219,1309,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18785,829,2584,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18788,1870,937,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18789,2959,1324,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18792,1618,1867,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18793,2410,1873,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18797,2221,2536,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18799,3214,1015,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18800,2524,1072,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18801,2197,1258,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18802,1759,1378,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18812,2155,2290,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18813,3667,2425,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18818,2524,943,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18820,1906,1378,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18821,2194,1870,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18822,4963,1894,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18823,3775,2365,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18828,2305,946,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18829,1108,1246,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18831,2557,1384,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18832,1690,1498,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18835,526,1609,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18838,4399,1831,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18843,2293,2536,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18846,3400,1078,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18847,3793,1393,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18849,2812,1450,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18850,2956,1696,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18864,886,994,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18866,1654,1435,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18867,4045,1456,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18869,523,1726,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18872,4324,1948,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18876,2116,2230,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18883,3823,1702,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18886,4066,2245,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18887,2515,2296,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1889,5179,331,15,5,nectar,DSC_0844.JPG +18892,3079,883,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18893,3070,1015,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18894,2815,1201,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18899,3577,1516,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18900,718,2023,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18901,1720,2290,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18902,2368,2536,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18903,3592,2545,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18905,3910,952,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18906,5359,1078,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18908,1036,1246,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18909,3757,1330,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18911,4192,1459,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18917,1759,2230,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18918,865,2281,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1892,298,574,17,4,nectar,DSC_0844.JPG +18921,1834,880,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18923,2341,1255,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18924,2197,1501,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18927,4480,1711,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18928,4078,1765,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18929,4612,1825,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18938,5509,706,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18939,1327,871,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18940,1870,1192,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18941,1762,1255,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18951,2407,2116,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18953,1222,2167,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18955,1795,2290,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18956,2944,2422,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18962,1432,937,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18963,2854,1009,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18964,2563,1261,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18965,1363,1312,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18966,4336,1339,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18967,3358,1390,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18976,5329,772,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18977,1906,1003,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18979,2452,1195,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1899,1645,997,16,5,nectar,DSC_0844.JPG +18991,2482,1993,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18995,790,2638,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18998,3109,694,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18999,2599,814,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19000,1213,1060,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19003,1183,1498,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19011,4033,2188,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19014,1153,2410,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19018,4159,1021,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19019,2380,1195,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19020,4261,1336,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19021,850,1429,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19023,1036,1495,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19025,4771,1591,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19026,1474,1621,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19032,3892,2065,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19034,2911,2479,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19036,1543,1000,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19037,3577,1144,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19038,1507,1438,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19039,4408,1462,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19040,5032,1645,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19042,2050,1747,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19043,1147,1798,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19044,1258,1858,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19047,1579,2167,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19050,5431,952,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19051,4090,1144,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19053,1507,1312,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19055,2920,1513,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19056,1222,1561,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19062,3133,2119,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19064,3961,2428,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19067,1114,2710,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19069,3328,946,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19071,2704,1009,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19076,748,1735,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19078,3934,1765,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19081,4174,2188,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19082,2410,2236,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19084,3343,2608,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19085,3412,2611,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19095,3217,1138,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19096,3613,1207,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19097,601,1240,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19100,2554,1876,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19101,3316,1942,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19106,2008,2290,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19108,2188,2473,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19109,3343,2482,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19112,2833,2728,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19115,1504,808,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19118,3433,1012,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19120,3796,1144,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19121,1036,1369,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19122,4447,1402,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19124,412,1663,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19125,676,1732,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19130,3055,2482,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19134,5329,646,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19135,1651,1063,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19141,2701,1996,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19143,3715,2002,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19144,793,2032,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19145,1720,2170,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19146,3886,2302,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1915,256,631,17,4,nectar,DSC_0844.JPG +19150,2980,2605,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19151,2929,883,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19153,1252,1123,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19154,5281,1207,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19155,814,1492,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19157,1870,1564,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19158,2014,1810,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19160,376,1843,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19165,3889,2182,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19168,3199,2236,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19177,3880,892,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19178,5260,892,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19179,853,1054,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19180,3649,1267,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19181,5314,1270,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19183,2233,1315,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19184,1438,1558,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19186,1222,1804,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19188,4114,1825,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19191,4072,2008,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19194,1867,2290,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19195,4006,2500,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19196,1150,2530,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19199,3946,1018,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19200,2233,1069,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19201,3034,1078,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19202,2890,1201,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19204,3979,1207,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19205,961,1246,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19207,4228,1399,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19212,640,1906,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19217,3289,1141,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19218,1651,1192,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19221,1618,1498,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19222,3859,1762,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19223,2737,1936,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19225,3385,2062,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19229,2299,2413,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19233,5299,832,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19234,3397,949,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19235,1177,997,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19236,2632,1012,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19237,4231,1276,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19239,4480,1591,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19240,817,1615,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19243,5200,1963,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19245,3421,2005,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19249,3238,2296,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19253,2869,2665,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19257,3001,1015,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19261,4042,1699,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19265,970,1975,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19278,1873,1066,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19279,3691,1078,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19280,5152,1078,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19281,1183,1123,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19284,778,1552,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19286,967,1858,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19295,3361,1015,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19296,3835,1081,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19297,3715,1636,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19298,4519,1648,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19301,685,2086,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19302,2443,2173,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19309,2800,2794,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1931,5137,397,17,5,nectar,DSC_0844.JPG +19310,1900,2845,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19313,1618,1126,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19314,3325,1201,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19316,1543,1252,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19317,493,1411,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19319,4261,1462,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19320,4261,1582,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19322,4222,1765,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19327,4213,2131,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19330,937,2287,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19336,739,1240,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19337,1108,1369,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19338,1690,1372,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19339,3145,1387,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19340,5203,1453,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19344,4120,1579,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19351,2656,2665,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19355,5506,832,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19356,1579,1063,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19357,3109,1072,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19358,4192,1210,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19365,3649,1393,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19367,1978,1747,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19368,5296,1765,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19378,2767,2353,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19379,2659,2416,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19387,5365,955,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19390,1255,1369,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19396,427,2020,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19402,3742,2305,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19405,748,2569,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19421,4807,2011,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19424,2368,2659,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19429,5323,895,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19430,2671,1075,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19432,3106,1201,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19436,3865,1390,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19437,457,1474,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19438,5236,1513,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19444,4078,1888,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19447,3097,1942,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19453,2875,2416,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19455,2008,2530,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19456,2509,2539,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19459,2269,1132,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19460,1690,1255,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19461,2416,1258,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19462,3865,1270,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19463,1471,1375,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19467,412,1783,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19468,2881,1936,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19476,2548,2476,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19478,3181,946,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19479,1033,991,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19482,1435,1192,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19483,2158,1315,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19485,2632,1387,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19490,1942,1564,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19496,3538,1081,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19497,3760,1081,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19498,1981,1129,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19500,4225,1519,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19502,454,1846,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19503,934,2038,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19506,4645,2248,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19508,2260,2353,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19509,2983,2356,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19512,3976,1081,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19513,4057,1084,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19514,4051,1204,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19515,1795,1315,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19516,3034,1321,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19517,5347,1330,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19523,2122,1507,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19525,1507,1561,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19526,1543,1624,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19527,1183,1738,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19528,895,1855,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19531,4693,1948,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19533,1006,2038,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19536,1366,2407,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19544,3001,883,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19545,1723,1192,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19546,2161,1195,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19548,5212,1204,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19549,4120,1207,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19551,856,1309,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19553,4192,1339,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19555,1366,1558,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19557,5407,1699,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19559,4183,1828,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19561,604,1846,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19562,1471,2104,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19565,2152,2659,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19569,3508,889,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19570,5470,892,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19571,2050,1006,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19572,3145,1009,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19573,1759,1126,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19576,1906,1249,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19578,3682,1579,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19579,4333,1585,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19580,5236,1639,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19582,1366,1921,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19583,1291,1924,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19588,2368,2296,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19592,4174,2551,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19599,3394,1201,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19600,3070,1267,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19601,4300,1276,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19603,3535,1576,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19604,4189,1579,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19608,3355,1633,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19609,4441,1651,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19610,2086,1687,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19621,2947,2539,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19623,2905,2728,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19626,3574,1267,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19628,1000,1435,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19631,1039,1618,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19632,1117,2104,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19633,2374,2173,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19636,2479,2233,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19643,1651,940,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19645,2962,1198,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19646,3469,1201,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19647,2704,1261,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19648,3502,1267,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19649,1978,1381,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19650,1474,1501,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19651,343,1540,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19653,1294,1801,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19656,868,2158,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19657,3997,2245,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19662,5398,769,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19664,1798,940,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19665,2965,949,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19666,1690,1000,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19669,700,1303,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19670,2998,1387,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19671,925,1435,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19674,4507,1885,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19681,5194,766,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19682,5365,835,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19683,1942,1192,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19685,3940,1270,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19686,3829,1330,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19687,775,1429,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19693,604,1966,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19703,2017,1066,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19704,5287,1075,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19708,4297,1522,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19710,1975,1624,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19712,565,1789,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19714,4621,1945,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19715,4771,1951,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19722,2377,1072,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19724,1183,1369,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19725,1870,1444,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19727,598,1609,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19730,3823,1825,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19731,1084,2164,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19734,3994,2368,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19737,1222,2650,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19740,1396,871,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19741,2017,943,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19743,1618,1003,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19745,5248,1141,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19747,3718,1267,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19748,1147,1309,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19750,268,1537,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19752,3790,1762,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19753,3457,2065,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19756,2041,2596,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19758,3259,946,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19759,5326,1012,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19760,2089,1072,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19762,4012,1270,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19766,4372,1525,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19767,853,1555,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19771,4552,1708,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19774,4216,2011,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19775,973,2350,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19783,421,1417,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19785,925,1555,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19787,5203,1579,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19789,4885,1777,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19790,640,1789,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19792,3895,1819,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19793,5260,1825,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19801,5395,1018,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19803,1687,1126,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19804,2485,1132,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19806,4015,1144,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19813,529,1477,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19814,3430,1510,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19816,4291,1648,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19817,415,1906,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19824,5257,643,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19825,5434,829,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19826,1471,874,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19827,5290,955,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19828,1798,1066,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19829,2266,1378,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19831,2884,1450,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19835,898,1738,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19837,4807,1894,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19838,4804,2128,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19843,5401,646,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19844,2344,1006,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19845,3727,1012,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19846,3292,1015,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19847,1945,1066,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19848,889,1123,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19849,5350,1207,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19851,535,1240,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19853,1615,1252,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19855,5377,1390,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19861,4726,2008,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19866,2734,2416,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19867,835,2701,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19870,4267,2866,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19872,3151,886,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19876,712,1675,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19877,598,1729,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19880,715,1909,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19882,4849,2071,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19885,3850,2365,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19887,1327,2593,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19899,1072,1306,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19900,1327,1375,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19901,1291,1558,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19902,4330,1708,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19904,4405,1714,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19905,820,1735,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19908,3784,2008,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19909,829,2095,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1991,1465,1057,15,5,nectar,DSC_0844.JPG +19911,4753,2308,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19913,3919,2368,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19914,3667,2551,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19920,3109,820,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19922,3949,892,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19923,3112,952,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19924,3505,1015,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19926,3868,1147,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19927,3907,1204,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19936,3862,1885,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19938,4003,2008,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19943,901,2344,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19952,1291,1183,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19953,3544,1204,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19954,3682,1204,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19955,2740,1324,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19956,5311,1390,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19958,2050,1624,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19962,4150,1765,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19963,4513,1813,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19964,4888,1897,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19965,1939,1927,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19966,3898,1945,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19969,4927,2071,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19977,5182,1138,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19980,1291,1312,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19981,889,1372,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19982,1435,1438,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19984,5101,1522,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19985,5104,1642,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19987,4258,1708,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19989,712,1792,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19993,4285,2011,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20001,3517,2800,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20004,3652,1015,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20005,3871,1018,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20006,2053,1132,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20007,1579,1186,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20008,667,1237,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20009,5236,1390,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20010,382,1477,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20011,709,1552,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20012,457,1957,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20013,1651,2170,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20015,3814,2302,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20025,2092,946,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20027,3613,1078,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20028,3904,1078,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20029,961,1117,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20032,4849,1954,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20034,4069,2128,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20035,4102,2188,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20036,2947,2299,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20041,3472,1078,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20042,2926,1135,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20044,961,1492,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20046,784,1792,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20049,931,1918,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20051,1081,2041,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20055,3055,2353,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20060,3328,1075,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20062,3724,1144,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20065,5038,1270,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20066,3106,1450,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20070,4363,1894,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20077,1003,2770,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20080,3037,952,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20082,1072,1054,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20083,2302,1069,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20084,922,1180,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20091,856,1678,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20094,4831,2302,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20099,2968,820,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20100,3583,892,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20101,1762,1003,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20102,5428,1078,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20105,634,1300,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20111,4351,2011,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20112,862,2032,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20119,1288,1060,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20134,4438,1525,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20139,787,1909,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20142,4834,2185,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20149,5434,706,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20150,1141,1057,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20151,1396,1126,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20158,4885,2128,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20164,1540,1126,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20165,778,1303,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20166,349,1420,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20168,4660,1525,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20170,895,1615,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20172,4366,1771,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20175,760,2092,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20183,3727,886,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20184,3691,949,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20185,1327,1123,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20186,1327,1252,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20188,925,1309,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2019,5035,199,17,5,nectar,DSC_0844.JPG +20190,3718,1759,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20195,4570,2125,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20197,1978,1009,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20198,1726,1315,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20199,3109,1321,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20200,1147,1432,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20202,2707,1507,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20210,4510,2017,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20223,3067,1384,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20227,4405,1588,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20229,5194,1831,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20234,1048,2467,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20236,997,931,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20238,3763,952,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20240,1249,997,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20251,4711,2371,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20254,5293,706,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20255,1837,1006,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20256,1075,1186,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20257,2086,1444,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20261,4810,1777,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20262,643,2023,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20263,1009,2164,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20264,4762,2185,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20269,5221,1081,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20270,2416,1129,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20271,814,1243,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20276,5338,1705,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20278,4291,1888,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20279,4471,1948,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20280,4177,2068,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20286,2113,2725,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20291,961,994,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20292,5257,1015,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20293,2452,1072,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20294,2740,1075,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20297,5452,1513,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20300,1045,1981,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20305,4045,2563,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20311,5140,1579,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20315,2080,2659,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20316,1543,2716,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20321,5479,1696,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20323,5164,1768,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20324,4144,2011,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20325,901,2098,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20326,976,2098,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20331,5260,766,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20336,4012,1516,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20337,1075,1678,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20339,4582,1885,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20340,5134,1942,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20343,937,2161,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20351,3904,1333,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20357,3856,2005,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20358,3670,2188,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20363,5116,523,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20364,3652,1144,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20365,1144,1183,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20366,1216,1183,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20370,1075,1435,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20371,5098,1765,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20372,568,1903,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20373,535,2038,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20382,2560,1135,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20383,3178,1204,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20384,886,1240,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20385,5278,1327,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20387,1543,1375,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20391,1867,2167,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20392,3049,2857,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20396,3178,1075,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20398,1576,1312,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20401,862,2404,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20409,5395,895,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20410,1033,1120,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20411,4822,1153,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20412,1366,1183,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20415,739,1489,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20416,5377,1513,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20418,4111,2437,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20425,3574,1015,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20426,3799,1018,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20427,4231,1147,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20430,448,1729,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20432,3931,1882,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20433,4246,2074,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20443,994,1180,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20445,745,1615,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20447,1042,2227,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20458,5197,1015,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20459,1177,1246,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20461,4084,1396,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20462,5269,1450,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20463,4960,1771,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20464,532,1960,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20469,1399,997,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20470,307,1480,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20471,5167,1513,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20472,5338,1576,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20473,799,2155,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20475,904,2218,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20484,1507,1060,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20486,565,1417,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20488,1324,1624,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20495,2197,1009,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20496,5176,1264,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20498,4216,1891,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20500,4141,2128,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20502,2479,2596,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20514,5383,1270,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20515,5170,1639,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20527,5410,1576,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2053,5215,262,15,5,nectar,DSC_0844.JPG +20536,1828,2842,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20542,1504,1189,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20543,5200,1699,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20550,5440,1765,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20552,4144,2491,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20554,1111,1120,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20555,1471,1252,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20556,529,1357,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20576,934,1798,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20577,5410,1825,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20581,4339,1465,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20582,5068,1705,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20585,4795,2245,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20600,4576,1765,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20616,829,2218,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20626,664,1363,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20636,781,1672,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20639,832,2464,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20647,4399,1948,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20653,2635,1261,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20656,607,2080,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20666,4159,1144,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20667,4996,2059,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20677,5335,1825,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20681,601,1357,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20688,4309,2074,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20694,961,1618,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20703,370,1969,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20704,727,2167,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20706,4957,2413,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2072,5143,265,17,5,nectar,DSC_0844.JPG +20727,742,2332,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2073,5059,403,17,5,nectar,DSC_0844.JPG +20734,4288,1774,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20737,4273,2140,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20738,4138,2251,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20757,5083,2215,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20758,631,2308,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20763,598,1483,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20773,637,1420,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20774,508,2215,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20792,493,1537,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20818,694,2401,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20825,5023,2110,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20826,553,2143,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20827,385,2341,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20854,694,2641,16,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2089,5254,328,17,5,nectar,DSC_0844.JPG +20894,4408,2092,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20919,436,2272,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20922,4180,2425,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20960,1969,754,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20982,421,2149,16,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20992,520,2584,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20998,2161,946,15,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20999,1099,991,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21028,3856,1651,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21085,4657,1888,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21267,5221,1879,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2128,5371,1072,15,4,nectar,DSC_0844.JPG +21320,1405,1510,15,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2140,5182,202,15,5,nectar,DSC_0844.JPG +2154,169,229,17,5,nectar,DSC_0844.JPG +21655,4150,892,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21657,1159,2152,17,4,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21679,4096,2323,17,5,nectar,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2171,4090,466,17,4,nectar,DSC_0844.JPG +2186,4159,469,16,5,nectar,DSC_0844.JPG +2211,5170,463,17,5,nectar,DSC_0844.JPG +2233,2251,946,17,5,nectar,DSC_0844.JPG +2286,5149,136,15,5,nectar,DSC_0844.JPG +2320,5257,457,17,5,nectar,DSC_0844.JPG +2344,5206,523,15,5,nectar,DSC_0844.JPG +2345,5332,586,17,5,nectar,DSC_0844.JPG +2354,5293,391,15,5,nectar,DSC_0844.JPG +2361,964,2236,17,4,nectar,DSC_0844.JPG +2365,5071,262,17,5,nectar,DSC_0844.JPG +2366,5374,949,17,4,nectar,DSC_0844.JPG +2414,5374,382,17,5,nectar,DSC_0844.JPG +2468,5290,523,15,5,nectar,DSC_0844.JPG +2504,5254,193,17,4,nectar,DSC_0844.JPG +2517,5239,595,15,5,nectar,DSC_0844.JPG +2556,5377,262,16,4,nectar,DSC_0844.JPG +2568,208,175,15,5,nectar,DSC_0844.JPG +2573,5077,130,17,5,nectar,DSC_0844.JPG +2574,5392,709,15,4,nectar,DSC_0844.JPG +2623,4957,199,17,5,nectar,DSC_0844.JPG +26494,3976,442,15,4,nectar,DSC_0819.JPG +2684,4990,127,17,5,nectar,DSC_0844.JPG +2708,5299,265,15,4,nectar,DSC_0844.JPG +27482,4585,121,16,5,nectar,DSC_0840.JPG +27487,4699,187,15,5,nectar,DSC_0840.JPG +27512,5041,445,17,5,nectar,DSC_0840.JPG +27516,4837,313,17,5,nectar,DSC_0840.JPG +27539,4951,244,15,5,nectar,DSC_0840.JPG +27586,4798,379,17,4,nectar,DSC_0840.JPG +27589,4657,247,16,5,nectar,DSC_0840.JPG +27591,5329,940,15,5,nectar,DSC_0840.JPG +27597,994,1132,16,4,nectar,DSC_0840.JPG +27617,4732,247,17,5,nectar,DSC_0840.JPG +27641,319,82,16,5,nectar,DSC_0840.JPG +27648,244,202,17,5,nectar,DSC_0840.JPG +27652,4513,109,17,5,nectar,DSC_0840.JPG +27653,5266,322,16,5,nectar,DSC_0840.JPG +27671,4900,448,16,5,nectar,DSC_0840.JPG +27686,5299,385,17,5,nectar,DSC_0840.JPG +27698,4939,379,17,5,nectar,DSC_0840.JPG +27710,2368,1684,16,4,nectar,DSC_0840.JPG +27720,5326,1180,17,4,nectar,DSC_0840.JPG +27724,4699,310,17,5,nectar,DSC_0840.JPG +27742,931,31,15,4,nectar,DSC_0840.JPG +27756,3295,859,16,4,nectar,DSC_0840.JPG +27790,640,25,17,4,nectar,DSC_0840.JPG +27822,3466,1039,17,4,nectar,DSC_0840.JPG +27846,460,91,15,4,nectar,DSC_0840.JPG +27849,5185,448,17,5,nectar,DSC_0840.JPG +27865,4732,376,17,4,nectar,DSC_0840.JPG +27891,5218,2125,17,4,nectar,DSC_0840.JPG +27912,3289,1450,17,4,nectar,DSC_0840.JPG +27932,424,31,15,4,nectar,DSC_0840.JPG +27934,280,136,17,5,nectar,DSC_0840.JPG +27951,5224,388,15,5,nectar,DSC_0840.JPG +27952,3751,919,15,5,nectar,DSC_0840.JPG +27962,4969,448,15,5,nectar,DSC_0840.JPG +27994,4768,310,16,5,nectar,DSC_0840.JPG +28012,5179,577,17,5,nectar,DSC_0840.JPG +28028,3649,739,17,4,nectar,DSC_0840.JPG +28038,5113,448,17,5,nectar,DSC_0840.JPG +28054,3709,181,15,4,nectar,DSC_0840.JPG +28058,4831,445,17,5,nectar,DSC_0840.JPG +28074,5146,511,17,5,nectar,DSC_0840.JPG +28077,3817,1279,17,5,nectar,DSC_0840.JPG +28084,4867,376,15,5,nectar,DSC_0840.JPG +28094,4990,181,17,5,nectar,DSC_0840.JPG +28095,5155,382,17,5,nectar,DSC_0840.JPG +28109,958,94,16,4,nectar,DSC_0840.JPG +28130,5254,448,15,5,nectar,DSC_0840.JPG +28158,4843,184,17,5,nectar,DSC_0840.JPG +28194,280,25,15,4,nectar,DSC_0840.JPG +28207,745,1891,16,4,nectar,DSC_0840.JPG +28210,1096,91,17,5,nectar,DSC_0840.JPG +28228,3643,1099,15,4,nectar,DSC_0840.JPG +2825,5101,211,17,5,nectar,DSC_0844.JPG +28280,4918,880,15,4,nectar,DSC_0840.JPG +28290,5077,382,17,5,nectar,DSC_0840.JPG +28313,490,28,15,4,nectar,DSC_0840.JPG +28316,4906,313,17,5,nectar,DSC_0840.JPG +28329,1744,721,16,4,nectar,DSC_0840.JPG +28341,4621,313,17,4,nectar,DSC_0840.JPG +28372,922,1957,17,4,nectar,DSC_0840.JPG +28375,385,85,16,5,nectar,DSC_0840.JPG +28376,1324,100,17,4,nectar,DSC_0840.JPG +28430,1483,2206,15,4,nectar,DSC_0840.JPG +28445,3604,1633,17,5,nectar,DSC_0840.JPG +28448,4915,184,17,5,nectar,DSC_0840.JPG +28450,5218,511,17,5,nectar,DSC_0840.JPG +28486,4099,1399,16,5,nectar,DSC_0840.JPG +28516,5068,58,16,4,nectar,DSC_0840.JPG +28521,3478,682,17,4,nectar,DSC_0840.JPG +28539,4876,247,16,5,nectar,DSC_0840.JPG +28544,3685,922,17,5,nectar,DSC_0840.JPG +28558,4240,1171,17,4,nectar,DSC_0840.JPG +28559,3355,1216,17,4,nectar,DSC_0840.JPG +28593,3547,679,17,4,nectar,DSC_0840.JPG +28597,3748,1162,17,5,nectar,DSC_0840.JPG +28618,5023,697,17,4,nectar,DSC_0840.JPG +28683,3847,1456,17,4,nectar,DSC_0840.JPG +28694,3085,613,17,4,nectar,DSC_0840.JPG +28712,3511,745,17,4,nectar,DSC_0840.JPG +28715,3778,1573,17,5,nectar,DSC_0840.JPG +28795,127,22,17,5,nectar,DSC_0840.JPG +28845,5194,316,16,5,nectar,DSC_0840.JPG +28877,3574,982,16,4,nectar,DSC_0840.JPG +28895,3928,985,17,5,nectar,DSC_0840.JPG +28947,5356,1474,15,4,nectar,DSC_0840.JPG +29034,5257,577,17,5,nectar,DSC_0840.JPG +29222,3283,1813,17,5,nectar,DSC_0840.JPG +29268,5284,511,17,5,nectar,DSC_0840.JPG +29421,3931,865,17,4,nectar,DSC_0840.JPG +2974,736,199,15,4,nectar,DSC_0837.JPG +2975,4660,361,16,4,nectar,DSC_0837.JPG +29750,5332,571,17,5,nectar,DSC_0840.JPG +29799,3916,1699,17,4,nectar,DSC_0840.JPG +2981,4555,301,15,4,nectar,DSC_0837.JPG +2983,4345,298,17,5,nectar,DSC_0837.JPG +2986,5098,1390,15,5,nectar,DSC_0837.JPG +29911,5329,700,15,5,nectar,DSC_0840.JPG +2994,298,199,16,5,nectar,DSC_0837.JPG +29967,3673,1876,17,5,nectar,DSC_0840.JPG +3004,5287,1327,16,5,nectar,DSC_0837.JPG +3007,1714,148,16,5,nectar,DSC_0837.JPG +3010,916,265,17,4,nectar,DSC_0837.JPG +3011,880,328,15,5,nectar,DSC_0837.JPG +3020,1567,148,16,5,nectar,DSC_0837.JPG +30247,5287,646,15,5,nectar,DSC_0840.JPG +30279,5359,511,15,5,nectar,DSC_0840.JPG +30336,5080,520,15,5,nectar,DSC_0840.JPG +30344,1408,1609,15,4,nectar,DSC_0840.JPG +30401,373,1291,17,4,nectar,DSC_0840.JPG +30429,3235,859,17,4,nectar,DSC_0840.JPG +3045,4204,166,17,5,nectar,DSC_0837.JPG +30454,5371,649,17,5,nectar,DSC_0840.JPG +3046,3991,172,16,5,nectar,DSC_0837.JPG +30479,826,256,16,4,nectar,DSC_0820.JPG +3053,772,139,16,5,nectar,DSC_0837.JPG +30538,3265,181,17,4,nectar,DSC_0820.JPG +3058,1957,337,17,5,nectar,DSC_0837.JPG +3059,4021,361,17,5,nectar,DSC_0837.JPG +3060,5419,412,16,5,nectar,DSC_0837.JPG +30649,616,253,17,4,nectar,DSC_0820.JPG +3067,4024,109,16,5,nectar,DSC_0837.JPG +3073,4969,922,15,4,nectar,DSC_0837.JPG +30732,811,1195,17,4,nectar,DSC_0820.JPG +3078,916,391,15,5,nectar,DSC_0837.JPG +3092,1456,208,16,5,nectar,DSC_0837.JPG +30942,2911,718,17,4,nectar,DSC_0820.JPG +30954,4819,565,16,4,nectar,DSC_0820.JPG +31158,3193,172,16,4,nectar,DSC_0820.JPG +3127,3949,358,16,5,nectar,DSC_0837.JPG +31277,1039,253,17,4,nectar,DSC_0820.JPG +3128,772,511,16,5,nectar,DSC_0837.JPG +31324,4642,505,17,4,nectar,DSC_0820.JPG +3140,445,196,16,4,nectar,DSC_0837.JPG +3144,733,571,17,5,nectar,DSC_0837.JPG +3150,4957,1156,15,4,nectar,DSC_0837.JPG +316,4948,334,17,5,nectar,DSC_0844.JPG +3172,5188,796,16,5,nectar,DSC_0837.JPG +3183,4588,607,16,4,nectar,DSC_0837.JPG +3184,4447,610,16,4,nectar,DSC_0837.JPG +3191,775,262,17,5,nectar,DSC_0837.JPG +3204,4453,226,17,5,nectar,DSC_0837.JPG +3205,661,571,16,5,nectar,DSC_0837.JPG +3210,2494,154,17,5,nectar,DSC_0837.JPG +3211,484,256,16,5,nectar,DSC_0837.JPG +3222,5281,1090,15,5,nectar,DSC_0837.JPG +3232,337,139,17,5,nectar,DSC_0837.JPG +3242,5125,1933,15,4,nectar,DSC_0837.JPG +3255,3844,169,17,5,nectar,DSC_0837.JPG +3261,1318,205,16,5,nectar,DSC_0837.JPG +3263,5347,547,16,5,nectar,DSC_0837.JPG +3264,4375,607,15,4,nectar,DSC_0837.JPG +3272,4543,796,15,4,nectar,DSC_0837.JPG +3286,1750,211,17,5,nectar,DSC_0837.JPG +3299,271,751,17,5,nectar,DSC_0837.JPG +3336,2671,229,17,5,nectar,DSC_0837.JPG +3338,5338,289,17,5,nectar,DSC_0837.JPG +3349,181,124,17,4,nectar,DSC_0837.JPG +3350,1783,274,16,5,nectar,DSC_0837.JPG +3351,3622,292,17,5,nectar,DSC_0837.JPG +33530,5230,208,17,5,nectar,DSC_0841.JPG +33557,820,103,17,5,nectar,DSC_0841.JPG +33566,724,301,16,5,nectar,DSC_0841.JPG +33567,145,898,17,5,nectar,DSC_0841.JPG +33599,148,529,17,5,nectar,DSC_0841.JPG +33613,331,604,17,5,nectar,DSC_0841.JPG +33629,4678,151,17,4,nectar,DSC_0841.JPG +33632,931,46,17,4,nectar,DSC_0841.JPG +33634,688,229,17,5,nectar,DSC_0841.JPG +33637,112,586,17,4,nectar,DSC_0841.JPG +33640,5191,142,17,5,nectar,DSC_0841.JPG +33665,253,478,17,5,nectar,DSC_0841.JPG +33666,223,535,17,5,nectar,DSC_0841.JPG +33677,5422,145,16,5,nectar,DSC_0841.JPG +33681,5305,208,17,5,nectar,DSC_0841.JPG +33689,4933,85,16,4,nectar,DSC_0841.JPG +33691,613,109,17,5,nectar,DSC_0841.JPG +33709,1006,43,17,4,nectar,DSC_0841.JPG +3371,2419,154,17,5,nectar,DSC_0837.JPG +3372,703,262,15,4,nectar,DSC_0837.JPG +33722,781,46,15,5,nectar,DSC_0841.JPG +33737,262,1906,16,4,nectar,DSC_0841.JPG +33739,343,46,17,5,nectar,DSC_0841.JPG +33748,5341,142,17,5,nectar,DSC_0841.JPG +33759,4027,1132,16,5,nectar,DSC_0841.JPG +33772,382,361,17,5,nectar,DSC_0841.JPG +33780,49,700,17,5,nectar,DSC_0841.JPG +33781,148,778,17,5,nectar,DSC_0841.JPG +33795,856,40,17,4,nectar,DSC_0841.JPG +33818,280,415,17,5,nectar,DSC_0841.JPG +33824,4972,148,15,4,nectar,DSC_0841.JPG +33857,115,838,16,5,nectar,DSC_0841.JPG +33882,757,241,15,5,nectar,DSC_0841.JPG +33904,223,664,17,5,nectar,DSC_0841.JPG +33913,4561,838,17,5,nectar,DSC_0841.JPG +33916,856,172,17,5,nectar,DSC_0841.JPG +33923,499,424,17,5,nectar,DSC_0841.JPG +33925,556,1207,17,4,nectar,DSC_0841.JPG +33940,223,784,17,5,nectar,DSC_0841.JPG +33943,574,298,15,5,nectar,DSC_0841.JPG +33971,691,490,17,5,nectar,DSC_0841.JPG +33997,259,607,17,5,nectar,DSC_0841.JPG +34004,493,298,17,5,nectar,DSC_0841.JPG +34005,424,424,17,5,nectar,DSC_0841.JPG +34006,397,481,17,5,nectar,DSC_0841.JPG +34007,190,598,15,5,nectar,DSC_0841.JPG +34008,121,715,17,5,nectar,DSC_0841.JPG +34038,352,295,17,5,nectar,DSC_0841.JPG +34041,4066,955,17,5,nectar,DSC_0841.JPG +34062,460,358,17,5,nectar,DSC_0841.JPG +34065,295,538,17,5,nectar,DSC_0841.JPG +34067,193,724,15,5,nectar,DSC_0841.JPG +34074,5149,208,17,5,nectar,DSC_0841.JPG +34077,616,358,16,5,nectar,DSC_0841.JPG +34078,265,730,15,5,nectar,DSC_0841.JPG +3408,5092,1636,15,5,nectar,DSC_0837.JPG +34083,571,46,17,5,nectar,DSC_0841.JPG +34098,451,232,15,5,nectar,DSC_0841.JPG +34100,4666,658,17,4,nectar,DSC_0841.JPG +34101,1306,688,16,4,nectar,DSC_0841.JPG +34109,160,232,15,5,nectar,DSC_0841.JPG +34113,367,673,17,5,nectar,DSC_0841.JPG +34124,328,481,15,5,nectar,DSC_0841.JPG +34127,79,769,17,5,nectar,DSC_0841.JPG +34139,3568,1312,15,4,nectar,DSC_0841.JPG +34143,148,652,15,5,nectar,DSC_0841.JPG +3415,2359,2065,15,4,nectar,DSC_0837.JPG +34168,4894,145,15,5,nectar,DSC_0841.JPG +34170,238,355,15,5,nectar,DSC_0841.JPG +34181,184,472,17,5,nectar,DSC_0841.JPG +34196,5266,139,17,5,nectar,DSC_0841.JPG +34198,538,358,17,5,nectar,DSC_0841.JPG +34199,367,544,17,5,nectar,DSC_0841.JPG +34212,610,229,15,5,nectar,DSC_0841.JPG +34226,316,352,15,5,nectar,DSC_0841.JPG +34249,385,109,16,5,nectar,DSC_0841.JPG +34256,187,841,17,5,nectar,DSC_0841.JPG +34262,655,172,16,5,nectar,DSC_0841.JPG +34266,577,424,16,5,nectar,DSC_0841.JPG +34281,520,1504,17,4,nectar,DSC_0841.JPG +34363,418,46,16,5,nectar,DSC_0841.JPG +34381,715,46,15,5,nectar,DSC_0841.JPG +34383,211,409,15,5,nectar,DSC_0841.JPG +34402,349,418,15,5,nectar,DSC_0841.JPG +34441,130,289,15,5,nectar,DSC_0841.JPG +34479,517,232,17,5,nectar,DSC_0841.JPG +3455,5131,1576,16,5,nectar,DSC_0837.JPG +34638,49,832,15,5,nectar,DSC_0841.JPG +3473,5032,1156,16,4,nectar,DSC_0837.JPG +34746,5413,268,15,4,nectar,DSC_0841.JPG +3480,3805,106,15,5,nectar,DSC_0837.JPG +34953,292,664,15,5,nectar,DSC_0841.JPG +3497,916,142,15,4,nectar,DSC_0837.JPG +3498,4525,229,16,5,nectar,DSC_0837.JPG +3499,487,508,16,5,nectar,DSC_0837.JPG +35046,286,235,15,5,nectar,DSC_0841.JPG +3509,5326,1264,15,5,nectar,DSC_0837.JPG +3515,4576,859,15,4,nectar,DSC_0837.JPG +35162,535,109,16,5,nectar,DSC_0841.JPG +3532,913,31,15,4,nectar,DSC_0837.JPG +3533,2239,343,16,4,nectar,DSC_0837.JPG +35337,202,289,17,5,nectar,DSC_0841.JPG +3545,3952,106,17,5,nectar,DSC_0837.JPG +3546,1132,391,15,5,nectar,DSC_0837.JPG +3564,517,691,15,5,nectar,DSC_0837.JPG +3584,1168,454,16,5,nectar,DSC_0837.JPG +35943,349,175,17,5,nectar,DSC_0841.JPG +36002,196,169,17,5,nectar,DSC_0841.JPG +36079,265,289,15,5,nectar,DSC_0841.JPG +3610,3820,1168,15,4,nectar,DSC_0837.JPG +3627,3166,355,16,5,nectar,DSC_0837.JPG +36453,217,229,17,5,nectar,DSC_0841.JPG +3650,1492,145,16,4,nectar,DSC_0837.JPG +3651,3583,223,17,5,nectar,DSC_0837.JPG +3652,3733,232,15,5,nectar,DSC_0837.JPG +3653,2344,280,17,5,nectar,DSC_0837.JPG +3656,4696,676,15,4,nectar,DSC_0837.JPG +36601,3646,1135,17,4,nectar,DSC_0838.JPG +36706,3079,1369,16,4,nectar,DSC_0838.JPG +36709,229,379,15,4,nectar,DSC_0838.JPG +3672,5347,424,17,5,nectar,DSC_0837.JPG +36743,4573,382,15,5,nectar,DSC_0838.JPG +36785,3802,2263,16,4,nectar,DSC_0838.JPG +36803,2965,1669,17,4,nectar,DSC_0838.JPG +36818,4750,187,17,5,nectar,DSC_0838.JPG +36861,4621,1849,16,5,nectar,DSC_0838.JPG +3695,2923,154,17,5,nectar,DSC_0837.JPG +3696,2989,292,17,4,nectar,DSC_0837.JPG +3698,625,505,15,5,nectar,DSC_0837.JPG +36997,5140,379,17,5,nectar,DSC_0838.JPG +3700,5158,616,15,5,nectar,DSC_0837.JPG +37108,4747,445,16,4,nectar,DSC_0838.JPG +37121,3910,1738,15,4,nectar,DSC_0838.JPG +3714,4060,295,16,5,nectar,DSC_0837.JPG +37153,301,376,16,4,nectar,DSC_0838.JPG +37177,3910,1858,17,4,nectar,DSC_0838.JPG +37192,4690,1966,17,5,nectar,DSC_0838.JPG +37245,5134,505,17,5,nectar,DSC_0838.JPG +3730,3589,481,16,5,nectar,DSC_0837.JPG +37314,3985,1618,17,4,nectar,DSC_0838.JPG +3738,3421,1237,16,4,nectar,DSC_0837.JPG +37390,5122,1477,17,4,nectar,DSC_0838.JPG +37410,5161,1051,17,4,nectar,DSC_0838.JPG +37416,4942,1423,17,5,nectar,DSC_0838.JPG +37420,970,64,17,4,nectar,DSC_0838.JPG +37433,721,2206,15,4,nectar,DSC_0838.JPG +3749,1858,271,17,4,nectar,DSC_0837.JPG +37499,1753,1225,17,4,nectar,DSC_0838.JPG +37501,2170,1351,16,4,nectar,DSC_0838.JPG +3752,5197,553,16,4,nectar,DSC_0837.JPG +3758,5254,916,17,5,nectar,DSC_0837.JPG +37668,55,1057,17,4,nectar,DSC_0838.JPG +37690,4462,574,17,4,nectar,DSC_0838.JPG +37707,5203,508,17,5,nectar,DSC_0838.JPG +3774,3589,355,17,5,nectar,DSC_0837.JPG +3777,949,451,15,5,nectar,DSC_0837.JPG +3781,5368,850,17,5,nectar,DSC_0837.JPG +37828,1072,2335,17,4,nectar,DSC_0838.JPG +3788,2167,208,17,5,nectar,DSC_0837.JPG +3789,2062,271,16,5,nectar,DSC_0837.JPG +3790,2416,283,17,5,nectar,DSC_0837.JPG +3810,142,187,15,4,nectar,DSC_0837.JPG +3813,2668,361,17,5,nectar,DSC_0837.JPG +3815,589,700,15,5,nectar,DSC_0837.JPG +3828,1816,340,17,4,nectar,DSC_0837.JPG +3845,1600,214,17,4,nectar,DSC_0837.JPG +38476,3949,1795,15,4,nectar,DSC_0838.JPG +3865,4387,109,17,4,nectar,DSC_0837.JPG +3867,1246,205,16,5,nectar,DSC_0837.JPG +3868,2272,277,17,5,nectar,DSC_0837.JPG +3869,3664,355,17,5,nectar,DSC_0837.JPG +3873,625,631,17,5,nectar,DSC_0837.JPG +3874,4657,739,17,4,nectar,DSC_0837.JPG +3878,5029,1273,16,4,nectar,DSC_0837.JPG +3886,3511,223,17,5,nectar,DSC_0837.JPG +39257,1600,2413,15,4,nectar,DSC_0838.JPG +3927,4027,229,15,5,nectar,DSC_0837.JPG +3928,3886,232,17,5,nectar,DSC_0837.JPG +3930,5386,487,16,5,nectar,DSC_0837.JPG +3935,4648,862,15,4,nectar,DSC_0837.JPG +39456,1813,2422,17,4,nectar,DSC_0838.JPG +39475,577,2410,15,4,nectar,DSC_0838.JPG +3952,808,325,15,5,nectar,DSC_0837.JPG +3955,5323,1030,17,5,nectar,DSC_0837.JPG +39563,2458,1357,17,4,nectar,DSC_0838.JPG +3968,2566,154,17,5,nectar,DSC_0837.JPG +3969,2776,160,16,5,nectar,DSC_0837.JPG +3970,2380,217,17,5,nectar,DSC_0837.JPG +3972,700,634,16,5,nectar,DSC_0837.JPG +4014,5383,610,17,5,nectar,DSC_0837.JPG +4036,1993,268,17,5,nectar,DSC_0837.JPG +4037,1924,271,16,4,nectar,DSC_0837.JPG +4039,2062,406,16,4,nectar,DSC_0837.JPG +4040,3487,412,17,5,nectar,DSC_0837.JPG +4061,4837,676,16,4,nectar,DSC_0837.JPG +4081,3169,220,17,5,nectar,DSC_0837.JPG +4083,1669,463,17,5,nectar,DSC_0837.JPG +4099,4096,103,17,5,nectar,DSC_0837.JPG +4100,3349,274,17,5,nectar,DSC_0837.JPG +4101,2029,340,16,5,nectar,DSC_0837.JPG +4102,592,445,16,4,nectar,DSC_0837.JPG +4103,877,580,15,4,nectar,DSC_0837.JPG +4147,3880,106,16,5,nectar,DSC_0837.JPG +4148,3517,352,17,5,nectar,DSC_0837.JPG +4149,697,508,15,5,nectar,DSC_0837.JPG +4181,4126,421,15,4,nectar,DSC_0837.JPG +4202,3919,172,16,5,nectar,DSC_0837.JPG +4204,4090,361,15,5,nectar,DSC_0837.JPG +4206,3556,418,17,5,nectar,DSC_0837.JPG +4207,5275,550,17,5,nectar,DSC_0837.JPG +4208,5233,613,17,5,nectar,DSC_0837.JPG +4209,844,640,16,4,nectar,DSC_0837.JPG +4235,1423,271,15,5,nectar,DSC_0837.JPG +4287,1060,265,15,4,nectar,DSC_0837.JPG +4288,3550,289,17,5,nectar,DSC_0837.JPG +4291,2308,349,17,5,nectar,DSC_0837.JPG +4292,4195,418,17,5,nectar,DSC_0837.JPG +4296,916,643,16,4,nectar,DSC_0837.JPG +4298,697,763,17,5,nectar,DSC_0837.JPG +4307,523,1423,15,4,nectar,DSC_0837.JPG +4325,304,808,17,5,nectar,DSC_0837.JPG +4328,5398,1264,15,5,nectar,DSC_0837.JPG +4347,808,577,17,5,nectar,DSC_0837.JPG +4350,415,754,17,5,nectar,DSC_0837.JPG +4376,5332,910,17,5,nectar,DSC_0837.JPG +4378,5242,1153,17,5,nectar,DSC_0837.JPG +4392,4867,862,15,5,nectar,DSC_0837.JPG +4393,5065,1210,15,5,nectar,DSC_0837.JPG +4409,3451,343,17,5,nectar,DSC_0837.JPG +4414,5371,733,17,5,nectar,DSC_0837.JPG +4418,268,1231,15,4,nectar,DSC_0837.JPG +4422,5206,1576,16,5,nectar,DSC_0837.JPG +4431,1267,2209,15,4,nectar,DSC_0837.JPG +4435,1060,394,16,5,nectar,DSC_0837.JPG +4440,199,868,16,5,nectar,DSC_0837.JPG +4463,1093,457,15,5,nectar,DSC_0837.JPG +4464,4486,544,16,4,nectar,DSC_0837.JPG +4467,988,892,17,5,nectar,DSC_0837.JPG +4481,2632,292,15,5,nectar,DSC_0837.JPG +4484,664,697,15,5,nectar,DSC_0837.JPG +4485,628,757,17,5,nectar,DSC_0837.JPG +4488,376,811,17,5,nectar,DSC_0837.JPG +4512,3418,280,17,5,nectar,DSC_0837.JPG +4513,808,445,17,5,nectar,DSC_0837.JPG +4532,2737,358,17,5,nectar,DSC_0837.JPG +4534,409,505,17,5,nectar,DSC_0837.JPG +4547,3658,226,17,5,nectar,DSC_0837.JPG +4549,5128,553,17,5,nectar,DSC_0837.JPG +4554,5248,1264,17,4,nectar,DSC_0837.JPG +4555,5245,1513,15,5,nectar,DSC_0837.JPG +4569,409,379,17,5,nectar,DSC_0837.JPG +4570,3625,421,17,5,nectar,DSC_0837.JPG +4572,3376,481,17,4,nectar,DSC_0837.JPG +4579,664,1066,17,5,nectar,DSC_0837.JPG +4596,3280,283,16,5,nectar,DSC_0837.JPG +4598,4879,484,17,4,nectar,DSC_0837.JPG +4602,5248,1390,15,5,nectar,DSC_0837.JPG +4604,190,1591,15,4,nectar,DSC_0837.JPG +4607,5125,1696,17,5,nectar,DSC_0837.JPG +4610,307,1771,16,4,nectar,DSC_0837.JPG +4623,3385,340,17,5,nectar,DSC_0837.JPG +4651,193,625,16,4,nectar,DSC_0837.JPG +4654,370,934,16,5,nectar,DSC_0837.JPG +4666,5425,544,17,5,nectar,DSC_0837.JPG +4668,5119,682,16,5,nectar,DSC_0837.JPG +4689,2461,91,15,4,nectar,DSC_0837.JPG +4691,2455,220,17,5,nectar,DSC_0837.JPG +4692,3919,295,16,5,nectar,DSC_0837.JPG +4695,805,952,16,4,nectar,DSC_0837.JPG +4697,5404,1030,16,5,nectar,DSC_0837.JPG +4699,379,1654,15,4,nectar,DSC_0837.JPG +4704,379,1771,15,5,nectar,DSC_0837.JPG +4717,3241,220,17,5,nectar,DSC_0837.JPG +4718,3988,292,16,5,nectar,DSC_0837.JPG +4722,484,1000,16,5,nectar,DSC_0837.JPG +4724,5173,1153,15,5,nectar,DSC_0837.JPG +4736,3697,292,17,5,nectar,DSC_0837.JPG +4744,271,994,15,4,nectar,DSC_0837.JPG +4745,5104,1159,15,4,nectar,DSC_0837.JPG +4756,2209,271,17,5,nectar,DSC_0837.JPG +4759,589,946,17,5,nectar,DSC_0837.JPG +4769,2533,91,15,4,nectar,DSC_0837.JPG +4793,2095,205,16,5,nectar,DSC_0837.JPG +4798,346,1474,15,5,nectar,DSC_0837.JPG +4807,3802,481,15,4,nectar,DSC_0837.JPG +4822,3064,286,17,5,nectar,DSC_0837.JPG +4825,805,703,16,4,nectar,DSC_0837.JPG +4843,3244,355,17,5,nectar,DSC_0837.JPG +4845,4903,802,15,5,nectar,DSC_0837.JPG +4846,1021,829,17,4,nectar,DSC_0837.JPG +4873,2308,211,15,4,nectar,DSC_0837.JPG +4874,2815,223,17,4,nectar,DSC_0837.JPG +4878,376,1054,15,5,nectar,DSC_0837.JPG +4892,520,940,17,5,nectar,DSC_0837.JPG +4898,271,1708,17,4,nectar,DSC_0837.JPG +4908,3349,412,16,5,nectar,DSC_0837.JPG +4922,415,1357,17,4,nectar,DSC_0837.JPG +4928,1825,208,16,4,nectar,DSC_0837.JPG +4932,520,820,17,5,nectar,DSC_0837.JPG +4947,628,1129,15,5,nectar,DSC_0837.JPG +4957,2137,274,17,5,nectar,DSC_0837.JPG +4967,304,1411,17,4,nectar,DSC_0837.JPG +4982,232,1051,17,4,nectar,DSC_0837.JPG +4984,379,1417,17,5,nectar,DSC_0837.JPG +4995,2530,220,17,5,nectar,DSC_0837.JPG +4996,1702,400,17,5,nectar,DSC_0837.JPG +5001,5440,964,15,5,nectar,DSC_0837.JPG +5014,1207,271,15,5,nectar,DSC_0837.JPG +5017,769,634,15,5,nectar,DSC_0837.JPG +5018,412,874,17,4,nectar,DSC_0837.JPG +5019,304,1054,17,4,nectar,DSC_0837.JPG +5028,2599,229,17,5,nectar,DSC_0837.JPG +5033,265,1117,17,4,nectar,DSC_0837.JPG +5035,382,1531,17,5,nectar,DSC_0837.JPG +5044,5287,970,15,5,nectar,DSC_0837.JPG +5046,625,1252,17,5,nectar,DSC_0837.JPG +5059,1024,580,17,5,nectar,DSC_0837.JPG +5061,448,811,17,5,nectar,DSC_0837.JPG +5073,4834,799,16,4,nectar,DSC_0837.JPG +5084,2380,346,16,5,nectar,DSC_0837.JPG +5087,736,823,17,5,nectar,DSC_0837.JPG +5102,451,1057,17,5,nectar,DSC_0837.JPG +5104,307,1531,17,4,nectar,DSC_0837.JPG +5111,3133,286,17,4,nectar,DSC_0837.JPG +5113,553,760,17,5,nectar,DSC_0837.JPG +5122,3481,286,17,5,nectar,DSC_0837.JPG +5125,5218,856,17,5,nectar,DSC_0837.JPG +5138,2707,295,17,5,nectar,DSC_0837.JPG +5152,658,820,15,5,nectar,DSC_0837.JPG +5155,448,937,17,5,nectar,DSC_0837.JPG +5158,415,1597,15,4,nectar,DSC_0837.JPG +5162,412,1000,15,5,nectar,DSC_0837.JPG +5169,697,886,17,5,nectar,DSC_0837.JPG +5173,379,1294,17,5,nectar,DSC_0837.JPG +5180,559,1003,15,4,nectar,DSC_0837.JPG +5189,553,883,17,5,nectar,DSC_0837.JPG +5195,5368,970,17,5,nectar,DSC_0837.JPG +5202,4132,295,17,4,nectar,DSC_0837.JPG +5209,952,703,15,4,nectar,DSC_0837.JPG +5212,658,946,15,4,nectar,DSC_0837.JPG +5213,733,949,17,5,nectar,DSC_0837.JPG +5214,697,1129,16,5,nectar,DSC_0837.JPG +5225,2851,286,17,5,nectar,DSC_0837.JPG +5227,2455,352,16,4,nectar,DSC_0837.JPG +5231,5086,1873,15,5,nectar,DSC_0837.JPG +5240,5440,853,15,5,nectar,DSC_0837.JPG +5252,199,994,15,4,nectar,DSC_0837.JPG +5261,5464,475,16,4,nectar,DSC_0837.JPG +5274,2884,223,17,5,nectar,DSC_0837.JPG +5275,2563,295,15,5,nectar,DSC_0837.JPG +5279,556,1366,15,4,nectar,DSC_0837.JPG +5280,268,1474,17,4,nectar,DSC_0837.JPG +5285,625,1009,17,5,nectar,DSC_0837.JPG +5286,5437,1090,15,5,nectar,DSC_0837.JPG +5291,412,1120,17,5,nectar,DSC_0837.JPG +5302,307,934,15,5,nectar,DSC_0837.JPG +5303,589,1069,17,5,nectar,DSC_0837.JPG +5325,592,817,17,5,nectar,DSC_0837.JPG +5328,235,1414,17,4,nectar,DSC_0837.JPG +5338,2740,232,15,5,nectar,DSC_0837.JPG +5370,5458,607,16,4,nectar,DSC_0837.JPG +5371,766,766,15,5,nectar,DSC_0837.JPG +5378,736,1072,15,4,nectar,DSC_0837.JPG +5385,232,1654,17,4,nectar,DSC_0837.JPG +5392,556,1243,15,4,nectar,DSC_0837.JPG +5404,2494,286,17,5,nectar,DSC_0837.JPG +5424,5449,343,17,4,nectar,DSC_0837.JPG +5435,196,751,17,5,nectar,DSC_0837.JPG +5439,520,1300,17,4,nectar,DSC_0837.JPG +5464,337,1114,15,4,nectar,DSC_0837.JPG +5476,343,1360,17,4,nectar,DSC_0837.JPG +5495,5176,124,15,5,nectar,DSC_0837.JPG +5505,451,1180,17,5,nectar,DSC_0837.JPG +5515,2773,295,15,4,nectar,DSC_0837.JPG +5603,379,1174,15,5,nectar,DSC_0837.JPG +5630,415,1243,15,5,nectar,DSC_0837.JPG +5644,304,1291,17,4,nectar,DSC_0837.JPG +5908,1678,223,15,4,nectar,DSC_0837.JPG +5926,229,946,17,5,nectar,DSC_0837.JPG +5980,1567,151,17,4,nectar,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6060,3229,568,15,4,nectar,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +619,94,232,15,5,nectar,DSC_0844.JPG +6264,2248,991,16,4,nectar,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6514,2848,1786,17,4,nectar,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6639,883,970,17,4,nectar,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6787,2128,1456,15,4,nectar,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6848,3814,424,16,4,nectar,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6946,2467,1774,16,4,nectar,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7189,2434,1840,17,4,nectar,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +774,4984,403,17,5,nectar,DSC_0844.JPG +863,5338,322,17,5,nectar,DSC_0844.JPG +9425,1021,427,17,4,nectar,DSC_0848.JPG +9494,3970,208,16,4,nectar,DSC_0848.JPG +9631,4813,709,17,4,nectar,DSC_0848.JPG +98,5212,394,17,5,nectar,DSC_0844.JPG +1,3178,178,16,1,other,DSC_0844.JPG +10,874,205,16,1,other,DSC_0844.JPG +10001,2944,757,15,1,other,DSC_0848.JPG +10002,3157,760,17,1,other,DSC_0848.JPG +10003,4909,772,17,1,other,DSC_0848.JPG +10004,2770,814,17,1,other,DSC_0848.JPG +10005,1090,1042,15,1,other,DSC_0848.JPG +10007,4795,1072,15,1,other,DSC_0848.JPG +10008,3817,1183,15,1,other,DSC_0848.JPG +10009,1687,1225,17,1,other,DSC_0848.JPG +1001,3964,2182,15,1,other,DSC_0844.JPG +10010,3997,1243,17,1,other,DSC_0848.JPG +10011,1024,1276,15,1,other,DSC_0848.JPG +10012,4066,1363,17,1,other,DSC_0848.JPG +10013,5002,1420,17,1,other,DSC_0848.JPG +10014,1822,1462,15,1,other,DSC_0848.JPG +10015,1954,1582,15,5,other,DSC_0848.JPG +10016,2971,1654,15,1,other,DSC_0848.JPG +10017,4516,1774,17,1,other,DSC_0848.JPG +10018,4996,1774,16,1,other,DSC_0848.JPG +10019,4198,1834,17,1,other,DSC_0848.JPG +10020,4483,1834,15,1,other,DSC_0848.JPG +10022,2416,2113,15,1,other,DSC_0848.JPG +10023,2521,2173,15,1,other,DSC_0848.JPG +10024,2485,2230,15,1,other,DSC_0848.JPG +10025,4570,2350,15,1,other,DSC_0848.JPG +10026,2143,70,15,1,other,DSC_0848.JPG +10027,3163,136,16,1,other,DSC_0848.JPG +10028,2287,196,17,1,other,DSC_0848.JPG +10029,2425,322,17,1,other,DSC_0848.JPG +1003,3403,2299,16,1,other,DSC_0844.JPG +10030,3757,328,17,1,other,DSC_0848.JPG +10031,1687,376,17,1,other,DSC_0848.JPG +10032,2806,388,16,1,other,DSC_0848.JPG +10033,4210,649,17,1,other,DSC_0848.JPG +10034,454,667,17,1,other,DSC_0848.JPG +10035,4459,706,17,1,other,DSC_0848.JPG +10036,4174,709,17,1,other,DSC_0848.JPG +10037,985,736,17,1,other,DSC_0848.JPG +10038,1339,736,17,1,other,DSC_0848.JPG +10039,1897,742,17,1,other,DSC_0848.JPG +1004,1057,142,15,1,other,DSC_0844.JPG +10040,3469,1186,16,1,other,DSC_0848.JPG +10041,5146,1300,17,1,other,DSC_0848.JPG +10042,1333,1345,17,1,other,DSC_0848.JPG +10043,4654,1417,17,1,other,DSC_0848.JPG +10044,4963,1717,17,1,other,DSC_0848.JPG +10045,3217,1834,15,1,other,DSC_0848.JPG +10046,4021,1894,17,1,other,DSC_0848.JPG +10047,1129,1915,15,1,other,DSC_0848.JPG +10048,1612,1927,15,1,other,DSC_0848.JPG +10049,1753,1930,17,1,other,DSC_0848.JPG +10050,1579,1984,15,1,other,DSC_0848.JPG +10051,3736,2134,15,1,other,DSC_0848.JPG +10052,4606,2176,15,1,other,DSC_0848.JPG +10053,1168,2206,17,1,other,DSC_0848.JPG +10054,2983,76,17,1,other,DSC_0848.JPG +10055,3904,208,17,1,other,DSC_0848.JPG +10056,1966,250,17,1,other,DSC_0848.JPG +10057,3406,574,17,1,other,DSC_0848.JPG +10058,2527,628,17,1,other,DSC_0848.JPG +10059,3190,697,15,1,other,DSC_0848.JPG +10060,3400,700,17,1,other,DSC_0848.JPG +10061,844,733,17,1,other,DSC_0848.JPG +10062,4561,775,17,1,other,DSC_0848.JPG +10063,1510,802,15,1,other,DSC_0848.JPG +10064,3262,820,17,1,other,DSC_0848.JPG +10065,4105,826,15,1,other,DSC_0848.JPG +10066,1057,859,17,1,other,DSC_0848.JPG +10067,1477,865,17,1,other,DSC_0848.JPG +10069,1618,1108,15,1,other,DSC_0848.JPG +1007,2467,307,17,1,other,DSC_0844.JPG +10070,3364,1126,15,1,other,DSC_0848.JPG +10071,4276,1243,17,1,other,DSC_0848.JPG +10073,4450,1417,17,1,other,DSC_0848.JPG +10074,1474,1462,17,1,other,DSC_0848.JPG +10075,1129,1567,17,1,other,DSC_0848.JPG +10076,5032,1594,17,1,other,DSC_0848.JPG +10077,4858,1891,15,1,other,DSC_0848.JPG +10078,4822,2065,16,1,other,DSC_0848.JPG +10079,2413,2230,15,1,other,DSC_0848.JPG +10080,424,118,17,1,other,DSC_0848.JPG +10081,2176,133,17,1,other,DSC_0848.JPG +10082,985,241,15,1,other,DSC_0848.JPG +10083,4357,274,16,1,other,DSC_0848.JPG +10084,844,364,17,1,other,DSC_0848.JPG +10085,3160,391,17,1,other,DSC_0848.JPG +10086,736,424,17,1,other,DSC_0848.JPG +10087,4531,463,17,1,other,DSC_0848.JPG +10088,4072,520,17,1,other,DSC_0848.JPG +10089,4039,583,15,1,other,DSC_0848.JPG +10090,3865,640,16,1,other,DSC_0848.JPG +10091,2911,691,17,1,other,DSC_0848.JPG +10092,4384,706,17,1,other,DSC_0848.JPG +10093,1753,742,17,1,other,DSC_0848.JPG +10094,2983,817,15,1,other,DSC_0848.JPG +10095,3646,883,15,1,other,DSC_0848.JPG +10096,4909,892,17,1,other,DSC_0848.JPG +10097,4174,949,15,1,other,DSC_0848.JPG +10098,1270,982,15,1,other,DSC_0848.JPG +10099,709,1210,15,1,other,DSC_0848.JPG +10101,3817,1306,16,1,other,DSC_0848.JPG +10102,1543,1462,15,1,other,DSC_0848.JPG +10103,5032,1717,17,1,other,DSC_0848.JPG +10104,2068,1999,15,1,other,DSC_0848.JPG +10105,4357,403,17,1,other,DSC_0848.JPG +10106,4321,463,17,1,other,DSC_0848.JPG +10107,4213,523,17,1,other,DSC_0848.JPG +10108,877,550,17,1,other,DSC_0848.JPG +10109,1513,679,17,1,other,DSC_0848.JPG +10110,3226,760,17,1,other,DSC_0848.JPG +10111,3364,883,15,1,other,DSC_0848.JPG +10112,3961,949,15,1,other,DSC_0848.JPG +10113,5086,949,17,1,other,DSC_0848.JPG +10115,1477,1228,17,1,other,DSC_0848.JPG +10116,1093,1282,17,1,other,DSC_0848.JPG +10117,3325,1303,15,1,other,DSC_0848.JPG +10118,5146,1414,17,1,other,DSC_0848.JPG +10119,4312,1417,17,1,other,DSC_0848.JPG +10120,4519,1420,16,1,other,DSC_0848.JPG +10121,5035,1477,15,1,other,DSC_0848.JPG +10122,4897,1480,16,1,other,DSC_0848.JPG +10123,4270,1720,15,1,other,DSC_0848.JPG +10124,4447,1777,16,1,other,DSC_0848.JPG +10125,4993,1888,17,1,other,DSC_0848.JPG +10126,3418,2074,15,1,other,DSC_0848.JPG +10127,3598,2134,15,1,other,DSC_0848.JPG +10128,1510,61,17,1,other,DSC_0848.JPG +10129,4252,91,15,1,other,DSC_0848.JPG +1013,4708,856,17,1,other,DSC_0844.JPG +10130,1369,184,16,1,other,DSC_0848.JPG +10131,3334,202,17,1,other,DSC_0848.JPG +10132,2179,253,17,1,other,DSC_0848.JPG +10133,2734,262,16,1,other,DSC_0848.JPG +10134,2701,322,17,1,other,DSC_0848.JPG +10135,3124,325,16,1,other,DSC_0848.JPG +10136,1897,376,16,1,other,DSC_0848.JPG +10137,4699,1009,17,1,other,DSC_0848.JPG +10138,1651,1048,16,1,other,DSC_0848.JPG +10139,3820,1066,17,1,other,DSC_0848.JPG +10141,4624,1129,15,1,other,DSC_0848.JPG +10143,1927,1288,15,1,other,DSC_0848.JPG +10144,4204,1363,17,1,other,DSC_0848.JPG +10145,3397,1417,17,1,other,DSC_0848.JPG +10146,3217,1474,17,1,other,DSC_0848.JPG +10149,1786,1639,15,1,other,DSC_0848.JPG +10150,1648,1753,15,1,other,DSC_0848.JPG +10151,2836,1771,15,1,other,DSC_0848.JPG +10152,4234,1894,17,1,other,DSC_0848.JPG +10153,3670,2017,17,1,other,DSC_0848.JPG +10154,1792,2107,15,1,other,DSC_0848.JPG +10155,1894,2167,15,1,other,DSC_0848.JPG +10156,3982,2188,17,1,other,DSC_0848.JPG +10157,3664,2251,15,1,other,DSC_0848.JPG +10158,4642,2350,15,1,other,DSC_0848.JPG +10159,1018,58,17,1,other,DSC_0848.JPG +10160,1405,118,17,1,other,DSC_0848.JPG +10161,2110,256,17,1,other,DSC_0848.JPG +10162,4885,337,17,1,other,DSC_0848.JPG +10163,2143,442,17,1,other,DSC_0848.JPG +10164,1861,559,17,1,other,DSC_0848.JPG +10165,4564,652,17,1,other,DSC_0848.JPG +10166,3478,700,17,1,other,DSC_0848.JPG +10167,3964,823,15,1,other,DSC_0848.JPG +10168,1336,859,15,1,other,DSC_0848.JPG +10169,3085,880,16,1,other,DSC_0848.JPG +10170,1825,991,15,1,other,DSC_0848.JPG +10176,1372,1396,17,1,other,DSC_0848.JPG +10177,1270,1456,15,1,other,DSC_0848.JPG +10178,4624,1594,17,1,other,DSC_0848.JPG +10179,3985,1837,16,1,other,DSC_0848.JPG +1018,331,1249,17,1,other,DSC_0844.JPG +10180,4444,1894,15,1,other,DSC_0848.JPG +10181,3808,1897,15,1,other,DSC_0848.JPG +10182,4924,2008,15,1,other,DSC_0848.JPG +10183,4159,2014,15,1,other,DSC_0848.JPG +10184,4051,2074,15,1,other,DSC_0848.JPG +10185,1720,2107,15,1,other,DSC_0848.JPG +10186,2797,2182,15,1,other,DSC_0848.JPG +10187,2692,2236,15,1,other,DSC_0848.JPG +10188,4327,2302,15,1,other,DSC_0848.JPG +10189,2389,136,15,1,other,DSC_0848.JPG +10190,2422,196,16,1,other,DSC_0848.JPG +10191,2560,199,17,1,other,DSC_0848.JPG +10192,313,298,17,1,other,DSC_0848.JPG +10193,1267,367,17,1,other,DSC_0848.JPG +10194,2875,385,17,1,other,DSC_0848.JPG +10195,1264,490,15,1,other,DSC_0848.JPG +10196,1474,496,15,1,other,DSC_0848.JPG +10197,1546,496,15,1,other,DSC_0848.JPG +10198,3190,574,15,1,other,DSC_0848.JPG +10199,1231,676,17,1,other,DSC_0848.JPG +10200,2872,757,15,1,other,DSC_0848.JPG +10201,880,796,17,1,other,DSC_0848.JPG +10202,1369,802,15,1,other,DSC_0848.JPG +10203,811,913,17,1,other,DSC_0848.JPG +10205,3049,943,17,1,other,DSC_0848.JPG +10206,1198,982,15,1,other,DSC_0848.JPG +10207,739,1033,17,1,other,DSC_0848.JPG +10208,1789,1051,15,1,other,DSC_0848.JPG +10209,3187,1060,15,1,other,DSC_0848.JPG +1021,4906,1336,15,1,other,DSC_0844.JPG +10210,4033,1063,17,1,other,DSC_0848.JPG +10211,1060,1102,15,1,other,DSC_0848.JPG +10212,4414,1129,17,1,other,DSC_0848.JPG +10213,4969,1246,15,1,other,DSC_0848.JPG +10214,1684,1342,17,1,other,DSC_0848.JPG +10215,4273,1363,15,1,other,DSC_0848.JPG +10216,3814,1420,17,1,other,DSC_0848.JPG +10217,1372,1516,15,1,other,DSC_0848.JPG +10218,1024,1627,15,1,other,DSC_0848.JPG +10219,4057,1714,17,1,other,DSC_0848.JPG +1022,145,1399,15,1,other,DSC_0844.JPG +10220,1060,1798,17,1,other,DSC_0848.JPG +10221,4372,1891,17,1,other,DSC_0848.JPG +10222,1648,1984,17,1,other,DSC_0848.JPG +10223,1099,2089,17,1,other,DSC_0848.JPG +10224,1168,2089,17,1,other,DSC_0848.JPG +10225,2068,2113,15,1,other,DSC_0848.JPG +10226,2353,70,17,1,other,DSC_0848.JPG +10227,1300,181,17,1,other,DSC_0848.JPG +10228,493,238,17,1,other,DSC_0848.JPG +10229,457,301,16,1,other,DSC_0848.JPG +10230,1162,427,17,1,other,DSC_0848.JPG +10231,1579,436,16,1,other,DSC_0848.JPG +10232,3583,517,17,1,other,DSC_0848.JPG +10233,3865,520,15,1,other,DSC_0848.JPG +10234,3547,577,17,1,other,DSC_0848.JPG +10236,4102,952,17,1,other,DSC_0848.JPG +10238,778,1093,17,1,other,DSC_0848.JPG +10239,3712,1246,17,1,other,DSC_0848.JPG +1024,4615,1570,17,1,other,DSC_0844.JPG +10240,4483,1600,15,1,other,DSC_0848.JPG +10241,1921,1759,15,1,other,DSC_0848.JPG +10242,1888,1816,15,1,other,DSC_0848.JPG +10243,4960,1834,16,1,other,DSC_0848.JPG +10244,1306,1864,15,1,other,DSC_0848.JPG +10246,4090,2014,15,1,other,DSC_0848.JPG +10247,1066,2029,17,1,other,DSC_0848.JPG +10248,2662,2059,15,1,other,DSC_0848.JPG +10249,3001,2068,15,1,other,DSC_0848.JPG +10250,2209,2113,15,1,other,DSC_0848.JPG +10251,3385,2134,15,1,other,DSC_0848.JPG +10252,3769,2308,17,1,other,DSC_0848.JPG +10253,4534,91,15,1,other,DSC_0848.JPG +10254,703,115,17,1,other,DSC_0848.JPG +10255,808,181,16,1,other,DSC_0848.JPG +10256,2593,262,17,1,other,DSC_0848.JPG +10257,4495,277,16,1,other,DSC_0848.JPG +10258,1159,304,17,1,other,DSC_0848.JPG +10259,1969,376,17,1,other,DSC_0848.JPG +1026,3208,1696,17,1,other,DSC_0844.JPG +10260,4009,394,15,1,other,DSC_0848.JPG +10261,1228,553,17,1,other,DSC_0848.JPG +10262,3085,631,17,1,other,DSC_0848.JPG +10263,4141,646,15,1,other,DSC_0848.JPG +10264,3829,706,17,1,other,DSC_0848.JPG +10265,1825,745,17,1,other,DSC_0848.JPG +10266,3442,763,15,1,other,DSC_0848.JPG +10267,4069,769,17,1,other,DSC_0848.JPG +10268,1018,796,17,1,other,DSC_0848.JPG +10269,5323,886,15,1,other,DSC_0848.JPG +10270,388,901,15,1,other,DSC_0848.JPG +10272,634,970,17,1,other,DSC_0848.JPG +10273,3295,1003,17,1,other,DSC_0848.JPG +10274,4492,1012,17,1,other,DSC_0848.JPG +10275,1582,1045,17,1,other,DSC_0848.JPG +10276,1543,1228,15,1,other,DSC_0848.JPG +10278,1822,1345,15,1,other,DSC_0848.JPG +10279,3217,1357,17,1,other,DSC_0848.JPG +10280,538,1375,17,1,other,DSC_0848.JPG +10281,3466,1423,17,1,other,DSC_0848.JPG +10282,3637,1480,17,1,other,DSC_0848.JPG +10283,4273,1480,17,1,other,DSC_0848.JPG +10285,1234,1633,17,1,other,DSC_0848.JPG +10286,5167,1828,17,1,other,DSC_0848.JPG +10288,3634,1957,17,1,other,DSC_0848.JPG +10289,1756,2047,17,1,other,DSC_0848.JPG +10290,1375,2098,15,1,other,DSC_0848.JPG +10291,3523,2134,15,1,other,DSC_0848.JPG +10292,2422,73,16,1,other,DSC_0848.JPG +10293,3832,82,16,1,other,DSC_0848.JPG +10294,2983,325,15,1,other,DSC_0848.JPG +10295,2908,328,15,1,other,DSC_0848.JPG +10298,1333,490,16,1,other,DSC_0848.JPG +10299,3370,514,17,1,other,DSC_0848.JPG +10300,667,547,17,1,other,DSC_0848.JPG +10301,1546,619,17,1,other,DSC_0848.JPG +10302,805,673,17,1,other,DSC_0848.JPG +10303,2767,691,17,1,other,DSC_0848.JPG +10304,4774,769,17,1,other,DSC_0848.JPG +10305,559,850,17,1,other,DSC_0848.JPG +10306,1858,928,17,1,other,DSC_0848.JPG +10307,4657,1303,15,1,other,DSC_0848.JPG +10308,4240,1417,15,1,other,DSC_0848.JPG +1031,2782,1930,16,1,other,DSC_0844.JPG +10310,3322,1537,17,1,other,DSC_0848.JPG +10311,3391,1540,15,1,other,DSC_0848.JPG +10312,4552,1717,17,1,other,DSC_0848.JPG +10313,1096,1744,15,1,other,DSC_0848.JPG +10314,4621,1831,15,1,other,DSC_0848.JPG +10315,1786,1873,16,1,other,DSC_0848.JPG +10317,5098,1945,17,1,other,DSC_0848.JPG +10318,3316,2011,17,1,other,DSC_0848.JPG +10319,4783,2119,15,1,other,DSC_0848.JPG +10320,3667,2134,16,1,other,DSC_0848.JPG +10321,2554,2230,15,1,other,DSC_0848.JPG +10322,1444,61,17,1,other,DSC_0848.JPG +10323,3976,82,17,1,other,DSC_0848.JPG +10324,2527,136,16,1,other,DSC_0848.JPG +10325,2806,139,15,1,other,DSC_0848.JPG +10326,1057,367,17,1,other,DSC_0848.JPG +10328,1861,436,17,1,other,DSC_0848.JPG +10329,4675,463,17,1,other,DSC_0848.JPG +10330,1648,559,17,1,other,DSC_0848.JPG +10331,844,607,17,1,other,DSC_0848.JPG +10332,1057,613,16,1,other,DSC_0848.JPG +10333,1786,685,17,1,other,DSC_0848.JPG +10335,4003,769,17,1,other,DSC_0848.JPG +10336,3613,826,17,1,other,DSC_0848.JPG +10337,1753,988,16,1,other,DSC_0848.JPG +10339,3433,1123,17,1,other,DSC_0848.JPG +1034,4774,2110,17,1,other,DSC_0844.JPG +10340,5044,1132,17,1,other,DSC_0848.JPG +10341,4033,1186,15,1,other,DSC_0848.JPG +10342,1336,1222,17,1,other,DSC_0848.JPG +10343,4135,1240,15,1,other,DSC_0848.JPG +10344,1615,1342,17,1,other,DSC_0848.JPG +10345,3775,1486,17,1,other,DSC_0848.JPG +10346,5137,1534,17,1,other,DSC_0848.JPG +10347,1615,1576,17,1,other,DSC_0848.JPG +10348,3355,1594,17,1,other,DSC_0848.JPG +10349,3214,1597,17,1,other,DSC_0848.JPG +10350,3463,1657,16,1,other,DSC_0848.JPG +10351,3217,1717,17,1,other,DSC_0848.JPG +10352,3145,1951,15,1,other,DSC_0848.JPG +10353,2488,1996,16,1,other,DSC_0848.JPG +10354,4609,2062,15,1,other,DSC_0848.JPG +10355,3772,2074,15,1,other,DSC_0848.JPG +10356,3946,2131,15,1,other,DSC_0848.JPG +10357,1102,2203,17,1,other,DSC_0848.JPG +10358,3805,2362,15,1,other,DSC_0848.JPG +10359,1582,61,15,1,other,DSC_0848.JPG +10360,1264,244,16,1,other,DSC_0848.JPG +10361,1615,250,17,1,other,DSC_0848.JPG +10362,4567,274,15,1,other,DSC_0848.JPG +10363,1933,313,17,1,other,DSC_0848.JPG +10364,1333,367,15,1,other,DSC_0848.JPG +10365,4282,649,17,1,other,DSC_0848.JPG +10366,1300,679,17,1,other,DSC_0848.JPG +10367,2983,694,15,1,other,DSC_0848.JPG +10368,595,787,17,1,other,DSC_0848.JPG +10369,3862,889,17,1,other,DSC_0848.JPG +1037,1090,85,15,1,other,DSC_0844.JPG +10370,1024,919,15,1,other,DSC_0848.JPG +10371,3403,943,17,1,other,DSC_0848.JPG +10372,3823,949,17,1,other,DSC_0848.JPG +10373,4348,1009,15,1,other,DSC_0848.JPG +10374,4066,1129,16,1,other,DSC_0848.JPG +10376,4867,1189,15,1,other,DSC_0848.JPG +10377,4621,1363,15,1,other,DSC_0848.JPG +10379,1717,1522,15,1,other,DSC_0848.JPG +10380,1684,1579,15,1,other,DSC_0848.JPG +10381,1303,1630,15,1,other,DSC_0848.JPG +10382,3178,1774,15,1,other,DSC_0848.JPG +10383,3424,1837,17,1,other,DSC_0848.JPG +10385,4615,1951,15,1,other,DSC_0848.JPG +10386,3493,1957,17,1,other,DSC_0848.JPG +10387,1303,1978,15,1,other,DSC_0848.JPG +10388,4579,2005,15,1,other,DSC_0848.JPG +10389,2659,2176,15,1,other,DSC_0848.JPG +10390,4330,2182,17,1,other,DSC_0848.JPG +10391,3844,2191,15,1,other,DSC_0848.JPG +10392,1309,2209,15,1,other,DSC_0848.JPG +10393,3139,2308,17,1,other,DSC_0848.JPG +10394,3901,85,17,1,other,DSC_0848.JPG +10395,4462,94,17,1,other,DSC_0848.JPG +10396,1756,127,17,1,other,DSC_0848.JPG +10397,4636,151,17,1,other,DSC_0848.JPG +10398,844,241,17,1,other,DSC_0848.JPG +10399,4813,586,17,1,other,DSC_0848.JPG +10400,4354,649,17,1,other,DSC_0848.JPG +10401,3052,697,16,1,other,DSC_0848.JPG +10402,1411,859,17,1,other,DSC_0848.JPG +10403,4492,889,17,1,other,DSC_0848.JPG +10404,4906,1015,17,1,other,DSC_0848.JPG +10405,5290,1060,15,1,other,DSC_0848.JPG +10406,3892,1069,17,1,other,DSC_0848.JPG +10407,4174,1069,15,1,other,DSC_0848.JPG +10408,4381,1069,15,1,other,DSC_0848.JPG +10409,745,1150,17,1,other,DSC_0848.JPG +10411,919,1333,17,1,other,DSC_0848.JPG +10412,1162,1396,17,1,other,DSC_0848.JPG +10413,3742,1420,17,1,other,DSC_0848.JPG +10414,1957,1465,15,1,other,DSC_0848.JPG +10416,3112,1537,17,1,other,DSC_0848.JPG +10417,919,1564,15,1,other,DSC_0848.JPG +10418,1543,1576,15,1,other,DSC_0848.JPG +10419,4057,1600,15,1,other,DSC_0848.JPG +10420,1714,1636,15,1,other,DSC_0848.JPG +10421,1510,2101,15,1,other,DSC_0848.JPG +10422,2863,2185,15,1,other,DSC_0848.JPG +10423,2275,2230,15,1,other,DSC_0848.JPG +10424,4993,154,17,1,other,DSC_0848.JPG +10425,1297,304,17,1,other,DSC_0848.JPG +10426,2071,313,15,1,other,DSC_0848.JPG +10427,283,358,15,1,other,DSC_0848.JPG +10428,3367,637,17,1,other,DSC_0848.JPG +10429,3934,640,17,1,other,DSC_0848.JPG +10430,1720,685,17,1,other,DSC_0848.JPG +10431,1861,802,17,1,other,DSC_0848.JPG +10432,4036,823,17,1,other,DSC_0848.JPG +10433,3472,826,15,1,other,DSC_0848.JPG +10434,988,982,17,1,other,DSC_0848.JPG +10436,1024,1042,17,1,other,DSC_0848.JPG +10437,1165,1048,17,1,other,DSC_0848.JPG +10438,2698,1054,15,1,other,DSC_0848.JPG +10439,3643,1123,17,1,other,DSC_0848.JPG +10440,4519,1186,15,1,other,DSC_0848.JPG +10441,5314,1228,17,1,other,DSC_0848.JPG +10443,1723,1285,17,1,other,DSC_0848.JPG +10444,5251,1354,17,1,other,DSC_0848.JPG +10445,4825,1474,17,1,other,DSC_0848.JPG +10446,1234,1513,16,1,other,DSC_0848.JPG +10447,3181,1534,17,1,other,DSC_0848.JPG +10448,3499,1597,17,1,other,DSC_0848.JPG +10449,919,1681,17,1,other,DSC_0848.JPG +1045,5215,964,17,1,other,DSC_0844.JPG +10450,1717,1756,15,1,other,DSC_0848.JPG +10451,4723,1777,17,1,other,DSC_0848.JPG +10452,3040,1888,17,1,other,DSC_0848.JPG +10453,4789,1891,15,1,other,DSC_0848.JPG +10455,3529,1894,17,1,other,DSC_0848.JPG +10457,4480,1951,17,1,other,DSC_0848.JPG +10458,3421,1954,15,1,other,DSC_0848.JPG +10459,5134,2005,17,1,other,DSC_0848.JPG +10460,4300,2011,15,1,other,DSC_0848.JPG +10461,2587,2059,17,1,other,DSC_0848.JPG +10462,1582,2104,15,1,other,DSC_0848.JPG +10463,4087,2131,15,1,other,DSC_0848.JPG +10464,3382,2251,17,1,other,DSC_0848.JPG +10465,3208,2305,15,1,other,DSC_0848.JPG +10466,4015,2362,15,1,other,DSC_0848.JPG +10467,2620,2464,15,1,other,DSC_0848.JPG +10468,880,61,17,1,other,DSC_0848.JPG +10469,1648,64,16,1,other,DSC_0848.JPG +10470,1792,64,17,1,other,DSC_0848.JPG +10471,4672,94,15,1,other,DSC_0848.JPG +10472,385,298,17,1,other,DSC_0848.JPG +10473,559,487,17,1,other,DSC_0848.JPG +10474,457,544,17,1,other,DSC_0848.JPG +10475,4072,640,17,1,other,DSC_0848.JPG +10478,1408,982,15,1,other,DSC_0848.JPG +10479,1585,1168,17,1,other,DSC_0848.JPG +10480,955,1273,17,1,other,DSC_0848.JPG +10481,3889,1306,17,1,other,DSC_0848.JPG +10482,4378,1420,17,1,other,DSC_0848.JPG +10483,4204,1483,17,1,other,DSC_0848.JPG +10484,3670,1543,17,1,other,DSC_0848.JPG +10485,988,1567,15,1,other,DSC_0848.JPG +10487,3076,1951,15,1,other,DSC_0848.JPG +10488,1927,1996,16,1,other,DSC_0848.JPG +10489,4855,2005,15,1,other,DSC_0848.JPG +10490,1684,2047,15,1,other,DSC_0848.JPG +10491,4474,2065,15,1,other,DSC_0848.JPG +10492,2455,136,17,1,other,DSC_0848.JPG +10493,4495,151,17,1,other,DSC_0848.JPG +10494,877,181,17,1,other,DSC_0848.JPG +10495,703,244,17,1,other,DSC_0848.JPG +10496,3298,265,17,1,other,DSC_0848.JPG +10497,4078,271,16,1,other,DSC_0848.JPG +10499,5335,280,15,1,other,DSC_0848.JPG +10500,949,304,17,1,other,DSC_0848.JPG +10501,3901,331,16,1,other,DSC_0848.JPG +10502,1408,370,15,1,other,DSC_0848.JPG +10503,3442,385,17,1,other,DSC_0848.JPG +10504,4108,463,17,1,other,DSC_0848.JPG +10505,5125,520,17,1,other,DSC_0848.JPG +10506,1372,556,15,1,other,DSC_0848.JPG +10507,1615,742,17,1,other,DSC_0848.JPG +10508,2626,808,17,1,other,DSC_0848.JPG +10509,1093,922,17,1,other,DSC_0848.JPG +10510,3331,946,16,1,other,DSC_0848.JPG +10512,2800,997,15,1,other,DSC_0848.JPG +10513,5047,1015,17,1,other,DSC_0848.JPG +10515,3400,1063,17,1,other,DSC_0848.JPG +10516,4762,1129,15,1,other,DSC_0848.JPG +10517,4309,1183,17,1,other,DSC_0848.JPG +10518,4483,1480,15,1,other,DSC_0848.JPG +10519,4621,1480,16,1,other,DSC_0848.JPG +10520,4021,1540,17,1,other,DSC_0848.JPG +10521,3670,1774,17,1,other,DSC_0848.JPG +10522,1684,1813,15,1,other,DSC_0848.JPG +10523,5239,1825,15,1,other,DSC_0848.JPG +10524,1717,1873,15,1,other,DSC_0848.JPG +10525,3385,1897,15,1,other,DSC_0848.JPG +10526,4159,2131,16,1,other,DSC_0848.JPG +10527,1411,2155,16,1,other,DSC_0848.JPG +10528,2623,2233,15,1,other,DSC_0848.JPG +10529,3664,2365,15,1,other,DSC_0848.JPG +10530,283,118,15,1,other,DSC_0848.JPG +10531,3583,139,17,1,other,DSC_0848.JPG +10532,631,244,15,1,other,DSC_0848.JPG +10533,2317,256,17,1,other,DSC_0848.JPG +10534,3580,388,15,1,other,DSC_0848.JPG +10535,3547,451,16,1,other,DSC_0848.JPG +10536,4564,523,17,1,other,DSC_0848.JPG +10537,2002,562,17,1,other,DSC_0848.JPG +10538,673,916,17,1,other,DSC_0848.JPG +10539,4420,1006,15,1,other,DSC_0848.JPG +10540,952,1042,17,1,other,DSC_0848.JPG +10541,4486,1126,17,1,other,DSC_0848.JPG +10544,4759,1243,15,1,other,DSC_0848.JPG +10545,1300,1279,17,1,other,DSC_0848.JPG +10546,1579,1285,15,1,other,DSC_0848.JPG +10547,5245,1471,17,1,other,DSC_0848.JPG +10548,4930,1537,17,1,other,DSC_0848.JPG +10549,1057,1570,15,1,other,DSC_0848.JPG +1055,1000,1942,15,1,other,DSC_0844.JPG +10550,3844,1720,17,1,other,DSC_0848.JPG +10551,3841,1957,15,1,other,DSC_0848.JPG +10552,3037,2008,15,1,other,DSC_0848.JPG +10553,3247,2011,15,1,other,DSC_0848.JPG +10554,4714,2119,15,1,other,DSC_0848.JPG +10555,2902,2122,17,1,other,DSC_0848.JPG +10556,4648,2122,15,1,other,DSC_0848.JPG +10557,3178,2128,15,1,other,DSC_0848.JPG +10558,3700,2191,15,1,other,DSC_0848.JPG +10559,3769,2191,15,1,other,DSC_0848.JPG +1056,5068,1996,17,1,other,DSC_0844.JPG +10560,4051,2308,17,1,other,DSC_0848.JPG +10561,5230,460,17,1,other,DSC_0848.JPG +10562,808,550,17,1,other,DSC_0848.JPG +10563,4951,586,17,1,other,DSC_0848.JPG +10564,247,658,17,1,other,DSC_0848.JPG +10565,487,727,17,1,other,DSC_0848.JPG +10566,3508,883,17,1,other,DSC_0848.JPG +10567,1444,922,15,1,other,DSC_0848.JPG +10568,3751,946,17,1,other,DSC_0848.JPG +10569,703,1090,17,1,other,DSC_0848.JPG +10570,1300,1162,15,1,other,DSC_0848.JPG +10571,4240,1186,15,1,other,DSC_0848.JPG +10572,4027,1309,17,1,other,DSC_0848.JPG +10573,712,1324,17,1,other,DSC_0848.JPG +10574,4135,1363,17,1,other,DSC_0848.JPG +10575,5302,1585,17,1,other,DSC_0848.JPG +10576,886,1624,15,1,other,DSC_0848.JPG +10577,5065,1657,15,1,other,DSC_0848.JPG +10578,3811,1660,17,1,other,DSC_0848.JPG +10579,2419,1756,15,1,other,DSC_0848.JPG +1058,823,2233,15,1,other,DSC_0844.JPG +10580,1990,1759,15,1,other,DSC_0848.JPG +10582,3355,1837,16,1,other,DSC_0848.JPG +10583,4753,1948,15,1,other,DSC_0848.JPG +10584,4198,1954,16,1,other,DSC_0848.JPG +10585,1165,1975,15,1,other,DSC_0848.JPG +10586,1717,1990,15,1,other,DSC_0848.JPG +10588,3877,2014,17,1,other,DSC_0848.JPG +10589,2833,2125,15,1,other,DSC_0848.JPG +10590,4678,2293,17,1,other,DSC_0848.JPG +10591,4324,2413,15,1,other,DSC_0848.JPG +10592,3298,136,15,1,other,DSC_0848.JPG +10593,2320,139,17,1,other,DSC_0848.JPG +10594,2737,142,15,1,other,DSC_0848.JPG +10595,1021,181,17,1,other,DSC_0848.JPG +10596,1090,304,15,1,other,DSC_0848.JPG +10597,1579,310,17,1,other,DSC_0848.JPG +10598,5056,400,17,1,other,DSC_0848.JPG +10599,5197,403,15,1,other,DSC_0848.JPG +10600,2839,448,17,1,other,DSC_0848.JPG +10601,4180,460,17,1,other,DSC_0848.JPG +10602,1684,496,15,1,other,DSC_0848.JPG +10603,4780,523,17,1,other,DSC_0848.JPG +10604,739,550,17,1,other,DSC_0848.JPG +10605,2980,571,17,1,other,DSC_0848.JPG +10606,3439,640,17,1,other,DSC_0848.JPG +10607,3124,697,17,1,other,DSC_0848.JPG +10608,1756,1228,15,5,other,DSC_0848.JPG +10609,4723,1297,17,1,other,DSC_0848.JPG +10610,4483,1360,15,1,other,DSC_0848.JPG +10611,4933,1417,17,1,other,DSC_0848.JPG +10613,4381,1540,16,1,other,DSC_0848.JPG +10614,4825,1600,15,1,other,DSC_0848.JPG +10615,4687,1714,15,1,other,DSC_0848.JPG +10616,2902,1888,15,1,other,DSC_0848.JPG +10617,4123,2071,17,1,other,DSC_0848.JPG +10618,3457,2134,15,1,other,DSC_0848.JPG +10619,4504,2239,16,1,other,DSC_0848.JPG +10620,4462,214,16,1,other,DSC_0848.JPG +10621,421,361,17,1,other,DSC_0848.JPG +10622,3370,385,17,1,other,DSC_0848.JPG +10623,1057,487,17,1,other,DSC_0848.JPG +10624,4006,517,17,1,other,DSC_0848.JPG +10625,5266,523,17,1,other,DSC_0848.JPG +10626,946,550,16,1,other,DSC_0848.JPG +10627,2698,568,15,1,other,DSC_0848.JPG +10628,3478,577,16,1,other,DSC_0848.JPG +10629,4636,772,15,1,other,DSC_0848.JPG +10630,4807,832,16,1,other,DSC_0848.JPG +10631,4315,952,17,1,other,DSC_0848.JPG +10632,3016,1003,17,1,other,DSC_0848.JPG +10633,673,1150,17,1,other,DSC_0848.JPG +10634,1720,1171,17,1,other,DSC_0848.JPG +10635,4099,1186,17,1,other,DSC_0848.JPG +10636,3535,1420,17,1,other,DSC_0848.JPG +10637,1612,1462,15,1,other,DSC_0848.JPG +10638,1684,1462,15,1,other,DSC_0848.JPG +10639,3994,1480,17,1,other,DSC_0848.JPG +10640,1648,1522,15,1,other,DSC_0848.JPG +10641,3880,1657,17,1,other,DSC_0848.JPG +10642,4858,1660,17,1,other,DSC_0848.JPG +10643,4165,1777,17,1,other,DSC_0848.JPG +10644,2026,1822,17,1,other,DSC_0848.JPG +10645,958,1855,15,1,other,DSC_0848.JPG +10646,1444,1864,15,1,other,DSC_0848.JPG +10647,3385,2017,17,1,other,DSC_0848.JPG +10648,5029,2071,17,1,other,DSC_0848.JPG +10649,1690,2164,15,1,other,DSC_0848.JPG +10650,3280,2188,16,1,other,DSC_0848.JPG +10651,4054,2188,17,1,other,DSC_0848.JPG +10652,4192,2188,15,1,other,DSC_0848.JPG +10653,4432,2239,15,1,other,DSC_0848.JPG +10654,4816,2290,15,1,other,DSC_0848.JPG +10655,4468,2296,15,1,other,DSC_0848.JPG +10656,3913,2308,17,1,other,DSC_0848.JPG +10657,2587,2407,15,1,other,DSC_0848.JPG +10658,670,58,15,1,other,DSC_0848.JPG +10659,1861,67,16,1,other,DSC_0848.JPG +10660,352,115,15,1,other,DSC_0848.JPG +10661,2458,256,17,1,other,DSC_0848.JPG +10662,1543,370,17,1,other,DSC_0848.JPG +10664,1618,496,17,1,other,DSC_0848.JPG +10665,772,730,17,1,other,DSC_0848.JPG +10666,775,853,17,1,other,DSC_0848.JPG +10667,4066,1009,15,1,other,DSC_0848.JPG +10668,1231,1045,15,1,other,DSC_0848.JPG +10669,3610,1066,17,1,other,DSC_0848.JPG +10670,1753,1114,17,1,other,DSC_0848.JPG +10671,4900,1132,15,1,other,DSC_0848.JPG +10672,1822,1231,17,1,other,DSC_0848.JPG +10673,4555,1243,15,1,other,DSC_0848.JPG +10674,916,1450,17,1,other,DSC_0848.JPG +10675,1198,1456,15,1,other,DSC_0848.JPG +10676,4060,1477,16,1,other,DSC_0848.JPG +10677,4999,1534,17,1,other,DSC_0848.JPG +10678,1819,1579,15,1,other,DSC_0848.JPG +10679,955,1624,17,1,other,DSC_0848.JPG +10680,3253,1657,15,1,other,DSC_0848.JPG +10681,4486,1717,15,1,other,DSC_0848.JPG +10682,4375,1780,17,1,other,DSC_0848.JPG +10683,2656,1825,15,5,other,DSC_0848.JPG +10684,994,1912,17,1,other,DSC_0848.JPG +10685,1960,1939,17,1,other,DSC_0848.JPG +10686,3283,1954,16,1,other,DSC_0848.JPG +10688,1201,2032,15,1,other,DSC_0848.JPG +10689,3316,2131,15,1,other,DSC_0848.JPG +10690,4987,2344,16,1,other,DSC_0848.JPG +10691,4606,2407,15,1,other,DSC_0848.JPG +10692,2551,2464,15,1,other,DSC_0848.JPG +10693,460,178,17,1,other,DSC_0848.JPG +10694,3793,388,15,1,other,DSC_0848.JPG +10695,4426,397,15,1,other,DSC_0848.JPG +10696,2767,448,15,1,other,DSC_0848.JPG +10697,4705,526,15,1,other,DSC_0848.JPG +10698,1159,553,17,1,other,DSC_0848.JPG +10699,4108,586,17,1,other,DSC_0848.JPG +107,2257,172,16,1,other,DSC_0844.JPG +10700,3793,643,17,1,other,DSC_0848.JPG +10701,913,733,17,1,other,DSC_0848.JPG +10702,949,796,17,1,other,DSC_0848.JPG +10703,916,856,17,1,other,DSC_0848.JPG +10704,4456,952,16,1,other,DSC_0848.JPG +10705,919,976,17,1,other,DSC_0848.JPG +10706,4312,1069,15,1,other,DSC_0848.JPG +10707,3298,1123,17,1,other,DSC_0848.JPG +10708,4795,1189,15,1,other,DSC_0848.JPG +10709,1126,1219,15,1,other,DSC_0848.JPG +10711,4726,1420,17,1,other,DSC_0848.JPG +10712,1339,1459,17,1,other,DSC_0848.JPG +10713,4966,1597,15,1,other,DSC_0848.JPG +10714,1546,1693,15,1,other,DSC_0848.JPG +10715,4303,1777,15,1,other,DSC_0848.JPG +10716,5098,1828,17,1,other,DSC_0848.JPG +10717,2275,2110,17,1,other,DSC_0848.JPG +10718,1930,2230,16,1,other,DSC_0848.JPG +10719,3628,2305,17,1,other,DSC_0848.JPG +10720,4120,2305,15,1,other,DSC_0848.JPG +10721,1378,2326,15,1,other,DSC_0848.JPG +10722,4846,2350,15,1,other,DSC_0848.JPG +10723,2629,76,17,1,other,DSC_0848.JPG +10724,247,178,17,1,other,DSC_0848.JPG +10725,250,298,17,1,other,DSC_0848.JPG +10726,5026,337,17,1,other,DSC_0848.JPG +10727,4603,340,17,1,other,DSC_0848.JPG +10728,4813,340,17,1,other,DSC_0848.JPG +10729,493,367,16,1,other,DSC_0848.JPG +10730,877,427,17,1,other,DSC_0848.JPG +10731,1369,433,15,1,other,DSC_0848.JPG +10732,4144,523,17,1,other,DSC_0848.JPG +10733,592,547,15,1,other,DSC_0848.JPG +10734,4528,709,17,1,other,DSC_0848.JPG +10735,4840,772,17,1,other,DSC_0848.JPG +10736,1786,928,17,1,other,DSC_0848.JPG +10737,5011,955,17,1,other,DSC_0848.JPG +10739,3535,1186,17,1,other,DSC_0848.JPG +10740,3778,1363,17,1,other,DSC_0848.JPG +10741,1231,1399,17,1,other,DSC_0848.JPG +10742,3253,1414,17,1,other,DSC_0848.JPG +10743,3601,1540,16,1,other,DSC_0848.JPG +10744,5107,1594,17,1,other,DSC_0848.JPG +10745,3178,1654,15,1,other,DSC_0848.JPG +10746,3739,1777,16,1,other,DSC_0848.JPG +10747,1408,1807,15,1,other,DSC_0848.JPG +10748,3109,1894,17,1,other,DSC_0848.JPG +10749,3175,2248,15,1,other,DSC_0848.JPG +10750,2521,2287,15,1,other,DSC_0848.JPG +10751,4711,2350,15,1,other,DSC_0848.JPG +10752,949,184,17,1,other,DSC_0848.JPG +10753,2458,382,17,1,other,DSC_0848.JPG +10754,4492,523,17,1,other,DSC_0848.JPG +10755,1336,616,17,1,other,DSC_0848.JPG +10756,3898,706,15,1,other,DSC_0848.JPG +10757,3580,763,17,1,other,DSC_0848.JPG +10759,4669,835,17,1,other,DSC_0848.JPG +1076,2467,172,17,1,other,DSC_0844.JPG +10760,3121,940,17,1,other,DSC_0848.JPG +10761,1129,1102,15,1,other,DSC_0848.JPG +10762,4588,1186,15,1,other,DSC_0848.JPG +10763,1267,1222,15,1,other,DSC_0848.JPG +10765,3640,1240,17,1,other,DSC_0848.JPG +10766,1096,1393,15,1,other,DSC_0848.JPG +10767,4864,1417,17,1,other,DSC_0848.JPG +10768,1855,1522,15,5,other,DSC_0848.JPG +10769,2029,1702,17,1,other,DSC_0848.JPG +1077,3598,325,17,1,other,DSC_0844.JPG +10770,3076,1714,17,1,other,DSC_0848.JPG +10771,3565,1717,17,1,other,DSC_0848.JPG +10772,3706,1834,17,1,other,DSC_0848.JPG +10773,1234,1861,15,1,other,DSC_0848.JPG +10774,4408,1948,17,1,other,DSC_0848.JPG +10775,1237,1978,15,1,other,DSC_0848.JPG +10776,5065,2005,17,1,other,DSC_0848.JPG +10777,4996,2008,15,1,other,DSC_0848.JPG +10778,2032,2056,15,1,other,DSC_0848.JPG +10779,2587,2290,15,1,other,DSC_0848.JPG +1078,799,334,16,1,other,DSC_0844.JPG +10780,3841,2305,15,1,other,DSC_0848.JPG +10781,4501,2353,15,1,other,DSC_0848.JPG +10782,1930,190,16,1,other,DSC_0848.JPG +10783,4882,214,17,1,other,DSC_0848.JPG +10784,2806,265,17,1,other,DSC_0848.JPG +10785,1999,313,15,1,other,DSC_0848.JPG +10786,3970,580,16,1,other,DSC_0848.JPG +10787,556,610,17,1,other,DSC_0848.JPG +10788,1087,673,15,1,other,DSC_0848.JPG +10789,3016,757,16,1,other,DSC_0848.JPG +10790,3514,766,15,1,other,DSC_0848.JPG +10791,4525,832,16,1,other,DSC_0848.JPG +10792,424,961,17,1,other,DSC_0848.JPG +10793,4834,1012,17,1,other,DSC_0848.JPG +10794,5119,1012,17,1,other,DSC_0848.JPG +10795,2665,1108,17,1,other,DSC_0848.JPG +10796,919,1216,15,1,other,DSC_0848.JPG +10798,3289,1243,16,1,other,DSC_0848.JPG +10800,5005,1306,17,1,other,DSC_0848.JPG +10801,1201,1570,15,1,other,DSC_0848.JPG +10802,4621,1711,17,1,other,DSC_0848.JPG +10803,5065,1774,15,1,other,DSC_0848.JPG +10804,1543,1807,17,1,other,DSC_0848.JPG +10805,4684,1831,15,1,other,DSC_0848.JPG +10806,4648,1891,17,1,other,DSC_0848.JPG +10807,4306,1894,15,1,other,DSC_0848.JPG +10808,4093,1897,17,1,other,DSC_0848.JPG +10809,4957,1948,15,1,other,DSC_0848.JPG +10810,4060,1954,17,1,other,DSC_0848.JPG +10811,1822,2050,15,1,other,DSC_0848.JPG +10813,4504,2122,15,1,other,DSC_0848.JPG +10814,4711,2230,17,1,other,DSC_0848.JPG +10815,2827,2242,15,1,other,DSC_0848.JPG +10816,3556,2308,17,1,other,DSC_0848.JPG +10817,4780,274,17,1,other,DSC_0848.JPG +10818,1369,310,17,1,other,DSC_0848.JPG +10819,316,415,17,1,other,DSC_0848.JPG +10820,775,490,17,1,other,DSC_0848.JPG +10821,844,490,17,1,other,DSC_0848.JPG +10822,3514,517,17,1,other,DSC_0848.JPG +10823,3121,574,16,1,other,DSC_0848.JPG +10824,910,610,15,1,other,DSC_0848.JPG +10825,1123,613,17,1,other,DSC_0848.JPG +10826,1756,625,17,1,other,DSC_0848.JPG +10827,3541,823,17,1,other,DSC_0848.JPG +10828,3682,823,17,1,other,DSC_0848.JPG +10829,3895,829,15,1,other,DSC_0848.JPG +10830,4948,829,17,1,other,DSC_0848.JPG +10831,5224,949,17,1,other,DSC_0848.JPG +10832,1129,985,16,1,other,DSC_0848.JPG +10833,568,1207,17,1,other,DSC_0848.JPG +10834,4519,1297,15,1,other,DSC_0848.JPG +10835,1060,1330,15,1,other,DSC_0848.JPG +10836,1405,1459,15,1,other,DSC_0848.JPG +10837,3283,1594,17,1,other,DSC_0848.JPG +10838,3043,1654,15,1,other,DSC_0848.JPG +10839,4516,1657,17,1,other,DSC_0848.JPG +10840,4723,1657,15,1,other,DSC_0848.JPG +10841,3955,1660,17,1,other,DSC_0848.JPG +10842,3634,1714,17,1,other,DSC_0848.JPG +10843,679,1729,15,1,other,DSC_0848.JPG +10845,4891,1948,15,1,other,DSC_0848.JPG +10846,4441,2011,17,1,other,DSC_0848.JPG +10847,1135,2029,15,1,other,DSC_0848.JPG +10848,1546,2161,15,1,other,DSC_0848.JPG +10849,1516,2218,15,1,other,DSC_0848.JPG +10850,3454,2248,15,1,other,DSC_0848.JPG +10851,181,415,17,1,other,DSC_0848.JPG +10852,526,427,17,1,other,DSC_0848.JPG +10853,4285,526,17,1,other,DSC_0848.JPG +10854,739,670,17,1,other,DSC_0848.JPG +10855,526,787,17,1,other,DSC_0848.JPG +10856,808,1036,17,1,other,DSC_0848.JPG +10857,4657,1186,15,1,other,DSC_0848.JPG +10858,1957,1348,15,1,other,DSC_0848.JPG +10860,4588,1423,17,1,other,DSC_0848.JPG +10861,5212,1534,15,1,other,DSC_0848.JPG +10862,3394,1654,15,1,other,DSC_0848.JPG +10863,3670,1660,17,1,other,DSC_0848.JPG +10864,1234,1747,15,1,other,DSC_0848.JPG +10865,4585,1774,15,1,other,DSC_0848.JPG +10866,3952,1780,17,1,other,DSC_0848.JPG +10867,4822,1834,15,1,other,DSC_0848.JPG +10868,4372,2008,15,1,other,DSC_0848.JPG +10869,4468,2182,17,1,other,DSC_0848.JPG +10870,3595,2251,17,1,other,DSC_0848.JPG +10871,1930,2341,15,1,other,DSC_0848.JPG +10872,3592,2365,15,1,other,DSC_0848.JPG +10873,3760,85,15,1,other,DSC_0848.JPG +10874,4075,394,17,1,other,DSC_0848.JPG +10875,946,427,17,1,other,DSC_0848.JPG +10876,4846,526,17,1,other,DSC_0848.JPG +10877,1087,553,17,1,other,DSC_0848.JPG +10878,1720,559,17,1,other,DSC_0848.JPG +10879,4246,583,17,1,other,DSC_0848.JPG +10880,112,772,15,1,other,DSC_0848.JPG +10881,3610,946,15,1,other,DSC_0848.JPG +10882,4768,1009,17,1,other,DSC_0848.JPG +10883,388,1021,17,1,other,DSC_0848.JPG +10885,3679,1069,17,1,other,DSC_0848.JPG +10886,4207,1129,16,1,other,DSC_0848.JPG +10887,4693,1129,15,1,other,DSC_0848.JPG +10888,3673,1303,17,1,other,DSC_0848.JPG +10889,4099,1306,17,1,other,DSC_0848.JPG +10890,571,1438,15,1,other,DSC_0848.JPG +10891,850,1561,17,1,other,DSC_0848.JPG +10892,3634,1600,17,1,other,DSC_0848.JPG +10893,817,1618,17,1,other,DSC_0848.JPG +10894,4588,1654,15,1,other,DSC_0848.JPG +10895,1885,1699,15,1,other,DSC_0848.JPG +10896,886,1735,15,1,other,DSC_0848.JPG +10897,3319,1774,17,1,other,DSC_0848.JPG +10898,3598,1894,17,1,other,DSC_0848.JPG +10899,3736,2248,17,1,other,DSC_0848.JPG +10900,4675,2407,15,1,other,DSC_0848.JPG +10901,3196,76,17,1,other,DSC_0848.JPG +10902,388,175,17,1,other,DSC_0848.JPG +10903,4534,337,17,1,other,DSC_0848.JPG +10904,4639,397,17,1,other,DSC_0848.JPG +10905,1759,496,17,1,other,DSC_0848.JPG +10906,3937,520,15,1,other,DSC_0848.JPG +10907,1510,559,17,1,other,DSC_0848.JPG +10908,3547,706,17,1,other,DSC_0848.JPG +10909,5020,832,17,1,other,DSC_0848.JPG +1091,5011,1393,17,1,other,DSC_0844.JPG +10910,844,1096,17,1,other,DSC_0848.JPG +10911,1093,1162,15,1,other,DSC_0848.JPG +10912,3853,1246,17,1,other,DSC_0848.JPG +10913,4795,1300,17,1,other,DSC_0848.JPG +10914,1546,1345,17,1,other,DSC_0848.JPG +10915,3670,1423,15,1,other,DSC_0848.JPG +10916,3358,1477,17,1,other,DSC_0848.JPG +10917,4753,1717,15,1,other,DSC_0848.JPG +10918,1924,1876,15,1,other,DSC_0848.JPG +10919,5203,1885,15,1,other,DSC_0848.JPG +10920,4684,1948,15,1,other,DSC_0848.JPG +10921,1093,1972,17,1,other,DSC_0848.JPG +10922,4264,2071,15,1,other,DSC_0848.JPG +10923,2968,2128,16,1,other,DSC_0848.JPG +10924,4357,151,17,1,other,DSC_0848.JPG +10925,4675,214,17,1,other,DSC_0848.JPG +10926,877,304,17,1,other,DSC_0848.JPG +10927,2911,448,17,1,other,DSC_0848.JPG +10928,4246,706,17,1,other,DSC_0848.JPG +10930,4351,892,15,1,other,DSC_0848.JPG +10931,5011,1072,17,1,other,DSC_0848.JPG +10932,886,1156,17,1,other,DSC_0848.JPG +10933,991,1219,15,1,other,DSC_0848.JPG +10934,4624,1243,15,1,other,DSC_0848.JPG +10935,1441,1285,15,1,other,DSC_0848.JPG +10936,4591,1303,15,1,other,DSC_0848.JPG +10937,1408,1339,17,1,other,DSC_0848.JPG +10938,4348,1363,17,1,other,DSC_0848.JPG +10939,4759,1480,17,1,other,DSC_0848.JPG +10940,676,1498,17,1,other,DSC_0848.JPG +10941,1789,1522,17,1,other,DSC_0848.JPG +10942,5137,1654,17,1,other,DSC_0848.JPG +10943,4999,1657,15,1,other,DSC_0848.JPG +10944,4060,1840,17,1,other,DSC_0848.JPG +10945,5134,1891,17,1,other,DSC_0848.JPG +10946,1270,1921,15,1,other,DSC_0848.JPG +10947,1477,1924,15,1,other,DSC_0848.JPG +10949,2104,2056,15,1,other,DSC_0848.JPG +10950,3562,2074,15,1,other,DSC_0848.JPG +10951,3808,2131,17,1,other,DSC_0848.JPG +10952,1480,2158,15,1,other,DSC_0848.JPG +10953,2728,2176,17,1,other,DSC_0848.JPG +10954,4228,2245,15,1,other,DSC_0848.JPG +10955,1273,2266,15,1,other,DSC_0848.JPG +10956,1480,2383,15,1,other,DSC_0848.JPG +10957,598,181,15,1,other,DSC_0848.JPG +10958,1618,370,17,1,other,DSC_0848.JPG +10959,4915,403,17,1,other,DSC_0848.JPG +1096,1633,1975,15,1,other,DSC_0844.JPG +10960,3121,451,16,1,other,DSC_0848.JPG +10961,1900,499,16,1,other,DSC_0848.JPG +10962,4459,586,17,1,other,DSC_0848.JPG +10963,4597,586,17,1,other,DSC_0848.JPG +10964,4174,829,17,1,other,DSC_0848.JPG +10965,493,847,17,1,other,DSC_0848.JPG +10966,3154,880,17,1,other,DSC_0848.JPG +10967,4564,889,17,1,other,DSC_0848.JPG +10968,3331,1063,15,1,other,DSC_0848.JPG +10969,1192,1108,17,1,other,DSC_0848.JPG +1097,2815,1990,17,1,other,DSC_0844.JPG +10970,1060,1219,15,1,other,DSC_0848.JPG +10971,4552,1363,17,1,other,DSC_0848.JPG +10972,1720,1402,15,1,other,DSC_0848.JPG +10973,3916,1594,17,1,other,DSC_0848.JPG +10974,4447,1654,17,1,other,DSC_0848.JPG +10975,4021,1660,17,1,other,DSC_0848.JPG +10976,1129,1684,17,1,other,DSC_0848.JPG +10977,1861,2110,15,1,other,DSC_0848.JPG +10978,4681,2176,15,1,other,DSC_0848.JPG +10979,4750,2176,15,1,other,DSC_0848.JPG +10980,2932,2188,16,1,other,DSC_0848.JPG +10981,4297,2242,15,1,other,DSC_0848.JPG +10982,3313,2251,16,1,other,DSC_0848.JPG +10983,1207,2266,15,1,other,DSC_0848.JPG +10984,2239,2287,15,1,other,DSC_0848.JPG +10985,2659,2293,15,1,other,DSC_0848.JPG +10986,2104,2395,17,1,other,DSC_0848.JPG +10987,736,178,17,1,other,DSC_0848.JPG +10988,4954,214,15,1,other,DSC_0848.JPG +10989,2494,319,17,1,other,DSC_0848.JPG +10990,3016,511,17,1,other,DSC_0848.JPG +10991,3967,706,17,1,other,DSC_0848.JPG +10992,703,730,17,1,other,DSC_0848.JPG +10993,5254,883,17,1,other,DSC_0848.JPG +10994,4138,886,15,1,other,DSC_0848.JPG +10995,5254,1003,17,1,other,DSC_0848.JPG +10996,3220,1006,16,1,other,DSC_0848.JPG +10999,4453,1189,17,1,other,DSC_0848.JPG +1100,3055,2290,17,5,other,DSC_0844.JPG +11001,955,1390,17,1,other,DSC_0848.JPG +11002,5071,1420,15,1,other,DSC_0848.JPG +11003,1060,1456,17,1,other,DSC_0848.JPG +11004,3847,1480,16,1,other,DSC_0848.JPG +11005,1024,1513,17,1,other,DSC_0848.JPG +11006,4237,1540,15,1,other,DSC_0848.JPG +11007,4339,1714,15,1,other,DSC_0848.JPG +11008,1441,1747,16,1,other,DSC_0848.JPG +11009,2770,1771,15,1,other,DSC_0848.JPG +1101,3820,2305,17,1,other,DSC_0844.JPG +11010,4654,1771,17,1,other,DSC_0848.JPG +11011,3880,1777,17,1,other,DSC_0848.JPG +11012,1891,1936,15,1,other,DSC_0848.JPG +11013,3529,2014,15,1,other,DSC_0848.JPG +11014,4537,2179,15,1,other,DSC_0848.JPG +11015,4573,2236,15,1,other,DSC_0848.JPG +11016,1369,58,15,1,other,DSC_0848.JPG +11017,4915,154,15,1,other,DSC_0848.JPG +11018,1756,376,17,1,other,DSC_0848.JPG +11019,982,493,17,1,other,DSC_0848.JPG +1102,2437,106,17,1,other,DSC_0844.JPG +11020,3685,700,15,1,other,DSC_0848.JPG +11021,3295,886,15,1,other,DSC_0848.JPG +11022,4978,1012,17,1,other,DSC_0848.JPG +11023,1021,1156,17,1,other,DSC_0848.JPG +11024,1162,1162,15,1,other,DSC_0848.JPG +11025,748,1267,17,1,other,DSC_0848.JPG +11026,5275,1411,17,1,other,DSC_0848.JPG +11027,5215,1414,15,1,other,DSC_0848.JPG +11028,1750,1462,15,1,other,DSC_0848.JPG +11029,5110,1474,17,1,other,DSC_0848.JPG +1103,910,142,17,1,other,DSC_0844.JPG +11031,1093,1630,17,1,other,DSC_0848.JPG +11032,4234,1777,15,1,other,DSC_0848.JPG +11033,4756,1831,15,1,other,DSC_0848.JPG +11034,1582,1864,17,1,other,DSC_0848.JPG +11035,5059,1888,15,1,other,DSC_0848.JPG +11036,3457,1897,17,1,other,DSC_0848.JPG +11037,4543,2062,17,1,other,DSC_0848.JPG +11038,5149,2125,17,1,other,DSC_0848.JPG +11039,4822,2173,15,1,other,DSC_0848.JPG +1104,3037,178,17,1,other,DSC_0844.JPG +11040,3211,2188,15,1,other,DSC_0848.JPG +11041,4261,2302,15,1,other,DSC_0848.JPG +11042,2206,2341,16,1,other,DSC_0848.JPG +11043,2764,2464,15,1,other,DSC_0848.JPG +11044,4990,280,17,1,other,DSC_0848.JPG +11045,5125,406,17,1,other,DSC_0848.JPG +11046,916,490,17,1,other,DSC_0848.JPG +11047,2461,502,15,1,other,DSC_0848.JPG +11048,4351,523,17,1,other,DSC_0848.JPG +11049,5332,523,17,1,other,DSC_0848.JPG +11050,109,532,15,1,other,DSC_0848.JPG +11051,631,607,17,1,other,DSC_0848.JPG +11052,1474,616,17,1,other,DSC_0848.JPG +11053,4735,952,17,1,other,DSC_0848.JPG +11054,5155,952,17,1,other,DSC_0848.JPG +11055,847,973,17,1,other,DSC_0848.JPG +11056,4276,1012,15,1,other,DSC_0848.JPG +11057,2101,1225,15,1,other,DSC_0848.JPG +11058,3784,1246,16,1,other,DSC_0848.JPG +11059,817,1270,17,1,other,DSC_0848.JPG +1106,835,538,17,1,other,DSC_0844.JPG +11060,4933,1303,17,1,other,DSC_0848.JPG +11061,1579,1405,16,1,other,DSC_0848.JPG +11062,5311,1468,17,1,other,DSC_0848.JPG +11063,2737,1588,15,1,other,DSC_0848.JPG +11064,3991,1600,17,1,other,DSC_0848.JPG +11065,4168,1657,17,1,other,DSC_0848.JPG +11066,4858,1774,15,1,other,DSC_0848.JPG +11067,4270,1837,16,1,other,DSC_0848.JPG +11068,2137,1879,17,1,other,DSC_0848.JPG +11069,892,1966,17,1,other,DSC_0848.JPG +11070,3454,2011,17,1,other,DSC_0848.JPG +11071,991,2026,17,1,other,DSC_0848.JPG +11072,3070,2188,15,1,other,DSC_0848.JPG +11073,1237,2203,16,1,other,DSC_0848.JPG +11074,2347,2230,15,1,other,DSC_0848.JPG +11075,4606,2293,15,1,other,DSC_0848.JPG +11076,2284,313,17,1,other,DSC_0848.JPG +11077,2557,322,15,1,other,DSC_0848.JPG +11078,4675,340,17,1,other,DSC_0848.JPG +11079,4954,340,17,1,other,DSC_0848.JPG +11080,2392,382,17,1,other,DSC_0848.JPG +11081,4741,466,17,1,other,DSC_0848.JPG +11082,772,607,17,1,other,DSC_0848.JPG +11083,4741,712,16,1,other,DSC_0848.JPG +11084,562,730,17,1,other,DSC_0848.JPG +11085,4987,772,17,1,other,DSC_0848.JPG +11086,3928,889,15,1,other,DSC_0848.JPG +11087,3541,946,17,1,other,DSC_0848.JPG +11088,3892,949,17,1,other,DSC_0848.JPG +11089,3712,1123,17,1,other,DSC_0848.JPG +11090,5113,1243,17,1,other,DSC_0848.JPG +11091,4129,1600,15,1,other,DSC_0848.JPG +11092,1474,1807,15,1,other,DSC_0848.JPG +11093,4129,1837,16,1,other,DSC_0848.JPG +11094,1648,1867,17,1,other,DSC_0848.JPG +11095,5173,2062,15,1,other,DSC_0848.JPG +11096,4402,2068,15,1,other,DSC_0848.JPG +11097,4018,2131,15,1,other,DSC_0848.JPG +11098,3142,2188,15,1,other,DSC_0848.JPG +11099,4882,2287,15,1,other,DSC_0848.JPG +1110,4912,1219,17,1,other,DSC_0844.JPG +11100,2410,2344,15,1,other,DSC_0848.JPG +11101,1549,2386,15,1,other,DSC_0848.JPG +11102,2308,2392,17,1,other,DSC_0848.JPG +11103,5128,280,17,1,other,DSC_0848.JPG +11104,3052,451,16,1,other,DSC_0848.JPG +11105,5371,463,17,1,other,DSC_0848.JPG +11106,4639,526,17,1,other,DSC_0848.JPG +11107,949,673,17,1,other,DSC_0848.JPG +11108,1264,739,15,1,other,DSC_0848.JPG +11109,805,793,16,1,other,DSC_0848.JPG +11110,880,916,17,1,other,DSC_0848.JPG +11111,4384,952,16,1,other,DSC_0848.JPG +11113,4663,952,15,1,other,DSC_0848.JPG +11114,601,1030,17,1,other,DSC_0848.JPG +11115,3610,1183,17,1,other,DSC_0848.JPG +11116,3364,1360,15,1,other,DSC_0848.JPG +11117,3325,1417,17,1,other,DSC_0848.JPG +11118,3955,1420,15,1,other,DSC_0848.JPG +11119,1888,1465,15,1,other,DSC_0848.JPG +11121,1924,1522,15,1,other,DSC_0848.JPG +11122,1441,1636,17,1,other,DSC_0848.JPG +11123,1513,1636,17,1,other,DSC_0848.JPG +11124,1684,1696,15,1,other,DSC_0848.JPG +11125,1027,1744,17,1,other,DSC_0848.JPG +11126,2692,1765,17,1,other,DSC_0848.JPG +11127,3844,1837,17,1,other,DSC_0848.JPG +11128,4342,1951,17,1,other,DSC_0848.JPG +11129,3595,2017,15,1,other,DSC_0848.JPG +11130,3250,2131,15,1,other,DSC_0848.JPG +11131,1069,2143,17,1,other,DSC_0848.JPG +11132,3634,2191,15,1,other,DSC_0848.JPG +11133,3874,2248,15,1,other,DSC_0848.JPG +11134,2311,2284,15,1,other,DSC_0848.JPG +11135,3106,2356,17,1,other,DSC_0848.JPG +11136,1054,121,17,1,other,DSC_0848.JPG +11137,529,178,17,1,other,DSC_0848.JPG +11138,1756,250,17,1,other,DSC_0848.JPG +11139,4921,277,17,1,other,DSC_0848.JPG +11140,982,364,17,1,other,DSC_0848.JPG +11141,3691,577,16,1,other,DSC_0848.JPG +11142,421,601,15,1,other,DSC_0848.JPG +11143,3715,1006,16,1,other,DSC_0848.JPG +11144,2728,1231,17,5,other,DSC_0848.JPG +11145,3502,1243,17,1,other,DSC_0848.JPG +11146,781,1330,17,1,other,DSC_0848.JPG +11147,3709,1597,17,1,other,DSC_0848.JPG +11148,4204,1603,17,1,other,DSC_0848.JPG +11149,4237,1660,17,1,other,DSC_0848.JPG +11150,3913,1837,17,1,other,DSC_0848.JPG +11151,1063,1912,17,1,other,DSC_0848.JPG +11152,3106,2011,15,1,other,DSC_0848.JPG +11153,2899,2353,15,1,other,DSC_0848.JPG +11154,706,484,17,1,other,DSC_0848.JPG +11155,1126,490,17,1,other,DSC_0848.JPG +11156,5161,580,15,1,other,DSC_0848.JPG +11157,43,769,16,1,other,DSC_0848.JPG +11158,421,844,17,1,other,DSC_0848.JPG +11159,3439,1003,15,1,other,DSC_0848.JPG +1116,652,1444,17,1,other,DSC_0844.JPG +11160,4456,1066,17,1,other,DSC_0848.JPG +11161,4831,1132,15,1,other,DSC_0848.JPG +11162,1198,1219,17,1,other,DSC_0848.JPG +11163,4168,1420,17,1,other,DSC_0848.JPG +11164,4345,1480,17,1,other,DSC_0848.JPG +11165,1477,1573,17,5,other,DSC_0848.JPG +11166,1753,1810,17,1,other,DSC_0848.JPG +11167,4546,1951,17,1,other,DSC_0848.JPG +11168,1861,2227,15,1,other,DSC_0848.JPG +11169,4747,2290,15,1,other,DSC_0848.JPG +11170,1516,2329,15,1,other,DSC_0848.JPG +11171,4567,2464,15,1,other,DSC_0848.JPG +11172,418,484,16,1,other,DSC_0848.JPG +11173,1582,553,17,1,other,DSC_0848.JPG +11174,4777,649,17,1,other,DSC_0848.JPG +11175,634,730,17,1,other,DSC_0848.JPG +11176,667,793,17,1,other,DSC_0848.JPG +11177,3751,1186,17,1,other,DSC_0848.JPG +11178,4486,1243,17,1,other,DSC_0848.JPG +11179,5215,1294,17,1,other,DSC_0848.JPG +11181,3433,1363,15,1,other,DSC_0848.JPG +11182,676,1384,17,1,other,DSC_0848.JPG +11183,1303,1396,17,1,other,DSC_0848.JPG +11184,4654,1657,15,1,other,DSC_0848.JPG +11186,4201,1717,17,1,other,DSC_0848.JPG +11187,2905,1774,17,1,other,DSC_0848.JPG +11188,1612,2041,17,1,other,DSC_0848.JPG +11189,1996,2110,17,1,other,DSC_0848.JPG +11190,2764,2119,15,1,other,DSC_0848.JPG +11191,3451,2368,17,1,other,DSC_0848.JPG +11192,1273,2383,15,1,other,DSC_0848.JPG +11193,4606,97,15,1,other,DSC_0848.JPG +11194,4744,586,17,1,other,DSC_0848.JPG +11195,4459,832,17,1,other,DSC_0848.JPG +11196,4771,895,17,1,other,DSC_0848.JPG +11197,4030,949,15,1,other,DSC_0848.JPG +11198,985,1099,17,1,other,DSC_0848.JPG +11199,1408,1225,15,1,other,DSC_0848.JPG +11200,3955,1303,17,1,other,DSC_0848.JPG +11201,1261,1339,17,1,other,DSC_0848.JPG +11202,505,1435,17,1,other,DSC_0848.JPG +11203,1132,1453,16,1,other,DSC_0848.JPG +11204,4345,1600,17,1,other,DSC_0848.JPG +11205,2833,1654,16,1,other,DSC_0848.JPG +11206,1060,1681,17,1,other,DSC_0848.JPG +11207,3778,1717,17,1,other,DSC_0848.JPG +11209,4750,2065,16,1,other,DSC_0848.JPG +11210,4429,2350,17,1,other,DSC_0848.JPG +11211,1825,2392,15,1,other,DSC_0848.JPG +11212,2692,2464,15,1,other,DSC_0848.JPG +11213,3019,139,16,1,other,DSC_0848.JPG +11214,5059,280,17,1,other,DSC_0848.JPG +11215,2665,382,17,1,other,DSC_0848.JPG +11216,4987,400,17,1,other,DSC_0848.JPG +11217,4423,646,17,1,other,DSC_0848.JPG +11218,5086,832,17,1,other,DSC_0848.JPG +11219,4282,889,16,1,other,DSC_0848.JPG +11220,460,904,17,1,other,DSC_0848.JPG +11221,5326,1000,15,1,other,DSC_0848.JPG +11222,3046,1057,17,1,other,DSC_0848.JPG +11223,154,1066,17,1,other,DSC_0848.JPG +11224,5320,1120,17,1,other,DSC_0848.JPG +11225,3925,1126,17,1,other,DSC_0848.JPG +11226,601,1141,15,1,other,DSC_0848.JPG +11227,538,1261,15,1,other,DSC_0848.JPG +11228,3886,1423,17,1,other,DSC_0848.JPG +11229,3916,1717,17,1,other,DSC_0848.JPG +11230,2485,1759,17,1,other,DSC_0848.JPG +11231,4927,1888,15,1,other,DSC_0848.JPG +11233,958,2083,17,1,other,DSC_0848.JPG +11234,3562,2191,15,1,other,DSC_0848.JPG +11235,2140,2227,17,1,other,DSC_0848.JPG +11236,1411,2272,15,1,other,DSC_0848.JPG +11237,1831,2284,15,1,other,DSC_0848.JPG +11238,4915,2347,15,1,other,DSC_0848.JPG +11239,1342,2377,17,1,other,DSC_0848.JPG +11240,742,58,17,1,other,DSC_0848.JPG +11241,4531,214,17,1,other,DSC_0848.JPG +11242,1054,241,15,1,other,DSC_0848.JPG +11243,1192,490,15,1,other,DSC_0848.JPG +11244,4318,586,17,1,other,DSC_0848.JPG +11245,148,829,17,1,other,DSC_0848.JPG +11246,280,955,17,1,other,DSC_0848.JPG +11247,532,1144,17,1,other,DSC_0848.JPG +11248,3364,1246,17,1,other,DSC_0848.JPG +11249,1231,1279,17,1,other,DSC_0848.JPG +11250,5074,1303,17,1,other,DSC_0848.JPG +11251,4792,1414,15,1,other,DSC_0848.JPG +11253,3532,1537,17,1,other,DSC_0848.JPG +11254,1126,1804,17,1,other,DSC_0848.JPG +11255,3775,1837,17,1,other,DSC_0848.JPG +11256,4228,2011,17,1,other,DSC_0848.JPG +11257,4849,2230,15,1,other,DSC_0848.JPG +11258,1549,2275,15,1,other,DSC_0848.JPG +11259,1759,2281,15,1,other,DSC_0848.JPG +11260,2620,2344,17,1,other,DSC_0848.JPG +11261,1204,2374,17,1,other,DSC_0848.JPG +11262,4216,22,16,1,other,DSC_0848.JPG +11263,2524,262,17,1,other,DSC_0848.JPG +11264,5290,943,17,1,other,DSC_0848.JPG +11265,706,973,17,1,other,DSC_0848.JPG +11267,2977,1060,16,1,other,DSC_0848.JPG +11268,4588,1069,17,1,other,DSC_0848.JPG +11269,499,1201,17,1,other,DSC_0848.JPG +11270,640,1207,17,1,other,DSC_0848.JPG +11271,4351,1243,15,1,other,DSC_0848.JPG +11272,3502,1363,15,1,other,DSC_0848.JPG +11273,5209,1651,15,1,other,DSC_0848.JPG +11275,3322,1654,17,1,other,DSC_0848.JPG +11276,3742,1654,17,1,other,DSC_0848.JPG +11277,3358,1717,17,1,other,DSC_0848.JPG +11278,4927,1768,15,1,other,DSC_0848.JPG +11279,3526,1777,17,1,other,DSC_0848.JPG +1128,1003,2062,16,1,other,DSC_0844.JPG +11280,301,1888,17,1,other,DSC_0848.JPG +11281,2137,2113,15,1,other,DSC_0848.JPG +11282,4231,2131,17,1,other,DSC_0848.JPG +11283,1726,2224,17,1,other,DSC_0848.JPG +11284,1792,2224,15,1,other,DSC_0848.JPG +11285,3277,2308,15,1,other,DSC_0848.JPG +11286,451,424,17,1,other,DSC_0848.JPG +11287,4915,523,17,1,other,DSC_0848.JPG +11288,76,709,17,1,other,DSC_0848.JPG +11289,457,787,17,1,other,DSC_0848.JPG +11290,3538,1069,17,1,other,DSC_0848.JPG +11291,463,1144,17,1,other,DSC_0848.JPG +11292,751,1612,17,1,other,DSC_0848.JPG +11293,5305,1699,15,1,other,DSC_0848.JPG +11294,853,1795,17,1,other,DSC_0848.JPG +11295,1096,1861,17,1,other,DSC_0848.JPG +11296,787,1906,17,1,other,DSC_0848.JPG +11297,1618,2161,15,1,other,DSC_0848.JPG +11298,1375,2209,17,1,other,DSC_0848.JPG +11299,1480,2269,17,1,other,DSC_0848.JPG +11300,1864,2344,15,1,other,DSC_0848.JPG +11301,2344,2458,15,1,other,DSC_0848.JPG +11302,4639,274,17,1,other,DSC_0848.JPG +11303,385,544,15,1,other,DSC_0848.JPG +11304,424,727,17,1,other,DSC_0848.JPG +11305,700,853,17,1,other,DSC_0848.JPG +11306,4000,883,17,1,other,DSC_0848.JPG +11307,5353,1171,17,1,other,DSC_0848.JPG +11308,5149,1186,17,1,other,DSC_0848.JPG +11309,3532,1306,15,1,other,DSC_0848.JPG +11310,4861,1306,17,1,other,DSC_0848.JPG +11312,1198,1687,15,1,other,DSC_0848.JPG +11313,1165,1861,15,1,other,DSC_0848.JPG +11314,2035,2170,15,1,other,DSC_0848.JPG +11315,2761,2239,15,1,other,DSC_0848.JPG +11316,2551,2347,15,1,other,DSC_0848.JPG +11317,3487,2413,15,1,other,DSC_0848.JPG +11318,4396,2413,15,1,other,DSC_0848.JPG +11319,5233,340,17,1,other,DSC_0848.JPG +1132,4948,2269,17,1,other,DSC_0844.JPG +11320,670,427,17,1,other,DSC_0848.JPG +11321,1438,430,15,1,other,DSC_0848.JPG +11322,4675,592,15,1,other,DSC_0848.JPG +11323,4726,1072,15,1,other,DSC_0848.JPG +11324,5155,1072,17,1,other,DSC_0848.JPG +11326,187,1129,17,1,other,DSC_0848.JPG +11327,4132,1477,15,1,other,DSC_0848.JPG +11328,3775,1600,17,1,other,DSC_0848.JPG +11329,817,1735,15,1,other,DSC_0848.JPG +1133,2398,43,15,1,other,DSC_0844.JPG +11330,2314,2173,17,1,other,DSC_0848.JPG +11331,2101,2284,15,1,other,DSC_0848.JPG +11332,3490,2308,15,1,other,DSC_0848.JPG +11333,1651,2332,15,1,other,DSC_0848.JPG +11334,4363,2356,15,1,other,DSC_0848.JPG +11335,4813,94,15,1,other,DSC_0848.JPG +11336,5092,460,17,1,other,DSC_0848.JPG +11337,637,1090,17,1,other,DSC_0848.JPG +11338,955,1156,17,1,other,DSC_0848.JPG +11339,5245,1237,15,1,other,DSC_0848.JPG +1134,3418,388,17,1,other,DSC_0844.JPG +11340,5041,1246,17,1,other,DSC_0848.JPG +11341,886,1273,15,1,other,DSC_0848.JPG +11342,2458,1594,15,1,other,DSC_0848.JPG +11343,4129,1720,17,1,other,DSC_0848.JPG +11344,751,1843,17,1,other,DSC_0848.JPG +11345,2206,1882,15,1,other,DSC_0848.JPG +11346,1234,2089,17,1,other,DSC_0848.JPG +11347,2725,2296,15,1,other,DSC_0848.JPG +11348,4225,2359,15,1,other,DSC_0848.JPG +11349,4531,2407,17,1,other,DSC_0848.JPG +1135,3946,466,17,1,other,DSC_0844.JPG +11350,4813,2413,16,1,other,DSC_0848.JPG +11351,3868,19,15,1,other,DSC_0848.JPG +11352,4570,31,15,1,other,DSC_0848.JPG +11353,5056,154,17,1,other,DSC_0848.JPG +11354,3118,1066,17,1,other,DSC_0848.JPG +11355,499,1081,17,1,other,DSC_0848.JPG +11356,5281,1294,15,1,other,DSC_0848.JPG +11357,1474,1345,15,1,other,DSC_0848.JPG +11358,3250,1534,15,1,other,DSC_0848.JPG +11359,298,1543,15,1,other,DSC_0848.JPG +11360,4027,1780,17,1,other,DSC_0848.JPG +11361,3283,1837,17,1,other,DSC_0848.JPG +11362,3949,2014,17,1,other,DSC_0848.JPG +11363,2863,2065,15,1,other,DSC_0848.JPG +11364,2173,2173,15,1,other,DSC_0848.JPG +11365,1135,2263,15,1,other,DSC_0848.JPG +11366,1966,2287,15,1,other,DSC_0848.JPG +11367,2134,2347,15,1,other,DSC_0848.JPG +11368,4465,2410,15,1,other,DSC_0848.JPG +11369,3769,2422,15,1,other,DSC_0848.JPG +11370,3514,637,17,1,other,DSC_0848.JPG +11371,880,670,17,1,other,DSC_0848.JPG +11372,145,715,17,1,other,DSC_0848.JPG +11373,493,967,17,1,other,DSC_0848.JPG +11374,2599,1111,15,1,other,DSC_0848.JPG +11375,850,1333,17,1,other,DSC_0848.JPG +11376,1129,1339,17,1,other,DSC_0848.JPG +11377,604,1381,15,1,other,DSC_0848.JPG +11378,4027,1426,17,1,other,DSC_0848.JPG +11379,3706,1483,17,1,other,DSC_0848.JPG +11380,2938,1714,15,1,other,DSC_0848.JPG +11381,922,1795,17,1,other,DSC_0848.JPG +11383,2965,2248,17,1,other,DSC_0848.JPG +11384,3418,2305,15,1,other,DSC_0848.JPG +11385,2482,2341,17,1,other,DSC_0848.JPG +11386,5020,2410,17,1,other,DSC_0848.JPG +11387,1375,2434,15,1,other,DSC_0848.JPG +11388,2479,2455,15,1,other,DSC_0848.JPG +11389,3793,13,16,1,other,DSC_0848.JPG +11390,1123,373,17,1,other,DSC_0848.JPG +11391,5299,463,15,1,other,DSC_0848.JPG +11392,667,673,17,1,other,DSC_0848.JPG +11393,4657,1066,17,1,other,DSC_0848.JPG +11394,3505,1123,17,1,other,DSC_0848.JPG +11395,781,1210,15,1,other,DSC_0848.JPG +11396,5275,1528,17,1,other,DSC_0848.JPG +11397,1855,1879,17,1,other,DSC_0848.JPG +11399,4126,2188,15,1,other,DSC_0848.JPG +11400,4363,2239,15,1,other,DSC_0848.JPG +11401,4153,2248,17,1,other,DSC_0848.JPG +11402,2032,2287,15,1,other,DSC_0848.JPG +11403,3346,2305,15,1,other,DSC_0848.JPG +11404,1999,2347,15,1,other,DSC_0848.JPG +11405,3175,2362,15,1,other,DSC_0848.JPG +11406,3313,2362,15,1,other,DSC_0848.JPG +11407,5095,217,17,1,other,DSC_0848.JPG +11408,5095,340,17,1,other,DSC_0848.JPG +11409,175,535,17,1,other,DSC_0848.JPG +11410,5122,766,17,1,other,DSC_0848.JPG +11411,4702,889,17,1,other,DSC_0848.JPG +11412,3187,943,17,1,other,DSC_0848.JPG +11414,4831,1246,15,1,other,DSC_0848.JPG +11415,3847,1597,17,1,other,DSC_0848.JPG +11416,3283,2074,17,1,other,DSC_0848.JPG +11417,1342,2155,15,1,other,DSC_0848.JPG +11418,460,58,17,1,other,DSC_0848.JPG +11419,5335,400,15,1,other,DSC_0848.JPG +11420,4813,463,17,1,other,DSC_0848.JPG +11421,142,469,16,1,other,DSC_0848.JPG +11422,5020,709,17,1,other,DSC_0848.JPG +11423,4804,955,15,1,other,DSC_0848.JPG +11424,460,1024,17,1,other,DSC_0848.JPG +11425,4939,1075,17,1,other,DSC_0848.JPG +11426,502,1321,17,1,other,DSC_0848.JPG +11427,745,1381,17,1,other,DSC_0848.JPG +11428,571,1552,17,1,other,DSC_0848.JPG +11429,778,1558,17,1,other,DSC_0848.JPG +11430,367,1777,17,1,other,DSC_0848.JPG +11431,3070,2302,15,1,other,DSC_0848.JPG +11432,4780,2347,17,1,other,DSC_0848.JPG +11433,2761,2350,15,1,other,DSC_0848.JPG +11434,2449,2395,17,1,other,DSC_0848.JPG +11435,4948,2407,15,1,other,DSC_0848.JPG +11436,847,1216,17,1,other,DSC_0848.JPG +11437,574,1318,15,1,other,DSC_0848.JPG +11439,886,1501,17,1,other,DSC_0848.JPG +11440,814,1507,17,1,other,DSC_0848.JPG +11441,5101,1714,15,1,other,DSC_0848.JPG +11442,5134,1771,15,1,other,DSC_0848.JPG +11443,5266,1876,15,1,other,DSC_0848.JPG +11444,1201,1912,15,1,other,DSC_0848.JPG +11445,4957,2068,16,1,other,DSC_0848.JPG +11446,2068,2227,15,1,other,DSC_0848.JPG +11447,2863,2299,16,1,other,DSC_0848.JPG +11448,3982,2305,15,1,other,DSC_0848.JPG +11449,2413,2464,15,1,other,DSC_0848.JPG +11450,4849,403,17,1,other,DSC_0848.JPG +11451,4975,1129,15,1,other,DSC_0848.JPG +11452,814,1156,17,1,other,DSC_0848.JPG +11453,886,1387,17,1,other,DSC_0848.JPG +11455,4552,1834,17,1,other,DSC_0848.JPG +11456,1996,1882,15,1,other,DSC_0848.JPG +11457,403,1948,17,1,other,DSC_0848.JPG +11458,4855,2122,15,1,other,DSC_0848.JPG +11459,3001,2188,15,1,other,DSC_0848.JPG +11460,892,2197,15,1,other,DSC_0848.JPG +11461,3523,2248,15,1,other,DSC_0848.JPG +11462,1171,2323,15,1,other,DSC_0848.JPG +11463,1132,2377,15,1,other,DSC_0848.JPG +11464,1585,2440,15,1,other,DSC_0848.JPG +11465,5089,580,17,1,other,DSC_0848.JPG +11466,1723,1042,15,1,other,DSC_0848.JPG +11467,3607,1306,17,1,other,DSC_0848.JPG +11468,5374,1345,17,1,other,DSC_0848.JPG +11469,5176,1477,15,1,other,DSC_0848.JPG +11470,640,1555,17,1,other,DSC_0848.JPG +11471,2563,1876,17,1,other,DSC_0848.JPG +11472,3739,1894,17,1,other,DSC_0848.JPG +11473,1336,1918,17,1,other,DSC_0848.JPG +11474,3982,1951,17,1,other,DSC_0848.JPG +11475,1033,2200,17,1,other,DSC_0848.JPG +11476,1240,2323,15,1,other,DSC_0848.JPG +11477,2275,2344,15,1,other,DSC_0848.JPG +11478,3838,2416,15,1,other,DSC_0848.JPG +11479,4909,2470,15,1,other,DSC_0848.JPG +1148,757,1393,16,1,other,DSC_0844.JPG +11480,4864,1069,17,1,other,DSC_0848.JPG +11481,265,1831,17,1,other,DSC_0848.JPG +11482,295,2008,17,1,other,DSC_0848.JPG +11483,1135,2146,15,1,other,DSC_0848.JPG +11484,3004,2299,17,1,other,DSC_0848.JPG +11485,2065,2344,17,1,other,DSC_0848.JPG +11486,2275,2455,15,1,other,DSC_0848.JPG +11487,4429,25,15,1,other,DSC_0848.JPG +11488,529,58,17,1,other,DSC_0848.JPG +11489,250,415,17,1,other,DSC_0848.JPG +11490,4882,460,17,1,other,DSC_0848.JPG +11491,5296,586,17,1,other,DSC_0848.JPG +11492,5218,1180,17,1,other,DSC_0848.JPG +11493,676,1261,17,1,other,DSC_0848.JPG +11494,778,1441,17,1,other,DSC_0848.JPG +11495,4309,1657,17,1,other,DSC_0848.JPG +11496,886,1852,17,1,other,DSC_0848.JPG +11497,268,1945,15,1,other,DSC_0848.JPG +11498,5137,2209,17,1,other,DSC_0848.JPG +11499,2449,2293,17,1,other,DSC_0848.JPG +11500,214,598,17,1,other,DSC_0848.JPG +11501,523,670,17,1,other,DSC_0848.JPG +11502,5362,709,15,1,other,DSC_0848.JPG +11503,79,829,17,1,other,DSC_0848.JPG +11504,214,835,17,1,other,DSC_0848.JPG +11505,181,892,17,1,other,DSC_0848.JPG +11507,3433,1243,17,1,other,DSC_0848.JPG +11509,997,2143,17,1,other,DSC_0848.JPG +1151,331,1597,17,1,other,DSC_0844.JPG +11510,1204,2152,17,1,other,DSC_0848.JPG +11511,3910,2191,15,1,other,DSC_0848.JPG +11512,4984,2215,17,1,other,DSC_0848.JPG +11513,2935,2296,17,1,other,DSC_0848.JPG +11514,3736,2365,15,1,other,DSC_0848.JPG +11515,388,58,15,1,other,DSC_0848.JPG +11516,5293,826,17,1,other,DSC_0848.JPG +11517,595,913,15,1,other,DSC_0848.JPG +11519,745,1501,17,1,other,DSC_0848.JPG +1152,5152,1624,17,1,other,DSC_0844.JPG +11521,4273,1603,17,1,other,DSC_0848.JPG +11522,5275,1645,17,1,other,DSC_0848.JPG +11523,5245,1708,15,1,other,DSC_0848.JPG +11524,787,1789,17,1,other,DSC_0848.JPG +11525,4087,2248,15,1,other,DSC_0848.JPG +11526,3520,2362,15,1,other,DSC_0848.JPG +11527,316,55,15,1,other,DSC_0848.JPG +11528,5167,100,15,1,other,DSC_0848.JPG +11529,5161,340,17,1,other,DSC_0848.JPG +11530,625,853,17,1,other,DSC_0848.JPG +11531,5191,889,17,1,other,DSC_0848.JPG +11532,772,973,17,1,other,DSC_0848.JPG +11533,811,1387,17,1,other,DSC_0848.JPG +11534,844,1447,17,1,other,DSC_0848.JPG +11535,2239,1825,15,1,other,DSC_0848.JPG +11536,682,1954,17,1,other,DSC_0848.JPG +11537,958,1963,17,1,other,DSC_0848.JPG +11538,4252,2413,15,1,other,DSC_0848.JPG +11539,3559,2422,15,1,other,DSC_0848.JPG +11540,4636,2464,15,1,other,DSC_0848.JPG +11541,316,178,17,1,other,DSC_0848.JPG +11542,313,541,17,1,other,DSC_0848.JPG +11543,466,1261,17,1,other,DSC_0848.JPG +11544,2809,1354,15,1,other,DSC_0848.JPG +11545,712,1558,17,1,other,DSC_0848.JPG +11546,5173,1591,15,1,other,DSC_0848.JPG +11547,610,1609,15,1,other,DSC_0848.JPG +11548,163,1768,17,1,other,DSC_0848.JPG +11549,5206,1768,15,1,other,DSC_0848.JPG +11550,715,1789,17,1,other,DSC_0848.JPG +11551,817,1846,17,1,other,DSC_0848.JPG +11552,5209,2002,17,1,other,DSC_0848.JPG +11553,3145,2074,17,1,other,DSC_0848.JPG +11554,3421,2191,15,1,other,DSC_0848.JPG +11555,1066,2260,17,1,other,DSC_0848.JPG +11556,2173,2287,15,1,other,DSC_0848.JPG +11557,1723,2335,15,1,other,DSC_0848.JPG +11558,2239,2395,15,1,other,DSC_0848.JPG +11559,2377,2398,15,1,other,DSC_0848.JPG +11560,1651,2443,15,1,other,DSC_0848.JPG +11561,598,55,17,1,other,DSC_0848.JPG +11562,952,58,17,1,other,DSC_0848.JPG +11563,5233,103,17,1,other,DSC_0848.JPG +11564,5263,400,17,1,other,DSC_0848.JPG +11565,211,475,17,1,other,DSC_0848.JPG +11566,178,649,17,1,other,DSC_0848.JPG +11567,115,652,17,1,other,DSC_0848.JPG +11568,5311,1348,15,1,other,DSC_0848.JPG +11571,850,1675,15,1,other,DSC_0848.JPG +11572,5236,1939,15,1,other,DSC_0848.JPG +11574,3109,2242,17,1,other,DSC_0848.JPG +11575,3040,2248,15,1,other,DSC_0848.JPG +11576,1897,2284,15,1,other,DSC_0848.JPG +11577,2380,2284,15,1,other,DSC_0848.JPG +11578,1687,2392,17,1,other,DSC_0848.JPG +11579,1927,2446,15,1,other,DSC_0848.JPG +11580,490,118,17,1,other,DSC_0848.JPG +11581,283,238,17,1,other,DSC_0848.JPG +11583,5338,1525,15,1,other,DSC_0848.JPG +11584,1657,2221,17,1,other,DSC_0848.JPG +11585,2341,2347,17,1,other,DSC_0848.JPG +11586,5137,2350,17,1,other,DSC_0848.JPG +11587,2968,2359,15,1,other,DSC_0848.JPG +11588,3943,2362,15,1,other,DSC_0848.JPG +11589,1759,2392,17,1,other,DSC_0848.JPG +11590,3208,2410,17,1,other,DSC_0848.JPG +11591,3370,13,15,1,other,DSC_0848.JPG +11592,5056,31,15,1,other,DSC_0848.JPG +11593,5302,337,17,1,other,DSC_0848.JPG +11594,346,478,17,1,other,DSC_0848.JPG +11595,1021,550,17,1,other,DSC_0848.JPG +11597,355,961,17,1,other,DSC_0848.JPG +11598,5191,1009,17,1,other,DSC_0848.JPG +11599,5284,1174,17,1,other,DSC_0848.JPG +1160,4993,1999,17,1,other,DSC_0844.JPG +11601,5335,1642,17,1,other,DSC_0848.JPG +11602,5335,1879,17,1,other,DSC_0848.JPG +11603,1756,2170,17,1,other,DSC_0848.JPG +11604,5023,2281,17,1,other,DSC_0848.JPG +11605,2206,2449,17,1,other,DSC_0848.JPG +11606,4711,28,17,1,other,DSC_0848.JPG +11607,5161,706,17,1,other,DSC_0848.JPG +11608,742,793,17,1,other,DSC_0848.JPG +11609,118,1003,17,1,other,DSC_0848.JPG +1161,5062,2107,17,1,other,DSC_0844.JPG +11610,916,1099,17,1,other,DSC_0848.JPG +11611,5188,1129,17,1,other,DSC_0848.JPG +11613,5173,1714,15,1,other,DSC_0848.JPG +11614,958,1744,15,1,other,DSC_0848.JPG +11615,1195,1801,17,1,other,DSC_0848.JPG +11616,3349,2071,17,1,other,DSC_0848.JPG +11617,925,2140,17,1,other,DSC_0848.JPG +11618,2104,2173,16,1,other,DSC_0848.JPG +11619,970,2314,17,1,other,DSC_0848.JPG +1162,4876,2161,16,1,other,DSC_0844.JPG +11620,991,121,17,1,other,DSC_0848.JPG +11621,5095,706,17,1,other,DSC_0848.JPG +11622,82,1066,17,1,other,DSC_0848.JPG +11623,5005,1189,16,1,other,DSC_0848.JPG +11624,5083,1189,17,1,other,DSC_0848.JPG +11625,361,1195,17,1,other,DSC_0848.JPG +11626,334,1486,17,1,other,DSC_0848.JPG +11627,607,1498,17,1,other,DSC_0848.JPG +11628,4417,1597,17,1,other,DSC_0848.JPG +1163,4951,2161,17,1,other,DSC_0844.JPG +11630,5065,2212,17,1,other,DSC_0848.JPG +11631,1999,2227,15,1,other,DSC_0848.JPG +11632,2209,2227,17,1,other,DSC_0848.JPG +11633,1618,2389,17,1,other,DSC_0848.JPG +11634,5095,2413,15,1,other,DSC_0848.JPG +11635,5200,160,17,1,other,DSC_0848.JPG +11636,4954,460,17,1,other,DSC_0848.JPG +11637,3088,517,17,1,other,DSC_0848.JPG +11638,280,607,15,1,other,DSC_0848.JPG +11639,385,664,17,1,other,DSC_0848.JPG +11640,184,1009,17,1,other,DSC_0848.JPG +11641,571,1087,17,1,other,DSC_0848.JPG +11642,430,1198,17,1,other,DSC_0848.JPG +11643,2656,1222,16,1,other,DSC_0848.JPG +11644,607,1264,17,1,other,DSC_0848.JPG +11645,469,1489,17,1,other,DSC_0848.JPG +11647,925,1909,17,1,other,DSC_0848.JPG +11648,442,2005,17,1,other,DSC_0848.JPG +11649,547,2182,15,1,other,DSC_0848.JPG +11650,859,2359,15,1,other,DSC_0848.JPG +11651,1894,2398,15,1,other,DSC_0848.JPG +11652,3907,2416,17,1,other,DSC_0848.JPG +11653,1726,2446,15,1,other,DSC_0848.JPG +11654,5053,523,17,1,other,DSC_0848.JPG +11655,5233,583,17,1,other,DSC_0848.JPG +11656,229,1540,17,1,other,DSC_0848.JPG +11657,994,1801,17,1,other,DSC_0848.JPG +11658,1795,2335,17,1,other,DSC_0848.JPG +11659,1411,2383,17,1,other,DSC_0848.JPG +11660,4879,2404,17,1,other,DSC_0848.JPG +11661,3724,22,15,1,other,DSC_0848.JPG +11662,355,235,17,1,other,DSC_0848.JPG +11663,5059,649,17,1,other,DSC_0848.JPG +11664,217,955,17,1,other,DSC_0848.JPG +11665,5119,1129,17,1,other,DSC_0848.JPG +11666,5179,1246,17,1,other,DSC_0848.JPG +11667,436,1318,17,1,other,DSC_0848.JPG +11668,5173,1357,17,1,other,DSC_0848.JPG +11669,472,1375,17,1,other,DSC_0848.JPG +11670,1750,1690,17,1,other,DSC_0848.JPG +11671,373,1897,17,1,other,DSC_0848.JPG +11672,5263,1990,15,1,other,DSC_0848.JPG +11673,1618,2272,17,1,other,DSC_0848.JPG +11674,2032,2401,15,1,other,DSC_0848.JPG +11675,3700,2416,15,1,other,DSC_0848.JPG +11676,4117,2419,15,1,other,DSC_0848.JPG +11677,316,661,17,1,other,DSC_0848.JPG +11678,5260,763,17,1,other,DSC_0848.JPG +11679,5356,823,17,1,other,DSC_0848.JPG +11680,742,916,15,1,other,DSC_0848.JPG +11681,229,1426,15,1,other,DSC_0848.JPG +11682,577,1666,17,1,other,DSC_0848.JPG +11683,610,1723,17,1,other,DSC_0848.JPG +11684,409,1837,17,1,other,DSC_0848.JPG +11685,1303,2092,17,1,other,DSC_0848.JPG +11686,859,2137,17,1,other,DSC_0848.JPG +11687,5071,2140,17,1,other,DSC_0848.JPG +11688,4915,2203,17,1,other,DSC_0848.JPG +11689,5101,2287,17,1,other,DSC_0848.JPG +11690,3034,2356,17,1,other,DSC_0848.JPG +11691,3241,2362,17,1,other,DSC_0848.JPG +11692,3979,2413,16,1,other,DSC_0848.JPG +11693,4852,277,17,1,other,DSC_0848.JPG +11694,5194,523,17,1,other,DSC_0848.JPG +11695,5356,943,17,1,other,DSC_0848.JPG +11696,151,946,17,1,other,DSC_0848.JPG +11697,250,1018,17,1,other,DSC_0848.JPG +11698,430,1075,17,1,other,DSC_0848.JPG +11699,4372,1654,17,1,other,DSC_0848.JPG +11700,748,1735,17,1,other,DSC_0848.JPG +11702,2059,1765,15,1,other,DSC_0848.JPG +11703,4894,1831,15,1,other,DSC_0848.JPG +11704,403,2062,17,1,other,DSC_0848.JPG +11705,895,2077,17,1,other,DSC_0848.JPG +11706,1030,2086,17,1,other,DSC_0848.JPG +11707,3244,2245,17,1,other,DSC_0848.JPG +11708,826,2308,15,1,other,DSC_0848.JPG +11709,4744,2407,15,1,other,DSC_0848.JPG +11710,2830,2458,15,1,other,DSC_0848.JPG +11711,4885,94,17,1,other,DSC_0848.JPG +11712,5023,463,17,1,other,DSC_0848.JPG +11713,124,1123,17,1,other,DSC_0848.JPG +11714,223,1192,17,1,other,DSC_0848.JPG +11715,5341,1408,17,1,other,DSC_0848.JPG +11716,199,1825,17,1,other,DSC_0848.JPG +11717,856,1906,17,1,other,DSC_0848.JPG +11718,751,1963,17,1,other,DSC_0848.JPG +11719,1447,2323,17,1,other,DSC_0848.JPG +11720,3301,10,15,1,other,DSC_0848.JPG +11721,5125,157,17,1,other,DSC_0848.JPG +11722,4981,646,17,1,other,DSC_0848.JPG +11725,367,1546,17,1,other,DSC_0848.JPG +11726,433,1549,15,1,other,DSC_0848.JPG +11727,2239,1606,16,1,other,DSC_0848.JPG +11728,538,1609,17,1,other,DSC_0848.JPG +11729,820,2080,17,1,other,DSC_0848.JPG +11730,1273,2149,17,1,other,DSC_0848.JPG +11731,1300,2323,15,1,other,DSC_0848.JPG +11732,2692,2347,15,1,other,DSC_0848.JPG +11733,1516,2440,15,1,other,DSC_0848.JPG +11734,3241,2455,15,1,other,DSC_0848.JPG +11735,3178,2467,15,1,other,DSC_0848.JPG +11736,4429,2467,15,1,other,DSC_0848.JPG +11737,2215,70,15,1,other,DSC_0848.JPG +11738,76,466,17,1,other,DSC_0848.JPG +11739,598,667,17,1,other,DSC_0848.JPG +11740,562,973,17,1,other,DSC_0848.JPG +11742,5269,1768,17,1,other,DSC_0848.JPG +11743,610,1957,17,1,other,DSC_0848.JPG +11744,2794,2296,15,1,other,DSC_0848.JPG +11745,2656,2401,17,1,other,DSC_0848.JPG +11746,5023,220,17,1,other,DSC_0848.JPG +11747,313,898,17,1,other,DSC_0848.JPG +11748,439,1429,17,1,other,DSC_0848.JPG +11749,472,1606,17,1,other,DSC_0848.JPG +1175,4855,1996,15,1,other,DSC_0844.JPG +11750,643,1672,17,1,other,DSC_0848.JPG +11751,331,1714,15,1,other,DSC_0848.JPG +11752,2350,1762,15,1,other,DSC_0848.JPG +11753,295,1771,15,1,other,DSC_0848.JPG +11754,1036,2314,15,1,other,DSC_0848.JPG +11755,2167,2401,17,1,other,DSC_0848.JPG +11756,4855,34,17,1,other,DSC_0848.JPG +11757,5167,220,17,1,other,DSC_0848.JPG +11758,148,355,17,1,other,DSC_0848.JPG +11759,5230,706,17,1,other,DSC_0848.JPG +1176,5023,2161,16,1,other,DSC_0844.JPG +11760,2137,1405,17,1,other,DSC_0848.JPG +11761,577,2008,17,1,other,DSC_0848.JPG +11762,1000,2260,17,1,other,DSC_0848.JPG +11763,5176,2275,17,1,other,DSC_0848.JPG +11764,3382,2362,15,1,other,DSC_0848.JPG +11765,2797,2410,15,1,other,DSC_0848.JPG +11766,3277,2413,17,1,other,DSC_0848.JPG +11767,4048,2416,16,1,other,DSC_0848.JPG +11768,1303,2440,17,1,other,DSC_0848.JPG +11769,5269,280,17,1,other,DSC_0848.JPG +1177,3088,2353,17,1,other,DSC_0844.JPG +11770,178,292,15,1,other,DSC_0848.JPG +11771,5023,583,17,1,other,DSC_0848.JPG +11772,79,946,17,1,other,DSC_0848.JPG +11773,154,1183,17,1,other,DSC_0848.JPG +11774,403,1375,17,1,other,DSC_0848.JPG +11775,1852,1636,17,1,other,DSC_0848.JPG +11776,577,1777,17,1,other,DSC_0848.JPG +11777,232,1999,15,1,other,DSC_0848.JPG +11778,4993,2134,15,1,other,DSC_0848.JPG +11779,3625,2413,17,1,other,DSC_0848.JPG +11780,1861,2446,17,1,other,DSC_0848.JPG +11781,4285,2464,17,1,other,DSC_0848.JPG +11782,4351,22,17,1,other,DSC_0848.JPG +11783,5266,160,17,1,other,DSC_0848.JPG +11784,172,175,17,1,other,DSC_0848.JPG +11785,244,535,17,1,other,DSC_0848.JPG +11786,5128,643,15,1,other,DSC_0848.JPG +11787,526,1024,17,1,other,DSC_0848.JPG +11788,4420,1246,17,1,other,DSC_0848.JPG +11789,193,1360,17,1,other,DSC_0848.JPG +1179,4531,61,17,1,other,DSC_0844.JPG +11790,5380,1459,17,1,other,DSC_0848.JPG +11791,331,1603,17,1,other,DSC_0848.JPG +11792,517,2242,15,1,other,DSC_0848.JPG +11793,4948,2281,17,1,other,DSC_0848.JPG +11794,1102,2314,17,1,other,DSC_0848.JPG +11795,2830,2350,15,1,other,DSC_0848.JPG +11796,3346,2413,15,1,other,DSC_0848.JPG +11797,5368,586,15,1,other,DSC_0848.JPG +11798,382,781,17,1,other,DSC_0848.JPG +11799,316,1018,17,1,other,DSC_0848.JPG +11800,5251,1120,17,1,other,DSC_0848.JPG +11801,676,1618,17,1,other,DSC_0848.JPG +11802,544,1723,17,1,other,DSC_0848.JPG +11803,1684,2275,17,1,other,DSC_0848.JPG +11804,5398,403,15,1,other,DSC_0848.JPG +11805,385,418,17,1,other,DSC_0848.JPG +11806,5161,460,17,1,other,DSC_0848.JPG +11807,280,481,15,1,other,DSC_0848.JPG +11808,5053,763,17,1,other,DSC_0848.JPG +11809,5356,1060,15,1,other,DSC_0848.JPG +11810,397,1138,17,1,other,DSC_0848.JPG +11811,88,1183,15,1,other,DSC_0848.JPG +11812,256,1252,17,1,other,DSC_0848.JPG +11813,262,1363,17,1,other,DSC_0848.JPG +11815,2104,1810,17,1,other,DSC_0848.JPG +11816,4189,2419,17,1,other,DSC_0848.JPG +11817,2953,13,15,1,other,DSC_0848.JPG +11818,784,1669,15,1,other,DSC_0848.JPG +11819,5218,2134,15,1,other,DSC_0848.JPG +1182,1408,148,17,1,other,DSC_0844.JPG +11820,5332,640,17,1,other,DSC_0848.JPG +11821,298,1657,17,1,other,DSC_0848.JPG +11822,5170,1945,15,1,other,DSC_0848.JPG +11823,1963,2392,15,1,other,DSC_0848.JPG +11824,3139,2413,17,1,other,DSC_0848.JPG +11825,3871,2464,17,1,other,DSC_0848.JPG +11826,4645,25,17,1,other,DSC_0848.JPG +11827,5263,649,17,1,other,DSC_0848.JPG +11828,5122,889,17,1,other,DSC_0848.JPG +11829,529,907,17,1,other,DSC_0848.JPG +11830,2731,1468,17,1,other,DSC_0848.JPG +11831,232,1654,17,1,other,DSC_0848.JPG +11832,2107,1705,17,1,other,DSC_0848.JPG +11833,5305,1819,15,1,other,DSC_0848.JPG +11834,790,2017,17,1,other,DSC_0848.JPG +11835,919,2026,15,1,other,DSC_0848.JPG +11836,5257,2215,17,1,other,DSC_0848.JPG +11837,2518,2401,15,1,other,DSC_0848.JPG +11838,2968,2461,15,1,other,DSC_0848.JPG +11839,4495,2467,15,1,other,DSC_0848.JPG +11840,2734,10,15,1,other,DSC_0848.JPG +11841,2533,13,15,1,other,DSC_0848.JPG +11842,3157,13,16,1,other,DSC_0848.JPG +11843,3511,16,15,1,other,DSC_0848.JPG +11844,4498,28,15,1,other,DSC_0848.JPG +11845,352,604,17,1,other,DSC_0848.JPG +11846,5224,823,17,1,other,DSC_0848.JPG +11847,244,895,17,1,other,DSC_0848.JPG +11848,256,1129,17,1,other,DSC_0848.JPG +11849,223,1303,15,1,other,DSC_0848.JPG +11851,2392,1594,15,1,other,DSC_0848.JPG +11852,442,1663,17,1,other,DSC_0848.JPG +11853,820,1960,15,1,other,DSC_0848.JPG +11854,1000,2368,17,1,other,DSC_0848.JPG +11855,4360,2470,15,1,other,DSC_0848.JPG +11856,5395,766,17,1,other,DSC_0848.JPG +11857,115,886,17,1,other,DSC_0848.JPG +11859,190,1246,15,1,other,DSC_0848.JPG +11860,505,1552,17,1,other,DSC_0848.JPG +11861,685,1840,17,1,other,DSC_0848.JPG +11862,5026,97,17,1,other,DSC_0848.JPG +11863,5293,706,17,1,other,DSC_0848.JPG +11864,2758,1294,17,1,other,DSC_0848.JPG +11865,646,1327,15,1,other,DSC_0848.JPG +11867,508,1663,15,1,other,DSC_0848.JPG +11868,898,2311,17,1,other,DSC_0848.JPG +11869,3070,2404,15,1,other,DSC_0848.JPG +11870,5158,829,15,1,other,DSC_0848.JPG +11871,2569,1189,15,1,other,DSC_0848.JPG +11872,5335,1759,16,1,other,DSC_0848.JPG +11873,544,1945,17,1,other,DSC_0848.JPG +11874,619,2188,15,1,other,DSC_0848.JPG +11875,823,2188,15,1,other,DSC_0848.JPG +11876,5302,217,17,1,other,DSC_0848.JPG +11877,4984,526,17,1,other,DSC_0848.JPG +11878,5194,646,17,1,other,DSC_0848.JPG +11879,4963,1366,17,1,other,DSC_0848.JPG +11881,406,2302,15,1,other,DSC_0848.JPG +11882,2725,2404,15,1,other,DSC_0848.JPG +11883,139,229,15,1,other,DSC_0848.JPG +11884,145,595,17,1,other,DSC_0848.JPG +11886,298,1426,17,1,other,DSC_0848.JPG +11888,235,1882,17,1,other,DSC_0848.JPG +11889,853,2017,17,1,other,DSC_0848.JPG +11890,337,2065,17,1,other,DSC_0848.JPG +11891,472,2065,17,1,other,DSC_0848.JPG +11892,859,2254,17,1,other,DSC_0848.JPG +11893,1099,2431,17,1,other,DSC_0848.JPG +11894,4951,91,17,1,other,DSC_0848.JPG +11895,4708,277,17,1,other,DSC_0848.JPG +11896,5197,280,17,1,other,DSC_0848.JPG +11897,46,994,17,1,other,DSC_0848.JPG +11898,817,2422,17,1,other,DSC_0848.JPG +11899,1444,2440,15,1,other,DSC_0848.JPG +11900,4147,2467,17,1,other,DSC_0848.JPG +11901,2809,10,15,1,other,DSC_0848.JPG +11902,244,778,17,1,other,DSC_0848.JPG +11903,121,1246,17,1,other,DSC_0848.JPG +11904,2584,1636,17,1,other,DSC_0848.JPG +11905,715,1675,17,1,other,DSC_0848.JPG +11906,337,1834,17,1,other,DSC_0848.JPG +11907,757,2305,15,1,other,DSC_0848.JPG +11908,3001,2416,15,1,other,DSC_0848.JPG +11909,3091,13,15,1,other,DSC_0848.JPG +11910,214,235,15,1,other,DSC_0848.JPG +11911,199,1597,15,1,other,DSC_0848.JPG +11912,226,1768,15,1,other,DSC_0848.JPG +11913,646,1900,17,1,other,DSC_0848.JPG +11914,508,2011,17,1,other,DSC_0848.JPG +11915,4774,2464,17,1,other,DSC_0848.JPG +11916,4843,2464,17,1,other,DSC_0848.JPG +11917,115,286,17,1,other,DSC_0848.JPG +11918,2752,1390,15,1,other,DSC_0848.JPG +11919,160,1420,17,1,other,DSC_0848.JPG +11920,166,1534,17,1,other,DSC_0848.JPG +11921,2281,1756,17,1,other,DSC_0848.JPG +11922,1024,1972,17,1,other,DSC_0848.JPG +11923,541,2068,17,1,other,DSC_0848.JPG +11924,373,2122,17,1,other,DSC_0848.JPG +11925,5191,769,17,1,other,DSC_0848.JPG +11926,181,772,15,1,other,DSC_0848.JPG +11927,5218,1060,17,1,other,DSC_0848.JPG +11928,193,1480,17,1,other,DSC_0848.JPG +11930,5239,1591,17,1,other,DSC_0848.JPG +11931,259,1717,15,1,other,DSC_0848.JPG +11933,577,1894,17,1,other,DSC_0848.JPG +11934,4216,2470,17,1,other,DSC_0848.JPG +11935,5386,1225,15,1,other,DSC_0848.JPG +11936,5341,1288,17,1,other,DSC_0848.JPG +11937,160,1300,15,1,other,DSC_0848.JPG +11938,325,1372,17,1,other,DSC_0848.JPG +11939,538,1495,17,1,other,DSC_0848.JPG +11941,166,1882,15,1,other,DSC_0848.JPG +11942,3415,2410,15,1,other,DSC_0848.JPG +11943,5236,223,17,1,other,DSC_0848.JPG +11944,214,721,17,1,other,DSC_0848.JPG +11945,331,1135,17,1,other,DSC_0848.JPG +1195,4837,1339,15,1,other,DSC_0844.JPG +11950,331,1948,17,1,other,DSC_0848.JPG +11951,760,2185,17,1,other,DSC_0848.JPG +11952,5323,2206,17,1,other,DSC_0848.JPG +11953,721,2245,17,1,other,DSC_0848.JPG +11954,5053,2347,15,1,other,DSC_0848.JPG +11955,784,2368,17,1,other,DSC_0848.JPG +11956,604,2419,17,1,other,DSC_0848.JPG +11957,2068,2446,15,1,other,DSC_0848.JPG +11958,2461,13,15,1,other,DSC_0848.JPG +11959,4294,25,17,1,other,DSC_0848.JPG +1196,298,1420,17,1,other,DSC_0844.JPG +11960,4783,28,15,1,other,DSC_0848.JPG +11961,5401,643,15,1,other,DSC_0848.JPG +11962,286,838,17,1,other,DSC_0848.JPG +11963,133,1477,15,1,other,DSC_0848.JPG +11964,718,1906,17,1,other,DSC_0848.JPG +11965,5251,2278,17,1,other,DSC_0848.JPG +11966,934,2365,17,1,other,DSC_0848.JPG +11967,2899,2452,15,1,other,DSC_0848.JPG +11968,3103,2455,15,1,other,DSC_0848.JPG +11969,2242,4,15,1,other,DSC_0848.JPG +11970,3586,10,16,1,other,DSC_0848.JPG +11971,5371,217,15,1,other,DSC_0848.JPG +11972,91,1417,15,1,other,DSC_0848.JPG +11974,262,1597,17,1,other,DSC_0848.JPG +11975,1996,1633,15,1,other,DSC_0848.JPG +11977,475,2296,17,1,other,DSC_0848.JPG +11978,511,2356,15,1,other,DSC_0848.JPG +11979,2935,2410,15,1,other,DSC_0848.JPG +11980,2137,2455,15,1,other,DSC_0848.JPG +11981,4078,2464,17,1,other,DSC_0848.JPG +11982,3019,13,15,1,other,DSC_0848.JPG +11983,346,841,17,1,other,DSC_0848.JPG +11984,5398,886,17,1,other,DSC_0848.JPG +11986,715,2128,15,1,other,DSC_0848.JPG +11987,481,2179,15,1,other,DSC_0848.JPG +11988,1798,2443,17,1,other,DSC_0848.JPG +11989,4978,2461,17,1,other,DSC_0848.JPG +11990,5200,34,15,1,other,DSC_0848.JPG +11992,397,1609,17,1,other,DSC_0848.JPG +11993,2731,1717,15,1,other,DSC_0848.JPG +11994,403,1720,17,1,other,DSC_0848.JPG +11995,508,2122,17,1,other,DSC_0848.JPG +11996,691,2191,17,1,other,DSC_0848.JPG +11997,934,2254,17,1,other,DSC_0848.JPG +11998,1063,2377,17,1,other,DSC_0848.JPG +11999,2665,10,17,1,other,DSC_0848.JPG +12000,5365,334,15,1,other,DSC_0848.JPG +12001,289,1312,17,1,other,DSC_0848.JPG +12002,5095,2065,16,1,other,DSC_0848.JPG +12003,3514,2461,15,1,other,DSC_0848.JPG +12004,4006,19,15,1,other,DSC_0848.JPG +12005,4987,31,17,1,other,DSC_0848.JPG +12006,5338,157,17,1,other,DSC_0848.JPG +12007,220,1072,15,1,other,DSC_0848.JPG +12008,538,1840,17,1,other,DSC_0848.JPG +12009,268,2059,15,1,other,DSC_0848.JPG +12010,3661,2476,15,1,other,DSC_0848.JPG +12011,3937,28,15,1,other,DSC_0848.JPG +12013,2863,2401,15,1,other,DSC_0848.JPG +12014,1234,2440,17,1,other,DSC_0848.JPG +12015,2104,10,15,1,other,DSC_0848.JPG +12016,4144,22,15,1,other,DSC_0848.JPG +12017,175,52,15,1,other,DSC_0848.JPG +12018,280,718,17,1,other,DSC_0848.JPG +12019,364,1426,17,1,other,DSC_0848.JPG +12020,613,2071,17,1,other,DSC_0848.JPG +12021,751,2071,17,1,other,DSC_0848.JPG +12022,793,2248,17,1,other,DSC_0848.JPG +12023,5188,2455,17,1,other,DSC_0848.JPG +12024,5134,37,17,1,other,DSC_0848.JPG +12025,5098,94,15,1,other,DSC_0848.JPG +12026,436,1777,17,1,other,DSC_0848.JPG +12027,784,2131,17,1,other,DSC_0848.JPG +12028,205,2170,17,1,other,DSC_0848.JPG +12029,328,2419,17,1,other,DSC_0848.JPG +1203,3958,58,17,1,other,DSC_0844.JPG +12030,1966,4,16,1,other,DSC_0848.JPG +12031,5272,34,15,1,other,DSC_0848.JPG +12032,43,643,15,1,other,DSC_0848.JPG +12033,5389,997,15,1,other,DSC_0848.JPG +12034,391,1255,15,1,other,DSC_0848.JPG +12035,5362,1927,17,1,other,DSC_0848.JPG +12036,4156,2350,15,1,other,DSC_0848.JPG +12037,3805,2476,15,1,other,DSC_0848.JPG +12038,250,49,15,1,other,DSC_0848.JPG +12039,76,592,17,1,other,DSC_0848.JPG +1204,1519,88,15,1,other,DSC_0844.JPG +12040,358,1075,17,1,other,DSC_0848.JPG +12042,2617,1768,17,1,other,DSC_0848.JPG +12043,2032,2503,15,1,other,DSC_0848.JPG +12044,112,415,17,1,other,DSC_0848.JPG +12045,55,1237,15,1,other,DSC_0848.JPG +12047,718,2020,17,1,other,DSC_0848.JPG +12048,445,2353,15,1,other,DSC_0848.JPG +12049,3940,2470,15,1,other,DSC_0848.JPG +1205,3775,127,17,1,other,DSC_0844.JPG +12050,2599,13,15,1,other,DSC_0848.JPG +12051,364,1312,15,1,other,DSC_0848.JPG +12052,262,1486,17,1,other,DSC_0848.JPG +12053,403,1492,17,1,other,DSC_0848.JPG +12054,643,1780,17,1,other,DSC_0848.JPG +12055,961,2197,17,1,other,DSC_0848.JPG +12056,445,2236,17,1,other,DSC_0848.JPG +12057,655,2239,15,1,other,DSC_0848.JPG +12058,751,2425,15,1,other,DSC_0848.JPG +12059,3592,2476,15,1,other,DSC_0848.JPG +1206,3739,331,17,1,other,DSC_0844.JPG +12060,76,232,15,1,other,DSC_0848.JPG +12061,283,1192,17,1,other,DSC_0848.JPG +12063,130,1360,15,1,other,DSC_0848.JPG +12064,475,1945,17,1,other,DSC_0848.JPG +12065,304,2116,15,1,other,DSC_0848.JPG +12066,2878,10,15,1,other,DSC_0848.JPG +12067,5302,94,17,1,other,DSC_0848.JPG +12069,136,1699,15,1,other,DSC_0848.JPG +12070,475,1720,17,1,other,DSC_0848.JPG +12071,5296,1930,15,1,other,DSC_0848.JPG +12072,5326,1984,17,1,other,DSC_0848.JPG +12073,580,2125,15,1,other,DSC_0848.JPG +12074,5158,2407,15,1,other,DSC_0848.JPG +12075,3235,10,17,1,other,DSC_0848.JPG +12076,3658,19,15,1,other,DSC_0848.JPG +12077,5386,1114,15,1,other,DSC_0848.JPG +12078,2608,1354,16,1,other,DSC_0848.JPG +12079,5374,1816,15,1,other,DSC_0848.JPG +1208,4081,595,17,1,other,DSC_0844.JPG +12080,649,2005,17,1,other,DSC_0848.JPG +12081,5242,2056,17,1,other,DSC_0848.JPG +12082,580,2248,15,1,other,DSC_0848.JPG +12083,553,2308,17,1,other,DSC_0848.JPG +12084,1828,4,16,1,other,DSC_0848.JPG +12085,5428,934,15,1,other,DSC_0848.JPG +12086,2683,1285,17,1,other,DSC_0848.JPG +12089,2533,1804,17,1,other,DSC_0848.JPG +12090,607,1840,17,1,other,DSC_0848.JPG +12091,649,2134,17,1,other,DSC_0848.JPG +12092,577,2365,17,1,other,DSC_0848.JPG +12093,4012,2473,15,1,other,DSC_0848.JPG +12095,367,1666,17,1,other,DSC_0848.JPG +12096,169,2107,17,1,other,DSC_0848.JPG +12097,433,2110,15,1,other,DSC_0848.JPG +12098,2182,10,15,1,other,DSC_0848.JPG +12099,5404,160,17,1,other,DSC_0848.JPG +12101,166,1645,15,1,other,DSC_0848.JPG +12103,478,1840,15,1,other,DSC_0848.JPG +12104,682,2071,17,1,other,DSC_0848.JPG +12105,622,2293,17,1,other,DSC_0848.JPG +12106,691,2308,17,1,other,DSC_0848.JPG +12107,964,2416,17,1,other,DSC_0848.JPG +12108,262,2419,15,1,other,DSC_0848.JPG +12109,1177,2434,15,1,other,DSC_0848.JPG +12110,3442,10,17,1,other,DSC_0848.JPG +12111,100,1645,17,1,other,DSC_0848.JPG +12112,442,1891,17,1,other,DSC_0848.JPG +12113,112,49,17,1,other,DSC_0848.JPG +12114,76,352,17,1,other,DSC_0848.JPG +12115,5422,1168,15,1,other,DSC_0848.JPG +12116,127,1579,17,1,other,DSC_0848.JPG +12117,5371,1696,17,1,other,DSC_0848.JPG +12118,40,412,15,1,other,DSC_0848.JPG +12119,2452,1696,17,1,other,DSC_0848.JPG +12120,130,1930,17,1,other,DSC_0848.JPG +12121,373,2005,17,1,other,DSC_0848.JPG +12122,229,2110,17,1,other,DSC_0848.JPG +12123,301,2239,17,1,other,DSC_0848.JPG +12124,3451,2464,15,1,other,DSC_0848.JPG +12125,928,2467,15,1,other,DSC_0848.JPG +12126,13,703,15,1,other,DSC_0848.JPG +12128,5221,2392,17,1,other,DSC_0848.JPG +12129,3730,2470,16,1,other,DSC_0848.JPG +12130,3313,2461,17,1,other,DSC_0848.JPG +12131,5374,94,15,1,other,DSC_0848.JPG +12134,2164,1534,15,1,other,DSC_0848.JPG +12135,130,1816,15,1,other,DSC_0848.JPG +12136,130,2167,17,1,other,DSC_0848.JPG +12137,163,2230,17,1,other,DSC_0848.JPG +12138,724,2362,17,1,other,DSC_0848.JPG +12139,139,112,15,1,other,DSC_0848.JPG +12140,313,781,17,1,other,DSC_0848.JPG +12142,2629,1159,15,1,other,DSC_0848.JPG +12143,196,1708,17,1,other,DSC_0848.JPG +12144,511,1897,17,1,other,DSC_0848.JPG +12145,1759,2500,16,1,other,DSC_0848.JPG +12146,2311,4,17,1,other,DSC_0848.JPG +12147,2389,7,15,1,other,DSC_0848.JPG +12148,5350,37,17,1,other,DSC_0848.JPG +12149,325,1255,17,1,other,DSC_0848.JPG +12150,478,2413,17,1,other,DSC_0848.JPG +12151,3037,2467,17,1,other,DSC_0848.JPG +12152,4078,16,17,1,other,DSC_0848.JPG +12153,4918,25,17,1,other,DSC_0848.JPG +12154,211,115,17,1,other,DSC_0848.JPG +12155,5413,1522,15,1,other,DSC_0848.JPG +12156,1021,2434,17,1,other,DSC_0848.JPG +12157,40,526,15,1,other,DSC_0848.JPG +12158,2449,1513,16,1,other,DSC_0848.JPG +12159,337,2308,17,1,other,DSC_0848.JPG +12160,646,2368,17,1,other,DSC_0848.JPG +12161,37,280,15,1,other,DSC_0848.JPG +12163,5404,1639,15,1,other,DSC_0848.JPG +12164,97,1762,15,1,other,DSC_0848.JPG +12165,277,2185,17,1,other,DSC_0848.JPG +12166,5203,2200,15,1,other,DSC_0848.JPG +12167,5353,2275,17,1,other,DSC_0848.JPG +12168,169,2347,17,1,other,DSC_0848.JPG +12169,307,2362,15,1,other,DSC_0848.JPG +12170,5287,2395,17,1,other,DSC_0848.JPG +12171,883,2416,17,1,other,DSC_0848.JPG +12172,5245,2449,15,1,other,DSC_0848.JPG +12173,3379,2470,15,1,other,DSC_0848.JPG +12174,787,2476,15,1,other,DSC_0848.JPG +12175,5368,1579,15,1,other,DSC_0848.JPG +12176,97,2005,15,1,other,DSC_0848.JPG +12177,5290,2134,15,1,other,DSC_0848.JPG +12178,1963,2500,15,1,other,DSC_0848.JPG +12179,1897,2503,15,1,other,DSC_0848.JPG +12180,106,169,15,1,other,DSC_0848.JPG +12181,1897,10,17,1,other,DSC_0848.JPG +12182,5260,2338,15,1,other,DSC_0848.JPG +12183,5395,526,15,1,other,DSC_0848.JPG +12184,166,1987,17,1,other,DSC_0848.JPG +12185,346,2176,17,1,other,DSC_0848.JPG +12186,193,2053,15,1,other,DSC_0848.JPG +12187,229,2353,15,1,other,DSC_0848.JPG +12188,370,2368,17,1,other,DSC_0848.JPG +12189,133,2416,17,1,other,DSC_0848.JPG +12190,691,2425,17,1,other,DSC_0848.JPG +12191,535,2428,15,1,other,DSC_0848.JPG +12192,385,2473,17,1,other,DSC_0848.JPG +12193,1693,2503,17,1,other,DSC_0848.JPG +12194,52,889,15,1,other,DSC_0848.JPG +12195,64,1357,17,1,other,DSC_0848.JPG +12196,202,1930,17,1,other,DSC_0848.JPG +12197,508,2491,15,1,other,DSC_0848.JPG +12198,232,2239,17,1,other,DSC_0848.JPG +12199,379,2242,17,1,other,DSC_0848.JPG +12200,265,2296,17,1,other,DSC_0848.JPG +12201,4711,2452,15,1,other,DSC_0848.JPG +12202,1612,2494,17,1,other,DSC_0848.JPG +12203,1573,793,15,1,other,DSC_0848.JPG +12204,1678,4,17,1,other,DSC_0848.JPG +12205,1546,7,17,1,other,DSC_0848.JPG +12206,289,1081,17,1,other,DSC_0848.JPG +12207,58,1117,15,1,other,DSC_0848.JPG +12208,655,1435,17,1,other,DSC_0848.JPG +12209,442,2464,15,1,other,DSC_0848.JPG +12210,634,2482,17,1,other,DSC_0848.JPG +12211,853,2491,15,1,other,DSC_0848.JPG +12212,5398,1870,17,1,other,DSC_0848.JPG +12213,196,2413,17,1,other,DSC_0848.JPG +12214,415,2416,15,1,other,DSC_0848.JPG +12215,406,2182,17,1,other,DSC_0848.JPG +12216,133,2284,15,1,other,DSC_0848.JPG +12217,355,730,15,1,other,DSC_0848.JPG +12218,1906,859,15,1,other,DSC_0848.JPG +12219,5413,1408,17,1,other,DSC_0848.JPG +12220,52,1483,17,1,other,DSC_0848.JPG +12221,1276,1678,15,1,other,DSC_0848.JPG +12222,13,1063,15,1,other,DSC_0848.JPG +12223,5410,1759,17,1,other,DSC_0848.JPG +12224,94,2101,17,1,other,DSC_0848.JPG +12225,199,2290,15,1,other,DSC_0848.JPG +12226,91,2455,15,1,other,DSC_0848.JPG +12227,1486,2500,15,1,other,DSC_0848.JPG +12228,1258,4,15,1,other,DSC_0848.JPG +12229,94,1294,17,1,other,DSC_0848.JPG +1223,4729,1396,15,1,other,DSC_0844.JPG +12230,2179,1819,15,1,other,DSC_0848.JPG +12231,1126,2491,17,1,other,DSC_0848.JPG +12232,1552,2500,15,1,other,DSC_0848.JPG +12233,5407,277,17,1,other,DSC_0848.JPG +12234,5425,829,17,1,other,DSC_0848.JPG +12235,715,1453,15,1,other,DSC_0848.JPG +12236,5053,2470,15,1,other,DSC_0848.JPG +12237,169,2476,15,1,other,DSC_0848.JPG +12238,1057,2488,15,1,other,DSC_0848.JPG +12239,1750,4,16,1,other,DSC_0848.JPG +1224,2440,1684,17,1,other,DSC_0844.JPG +12240,5323,2329,15,1,other,DSC_0848.JPG +12241,1414,2494,17,1,other,DSC_0848.JPG +12242,5419,1294,15,1,other,DSC_0848.JPG +12243,1336,2485,17,1,other,DSC_0848.JPG +12244,64,2164,17,1,other,DSC_0848.JPG +12245,1279,2494,17,1,other,DSC_0848.JPG +12246,1405,7,17,1,other,DSC_0848.JPG +12247,994,2485,15,1,other,DSC_0848.JPG +12248,718,2488,17,1,other,DSC_0848.JPG +12249,703,4,15,1,other,DSC_0848.JPG +1225,4717,1756,17,1,other,DSC_0844.JPG +12250,5431,709,15,1,other,DSC_0848.JPG +12251,88,1873,17,1,other,DSC_0848.JPG +12252,3628,571,15,1,other,DSC_0848.JPG +12253,10,943,15,1,other,DSC_0848.JPG +12254,5425,1054,15,1,other,DSC_0848.JPG +12255,100,1522,15,1,other,DSC_0848.JPG +12256,136,2056,15,1,other,DSC_0848.JPG +12257,55,2056,17,1,other,DSC_0848.JPG +12258,67,97,15,1,other,DSC_0848.JPG +12260,67,1942,15,1,other,DSC_0848.JPG +12261,5302,2044,17,1,other,DSC_0848.JPG +12262,577,2497,15,1,other,DSC_0848.JPG +12263,1201,2503,17,1,other,DSC_0848.JPG +12264,1192,4,17,1,other,DSC_0848.JPG +12265,94,2236,17,1,other,DSC_0848.JPG +12266,5113,2467,17,1,other,DSC_0848.JPG +12267,766,4,15,1,other,DSC_0848.JPG +12268,5413,37,17,1,other,DSC_0848.JPG +12269,1363,1627,15,1,other,DSC_0848.JPG +12270,61,1690,15,1,other,DSC_0848.JPG +12271,5200,2332,15,1,other,DSC_0848.JPG +12272,1474,7,15,1,other,DSC_0848.JPG +12273,70,1813,17,1,other,DSC_0848.JPG +12274,232,2470,17,1,other,DSC_0848.JPG +12275,1840,2500,17,1,other,DSC_0848.JPG +12276,910,4,17,1,other,DSC_0848.JPG +12277,1621,7,15,1,other,DSC_0848.JPG +12278,4,580,17,1,other,DSC_0848.JPG +12279,505,1771,17,1,other,DSC_0848.JPG +12280,2104,2503,15,1,other,DSC_0848.JPG +12281,4738,349,17,1,other,DSC_0848.JPG +12282,10,475,15,1,other,DSC_0848.JPG +12283,37,1294,15,1,other,DSC_0848.JPG +12284,4405,2173,17,1,other,DSC_0848.JPG +12285,5392,2236,15,1,other,DSC_0848.JPG +12286,301,2482,17,1,other,DSC_0848.JPG +12287,208,7,15,1,other,DSC_0848.JPG +12288,2029,7,17,1,other,DSC_0848.JPG +12289,4,232,16,1,other,DSC_0848.JPG +1229,472,1969,15,1,other,DSC_0844.JPG +12290,982,847,15,1,other,DSC_0848.JPG +12291,4195,1237,15,1,other,DSC_0848.JPG +12292,2620,1300,16,1,other,DSC_0848.JPG +12294,64,2296,15,1,other,DSC_0848.JPG +12295,5431,463,15,1,other,DSC_0848.JPG +12296,3796,751,17,1,other,DSC_0848.JPG +12297,19,826,15,1,other,DSC_0848.JPG +12298,415,10,17,1,other,DSC_0848.JPG +12299,3127,808,15,1,other,DSC_0848.JPG +1230,1111,2119,15,1,other,DSC_0844.JPG +12300,3406,1171,17,1,other,DSC_0848.JPG +12301,559,4,15,1,other,DSC_0848.JPG +12302,31,46,15,1,other,DSC_0848.JPG +12303,67,1576,15,1,other,DSC_0848.JPG +12304,2236,2503,17,1,other,DSC_0848.JPG +12305,40,178,17,1,other,DSC_0848.JPG +12306,37,1630,17,1,other,DSC_0848.JPG +12307,292,4,15,1,other,DSC_0848.JPG +12308,994,7,17,1,other,DSC_0848.JPG +12309,28,1177,15,1,other,DSC_0848.JPG +1231,3331,2296,17,1,other,DSC_0844.JPG +12310,352,4,15,1,other,DSC_0848.JPG +12311,1123,7,15,1,other,DSC_0848.JPG +12312,1342,10,17,1,other,DSC_0848.JPG +12313,5431,595,15,1,other,DSC_0848.JPG +12314,1954,2173,17,1,other,DSC_0848.JPG +12315,3136,2503,17,1,other,DSC_0848.JPG +12316,28,1990,17,1,other,DSC_0848.JPG +12317,643,7,17,1,other,DSC_0848.JPG +12318,1060,7,16,1,other,DSC_0848.JPG +12319,4,115,16,1,other,DSC_0848.JPG +12320,2419,553,17,1,other,DSC_0848.JPG +12321,2590,1822,17,1,other,DSC_0848.JPG +12322,2926,2500,17,1,other,DSC_0848.JPG +12335,5509,2197,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12406,1843,2668,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12426,310,664,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12440,3448,2692,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12491,1987,2668,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12497,403,604,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12502,559,2311,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12522,556,2185,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12524,730,2383,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12527,1630,2662,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12528,1702,2662,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1253,4744,2056,15,1,other,DSC_0844.JPG +12539,373,1039,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1254,715,2173,17,1,other,DSC_0844.JPG +12545,469,487,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1255,4063,124,17,1,other,DSC_0844.JPG +12551,445,1996,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1257,229,568,15,1,other,DSC_0844.JPG +12590,445,1048,15,5,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12599,3241,2695,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12637,400,1468,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12645,472,370,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12653,595,2374,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12659,334,1099,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12664,484,2059,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1267,4684,1696,17,1,other,DSC_0844.JPG +1269,544,1852,17,1,other,DSC_0844.JPG +12695,5533,2626,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12710,400,733,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12712,400,859,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1272,1627,2089,15,1,other,DSC_0844.JPG +12726,5506,391,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1273,3619,2179,15,1,other,DSC_0844.JPG +12737,436,547,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1274,3925,2245,15,1,other,DSC_0844.JPG +1275,4552,2347,15,1,other,DSC_0844.JPG +1276,2890,49,15,1,other,DSC_0844.JPG +1277,1936,232,17,1,other,DSC_0844.JPG +12797,367,1162,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12819,331,1210,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12823,3100,2695,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12837,862,2506,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12841,4915,2689,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12842,3169,2692,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12871,508,433,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12872,406,481,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12899,370,538,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +129,3991,124,16,1,other,DSC_0844.JPG +1291,4693,1336,16,1,other,DSC_0844.JPG +12946,364,1408,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12950,553,2065,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12969,442,922,17,5,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12979,5542,2137,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +12988,409,1108,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13009,337,736,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1301,4837,2218,16,1,other,DSC_0844.JPG +1302,4696,2224,15,1,other,DSC_0844.JPG +13021,592,2248,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13029,1951,2728,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1303,1174,2248,17,1,other,DSC_0844.JPG +13043,1918,2671,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13044,544,373,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1305,67,421,17,1,other,DSC_0844.JPG +13083,2755,2668,15,5,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13092,487,2182,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13105,337,595,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13106,370,667,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1312,5083,1507,17,1,other,DSC_0844.JPG +13151,400,1579,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13177,1066,2635,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +132,4957,2053,15,1,other,DSC_0844.JPG +1320,4570,1879,17,1,other,DSC_0844.JPG +13204,523,2248,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13218,658,2377,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13221,5497,2692,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13236,4600,2749,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13245,1240,2701,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13247,5716,1045,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1325,2293,109,15,1,other,DSC_0844.JPG +13257,625,2314,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1326,3706,124,15,1,other,DSC_0844.JPG +13262,1771,2662,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1327,2329,172,17,1,other,DSC_0844.JPG +13277,3307,2695,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13278,328,1348,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13287,2119,2644,16,5,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1329,3913,400,17,1,other,DSC_0844.JPG +13298,2470,2680,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1330,4621,403,17,1,other,DSC_0844.JPG +13317,5467,2635,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13331,1879,2725,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13350,460,2377,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13363,5194,2671,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13364,4105,2746,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13378,5578,391,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13379,5713,916,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13385,5575,2071,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13394,5566,2680,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13396,400,1699,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +134,2749,307,16,1,other,DSC_0844.JPG +13417,4324,2746,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13418,307,517,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13428,1663,2719,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13430,364,1516,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13433,412,1933,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1344,259,1360,17,1,other,DSC_0844.JPG +13441,5428,2698,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13442,4252,2746,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13444,334,1459,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13449,763,2443,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1345,331,1480,17,1,other,DSC_0844.JPG +13450,5332,2653,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13460,481,2617,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13462,4180,2746,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13463,4738,2749,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13468,856,2614,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13469,1807,2725,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13473,274,1243,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13478,5731,1870,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13483,790,2605,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13485,2392,2677,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13486,2359,2734,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13499,694,2437,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13501,5299,2605,15,5,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13502,1096,2689,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13503,511,319,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13505,403,1816,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13510,727,2494,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13519,5743,1594,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1352,4570,1999,16,1,other,DSC_0844.JPG +13523,625,2437,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13524,661,2485,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13530,412,2059,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13533,559,2434,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13534,5656,2485,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13535,5764,1171,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13536,5710,1294,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13539,5722,1513,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1354,1213,2182,17,1,other,DSC_0844.JPG +13542,757,2542,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1355,2218,2275,17,1,other,DSC_0844.JPG +13551,5617,1888,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13553,697,2311,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13555,3376,2689,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13556,1168,2698,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13557,2017,2725,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1356,2569,2284,15,1,other,DSC_0844.JPG +13564,796,2500,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13565,4393,2743,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13566,3757,2746,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1357,547,124,17,1,other,DSC_0844.JPG +13571,1378,2710,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13572,4039,2752,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13573,364,796,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1358,3667,328,16,1,other,DSC_0844.JPG +13580,697,2194,17,5,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13584,3895,2746,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1359,5092,466,17,1,other,DSC_0844.JPG +13590,5401,2644,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13592,1309,2704,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13593,433,424,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +136,4579,601,17,1,other,DSC_0844.JPG +13601,5014,2731,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13602,4666,2749,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13605,2224,2734,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13606,4942,2740,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13609,415,985,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13616,1594,2716,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13617,2152,2731,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13622,2089,2728,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13623,5527,2740,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13627,4531,2743,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13631,5644,1528,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13635,5647,1948,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13637,493,2308,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13638,724,2599,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13639,1519,2713,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13642,5773,664,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13649,3964,2749,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13653,349,1282,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13659,283,1507,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13670,5572,2188,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13672,5569,2566,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13673,931,2620,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13674,754,2659,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13675,1447,2710,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13676,5083,2731,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13684,355,1633,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13688,5548,445,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13698,5677,1576,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13703,5743,1111,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13708,370,1750,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13712,451,2119,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13717,5734,1735,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13719,3826,2749,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13729,283,1408,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1373,259,1711,17,1,other,DSC_0844.JPG +13731,1027,2689,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13732,3619,2752,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13748,5608,2245,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13749,5569,2302,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13751,1732,2725,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1377,613,1978,17,1,other,DSC_0844.JPG +13771,5260,2659,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13772,2296,2737,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13773,3688,2743,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13777,5737,580,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13782,5755,1240,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13788,5659,1822,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1379,895,2116,17,1,other,DSC_0844.JPG +13793,427,2314,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13794,5545,2506,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13804,304,1027,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1381,4675,61,17,1,other,DSC_0844.JPG +13815,2431,2740,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1382,661,196,17,1,other,DSC_0844.JPG +1383,3811,196,17,1,other,DSC_0844.JPG +13839,559,2527,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1384,766,268,17,1,other,DSC_0844.JPG +13840,2575,2746,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13841,5323,2776,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1385,4549,271,17,1,other,DSC_0844.JPG +1387,28,358,15,1,other,DSC_0844.JPG +13871,280,1684,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13873,5671,1705,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13875,2785,2734,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13882,271,724,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13888,5776,1048,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13900,586,2584,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13901,958,2683,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13902,4462,2746,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1391,4018,463,17,1,other,DSC_0844.JPG +13918,5488,2521,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13919,2647,2749,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13926,5755,973,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13945,5662,556,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13956,337,967,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13974,5614,2128,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +13975,694,2539,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14001,5635,1639,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14005,418,2179,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14006,3409,2746,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1401,4552,1342,17,1,other,DSC_0844.JPG +14031,5443,2581,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1405,790,1933,15,1,other,DSC_0844.JPG +14069,5221,2719,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14070,3481,2755,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1409,3685,2182,16,1,other,DSC_0844.JPG +1410,3742,61,15,1,other,DSC_0844.JPG +1411,2854,109,17,1,other,DSC_0844.JPG +14110,487,2512,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1412,3355,118,17,1,other,DSC_0844.JPG +14145,286,1606,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14164,5659,679,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1419,4585,1396,17,1,other,DSC_0844.JPG +14193,5731,1936,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1424,364,1900,16,1,other,DSC_0844.JPG +14250,2992,2743,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1426,1276,31,15,1,other,DSC_0844.JPG +1428,4168,193,17,1,other,DSC_0844.JPG +1429,2077,238,17,1,other,DSC_0844.JPG +14295,520,2569,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1430,1123,412,17,1,other,DSC_0844.JPG +1431,70,544,17,1,other,DSC_0844.JPG +14331,5686,1468,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14349,490,2428,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14350,5689,2428,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14352,5605,2614,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14353,5359,2716,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14354,4804,2752,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1440,403,1723,17,1,other,DSC_0844.JPG +14415,3274,2752,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14417,346,460,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1444,4678,1819,17,1,other,DSC_0844.JPG +1445,4462,1936,17,1,other,DSC_0844.JPG +1446,4747,1939,17,5,other,DSC_0844.JPG +14463,5740,1804,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14465,5677,1885,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1447,4924,1999,17,1,other,DSC_0844.JPG +14470,5641,2401,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14471,5152,2722,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14472,2926,2740,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14473,4876,2743,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1448,718,2047,16,1,other,DSC_0844.JPG +14484,5722,697,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +145,754,1990,15,1,other,DSC_0844.JPG +1450,1735,2152,15,1,other,DSC_0844.JPG +14500,277,1315,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14516,454,2245,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1452,733,199,16,1,other,DSC_0844.JPG +14530,5698,856,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14545,280,1150,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1455,133,298,17,1,other,DSC_0844.JPG +1456,298,313,17,1,other,DSC_0844.JPG +14568,5290,2710,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1460,5038,658,17,1,other,DSC_0844.JPG +14628,5596,2461,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14629,3064,2749,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14630,439,310,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14668,886,2677,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14669,3136,2752,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14670,5455,2755,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14671,5254,2776,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14676,256,625,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14727,379,2119,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14728,2857,2731,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14729,3199,2749,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14760,2506,2743,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14761,3547,2755,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14789,331,1570,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14802,625,2536,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14803,688,2647,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14806,397,364,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1481,754,2110,16,1,other,DSC_0844.JPG +1482,1000,2182,15,1,other,DSC_0844.JPG +1483,4762,61,16,1,other,DSC_0844.JPG +1484,1654,94,17,1,other,DSC_0844.JPG +14849,655,2587,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1486,2572,241,16,1,other,DSC_0844.JPG +149,4015,595,17,1,other,DSC_0844.JPG +1490,187,499,16,1,other,DSC_0844.JPG +14936,3343,2752,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14947,5716,790,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +14951,376,922,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1500,334,1366,17,1,other,DSC_0844.JPG +1506,2464,2221,17,1,other,DSC_0844.JPG +1507,2674,2227,16,1,other,DSC_0844.JPG +1508,4345,2350,17,1,other,DSC_0844.JPG +1509,1843,34,17,1,other,DSC_0844.JPG +15091,547,2629,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1510,4918,265,17,1,other,DSC_0844.JPG +15109,583,2689,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15115,5647,499,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15136,622,2638,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15146,5704,1174,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15148,5767,1321,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1515,5185,781,16,1,other,DSC_0844.JPG +15159,5608,2353,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15168,592,2482,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15169,5653,376,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15179,5707,1654,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15181,298,1753,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15184,5683,2260,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15185,820,2665,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15186,5185,2785,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15192,5701,628,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +152,928,2059,15,1,other,DSC_0844.JPG +15219,340,1690,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15240,5626,2554,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15252,5737,1420,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15271,5773,748,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15276,721,2710,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15288,448,2563,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15289,4978,2788,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1529,3136,1693,17,1,other,DSC_0844.JPG +15315,406,2608,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15317,5773,892,16,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15323,5689,742,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15324,262,1075,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1533,5209,2203,15,1,other,DSC_0844.JPG +15333,5395,2764,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15339,382,2002,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15340,784,2713,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15342,5686,2323,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15349,259,448,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1535,3781,2365,17,1,other,DSC_0844.JPG +15350,418,2419,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15351,508,2674,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15356,5083,2794,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15358,5656,799,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1536,5014,2380,17,1,other,DSC_0844.JPG +15360,5713,2374,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15362,421,2494,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15367,5737,2287,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15368,655,2701,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1537,1696,34,15,1,other,DSC_0844.JPG +15370,262,967,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15371,442,2671,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15372,244,526,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15376,5728,2467,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15377,5776,835,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15378,841,2725,17,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +15379,5635,2299,15,1,other,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1538,2116,37,16,1,other,DSC_0844.JPG +15384,4471,1585,16,1,other,DSC_0818.JPG +15386,4006,1999,15,1,other,DSC_0818.JPG +15390,3940,1762,15,1,other,DSC_0818.JPG +15395,4114,1822,15,1,other,DSC_0818.JPG +154,1162,85,15,1,other,DSC_0844.JPG +15402,3730,1882,15,1,other,DSC_0818.JPG +15405,3220,223,16,1,other,DSC_0818.JPG +15412,4048,1465,15,1,other,DSC_0818.JPG +15413,526,1549,15,1,other,DSC_0818.JPG +15414,4078,1882,16,1,other,DSC_0818.JPG +15418,1024,2035,16,1,other,DSC_0818.JPG +15422,1303,472,17,1,other,DSC_0818.JPG +15436,3844,1102,15,1,other,DSC_0818.JPG +15437,595,1906,17,1,other,DSC_0818.JPG +1544,4540,667,17,1,other,DSC_0844.JPG +15440,310,340,15,1,other,DSC_0818.JPG +15453,1549,1150,17,1,other,DSC_0818.JPG +15457,3199,2182,15,5,other,DSC_0818.JPG +15462,4090,1165,15,1,other,DSC_0818.JPG +15464,4366,1405,16,1,other,DSC_0818.JPG +15467,1267,2218,15,1,other,DSC_0818.JPG +15469,385,2248,15,1,other,DSC_0818.JPG +15470,4087,1408,16,1,other,DSC_0818.JPG +15478,4045,1822,15,1,other,DSC_0818.JPG +15485,4048,1348,15,1,other,DSC_0818.JPG +15488,4252,1939,15,1,other,DSC_0818.JPG +15496,1696,538,17,1,other,DSC_0818.JPG +15498,598,955,17,1,other,DSC_0818.JPG +15510,4192,1228,17,1,other,DSC_0818.JPG +15512,3445,2002,15,5,other,DSC_0818.JPG +15513,1804,601,17,1,other,DSC_0818.JPG +15516,4120,1345,16,1,other,DSC_0818.JPG +15518,4183,1822,15,1,other,DSC_0818.JPG +15519,5020,301,17,1,other,DSC_0818.JPG +15528,4039,2059,15,1,other,DSC_0818.JPG +15530,3046,151,15,1,other,DSC_0818.JPG +15531,3574,355,17,1,other,DSC_0818.JPG +15532,3433,358,17,1,other,DSC_0818.JPG +15533,1732,475,17,1,other,DSC_0818.JPG +15538,487,1606,16,1,other,DSC_0818.JPG +15544,460,91,15,1,other,DSC_0818.JPG +15552,3763,1945,17,1,other,DSC_0818.JPG +15553,847,2089,16,1,other,DSC_0818.JPG +15561,4777,1996,15,1,other,DSC_0818.JPG +15562,2605,2002,16,1,other,DSC_0818.JPG +15564,4837,2347,15,1,other,DSC_0818.JPG +15567,634,523,15,1,other,DSC_0818.JPG +15581,4339,985,15,1,other,DSC_0818.JPG +15587,916,1498,16,1,other,DSC_0818.JPG +1559,4783,1879,17,5,other,DSC_0844.JPG +15590,952,1795,15,1,other,DSC_0818.JPG +15595,1915,151,17,1,other,DSC_0818.JPG +15596,3397,157,17,1,other,DSC_0818.JPG +15602,775,1612,15,1,other,DSC_0818.JPG +15603,4399,1702,15,1,other,DSC_0818.JPG +15606,3079,352,17,1,other,DSC_0818.JPG +15612,916,1615,15,1,other,DSC_0818.JPG +15617,1339,2221,16,1,other,DSC_0818.JPG +15618,3115,151,15,1,other,DSC_0818.JPG +1562,4033,2182,15,1,other,DSC_0844.JPG +15626,4618,1105,15,1,other,DSC_0818.JPG +1563,2497,2284,16,1,other,DSC_0844.JPG +15646,988,2212,15,1,other,DSC_0818.JPG +15652,4450,679,17,1,other,DSC_0818.JPG +15658,3871,1765,17,1,other,DSC_0818.JPG +1566,4585,334,17,1,other,DSC_0844.JPG +15660,3619,2182,15,1,other,DSC_0818.JPG +15669,4294,1525,17,1,other,DSC_0818.JPG +1567,103,358,17,1,other,DSC_0844.JPG +15671,2287,2293,16,1,other,DSC_0818.JPG +15672,3325,157,15,1,other,DSC_0818.JPG +15675,1267,901,17,1,other,DSC_0818.JPG +15677,4255,1822,16,1,other,DSC_0818.JPG +15691,3946,1405,17,1,other,DSC_0818.JPG +15695,3976,1822,15,1,other,DSC_0818.JPG +15696,3199,1945,15,1,other,DSC_0818.JPG +1570,2287,496,16,5,other,DSC_0844.JPG +15702,4195,1102,17,1,other,DSC_0818.JPG +15707,3625,1942,15,1,other,DSC_0818.JPG +15708,343,2068,15,1,other,DSC_0818.JPG +15716,4012,1408,17,1,other,DSC_0818.JPG +15717,1024,1561,15,1,other,DSC_0818.JPG +15720,919,1738,15,1,other,DSC_0818.JPG +15724,3715,358,16,1,other,DSC_0818.JPG +15727,4552,859,15,1,other,DSC_0818.JPG +15732,811,1555,16,1,other,DSC_0818.JPG +15739,3760,2062,15,1,other,DSC_0818.JPG +15740,3583,2122,16,1,other,DSC_0818.JPG +15743,3115,286,16,1,other,DSC_0818.JPG +15745,4234,799,15,1,other,DSC_0818.JPG +15746,4057,979,17,1,other,DSC_0818.JPG +15749,4579,1285,16,1,other,DSC_0818.JPG +15750,4684,1345,15,1,other,DSC_0818.JPG +15756,883,1555,15,1,other,DSC_0818.JPG +15758,4222,1642,17,1,other,DSC_0818.JPG +15763,1021,2272,15,1,other,DSC_0818.JPG +15767,5122,853,17,1,other,DSC_0818.JPG +15768,4159,1165,16,1,other,DSC_0818.JPG +15769,4900,1219,15,1,other,DSC_0818.JPG +15771,3457,1285,16,1,other,DSC_0818.JPG +15778,4738,175,16,1,other,DSC_0818.JPG +15781,5050,856,15,1,other,DSC_0818.JPG +15787,454,1429,15,1,other,DSC_0818.JPG +15788,4507,1525,16,1,other,DSC_0818.JPG +15791,3658,1882,17,1,other,DSC_0818.JPG +15794,1234,2281,17,1,other,DSC_0818.JPG +15796,3187,157,16,1,other,DSC_0818.JPG +15797,2809,475,16,1,other,DSC_0818.JPG +1580,34,1096,15,1,other,DSC_0844.JPG +15809,3934,2002,15,1,other,DSC_0818.JPG +15813,3373,2122,16,1,other,DSC_0818.JPG +15814,1024,2155,15,1,other,DSC_0818.JPG +15818,4480,982,15,1,other,DSC_0818.JPG +15819,5077,1273,17,1,other,DSC_0818.JPG +15821,3769,1465,17,1,other,DSC_0818.JPG +15822,4468,1702,15,1,other,DSC_0818.JPG +15825,3907,1822,15,1,other,DSC_0818.JPG +15830,4108,2059,15,1,other,DSC_0818.JPG +15840,670,952,15,1,other,DSC_0818.JPG +15843,5074,1393,15,1,other,DSC_0818.JPG +15845,739,1435,15,1,other,DSC_0818.JPG +15849,3445,2119,17,1,other,DSC_0818.JPG +15850,1411,2221,15,1,other,DSC_0818.JPG +15851,1549,2224,16,1,other,DSC_0818.JPG +15853,4906,2227,17,1,other,DSC_0818.JPG +15865,1444,1087,17,1,other,DSC_0818.JPG +15869,4615,1345,16,1,other,DSC_0818.JPG +15873,811,1672,15,1,other,DSC_0818.JPG +15876,2425,2296,15,1,other,DSC_0818.JPG +15888,3076,979,16,1,other,DSC_0818.JPG +15893,667,1315,16,1,other,DSC_0818.JPG +15894,4330,1348,15,1,other,DSC_0818.JPG +15904,4807,172,17,1,other,DSC_0818.JPG +15906,3787,226,17,1,other,DSC_0818.JPG +1591,1771,2212,17,1,other,DSC_0844.JPG +15911,4165,796,17,1,other,DSC_0818.JPG +15914,5080,1153,17,1,other,DSC_0818.JPG +1592,1594,2263,17,1,other,DSC_0844.JPG +15924,4219,1882,16,1,other,DSC_0818.JPG +1593,2965,49,16,1,other,DSC_0844.JPG +15938,952,1558,16,1,other,DSC_0818.JPG +15939,847,1732,15,1,other,DSC_0818.JPG +1594,3250,52,17,1,other,DSC_0844.JPG +15943,739,2029,16,1,other,DSC_0818.JPG +15944,3727,2119,15,1,other,DSC_0818.JPG +15945,2845,2299,17,1,other,DSC_0818.JPG +1595,3178,55,15,1,other,DSC_0844.JPG +1596,2536,172,16,1,other,DSC_0844.JPG +15967,1267,658,16,1,other,DSC_0818.JPG +15968,1843,664,16,1,other,DSC_0818.JPG +1597,442,193,15,1,other,DSC_0844.JPG +15970,4483,739,16,1,other,DSC_0818.JPG +15971,3988,859,15,1,other,DSC_0818.JPG +15979,238,1888,16,1,other,DSC_0818.JPG +1598,1585,220,17,1,other,DSC_0844.JPG +15983,1096,2155,15,1,other,DSC_0818.JPG +15985,2878,2242,15,1,other,DSC_0818.JPG +15986,3019,2242,15,1,other,DSC_0818.JPG +15987,2773,2302,15,1,other,DSC_0818.JPG +15989,4138,2356,15,1,other,DSC_0818.JPG +15990,2977,280,17,1,other,DSC_0818.JPG +15998,4372,1042,17,1,other,DSC_0818.JPG +1600,331,247,17,1,other,DSC_0844.JPG +16000,4759,1105,15,1,other,DSC_0818.JPG +16002,4651,1285,16,1,other,DSC_0818.JPG +16004,844,1615,17,1,other,DSC_0818.JPG +16008,4006,1882,15,1,other,DSC_0818.JPG +16010,703,1969,16,1,other,DSC_0818.JPG +16012,277,2065,15,1,other,DSC_0818.JPG +16013,3406,2182,15,1,other,DSC_0818.JPG +16014,3082,217,17,1,other,DSC_0818.JPG +16015,3046,283,17,1,other,DSC_0818.JPG +16016,883,334,17,1,other,DSC_0818.JPG +16017,3958,421,16,1,other,DSC_0818.JPG +1602,4051,529,17,1,other,DSC_0844.JPG +16030,811,2029,17,1,other,DSC_0818.JPG +16033,3265,2305,16,1,other,DSC_0818.JPG +16035,631,649,15,5,other,DSC_0818.JPG +16042,4264,1105,16,1,other,DSC_0818.JPG +16046,229,1540,15,1,other,DSC_0818.JPG +16047,952,2032,15,1,other,DSC_0818.JPG +16051,4666,2293,16,1,other,DSC_0818.JPG +16060,4618,1225,16,1,other,DSC_0818.JPG +16062,4723,1282,16,1,other,DSC_0818.JPG +16067,4507,1642,15,1,other,DSC_0818.JPG +16070,3832,1942,15,1,other,DSC_0818.JPG +16073,4249,2059,15,1,other,DSC_0818.JPG +16074,454,2134,16,1,other,DSC_0818.JPG +16075,3688,2179,15,1,other,DSC_0818.JPG +16076,2392,2233,15,1,other,DSC_0818.JPG +16085,2518,973,17,1,other,DSC_0818.JPG +16088,4297,1405,15,1,other,DSC_0818.JPG +16093,667,1669,16,1,other,DSC_0818.JPG +16096,3838,1822,15,1,other,DSC_0818.JPG +16098,559,1846,15,1,other,DSC_0818.JPG +161,2716,238,17,1,other,DSC_0844.JPG +16105,2776,2182,16,1,other,DSC_0818.JPG +16106,1306,2281,15,1,other,DSC_0818.JPG +16110,637,400,16,1,other,DSC_0818.JPG +16114,4621,859,17,1,other,DSC_0818.JPG +16122,559,2080,16,1,other,DSC_0818.JPG +16126,3187,286,17,1,other,DSC_0818.JPG +16129,5053,364,15,1,other,DSC_0818.JPG +16137,4267,1228,17,1,other,DSC_0818.JPG +16138,4477,1228,17,1,other,DSC_0818.JPG +16151,4147,1882,15,1,other,DSC_0818.JPG +16152,811,1912,16,1,other,DSC_0818.JPG +16154,3868,2002,15,1,other,DSC_0818.JPG +16159,1585,2284,15,1,other,DSC_0818.JPG +16160,598,337,17,1,other,DSC_0818.JPG +16162,3151,355,16,1,other,DSC_0818.JPG +16168,4756,1342,17,1,other,DSC_0818.JPG +16169,3979,1345,15,1,other,DSC_0818.JPG +16182,667,2143,15,1,other,DSC_0818.JPG +16183,3373,2242,15,1,other,DSC_0818.JPG +16185,4873,61,15,1,other,DSC_0818.JPG +16193,4342,616,17,1,other,DSC_0818.JPG +16200,562,1135,15,1,other,DSC_0818.JPG +16212,631,1969,17,1,other,DSC_0818.JPG +16215,4144,1999,17,1,other,DSC_0818.JPG +16218,3793,2122,15,1,other,DSC_0818.JPG +16219,883,2149,15,1,other,DSC_0818.JPG +16224,3646,358,16,1,other,DSC_0818.JPG +16226,3892,421,15,1,other,DSC_0818.JPG +16231,4027,550,16,1,other,DSC_0818.JPG +16232,4879,673,15,1,other,DSC_0818.JPG +16233,385,703,17,1,other,DSC_0818.JPG +16235,1585,724,15,1,other,DSC_0818.JPG +16249,379,1663,16,1,other,DSC_0818.JPG +16252,2575,1822,16,1,other,DSC_0818.JPG +16256,3799,2002,15,1,other,DSC_0818.JPG +1626,4528,2173,15,1,other,DSC_0844.JPG +16262,1771,145,17,1,other,DSC_0818.JPG +16264,3397,292,17,1,other,DSC_0818.JPG +16266,454,463,17,1,other,DSC_0818.JPG +16268,529,583,15,1,other,DSC_0818.JPG +1628,1909,2335,17,1,other,DSC_0844.JPG +16282,4075,1999,15,1,other,DSC_0818.JPG +16284,4180,2059,15,1,other,DSC_0818.JPG +16285,487,2077,15,1,other,DSC_0818.JPG +16286,1690,2227,16,1,other,DSC_0818.JPG +16289,1375,2284,15,1,other,DSC_0818.JPG +1629,4627,2341,15,1,other,DSC_0844.JPG +16292,4168,550,17,1,other,DSC_0818.JPG +16294,4342,862,16,1,other,DSC_0818.JPG +16299,232,1183,15,1,other,DSC_0818.JPG +1630,4099,64,15,1,other,DSC_0844.JPG +16304,4225,1408,15,1,other,DSC_0818.JPG +16306,415,1606,17,1,other,DSC_0818.JPG +1631,583,67,15,1,other,DSC_0844.JPG +16310,4291,1762,16,1,other,DSC_0818.JPG +16312,526,1903,17,1,other,DSC_0818.JPG +16313,241,2002,16,1,other,DSC_0818.JPG +16316,634,2203,15,1,other,DSC_0818.JPG +16318,3163,2245,15,1,other,DSC_0818.JPG +16319,1795,2287,15,1,other,DSC_0818.JPG +1632,2152,103,15,1,other,DSC_0844.JPG +16320,1867,2290,16,1,other,DSC_0818.JPG +16322,3820,166,17,1,other,DSC_0818.JPG +16323,3292,223,17,1,other,DSC_0818.JPG +16324,1411,274,17,1,other,DSC_0818.JPG +16327,271,643,16,1,other,DSC_0818.JPG +1633,484,259,17,1,other,DSC_0844.JPG +16337,454,1309,17,1,other,DSC_0818.JPG +1634,4231,469,17,1,other,DSC_0844.JPG +16346,949,2269,15,1,other,DSC_0818.JPG +16347,3538,160,16,1,other,DSC_0818.JPG +16349,3328,289,17,1,other,DSC_0818.JPG +16354,4237,676,16,1,other,DSC_0818.JPG +16356,4912,736,17,1,other,DSC_0818.JPG +16360,4978,856,16,1,other,DSC_0818.JPG +16363,5299,1027,17,1,other,DSC_0818.JPG +16367,3700,1462,17,1,other,DSC_0818.JPG +16375,3658,2002,15,1,other,DSC_0818.JPG +16376,2602,2122,15,1,other,DSC_0818.JPG +16378,4459,2176,17,1,other,DSC_0818.JPG +16380,562,2200,16,1,other,DSC_0818.JPG +16381,1204,142,15,1,other,DSC_0818.JPG +16382,1666,211,17,1,other,DSC_0818.JPG +16386,739,463,15,1,other,DSC_0818.JPG +1639,4948,1162,17,1,other,DSC_0844.JPG +16394,4267,982,17,1,other,DSC_0818.JPG +16398,229,1420,15,1,other,DSC_0818.JPG +16403,4366,1645,17,1,other,DSC_0818.JPG +16404,631,1849,16,1,other,DSC_0818.JPG +16405,3409,2059,17,1,other,DSC_0818.JPG +16406,2461,2239,15,1,other,DSC_0818.JPG +16407,2356,2293,15,1,other,DSC_0818.JPG +16409,2599,2359,15,1,other,DSC_0818.JPG +16414,4060,610,17,1,other,DSC_0818.JPG +1642,5266,1555,15,1,other,DSC_0844.JPG +16424,4795,1042,16,1,other,DSC_0818.JPG +16425,4300,1162,17,1,other,DSC_0818.JPG +16427,5113,1213,17,1,other,DSC_0818.JPG +16433,5032,1576,16,1,other,DSC_0818.JPG +16439,451,1783,17,1,other,DSC_0818.JPG +1644,4612,1699,17,1,other,DSC_0844.JPG +16441,274,1948,17,1,other,DSC_0818.JPG +16446,3832,2062,15,1,other,DSC_0818.JPG +16449,4240,55,15,1,other,DSC_0818.JPG +16451,343,400,17,1,other,DSC_0818.JPG +16457,5305,790,17,1,other,DSC_0818.JPG +16467,5110,1333,17,1,other,DSC_0818.JPG +16472,883,1795,16,1,other,DSC_0818.JPG +16477,1342,2101,15,1,other,DSC_0818.JPG +16479,2566,2179,15,1,other,DSC_0818.JPG +16481,4705,235,17,1,other,DSC_0818.JPG +16483,4030,421,17,1,other,DSC_0818.JPG +16487,5197,613,15,1,other,DSC_0818.JPG +16493,379,1189,17,1,other,DSC_0818.JPG +16497,4612,1465,15,1,other,DSC_0818.JPG +16500,379,1543,17,1,other,DSC_0818.JPG +16504,2530,2122,17,1,other,DSC_0818.JPG +16506,1198,2218,15,1,other,DSC_0818.JPG +16512,1309,202,15,1,other,DSC_0818.JPG +1652,4603,1936,17,1,other,DSC_0844.JPG +16527,4300,1288,16,1,other,DSC_0818.JPG +16528,487,1369,16,1,other,DSC_0818.JPG +16536,4294,1645,16,1,other,DSC_0818.JPG +16540,775,1972,15,1,other,DSC_0818.JPG +16541,3901,2062,15,1,other,DSC_0818.JPG +16542,706,2086,15,1,other,DSC_0818.JPG +16544,847,2209,15,1,other,DSC_0818.JPG +16545,1513,2284,15,1,other,DSC_0818.JPG +16548,4237,550,17,1,other,DSC_0818.JPG +1655,925,2296,15,1,other,DSC_0844.JPG +16554,379,826,17,1,other,DSC_0818.JPG +1656,3754,2305,15,1,other,DSC_0844.JPG +16562,670,1549,17,1,other,DSC_0818.JPG +16563,340,1603,16,1,other,DSC_0818.JPG +16565,4432,1642,17,1,other,DSC_0818.JPG +16566,739,1675,17,1,other,DSC_0818.JPG +1657,4978,2326,15,1,other,DSC_0844.JPG +16570,739,1789,15,1,other,DSC_0818.JPG +16571,4360,1879,16,1,other,DSC_0818.JPG +16575,1162,2275,15,1,other,DSC_0818.JPG +16576,1444,2281,16,1,other,DSC_0818.JPG +16577,1690,2344,15,1,other,DSC_0818.JPG +1658,4483,2350,15,1,other,DSC_0844.JPG +16580,274,277,15,1,other,DSC_0818.JPG +16589,5224,1150,16,1,other,DSC_0818.JPG +1659,4660,2398,15,1,other,DSC_0844.JPG +16594,4471,1465,15,1,other,DSC_0818.JPG +16595,988,1501,15,1,other,DSC_0818.JPG +16596,3733,1525,17,1,other,DSC_0818.JPG +16600,3385,1645,17,1,other,DSC_0818.JPG +16601,991,1738,15,1,other,DSC_0818.JPG +16602,4150,1765,15,1,other,DSC_0818.JPG +16603,1552,1867,15,1,other,DSC_0818.JPG +16605,736,1909,16,1,other,DSC_0818.JPG +16609,493,2197,15,1,other,DSC_0818.JPG +1661,442,448,17,1,other,DSC_0844.JPG +16610,3304,2242,15,1,other,DSC_0818.JPG +16611,3409,2305,17,1,other,DSC_0818.JPG +16616,3256,289,16,1,other,DSC_0818.JPG +16626,5191,1093,16,1,other,DSC_0818.JPG +16637,3028,1885,15,1,other,DSC_0818.JPG +16641,4912,118,17,1,other,DSC_0818.JPG +16642,1627,145,16,1,other,DSC_0818.JPG +16643,3679,163,17,1,other,DSC_0818.JPG +16646,4096,550,17,1,other,DSC_0818.JPG +16647,4273,613,16,1,other,DSC_0818.JPG +1665,4987,1219,15,1,other,DSC_0844.JPG +16659,451,1546,16,1,other,DSC_0818.JPG +16663,448,1900,15,1,other,DSC_0818.JPG +16666,883,2032,16,1,other,DSC_0818.JPG +16669,2530,2239,15,1,other,DSC_0818.JPG +16671,3925,106,15,1,other,DSC_0818.JPG +16672,3151,220,17,1,other,DSC_0818.JPG +16683,529,829,17,1,other,DSC_0818.JPG +16686,3808,1162,15,1,other,DSC_0818.JPG +16687,5260,1207,15,1,other,DSC_0818.JPG +16694,2536,2002,15,1,other,DSC_0818.JPG +16698,3760,2182,15,1,other,DSC_0818.JPG +16700,4453,55,15,1,other,DSC_0818.JPG +16701,2977,148,15,1,other,DSC_0818.JPG +1671,4651,1636,17,1,other,DSC_0844.JPG +16713,5014,916,16,1,other,DSC_0818.JPG +16714,5191,973,15,1,other,DSC_0818.JPG +16718,4231,1162,15,1,other,DSC_0818.JPG +1672,5260,1675,15,1,other,DSC_0844.JPG +16727,4882,1936,15,1,other,DSC_0818.JPG +16729,1798,2050,15,1,other,DSC_0818.JPG +16730,3619,2065,15,1,other,DSC_0818.JPG +16731,4984,2110,17,1,other,DSC_0818.JPG +16735,1126,2218,15,1,other,DSC_0818.JPG +16739,5191,370,17,1,other,DSC_0818.JPG +16746,451,1189,16,1,other,DSC_0818.JPG +1675,2746,1867,17,1,other,DSC_0844.JPG +16750,4225,1285,17,1,other,DSC_0818.JPG +16757,412,1720,17,1,other,DSC_0818.JPG +16763,2635,2065,15,1,other,DSC_0818.JPG +16765,2635,2182,16,1,other,DSC_0818.JPG +16768,3232,2242,15,1,other,DSC_0818.JPG +16770,1411,2341,15,1,other,DSC_0818.JPG +16771,4204,109,15,1,other,DSC_0818.JPG +16774,5161,673,17,1,other,DSC_0818.JPG +16776,1915,787,15,1,other,DSC_0818.JPG +16793,4591,799,17,1,other,DSC_0818.JPG +16794,4270,859,17,1,other,DSC_0818.JPG +16795,4621,982,17,1,other,DSC_0818.JPG +16796,3811,1039,17,1,other,DSC_0818.JPG +16809,3970,1942,15,1,other,DSC_0818.JPG +1681,2293,2161,15,1,other,DSC_0844.JPG +16810,4213,2002,15,1,other,DSC_0818.JPG +16811,310,2008,15,1,other,DSC_0818.JPG +16813,2254,2236,15,1,other,DSC_0818.JPG +16815,3502,100,15,1,other,DSC_0818.JPG +16816,4420,112,16,1,other,DSC_0818.JPG +16818,238,460,15,1,other,DSC_0818.JPG +1682,2047,37,16,1,other,DSC_0844.JPG +16822,5089,550,17,1,other,DSC_0818.JPG +1683,2716,109,15,1,other,DSC_0844.JPG +16830,4585,1042,17,1,other,DSC_0818.JPG +16835,4369,1288,17,1,other,DSC_0818.JPG +16837,4861,1399,15,1,other,DSC_0818.JPG +16839,5248,1450,15,1,other,DSC_0818.JPG +1684,3916,121,17,1,other,DSC_0844.JPG +16840,595,1549,15,1,other,DSC_0818.JPG +16847,4780,1759,16,1,other,DSC_0818.JPG +16850,703,1849,16,1,other,DSC_0818.JPG +16856,1060,2095,17,1,other,DSC_0818.JPG +16857,3268,2185,16,1,other,DSC_0818.JPG +16858,2146,2293,15,1,other,DSC_0818.JPG +16859,679,88,17,1,other,DSC_0818.JPG +1686,3883,331,16,1,other,DSC_0844.JPG +16860,2122,145,15,1,other,DSC_0818.JPG +16863,5266,487,15,1,other,DSC_0818.JPG +16867,4165,673,17,1,other,DSC_0818.JPG +16868,1519,724,16,1,other,DSC_0818.JPG +16870,4273,739,16,1,other,DSC_0818.JPG +16875,523,1192,16,1,other,DSC_0818.JPG +16877,4333,1228,15,1,other,DSC_0818.JPG +16880,523,1429,17,1,other,DSC_0818.JPG +16881,5212,1513,17,1,other,DSC_0818.JPG +16889,3586,2002,16,1,other,DSC_0818.JPG +16890,3553,2062,15,1,other,DSC_0818.JPG +16891,991,2095,17,1,other,DSC_0818.JPG +16893,3931,2122,17,1,other,DSC_0818.JPG +16894,2494,2176,15,1,other,DSC_0818.JPG +16896,1726,2407,15,1,other,DSC_0818.JPG +16899,5197,487,15,1,other,DSC_0818.JPG +169,1015,475,17,1,other,DSC_0844.JPG +1690,76,916,17,1,other,DSC_0844.JPG +16906,5266,970,17,1,other,DSC_0818.JPG +16910,4546,1345,15,1,other,DSC_0818.JPG +16913,490,1489,15,1,other,DSC_0818.JPG +16916,487,1726,15,1,other,DSC_0818.JPG +16918,379,2011,15,1,other,DSC_0818.JPG +16919,523,2020,16,1,other,DSC_0818.JPG +16920,595,2140,15,1,other,DSC_0818.JPG +16921,1060,2215,15,1,other,DSC_0818.JPG +16922,3442,2245,15,1,other,DSC_0818.JPG +16923,1339,2344,16,1,other,DSC_0818.JPG +16924,1699,148,15,1,other,DSC_0818.JPG +16926,5158,307,16,1,other,DSC_0818.JPG +16928,2299,607,15,1,other,DSC_0818.JPG +16938,4408,982,16,1,other,DSC_0818.JPG +16940,4939,1156,15,1,other,DSC_0818.JPG +16945,4789,1402,17,1,other,DSC_0818.JPG +16949,418,2071,17,1,other,DSC_0818.JPG +16951,2845,2182,15,1,other,DSC_0818.JPG +16953,1723,2287,15,1,other,DSC_0818.JPG +16954,2041,2350,17,1,other,DSC_0818.JPG +16957,238,340,15,1,other,DSC_0818.JPG +16958,5122,367,17,1,other,DSC_0818.JPG +1696,5308,1492,15,1,other,DSC_0844.JPG +16965,4126,982,15,1,other,DSC_0818.JPG +16968,4690,1105,15,1,other,DSC_0818.JPG +16970,5329,1204,15,1,other,DSC_0818.JPG +16973,4159,1285,15,1,other,DSC_0818.JPG +16977,631,1612,17,1,other,DSC_0818.JPG +1698,2545,1627,17,1,other,DSC_0844.JPG +16980,955,1678,15,1,other,DSC_0818.JPG +16984,4111,1942,16,1,other,DSC_0818.JPG +16988,457,2254,15,1,other,DSC_0818.JPG +16989,880,2269,16,1,other,DSC_0818.JPG +16990,1759,2344,17,1,other,DSC_0818.JPG +16991,4348,112,15,1,other,DSC_0818.JPG +17,1234,85,15,1,other,DSC_0844.JPG +17002,4375,799,17,1,other,DSC_0818.JPG +17003,4516,799,16,1,other,DSC_0818.JPG +17004,235,820,17,5,other,DSC_0818.JPG +1701,787,2173,15,1,other,DSC_0844.JPG +17010,559,1489,16,1,other,DSC_0818.JPG +17015,595,1786,16,1,other,DSC_0818.JPG +17016,415,1840,15,1,other,DSC_0818.JPG +17019,1411,2101,15,1,other,DSC_0818.JPG +1702,3529,61,17,1,other,DSC_0844.JPG +17022,3541,2422,15,1,other,DSC_0818.JPG +17023,532,91,17,1,other,DSC_0818.JPG +17024,352,151,17,1,other,DSC_0818.JPG +17026,601,463,17,1,other,DSC_0818.JPG +17027,343,523,17,1,other,DSC_0818.JPG +1703,2818,175,17,1,other,DSC_0844.JPG +17034,4375,1165,15,1,other,DSC_0818.JPG +17037,631,1375,15,1,other,DSC_0818.JPG +1704,412,259,17,1,other,DSC_0844.JPG +17042,5317,1567,15,1,other,DSC_0818.JPG +17044,304,1660,17,1,other,DSC_0818.JPG +17045,883,1675,16,1,other,DSC_0818.JPG +17047,310,1894,15,1,other,DSC_0818.JPG +1705,4480,265,17,1,other,DSC_0844.JPG +17052,3727,2002,15,1,other,DSC_0818.JPG +17056,2389,2353,17,1,other,DSC_0818.JPG +17057,2056,148,15,1,other,DSC_0818.JPG +1706,1372,349,17,1,other,DSC_0844.JPG +17065,4060,856,17,1,other,DSC_0818.JPG +17069,4411,1105,17,1,other,DSC_0818.JPG +17070,5299,1147,17,1,other,DSC_0818.JPG +17072,4510,1165,15,1,other,DSC_0818.JPG +17074,268,1243,17,1,other,DSC_0818.JPG +17075,5182,1327,15,1,other,DSC_0818.JPG +17077,4324,1822,15,1,other,DSC_0818.JPG +17080,4183,1942,16,1,other,DSC_0818.JPG +17093,4540,1582,15,1,other,DSC_0818.JPG +17094,448,1663,15,1,other,DSC_0818.JPG +17097,772,1852,17,1,other,DSC_0818.JPG +17099,247,2122,15,1,other,DSC_0818.JPG +17101,913,2329,15,1,other,DSC_0818.JPG +17103,3784,103,15,1,other,DSC_0818.JPG +17104,3994,106,15,1,other,DSC_0818.JPG +17105,4876,175,15,1,other,DSC_0818.JPG +17112,4132,613,16,1,other,DSC_0818.JPG +17114,4414,739,16,1,other,DSC_0818.JPG +17116,4549,982,17,1,other,DSC_0818.JPG +17119,343,1129,17,1,other,DSC_0818.JPG +17125,313,2128,15,1,other,DSC_0818.JPG +17130,3469,292,17,1,other,DSC_0818.JPG +17133,4204,487,16,1,other,DSC_0818.JPG +17143,4474,1345,15,1,other,DSC_0818.JPG +17144,5068,1516,16,1,other,DSC_0818.JPG +17146,265,1717,15,1,other,DSC_0818.JPG +17147,631,1726,17,1,other,DSC_0818.JPG +1715,5203,1204,15,1,other,DSC_0844.JPG +17153,3655,2122,15,1,other,DSC_0818.JPG +17154,526,2257,15,1,other,DSC_0818.JPG +17155,2704,2299,15,1,other,DSC_0818.JPG +17163,2296,481,17,1,other,DSC_0818.JPG +17166,4486,613,17,1,other,DSC_0818.JPG +17167,4519,679,17,1,other,DSC_0818.JPG +17172,5143,1393,17,1,other,DSC_0818.JPG +17174,634,1492,16,1,other,DSC_0818.JPG +17180,3664,1642,15,1,other,DSC_0818.JPG +17181,667,1792,15,1,other,DSC_0818.JPG +17182,1654,1810,15,1,other,DSC_0818.JPG +17183,559,1963,16,1,other,DSC_0818.JPG +17184,844,1969,17,1,other,DSC_0818.JPG +17185,703,2203,16,1,other,DSC_0818.JPG +17187,922,142,15,1,other,DSC_0818.JPG +17191,5158,916,17,1,other,DSC_0818.JPG +17193,5119,1093,17,1,other,DSC_0818.JPG +17196,196,1240,15,1,other,DSC_0818.JPG +17199,5287,1384,15,1,other,DSC_0818.JPG +17200,382,1426,15,1,other,DSC_0818.JPG +17204,5104,1693,15,1,other,DSC_0818.JPG +17207,487,1960,15,1,other,DSC_0818.JPG +17210,2566,2296,17,1,other,DSC_0818.JPG +17212,4168,2416,15,1,other,DSC_0818.JPG +17214,5083,67,15,1,other,DSC_0818.JPG +17223,562,892,17,1,other,DSC_0818.JPG +17224,4519,922,15,1,other,DSC_0818.JPG +17225,4090,1039,17,1,other,DSC_0818.JPG +17227,5218,1270,15,1,other,DSC_0818.JPG +17229,340,1366,16,1,other,DSC_0818.JPG +17230,415,1369,17,1,other,DSC_0818.JPG +17231,196,1477,17,1,other,DSC_0818.JPG +17239,415,1957,16,1,other,DSC_0818.JPG +17244,4981,2227,15,1,other,DSC_0818.JPG +17247,3577,2359,15,1,other,DSC_0818.JPG +17248,3895,2419,17,1,other,DSC_0818.JPG +17250,4456,172,16,1,other,DSC_0818.JPG +17253,493,400,17,1,other,DSC_0818.JPG +17254,418,526,17,1,other,DSC_0818.JPG +17255,2869,730,15,1,other,DSC_0818.JPG +17261,5290,1264,17,1,other,DSC_0818.JPG +17267,952,2152,15,1,other,DSC_0818.JPG +17269,1936,2290,15,1,other,DSC_0818.JPG +1727,3121,2410,15,1,other,DSC_0844.JPG +17270,4768,2350,15,1,other,DSC_0818.JPG +17271,3367,2365,17,1,other,DSC_0818.JPG +17272,4801,2407,17,1,other,DSC_0818.JPG +17273,820,88,15,1,other,DSC_0818.JPG +17279,1555,661,17,1,other,DSC_0818.JPG +1728,2260,43,16,1,other,DSC_0844.JPG +17280,4834,982,17,1,other,DSC_0818.JPG +17281,4198,985,15,1,other,DSC_0818.JPG +17283,4513,1285,15,1,other,DSC_0818.JPG +17285,5140,1513,16,1,other,DSC_0818.JPG +1729,3847,124,17,1,other,DSC_0844.JPG +17292,454,2017,15,1,other,DSC_0818.JPG +17297,391,91,16,1,other,DSC_0818.JPG +1730,841,136,15,1,other,DSC_0844.JPG +17301,562,400,16,1,other,DSC_0818.JPG +17308,4378,676,17,1,other,DSC_0818.JPG +1731,4726,472,17,1,other,DSC_0844.JPG +17310,202,1000,17,1,other,DSC_0818.JPG +17313,5086,1036,17,1,other,DSC_0818.JPG +17317,4330,1468,15,1,other,DSC_0818.JPG +17318,412,1486,17,1,other,DSC_0818.JPG +1732,979,538,17,1,other,DSC_0844.JPG +17324,379,1894,17,1,other,DSC_0818.JPG +17327,2740,2242,15,1,other,DSC_0818.JPG +17328,2497,2296,17,1,other,DSC_0818.JPG +17329,3334,2425,17,1,other,DSC_0818.JPG +1733,874,601,17,1,other,DSC_0844.JPG +17330,253,91,17,1,other,DSC_0818.JPG +17331,2158,202,16,1,other,DSC_0818.JPG +17340,307,826,17,1,other,DSC_0818.JPG +17344,382,1066,15,1,other,DSC_0818.JPG +17345,487,1129,17,1,other,DSC_0818.JPG +1735,1195,676,15,1,other,DSC_0844.JPG +17350,3517,2122,15,1,other,DSC_0818.JPG +17351,3478,2185,15,1,other,DSC_0818.JPG +17353,2461,2359,15,1,other,DSC_0818.JPG +17354,430,34,15,1,other,DSC_0818.JPG +17355,3466,49,15,1,other,DSC_0818.JPG +17356,565,145,17,1,other,DSC_0818.JPG +17359,1699,664,17,1,other,DSC_0818.JPG +1736,5320,709,17,1,other,DSC_0844.JPG +17360,4723,1045,15,1,other,DSC_0818.JPG +17364,5008,1153,17,1,other,DSC_0818.JPG +17366,559,1372,16,1,other,DSC_0818.JPG +1737,106,733,17,1,other,DSC_0844.JPG +17370,2647,1585,16,1,other,DSC_0818.JPG +17372,343,1723,15,1,other,DSC_0818.JPG +17380,3472,2425,17,1,other,DSC_0818.JPG +17385,457,586,17,1,other,DSC_0818.JPG +17393,4585,1162,17,1,other,DSC_0818.JPG +17394,4795,1165,15,1,other,DSC_0818.JPG +17399,523,1786,17,1,other,DSC_0818.JPG +17401,775,2089,15,1,other,DSC_0818.JPG +17402,523,2137,15,1,other,DSC_0818.JPG +17403,1270,2341,15,1,other,DSC_0818.JPG +17404,3010,217,15,1,other,DSC_0818.JPG +17408,4951,676,15,1,other,DSC_0818.JPG +17409,5056,733,15,1,other,DSC_0818.JPG +1742,4876,1162,17,1,other,DSC_0844.JPG +17423,2470,1762,17,1,other,DSC_0818.JPG +17424,598,2023,17,1,other,DSC_0818.JPG +17434,5140,1633,17,1,other,DSC_0818.JPG +17435,592,1669,17,1,other,DSC_0818.JPG +17441,2566,2062,15,1,other,DSC_0818.JPG +17442,421,2311,17,1,other,DSC_0818.JPG +17445,1774,40,15,1,other,DSC_0818.JPG +17446,4594,55,15,1,other,DSC_0818.JPG +17447,4489,115,17,1,other,DSC_0818.JPG +17453,5335,1087,15,1,other,DSC_0818.JPG +17457,664,2029,17,1,other,DSC_0818.JPG +17459,379,2128,15,1,other,DSC_0818.JPG +17460,355,2302,15,1,other,DSC_0818.JPG +17462,3256,43,15,1,other,DSC_0818.JPG +17463,424,154,17,1,other,DSC_0818.JPG +17467,5305,670,15,1,other,DSC_0818.JPG +17471,268,1126,17,1,other,DSC_0818.JPG +17472,415,1129,17,1,other,DSC_0818.JPG +17474,2506,1342,17,1,other,DSC_0818.JPG +17476,301,1780,17,1,other,DSC_0818.JPG +1748,823,1876,17,1,other,DSC_0844.JPG +17484,457,2368,15,1,other,DSC_0818.JPG +17485,4630,112,17,1,other,DSC_0818.JPG +17489,2560,541,17,5,other,DSC_0818.JPG +1749,2992,2053,17,5,other,DSC_0844.JPG +17490,5299,550,17,1,other,DSC_0818.JPG +17492,2593,604,17,1,other,DSC_0818.JPG +17498,229,1300,15,1,other,DSC_0818.JPG +1750,1072,2062,15,1,other,DSC_0844.JPG +17505,3904,1939,15,1,other,DSC_0818.JPG +17507,2182,2356,15,1,other,DSC_0818.JPG +17508,1021,2392,15,1,other,DSC_0818.JPG +17509,928,31,15,1,other,DSC_0818.JPG +17510,1243,88,15,1,other,DSC_0818.JPG +17511,3643,103,15,1,other,DSC_0818.JPG +17512,3856,106,15,1,other,DSC_0818.JPG +17516,3436,229,15,1,other,DSC_0818.JPG +1752,697,13,16,1,other,DSC_0844.JPG +17520,490,523,17,1,other,DSC_0818.JPG +17521,4306,679,17,1,other,DSC_0818.JPG +17523,5302,910,16,1,other,DSC_0818.JPG +1753,4240,190,16,1,other,DSC_0844.JPG +17532,700,1492,15,1,other,DSC_0818.JPG +17535,1237,2158,15,1,other,DSC_0818.JPG +17537,2599,2239,15,1,other,DSC_0818.JPG +17538,4525,58,17,1,other,DSC_0818.JPG +17539,1456,88,15,1,other,DSC_0818.JPG +1754,4885,202,17,1,other,DSC_0844.JPG +17540,4843,115,17,1,other,DSC_0818.JPG +17541,3538,292,16,1,other,DSC_0818.JPG +17542,2164,340,17,1,other,DSC_0818.JPG +17543,271,397,17,1,other,DSC_0818.JPG +17548,265,1363,15,1,other,DSC_0818.JPG +17551,5197,1990,17,1,other,DSC_0818.JPG +17552,772,2203,17,1,other,DSC_0818.JPG +17554,2668,2245,17,1,other,DSC_0818.JPG +17555,4828,2464,15,1,other,DSC_0818.JPG +17556,4594,169,17,1,other,DSC_0818.JPG +17557,2872,199,17,1,other,DSC_0818.JPG +17558,3610,292,16,1,other,DSC_0818.JPG +17562,232,1060,17,1,other,DSC_0818.JPG +17566,265,1480,17,1,other,DSC_0818.JPG +17567,199,1594,15,1,other,DSC_0818.JPG +17568,268,1600,17,1,other,DSC_0818.JPG +17569,5065,1633,17,1,other,DSC_0818.JPG +17571,3556,1828,17,1,other,DSC_0818.JPG +17572,340,1834,17,1,other,DSC_0818.JPG +17575,844,2326,15,1,other,DSC_0818.JPG +17578,643,34,15,1,other,DSC_0818.JPG +17580,343,643,17,1,other,DSC_0818.JPG +17584,340,883,17,1,other,DSC_0818.JPG +17585,5086,916,16,1,other,DSC_0818.JPG +17586,4303,922,15,1,other,DSC_0818.JPG +17593,5350,1624,15,1,other,DSC_0818.JPG +17598,3091,2242,17,1,other,DSC_0818.JPG +1760,4774,982,16,1,other,DSC_0844.JPG +17600,4945,2287,17,1,other,DSC_0818.JPG +17601,4036,2302,17,1,other,DSC_0818.JPG +17603,3511,2356,17,1,other,DSC_0818.JPG +17605,784,34,15,1,other,DSC_0818.JPG +17606,2188,130,17,1,other,DSC_0818.JPG +17609,5335,610,15,1,other,DSC_0818.JPG +1761,4843,1105,17,1,other,DSC_0844.JPG +17615,232,1660,15,1,other,DSC_0818.JPG +17617,202,1828,15,1,other,DSC_0818.JPG +17618,4744,1939,16,1,other,DSC_0818.JPG +17620,4837,2230,17,1,other,DSC_0818.JPG +17621,4702,2350,17,1,other,DSC_0818.JPG +17622,2737,2362,15,1,other,DSC_0818.JPG +17623,4384,55,17,1,other,DSC_0818.JPG +17624,889,88,17,1,other,DSC_0818.JPG +17626,2905,412,17,1,other,DSC_0818.JPG +17627,5227,427,15,1,other,DSC_0818.JPG +17630,5338,730,16,1,other,DSC_0818.JPG +17635,307,1063,17,1,other,DSC_0818.JPG +17640,304,1543,17,1,other,DSC_0818.JPG +17641,490,1843,15,1,other,DSC_0818.JPG +17642,346,1954,15,1,other,DSC_0818.JPG +17643,5086,2167,15,1,other,DSC_0818.JPG +17645,496,34,17,1,other,DSC_0818.JPG +17646,1846,40,15,1,other,DSC_0818.JPG +17647,4666,58,17,1,other,DSC_0818.JPG +17648,1666,88,15,1,other,DSC_0818.JPG +17649,319,94,17,1,other,DSC_0818.JPG +17650,4525,175,17,1,other,DSC_0818.JPG +17651,5053,238,17,1,other,DSC_0818.JPG +17654,232,943,15,1,other,DSC_0818.JPG +17655,1336,1027,16,1,other,DSC_0818.JPG +17656,379,1306,17,1,other,DSC_0818.JPG +17660,1987,40,15,1,other,DSC_0818.JPG +17661,3220,100,17,1,other,DSC_0818.JPG +17663,418,769,17,1,other,DSC_0818.JPG +17665,5368,787,15,1,other,DSC_0818.JPG +17669,4123,1228,17,1,other,DSC_0818.JPG +17672,2788,1582,15,1,other,DSC_0818.JPG +17674,271,1834,16,1,other,DSC_0818.JPG +17678,2317,2356,15,1,other,DSC_0818.JPG +17679,1807,211,17,1,other,DSC_0818.JPG +17680,2236,337,17,1,other,DSC_0818.JPG +17682,454,1069,17,1,other,DSC_0818.JPG +17684,196,1120,15,1,other,DSC_0818.JPG +17687,5203,1750,15,1,other,DSC_0818.JPG +17688,4396,1822,15,1,other,DSC_0818.JPG +17689,421,2191,17,1,other,DSC_0818.JPG +17690,4069,2362,16,1,other,DSC_0818.JPG +17694,202,643,15,1,other,DSC_0818.JPG +17695,5368,667,15,1,other,DSC_0818.JPG +17696,1372,967,17,1,other,DSC_0818.JPG +17706,1168,82,15,1,other,DSC_0818.JPG +17707,1381,85,15,1,other,DSC_0818.JPG +17708,3574,103,15,1,other,DSC_0818.JPG +1771,2395,2341,17,1,other,DSC_0844.JPG +17710,1516,847,16,1,other,DSC_0818.JPG +17711,5230,1030,15,1,other,DSC_0818.JPG +17714,5314,1687,17,1,other,DSC_0818.JPG +17715,376,1780,15,1,other,DSC_0818.JPG +17719,3715,229,15,1,other,DSC_0818.JPG +1772,3820,2422,17,1,other,DSC_0844.JPG +17720,5128,487,17,1,other,DSC_0818.JPG +17723,3037,1042,15,1,other,DSC_0818.JPG +17724,5365,1144,17,1,other,DSC_0818.JPG +17725,304,1186,17,1,other,DSC_0818.JPG +17728,5065,1753,15,1,other,DSC_0818.JPG +1773,694,262,17,1,other,DSC_0844.JPG +17730,4420,2356,17,1,other,DSC_0818.JPG +17731,3862,2362,16,1,other,DSC_0818.JPG +17733,712,31,15,1,other,DSC_0818.JPG +17734,1918,40,17,1,other,DSC_0818.JPG +17736,1414,142,17,1,other,DSC_0818.JPG +17739,5005,1276,15,1,other,DSC_0818.JPG +17741,304,1423,17,1,other,DSC_0818.JPG +17742,5212,1633,17,1,other,DSC_0818.JPG +17743,2992,1702,17,1,other,DSC_0818.JPG +17744,5134,1756,17,1,other,DSC_0818.JPG +17745,1165,2158,15,1,other,DSC_0818.JPG +17746,3583,2242,15,1,other,DSC_0818.JPG +17747,4030,2419,15,1,other,DSC_0818.JPG +17748,2059,34,15,1,other,DSC_0818.JPG +17749,3889,166,17,1,other,DSC_0818.JPG +17750,5365,550,17,1,other,DSC_0818.JPG +17754,4936,1279,16,1,other,DSC_0818.JPG +17756,5272,1867,17,1,other,DSC_0818.JPG +17757,3547,2182,15,1,other,DSC_0818.JPG +17758,949,2389,15,1,other,DSC_0818.JPG +17759,2359,247,16,1,other,DSC_0818.JPG +17761,5233,547,15,1,other,DSC_0818.JPG +17764,5233,793,17,1,other,DSC_0818.JPG +17766,5122,976,17,1,other,DSC_0818.JPG +17768,343,1483,15,1,other,DSC_0818.JPG +17771,2527,2362,17,1,other,DSC_0818.JPG +17772,2638,115,16,1,other,DSC_0818.JPG +17775,4900,1339,17,1,other,DSC_0818.JPG +17776,196,1357,17,1,other,DSC_0818.JPG +17777,670,1909,15,1,other,DSC_0818.JPG +17779,5161,2047,15,1,other,DSC_0818.JPG +1778,112,1105,16,1,other,DSC_0844.JPG +17781,4729,2410,15,1,other,DSC_0818.JPG +17782,2542,124,17,1,other,DSC_0818.JPG +17789,4987,1993,15,1,other,DSC_0818.JPG +17791,1228,2395,17,1,other,DSC_0818.JPG +17792,856,28,17,1,other,DSC_0818.JPG +17793,5053,118,17,1,other,DSC_0818.JPG +17794,5089,304,17,1,other,DSC_0818.JPG +17798,2287,2059,17,1,other,DSC_0818.JPG +17799,4525,2413,15,1,other,DSC_0818.JPG +17800,3892,52,17,1,other,DSC_0818.JPG +17801,4312,55,15,1,other,DSC_0818.JPG +17802,1030,88,17,1,other,DSC_0818.JPG +17803,5326,124,17,1,other,DSC_0818.JPG +17806,238,580,15,1,other,DSC_0818.JPG +17808,418,886,17,1,other,DSC_0818.JPG +1781,5368,1195,16,1,other,DSC_0844.JPG +17810,346,1003,17,1,other,DSC_0818.JPG +17811,5353,1504,15,1,other,DSC_0818.JPG +17815,5194,2104,17,1,other,DSC_0818.JPG +17816,349,2185,16,1,other,DSC_0818.JPG +17818,4237,2413,17,1,other,DSC_0818.JPG +17819,3961,49,15,1,other,DSC_0818.JPG +1782,5224,1615,17,1,other,DSC_0844.JPG +17820,3538,52,15,1,other,DSC_0818.JPG +17821,1597,88,15,1,other,DSC_0818.JPG +17823,3844,1225,15,1,other,DSC_0818.JPG +17824,5284,1507,16,1,other,DSC_0818.JPG +17825,232,1774,15,1,other,DSC_0818.JPG +17826,4918,1996,15,1,other,DSC_0818.JPG +17827,5296,2041,17,1,other,DSC_0818.JPG +17828,5083,2284,15,1,other,DSC_0818.JPG +17830,1951,91,17,1,other,DSC_0818.JPG +17831,3292,100,17,1,other,DSC_0818.JPG +17832,4135,106,17,1,other,DSC_0818.JPG +17833,181,211,15,1,other,DSC_0818.JPG +17834,5194,853,15,1,other,DSC_0818.JPG +1784,4819,1942,17,1,other,DSC_0844.JPG +17840,319,2245,17,1,other,DSC_0818.JPG +17841,358,34,15,1,other,DSC_0818.JPG +17842,568,37,15,1,other,DSC_0818.JPG +17843,1882,88,17,1,other,DSC_0818.JPG +17844,3718,106,17,1,other,DSC_0818.JPG +17848,916,2089,17,1,other,DSC_0818.JPG +1785,2431,2161,17,1,other,DSC_0844.JPG +17851,3757,2422,17,1,other,DSC_0818.JPG +17852,3856,2473,15,1,other,DSC_0818.JPG +17853,4804,61,17,1,other,DSC_0818.JPG +17854,4561,115,17,1,other,DSC_0818.JPG +17855,208,277,15,1,other,DSC_0818.JPG +17859,5269,850,17,1,other,DSC_0818.JPG +17861,5380,1318,17,1,other,DSC_0818.JPG +17862,5176,1576,17,1,other,DSC_0818.JPG +17865,628,2086,17,1,other,DSC_0818.JPG +17866,4906,2347,15,1,other,DSC_0818.JPG +17867,1099,82,15,1,other,DSC_0818.JPG +17868,1738,91,15,1,other,DSC_0818.JPG +17869,280,151,17,1,other,DSC_0818.JPG +1787,3475,2293,17,1,other,DSC_0844.JPG +17872,5359,1261,15,1,other,DSC_0818.JPG +17877,1513,2401,15,1,other,DSC_0818.JPG +17878,2020,88,15,1,other,DSC_0818.JPG +17879,2287,277,17,1,other,DSC_0818.JPG +1788,3613,2302,16,1,other,DSC_0844.JPG +17881,199,883,17,1,other,DSC_0818.JPG +17884,5248,1567,15,1,other,DSC_0818.JPG +17885,5242,1807,17,1,other,DSC_0818.JPG +17887,3586,1885,15,1,other,DSC_0818.JPG +17888,5230,2047,15,1,other,DSC_0818.JPG +1789,2782,106,16,1,other,DSC_0844.JPG +17890,1936,2410,15,1,other,DSC_0818.JPG +17891,4594,2410,16,1,other,DSC_0818.JPG +17893,997,34,15,1,other,DSC_0818.JPG +17894,604,85,15,1,other,DSC_0818.JPG +17895,850,142,17,1,other,DSC_0818.JPG +17896,5299,430,17,1,other,DSC_0818.JPG +1790,1903,166,15,1,other,DSC_0844.JPG +17900,745,85,17,1,other,DSC_0818.JPG +17901,4063,106,15,1,other,DSC_0818.JPG +17902,4771,115,17,1,other,DSC_0818.JPG +17903,211,154,17,1,other,DSC_0818.JPG +17904,205,397,15,1,other,DSC_0818.JPG +17905,4696,613,17,1,other,DSC_0818.JPG +17906,5338,967,15,1,other,DSC_0818.JPG +17908,5323,1444,15,1,other,DSC_0818.JPG +17909,4540,1465,15,1,other,DSC_0818.JPG +17910,5185,2458,15,1,other,DSC_0818.JPG +17911,4762,2467,15,1,other,DSC_0818.JPG +17912,4948,178,16,1,other,DSC_0818.JPG +17913,244,214,15,1,other,DSC_0818.JPG +17919,2233,196,17,1,other,DSC_0818.JPG +17922,5248,1330,15,1,other,DSC_0818.JPG +17923,1837,1396,15,1,other,DSC_0818.JPG +17926,3553,1942,16,1,other,DSC_0818.JPG +17927,4867,2404,15,1,other,DSC_0818.JPG +17928,2566,2422,15,1,other,DSC_0818.JPG +17929,3610,49,15,1,other,DSC_0818.JPG +17930,4027,49,15,1,other,DSC_0818.JPG +17931,3361,100,15,1,other,DSC_0818.JPG +17932,5371,904,17,1,other,DSC_0818.JPG +17934,5224,70,17,1,other,DSC_0818.JPG +17935,4279,109,15,1,other,DSC_0818.JPG +17936,5365,187,17,1,other,DSC_0818.JPG +17937,5122,241,17,1,other,DSC_0818.JPG +17938,5398,490,17,1,other,DSC_0818.JPG +17939,172,577,15,1,other,DSC_0818.JPG +1794,28,478,17,1,other,DSC_0844.JPG +17941,5158,790,17,1,other,DSC_0818.JPG +17943,5332,1981,17,1,other,DSC_0818.JPG +17945,2215,2413,15,1,other,DSC_0818.JPG +17946,3964,2416,17,1,other,DSC_0818.JPG +17948,202,1945,15,1,other,DSC_0818.JPG +17949,3826,2425,17,1,other,DSC_0818.JPG +1795,262,502,17,1,other,DSC_0844.JPG +17950,1807,88,15,1,other,DSC_0818.JPG +17951,4702,115,17,1,other,DSC_0818.JPG +17953,5365,1024,16,1,other,DSC_0818.JPG +17955,5356,1384,15,1,other,DSC_0818.JPG +17956,5374,1561,17,1,other,DSC_0818.JPG +17958,5119,2107,17,1,other,DSC_0818.JPG +17960,877,2389,17,1,other,DSC_0818.JPG +17961,1375,2404,15,1,other,DSC_0818.JPG +17962,637,2419,15,1,other,DSC_0818.JPG +17963,1492,40,15,1,other,DSC_0818.JPG +17964,4171,49,17,1,other,DSC_0818.JPG +17967,2284,2416,15,1,other,DSC_0818.JPG +17969,1705,40,15,1,other,DSC_0818.JPG +17970,2689,181,17,1,other,DSC_0818.JPG +17974,4273,2476,15,1,other,DSC_0818.JPG +17975,2833,109,17,1,other,DSC_0818.JPG +17976,205,520,15,1,other,DSC_0818.JPG +17978,5263,370,17,1,other,DSC_0818.JPG +17979,304,1306,17,1,other,DSC_0818.JPG +17982,490,2314,15,1,other,DSC_0818.JPG +17983,5047,2341,15,1,other,DSC_0818.JPG +17984,3229,2362,15,1,other,DSC_0818.JPG +17985,3688,2416,17,1,other,DSC_0818.JPG +17986,1903,2461,15,1,other,DSC_0818.JPG +17987,3397,46,17,1,other,DSC_0818.JPG +17988,3751,46,15,1,other,DSC_0818.JPG +17989,5296,67,17,1,other,DSC_0818.JPG +17990,5230,310,17,1,other,DSC_0818.JPG +17993,4975,2347,15,1,other,DSC_0818.JPG +17994,4663,2410,15,1,other,DSC_0818.JPG +17995,2494,2419,15,1,other,DSC_0818.JPG +17996,5398,124,15,1,other,DSC_0818.JPG +17998,5104,1576,15,1,other,DSC_0818.JPG +17999,5113,2341,15,1,other,DSC_0818.JPG +1800,5236,1375,17,1,other,DSC_0844.JPG +18000,3367,2470,15,1,other,DSC_0818.JPG +18001,4735,61,17,1,other,DSC_0818.JPG +18002,2908,142,17,1,other,DSC_0818.JPG +18003,313,217,17,1,other,DSC_0818.JPG +18004,172,454,15,1,other,DSC_0818.JPG +18006,2914,2425,15,1,other,DSC_0818.JPG +18007,4897,2464,15,1,other,DSC_0818.JPG +18008,5395,370,15,1,other,DSC_0818.JPG +18009,5323,1324,17,1,other,DSC_0818.JPG +18011,5335,1858,17,1,other,DSC_0818.JPG +18012,5365,1918,17,1,other,DSC_0818.JPG +18014,4447,2416,17,1,other,DSC_0818.JPG +18015,1273,34,17,1,other,DSC_0818.JPG +18016,3820,52,17,1,other,DSC_0818.JPG +18019,4936,2401,15,1,other,DSC_0818.JPG +18020,916,2449,15,1,other,DSC_0818.JPG +18021,1072,34,17,1,other,DSC_0818.JPG +18022,5155,61,15,1,other,DSC_0818.JPG +18023,2446,469,16,1,other,DSC_0818.JPG +18024,5341,844,15,1,other,DSC_0818.JPG +18025,5254,2218,15,1,other,DSC_0818.JPG +18026,5011,2284,15,1,other,DSC_0818.JPG +18028,211,37,17,1,other,DSC_0818.JPG +18029,4099,49,17,1,other,DSC_0818.JPG +18030,3523,1885,17,1,other,DSC_0818.JPG +18031,3676,46,15,1,other,DSC_0818.JPG +18032,5263,121,17,1,other,DSC_0818.JPG +18033,2419,295,17,1,other,DSC_0818.JPG +18034,175,700,17,1,other,DSC_0818.JPG +18035,5155,2167,17,1,other,DSC_0818.JPG +18036,3433,94,17,1,other,DSC_0818.JPG +18037,1444,598,17,1,other,DSC_0818.JPG +18038,178,820,17,1,other,DSC_0818.JPG +18039,208,2059,15,1,other,DSC_0818.JPG +1804,718,1930,17,1,other,DSC_0844.JPG +18041,3124,2422,17,1,other,DSC_0818.JPG +18042,961,88,17,1,other,DSC_0818.JPG +18043,5329,250,17,1,other,DSC_0818.JPG +18044,5236,676,15,1,other,DSC_0818.JPG +18045,160,1534,15,1,other,DSC_0818.JPG +18047,1636,37,15,1,other,DSC_0818.JPG +18048,2578,61,17,1,other,DSC_0818.JPG +18049,4942,61,15,1,other,DSC_0818.JPG +18050,2641,376,15,1,other,DSC_0818.JPG +18051,142,394,15,1,other,DSC_0818.JPG +18052,139,514,15,1,other,DSC_0818.JPG +18053,193,1711,15,1,other,DSC_0818.JPG +18055,5359,2038,17,1,other,DSC_0818.JPG +18056,526,2374,15,1,other,DSC_0818.JPG +18058,1126,2449,15,1,other,DSC_0818.JPG +18059,148,37,15,1,other,DSC_0818.JPG +18060,3148,94,17,1,other,DSC_0818.JPG +18061,3079,100,16,1,other,DSC_0818.JPG +18062,151,151,17,1,other,DSC_0818.JPG +18063,5428,424,15,1,other,DSC_0818.JPG +18065,5332,490,15,1,other,DSC_0818.JPG +18066,5266,1987,15,1,other,DSC_0818.JPG +18067,4099,2422,15,1,other,DSC_0818.JPG +1807,2920,2050,17,1,other,DSC_0844.JPG +18070,5392,1201,15,1,other,DSC_0818.JPG +18072,5347,1744,17,1,other,DSC_0818.JPG +18073,283,2185,17,1,other,DSC_0818.JPG +18074,4693,2464,15,1,other,DSC_0818.JPG +18075,4342,2467,15,1,other,DSC_0818.JPG +18076,2365,118,16,1,other,DSC_0818.JPG +18077,5398,610,15,1,other,DSC_0818.JPG +18078,5371,1795,17,1,other,DSC_0818.JPG +18079,256,2353,15,1,other,DSC_0818.JPG +1808,4312,2176,17,1,other,DSC_0844.JPG +18080,4969,2464,17,1,other,DSC_0818.JPG +18081,5017,178,16,1,other,DSC_0818.JPG +18082,163,2281,17,1,other,DSC_0818.JPG +18083,3046,43,15,1,other,DSC_0818.JPG +18084,3184,46,15,1,other,DSC_0818.JPG +18085,3322,49,17,1,other,DSC_0818.JPG +18088,163,2167,15,1,other,DSC_0818.JPG +18089,256,2239,15,1,other,DSC_0818.JPG +1809,439,2245,15,1,other,DSC_0844.JPG +18090,5008,2404,16,1,other,DSC_0818.JPG +18091,1198,2455,17,1,other,DSC_0818.JPG +18093,2200,274,15,1,other,DSC_0818.JPG +18094,163,940,17,1,other,DSC_0818.JPG +18095,196,2344,15,1,other,DSC_0818.JPG +18096,4414,2467,17,1,other,DSC_0818.JPG +18097,2458,2470,15,1,other,DSC_0818.JPG +18098,3115,43,15,1,other,DSC_0818.JPG +181,220,1411,17,1,other,DSC_0844.JPG +18100,1558,142,17,1,other,DSC_0818.JPG +18101,5083,181,17,1,other,DSC_0818.JPG +18102,5296,187,15,1,other,DSC_0818.JPG +18103,418,1006,17,1,other,DSC_0818.JPG +18104,5185,2338,15,1,other,DSC_0818.JPG +18105,1693,2455,15,1,other,DSC_0818.JPG +18106,1348,31,15,1,other,DSC_0818.JPG +18107,5359,433,15,1,other,DSC_0818.JPG +18109,2947,2476,15,1,other,DSC_0818.JPG +1811,4633,130,15,1,other,DSC_0844.JPG +18110,178,334,17,1,other,DSC_0818.JPG +18111,112,580,17,1,other,DSC_0818.JPG +18113,5305,1921,15,1,other,DSC_0818.JPG +18114,5080,2398,15,1,other,DSC_0818.JPG +18115,565,2422,15,1,other,DSC_0818.JPG +18116,1207,31,15,1,other,DSC_0818.JPG +18117,2260,118,17,1,other,DSC_0818.JPG +18118,151,274,15,1,other,DSC_0818.JPG +18119,2707,358,15,1,other,DSC_0818.JPG +1812,4666,202,15,1,other,DSC_0844.JPG +18121,172,1177,15,1,other,DSC_0818.JPG +18122,169,1414,17,1,other,DSC_0818.JPG +18124,3085,2476,15,1,other,DSC_0818.JPG +18127,3643,2470,17,1,other,DSC_0818.JPG +18128,2128,31,17,1,other,DSC_0818.JPG +18129,2938,94,15,1,other,DSC_0818.JPG +18130,4984,118,17,1,other,DSC_0818.JPG +18132,1615,2464,15,1,other,DSC_0818.JPG +18133,3715,2470,15,1,other,DSC_0818.JPG +18134,5398,247,17,1,other,DSC_0818.JPG +18135,5395,961,15,1,other,DSC_0818.JPG +18136,169,1882,15,1,other,DSC_0818.JPG +18137,5398,1975,17,1,other,DSC_0818.JPG +18138,292,2296,15,1,other,DSC_0818.JPG +18139,1057,2455,15,1,other,DSC_0818.JPG +1814,259,247,16,1,other,DSC_0844.JPG +18140,5119,121,17,1,other,DSC_0818.JPG +18141,5155,184,17,1,other,DSC_0818.JPG +18142,5353,2152,17,1,other,DSC_0818.JPG +18143,4486,2470,17,1,other,DSC_0818.JPG +18144,3787,2473,15,1,other,DSC_0818.JPG +18145,2878,2485,17,1,other,DSC_0818.JPG +18146,2428,190,17,1,other,DSC_0818.JPG +18147,5332,2101,17,1,other,DSC_0818.JPG +18149,814,2380,15,1,other,DSC_0818.JPG +18150,2596,2470,17,1,other,DSC_0818.JPG +18151,1417,37,15,1,other,DSC_0818.JPG +18152,5332,370,17,1,other,DSC_0818.JPG +18155,5317,2218,15,1,other,DSC_0818.JPG +18156,4201,2470,15,1,other,DSC_0818.JPG +18157,3433,2476,15,1,other,DSC_0818.JPG +18158,3577,2479,17,1,other,DSC_0818.JPG +18159,1522,88,15,1,other,DSC_0818.JPG +18160,3010,94,15,1,other,DSC_0818.JPG +18161,2458,115,17,1,other,DSC_0818.JPG +18162,2578,304,15,1,other,DSC_0818.JPG +18164,310,946,15,1,other,DSC_0818.JPG +18165,220,2176,15,1,other,DSC_0818.JPG +18166,1567,40,17,1,other,DSC_0818.JPG +18167,1312,88,17,1,other,DSC_0818.JPG +18168,2761,112,15,1,other,DSC_0818.JPG +18169,2497,322,17,1,other,DSC_0818.JPG +18170,5404,1738,15,1,other,DSC_0818.JPG +18171,5221,2161,15,1,other,DSC_0818.JPG +18172,4552,2467,15,1,other,DSC_0818.JPG +18176,5404,1084,17,1,other,DSC_0818.JPG +18177,5386,1444,15,1,other,DSC_0818.JPG +18178,5119,2227,17,1,other,DSC_0818.JPG +18179,5377,1681,15,1,other,DSC_0818.JPG +18180,847,2443,15,1,other,DSC_0818.JPG +18181,2386,2467,15,1,other,DSC_0818.JPG +18182,3502,2476,15,1,other,DSC_0818.JPG +18183,2323,46,17,1,other,DSC_0818.JPG +18184,112,454,17,1,other,DSC_0818.JPG +18185,5281,1627,17,1,other,DSC_0818.JPG +18186,775,2431,17,1,other,DSC_0818.JPG +18188,991,2449,17,1,other,DSC_0818.JPG +18189,2041,2467,15,1,other,DSC_0818.JPG +18190,142,637,15,1,other,DSC_0818.JPG +18194,1342,2458,17,1,other,DSC_0818.JPG +18195,1552,2458,17,1,other,DSC_0818.JPG +18196,5080,2521,17,1,other,DSC_0818.JPG +18197,5191,118,17,1,other,DSC_0818.JPG +18201,5431,2032,17,1,other,DSC_0818.JPG +18202,5218,2398,17,1,other,DSC_0818.JPG +18203,2668,2479,15,1,other,DSC_0818.JPG +18204,283,31,15,1,other,DSC_0818.JPG +18205,2740,250,17,1,other,DSC_0818.JPG +18208,136,880,15,1,other,DSC_0818.JPG +18209,5251,2449,16,1,other,DSC_0818.JPG +18210,3997,2470,15,1,other,DSC_0818.JPG +18211,3922,2473,17,1,other,DSC_0818.JPG +18212,2491,49,17,1,other,DSC_0818.JPG +18213,2425,379,17,1,other,DSC_0818.JPG +18214,145,757,15,1,other,DSC_0818.JPG +18215,5398,844,15,1,other,DSC_0818.JPG +18216,163,1651,15,1,other,DSC_0818.JPG +18217,5257,2104,17,1,other,DSC_0818.JPG +18218,5188,2221,17,1,other,DSC_0818.JPG +18219,712,2416,15,1,other,DSC_0818.JPG +18220,2806,2470,15,1,other,DSC_0818.JPG +18222,5440,1675,17,1,other,DSC_0818.JPG +18223,5248,2335,17,1,other,DSC_0818.JPG +18224,361,2407,15,1,other,DSC_0818.JPG +18225,1756,2455,15,1,other,DSC_0818.JPG +18226,2641,43,15,1,other,DSC_0818.JPG +18227,2830,262,17,1,other,DSC_0818.JPG +18230,391,2359,17,1,other,DSC_0818.JPG +18231,295,2413,15,1,other,DSC_0818.JPG +18232,4060,2470,17,1,other,DSC_0818.JPG +18233,4132,2476,15,1,other,DSC_0818.JPG +18234,5191,247,17,1,other,DSC_0818.JPG +18235,5260,250,15,1,other,DSC_0818.JPG +18236,130,997,15,1,other,DSC_0818.JPG +18238,130,2221,17,1,other,DSC_0818.JPG +18239,2113,2464,15,1,other,DSC_0818.JPG +1824,4735,2167,16,1,other,DSC_0844.JPG +18240,5002,2521,15,1,other,DSC_0818.JPG +18241,2179,2476,17,1,other,DSC_0818.JPG +18242,2314,172,15,1,other,DSC_0818.JPG +18245,5152,2395,17,1,other,DSC_0818.JPG +18246,3229,2476,17,1,other,DSC_0818.JPG +18247,2611,199,17,1,other,DSC_0818.JPG +1825,5143,2221,15,1,other,DSC_0844.JPG +18250,130,1234,17,1,other,DSC_0818.JPG +18252,5281,2278,15,1,other,DSC_0818.JPG +18253,4627,2467,17,1,other,DSC_0818.JPG +18254,2530,2476,15,1,other,DSC_0818.JPG +18255,2695,85,17,1,other,DSC_0818.JPG +18256,181,88,15,1,other,DSC_0818.JPG +18257,109,214,17,1,other,DSC_0818.JPG +18258,2506,223,17,1,other,DSC_0818.JPG +1826,994,2299,15,1,other,DSC_0844.JPG +18261,112,817,17,1,other,DSC_0818.JPG +18264,5353,2269,17,1,other,DSC_0818.JPG +18265,3472,2296,17,1,other,DSC_0818.JPG +18266,2251,2467,15,1,other,DSC_0818.JPG +18267,1141,31,15,1,other,DSC_0818.JPG +18268,2803,193,15,1,other,DSC_0818.JPG +1827,4276,2356,17,1,other,DSC_0844.JPG +18272,163,1060,15,1,other,DSC_0818.JPG +18273,97,2044,15,1,other,DSC_0818.JPG +18274,196,2227,15,1,other,DSC_0818.JPG +18275,5155,2284,17,1,other,DSC_0818.JPG +18276,2260,19,15,1,other,DSC_0818.JPG +18277,5362,61,17,1,other,DSC_0818.JPG +18278,5224,2275,17,1,other,DSC_0818.JPG +18279,1411,2458,17,1,other,DSC_0818.JPG +1828,367,2434,17,1,other,DSC_0844.JPG +18280,5281,2500,15,1,other,DSC_0818.JPG +18281,2665,253,17,1,other,DSC_0818.JPG +18285,127,1348,17,1,other,DSC_0818.JPG +18286,667,2260,17,1,other,DSC_0818.JPG +18287,4930,2518,15,1,other,DSC_0818.JPG +18288,2353,346,15,1,other,DSC_0818.JPG +1829,3493,115,17,1,other,DSC_0844.JPG +18290,109,700,17,1,other,DSC_0818.JPG +18293,379,946,16,1,other,DSC_0818.JPG +18294,5386,2209,17,1,other,DSC_0818.JPG +18295,322,2362,15,1,other,DSC_0818.JPG +18296,1480,2458,15,1,other,DSC_0818.JPG +18297,1834,2464,17,1,other,DSC_0818.JPG +18298,1975,2470,17,1,other,DSC_0818.JPG +18299,2317,2479,15,1,other,DSC_0818.JPG +1830,3808,328,17,1,other,DSC_0844.JPG +18300,5212,2509,17,1,other,DSC_0818.JPG +18305,169,1291,15,1,other,DSC_0818.JPG +18306,433,2419,15,1,other,DSC_0818.JPG +18307,115,328,17,1,other,DSC_0818.JPG +18309,160,1768,17,1,other,DSC_0818.JPG +18310,5389,2095,17,1,other,DSC_0818.JPG +18311,2752,43,17,1,other,DSC_0818.JPG +18314,100,1168,17,1,other,DSC_0818.JPG +18315,3160,2488,17,1,other,DSC_0818.JPG +18316,5149,2506,17,1,other,DSC_0818.JPG +18322,133,2098,17,1,other,DSC_0818.JPG +18323,562,2308,15,1,other,DSC_0818.JPG +18324,2740,2476,17,1,other,DSC_0818.JPG +18325,5344,2497,15,1,other,DSC_0818.JPG +18326,5431,184,17,1,other,DSC_0818.JPG +18328,106,937,15,1,other,DSC_0818.JPG +18329,85,1462,15,1,other,DSC_0818.JPG +18330,130,1588,15,1,other,DSC_0818.JPG +18331,5422,2152,15,1,other,DSC_0818.JPG +18332,5383,2326,15,1,other,DSC_0818.JPG +18333,502,2425,17,1,other,DSC_0818.JPG +18334,3016,2476,15,1,other,DSC_0818.JPG +18336,5425,1261,15,1,other,DSC_0818.JPG +18337,223,2287,17,1,other,DSC_0818.JPG +18338,1267,2449,15,1,other,DSC_0818.JPG +18339,5113,2458,16,1,other,DSC_0818.JPG +18344,2983,43,15,1,other,DSC_0818.JPG +18345,115,97,17,1,other,DSC_0818.JPG +1835,118,985,15,1,other,DSC_0844.JPG +18350,3298,2488,15,1,other,DSC_0818.JPG +18353,5443,64,17,1,other,DSC_0818.JPG +18357,673,2329,15,1,other,DSC_0818.JPG +18358,5041,2458,17,1,other,DSC_0818.JPG +18359,4768,4,17,1,other,DSC_0818.JPG +18360,2392,46,15,1,other,DSC_0818.JPG +18361,5362,310,17,1,other,DSC_0818.JPG +18365,103,1048,15,1,other,DSC_0818.JPG +18370,5317,2443,17,1,other,DSC_0818.JPG +18372,5425,787,17,1,other,DSC_0818.JPG +18375,142,1936,15,1,other,DSC_0818.JPG +18376,5431,670,15,1,other,DSC_0818.JPG +18377,730,2254,15,1,other,DSC_0818.JPG +18378,5287,2389,17,1,other,DSC_0818.JPG +1838,4870,1273,17,1,other,DSC_0844.JPG +18381,5224,181,17,1,other,DSC_0818.JPG +18382,5428,544,17,1,other,DSC_0818.JPG +18383,229,2407,17,1,other,DSC_0818.JPG +18384,73,148,17,1,other,DSC_0818.JPG +18386,112,1870,15,1,other,DSC_0818.JPG +18387,2188,31,16,1,other,DSC_0818.JPG +18388,5404,1861,15,1,other,DSC_0818.JPG +18389,169,1999,16,1,other,DSC_0818.JPG +1839,295,1306,17,1,other,DSC_0844.JPG +18390,5266,4,15,1,other,DSC_0818.JPG +18393,5464,721,17,1,other,DSC_0818.JPG +18396,5425,1141,15,1,other,DSC_0818.JPG +18398,109,1408,17,1,other,DSC_0818.JPG +18399,5353,2389,16,1,other,DSC_0818.JPG +1840,478,1375,17,1,other,DSC_0844.JPG +18400,4864,2509,15,1,other,DSC_0818.JPG +18401,4795,2527,15,1,other,DSC_0818.JPG +18402,5296,307,17,1,other,DSC_0818.JPG +18405,5413,1618,17,1,other,DSC_0818.JPG +18406,94,1693,17,1,other,DSC_0818.JPG +18407,5428,2263,17,1,other,DSC_0818.JPG +1841,3982,1576,17,1,other,DSC_0844.JPG +18412,139,1114,15,1,other,DSC_0818.JPG +18413,5416,1375,15,1,other,DSC_0818.JPG +18414,5410,1504,17,1,other,DSC_0818.JPG +18415,187,2110,17,1,other,DSC_0818.JPG +18416,1540,2350,15,1,other,DSC_0818.JPG +18417,5392,2440,17,1,other,DSC_0818.JPG +18418,5440,298,15,1,other,DSC_0818.JPG +18421,5239,919,17,1,other,DSC_0818.JPG +18423,5284,2161,17,1,other,DSC_0818.JPG +18424,133,2332,15,1,other,DSC_0818.JPG +18425,5119,4,17,1,other,DSC_0818.JPG +18429,100,2155,15,1,other,DSC_0818.JPG +18430,5320,2320,15,1,other,DSC_0818.JPG +18431,616,2338,15,1,other,DSC_0818.JPG +18432,5191,4,15,1,other,DSC_0818.JPG +18436,5329,10,17,1,other,DSC_0818.JPG +18439,5005,64,15,1,other,DSC_0818.JPG +18441,2551,4,15,1,other,DSC_0818.JPG +18442,73,271,17,1,other,DSC_0818.JPG +18443,73,385,16,1,other,DSC_0818.JPG +18444,55,1258,17,1,other,DSC_0818.JPG +18445,103,1522,15,1,other,DSC_0818.JPG +18447,76,640,17,1,other,DSC_0818.JPG +18449,5428,1912,15,1,other,DSC_0818.JPG +18450,5458,604,17,1,other,DSC_0818.JPG +18451,5449,1198,17,1,other,DSC_0818.JPG +18453,130,1816,17,1,other,DSC_0818.JPG +18454,5461,2086,17,1,other,DSC_0818.JPG +18455,109,1288,15,1,other,DSC_0818.JPG +18456,5461,1855,15,1,other,DSC_0818.JPG +18457,4846,4,17,1,other,DSC_0818.JPG +18458,2227,73,17,1,other,DSC_0818.JPG +18459,5437,910,15,1,other,DSC_0818.JPG +1846,544,1978,17,1,other,DSC_0844.JPG +18462,2821,43,17,1,other,DSC_0818.JPG +18464,2890,64,15,1,other,DSC_0818.JPG +18465,2161,82,15,1,other,DSC_0818.JPG +18467,5461,1069,17,1,other,DSC_0818.JPG +18468,5449,1318,17,1,other,DSC_0818.JPG +18469,3544,2308,15,1,other,DSC_0818.JPG +1847,967,1999,15,1,other,DSC_0844.JPG +18470,82,751,15,1,other,DSC_0818.JPG +18472,5053,10,17,1,other,DSC_0818.JPG +18473,5461,970,15,1,other,DSC_0818.JPG +18474,5407,10,17,1,other,DSC_0818.JPG +18475,5458,844,17,1,other,DSC_0818.JPG +18476,5428,1021,15,1,other,DSC_0818.JPG +18477,82,1105,16,1,other,DSC_0818.JPG +18479,157,2389,15,1,other,DSC_0818.JPG +1848,2392,2218,17,1,other,DSC_0844.JPG +18481,5485,784,15,1,other,DSC_0818.JPG +18482,5467,1726,15,1,other,DSC_0818.JPG +18483,2224,2308,17,1,other,DSC_0818.JPG +18484,532,961,17,1,other,DSC_0818.JPG +18486,4987,7,15,1,other,DSC_0818.JPG +18487,79,514,17,1,other,DSC_0818.JPG +18488,97,2269,17,1,other,DSC_0818.JPG +18489,4696,4,17,1,other,DSC_0818.JPG +1849,3718,2245,16,1,other,DSC_0844.JPG +18490,79,880,17,1,other,DSC_0818.JPG +18491,3988,2119,17,1,other,DSC_0818.JPG +18494,5440,1792,17,1,other,DSC_0818.JPG +18495,79,37,17,1,other,DSC_0818.JPG +18496,874,1447,17,1,other,DSC_0818.JPG +18497,5476,2230,17,1,other,DSC_0818.JPG +1850,3718,2368,17,1,other,DSC_0844.JPG +18503,34,2032,17,1,other,DSC_0818.JPG +18504,1486,2233,15,1,other,DSC_0818.JPG +18505,46,205,15,1,other,DSC_0818.JPG +18506,40,442,17,1,other,DSC_0818.JPG +18509,367,580,15,1,other,DSC_0818.JPG +1851,4519,2410,17,1,other,DSC_0844.JPG +18510,31,1867,15,1,other,DSC_0818.JPG +18513,61,2101,16,1,other,DSC_0818.JPG +18514,541,2473,17,1,other,DSC_0818.JPG +18515,4426,7,17,1,other,DSC_0818.JPG +18516,37,1321,17,1,other,DSC_0818.JPG +18518,106,1747,16,1,other,DSC_0818.JPG +18519,3994,4,17,1,other,DSC_0818.JPG +1852,3034,52,16,1,other,DSC_0844.JPG +18520,4267,7,17,1,other,DSC_0818.JPG +18521,4633,10,15,1,other,DSC_0818.JPG +18523,1795,2410,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18525,1795,1684,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1853,4168,67,17,1,other,DSC_0844.JPG +18531,2872,2539,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18533,1615,1375,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18534,2227,2293,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18538,3700,2488,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18539,3052,2605,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1854,292,184,16,1,other,DSC_0844.JPG +18541,1399,2470,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18542,2185,2599,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18544,1045,2101,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18545,2842,2116,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18546,937,2644,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18547,2368,2413,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18549,2449,1570,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1855,1972,295,17,1,other,DSC_0844.JPG +18553,562,1669,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18560,4930,1957,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18563,3016,2542,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18565,2197,1750,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18573,1471,1864,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18576,4054,955,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1858,145,1282,15,1,other,DSC_0844.JPG +18580,4048,1579,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18586,2617,2725,16,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18589,1543,2470,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +186,2962,313,15,1,other,DSC_0844.JPG +18600,2263,2110,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18603,5329,523,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18610,2377,1570,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18611,3205,1882,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18615,4441,1774,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18618,1225,2410,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18624,1576,2410,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18632,3565,466,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18635,1009,2407,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18636,3883,2425,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18639,2545,2854,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18640,5542,772,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18646,1189,2227,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18649,964,2830,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18657,5224,952,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18658,2818,1075,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18665,2266,1753,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18666,2086,1807,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1867,814,73,17,1,other,DSC_0844.JPG +18671,1222,1921,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18672,2659,2176,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18674,3367,886,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18675,2380,946,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18678,3214,1261,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1868,3982,532,17,1,other,DSC_0844.JPG +18686,3472,952,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18688,1651,1564,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1870,4462,790,17,1,other,DSC_0844.JPG +18703,1933,2656,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18705,2401,2851,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18708,1867,1687,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18711,3676,1942,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18714,3310,2302,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18716,4495,2365,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18718,2944,2668,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18737,301,1846,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18739,1402,2224,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18740,4171,2308,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18743,1645,2656,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18744,1861,2659,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1875,4801,1282,17,1,other,DSC_0844.JPG +18753,1861,2533,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18755,3376,2671,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18756,5470,643,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18757,3766,826,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1876,5191,1558,17,1,other,DSC_0844.JPG +18765,2764,2731,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18767,3655,889,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18773,3175,1696,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18778,3847,2488,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18779,2692,2599,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1878,436,1666,17,1,other,DSC_0844.JPG +18780,1759,877,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18786,1186,2710,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18787,2257,2722,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18791,3139,1636,16,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18794,3133,1879,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18795,1942,2167,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18798,976,2707,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18803,1327,1498,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1881,4135,2239,17,1,other,DSC_0844.JPG +18811,2263,2233,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18814,1117,2470,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18815,1363,2530,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18816,2332,2725,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18817,2125,883,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18819,5569,1081,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1882,4309,2296,15,1,other,DSC_0844.JPG +18824,1189,2470,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18825,868,2641,16,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18826,2005,2659,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1883,3298,2356,17,1,other,DSC_0844.JPG +1884,3511,2359,17,1,other,DSC_0844.JPG +18844,2260,2596,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18845,1978,877,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1885,3565,118,16,1,other,DSC_0844.JPG +18855,2152,2410,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18857,2836,2602,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1886,3952,190,17,1,other,DSC_0844.JPG +18861,2587,2662,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18868,2233,1567,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1887,4519,196,17,1,other,DSC_0844.JPG +18870,2341,1750,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1888,4846,265,17,1,other,DSC_0844.JPG +18880,3175,1573,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18891,2599,454,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18896,2122,1381,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18914,4546,1954,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18922,1432,1063,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18937,2653,2788,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18942,5002,1339,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18948,2845,1996,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1895,5218,844,15,1,other,DSC_0844.JPG +18958,1828,2593,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18960,3268,2737,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18961,223,601,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18968,4153,1522,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18970,3490,2242,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18975,2728,2665,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18978,2890,1072,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18980,5422,1204,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18981,5455,1264,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18996,1897,2719,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18997,5545,643,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19004,3502,1513,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19009,4891,2014,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19024,559,1540,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19029,1438,1927,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1904,5197,1321,15,1,other,DSC_0844.JPG +19045,2950,2056,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19058,2704,1756,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1907,3160,2353,17,1,other,DSC_0844.JPG +19070,3622,952,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1908,4456,61,17,1,other,DSC_0844.JPG +19080,1834,2104,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19086,2008,2785,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19088,5362,706,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1909,3001,112,16,1,other,DSC_0844.JPG +19093,1321,997,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19094,2929,1012,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1910,4564,124,17,1,other,DSC_0844.JPG +19103,4111,1948,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19107,973,2467,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1911,982,139,17,1,other,DSC_0844.JPG +19113,2836,2857,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19116,3292,880,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19117,2599,949,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1912,2008,232,17,1,other,DSC_0844.JPG +19149,2401,2599,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19152,5500,958,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1916,658,721,17,1,other,DSC_0844.JPG +19172,3484,2485,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19173,1579,2656,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19174,3085,2665,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1918,5329,1012,17,1,other,DSC_0844.JPG +19182,1000,1306,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19190,5479,1939,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19197,2368,2785,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19203,5491,1201,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19214,4069,2371,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19215,1903,877,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19216,2563,877,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19219,2050,1258,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19226,3673,2062,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1923,436,1909,17,1,other,DSC_0844.JPG +19231,931,2773,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19232,1651,811,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19238,5698,1450,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1924,3583,2119,17,1,other,DSC_0844.JPG +19247,1684,2227,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19248,3634,2245,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1925,2359,2161,17,1,other,DSC_0844.JPG +19250,1684,2353,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19252,2329,2596,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19254,4135,2737,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19255,5539,895,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19256,5575,955,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1926,1075,2185,17,1,other,DSC_0844.JPG +19263,1435,1804,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1927,3604,2422,15,1,other,DSC_0844.JPG +19272,1081,2407,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19276,2692,2728,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19277,3544,952,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1928,4705,130,17,1,other,DSC_0844.JPG +19282,3070,1138,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19283,271,1417,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19291,1330,2470,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19293,904,2710,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +193,769,136,16,1,other,DSC_0844.JPG +1930,184,373,15,1,other,DSC_0844.JPG +19300,274,1921,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19308,2440,2536,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19312,259,1057,16,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19315,5566,1201,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1932,1831,424,17,1,other,DSC_0844.JPG +19325,3133,1999,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19329,4720,2248,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19334,5725,706,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1935,76,1162,15,1,other,DSC_0844.JPG +19352,5296,583,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19353,262,664,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19359,2122,1258,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19364,5206,1330,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19366,5416,1453,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1938,409,1369,17,1,other,DSC_0844.JPG +19382,1753,2593,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19383,2224,2659,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19385,1288,934,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19386,1579,937,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19389,3145,1264,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +194,1015,208,16,1,other,DSC_0844.JPG +19404,4705,2494,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19409,4378,1147,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19411,2524,1198,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19414,3607,1576,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19423,937,2404,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19425,2044,2719,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19426,2509,2914,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19427,5467,769,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1943,262,1951,15,1,other,DSC_0844.JPG +19431,5389,1141,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19445,862,1912,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19449,2662,2056,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1945,2779,2167,17,1,other,DSC_0844.JPG +19451,784,2272,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19454,865,2524,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19458,1687,874,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19469,5398,2050,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1947,2707,2290,17,1,other,DSC_0844.JPG +19474,4351,2359,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19475,2119,2473,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19477,1612,2719,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1948,3367,2359,17,1,other,DSC_0844.JPG +19480,2596,1069,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19484,5068,1333,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1949,2776,2410,15,1,other,DSC_0844.JPG +195,1477,286,16,1,other,DSC_0844.JPG +1950,3388,58,15,1,other,DSC_0844.JPG +19501,2302,1567,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19507,5080,2341,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1951,2890,175,16,1,other,DSC_0844.JPG +19510,598,490,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19511,2491,880,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19518,307,1360,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19520,3214,1384,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19522,2416,1504,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19529,1762,1864,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19535,328,2149,16,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19537,2479,2476,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19540,3193,2737,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19541,3622,2737,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19542,5221,583,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19543,5434,583,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19554,5104,1393,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1956,184,745,17,1,other,DSC_0844.JPG +19560,4924,1837,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19563,1081,2530,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19566,4867,2683,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19567,187,793,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19574,4300,1144,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19591,3928,2494,18,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19593,4210,2611,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19595,1435,448,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19596,5158,703,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19598,2674,946,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +196,4417,979,17,1,other,DSC_0844.JPG +1960,1588,1306,16,1,other,DSC_0844.JPG +19602,4375,1402,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19613,5374,1762,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19617,1864,2413,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19619,1969,2470,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19629,2668,1450,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19634,5218,2209,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19638,3631,2362,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19639,3091,2794,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19640,3727,2797,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19641,5119,640,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19642,5044,889,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1965,367,1660,17,1,other,DSC_0844.JPG +19654,2770,1993,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19658,4279,2611,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19659,2584,2788,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19660,2512,2791,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19661,5578,586,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19663,1360,934,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19667,2125,1006,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19668,1795,1189,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19672,5371,1639,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19675,4966,2011,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19677,1219,2530,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19679,1936,2905,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19684,5143,1204,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1969,3895,2185,15,1,other,DSC_0844.JPG +19691,4771,1831,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19699,1078,2773,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19700,1045,2830,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19701,2797,2914,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1971,4348,2236,17,1,other,DSC_0844.JPG +1972,463,2308,17,1,other,DSC_0844.JPG +19723,1975,1255,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19735,3772,2482,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19736,4078,2497,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19738,4699,2746,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19739,5080,580,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1974,1915,37,17,1,other,DSC_0844.JPG +19742,5791,955,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19746,5524,1261,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1975,370,187,15,1,other,DSC_0844.JPG +19751,229,1720,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19755,3745,2548,16,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19757,1150,2770,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19761,5317,1141,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19764,5170,1390,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19765,5449,1390,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19768,1075,1561,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19773,5095,1885,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19776,3625,2611,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19780,5602,1141,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19781,778,1180,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19782,502,1297,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19784,5305,1513,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19795,1831,1987,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19800,5470,526,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19802,5638,1078,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19807,4561,1216,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19809,5140,1330,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19819,1579,2290,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19821,1795,2533,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19823,2368,2908,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19839,1006,2527,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1985,4867,1399,16,1,other,DSC_0844.JPG +19850,4855,1219,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19856,2740,1447,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19857,3679,1453,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19858,1108,1618,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19863,4681,2188,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19868,2545,2722,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19869,2113,2851,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1987,580,1918,17,1,other,DSC_0844.JPG +19873,1360,1057,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19881,5323,2041,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19888,2149,2791,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19890,298,604,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19891,5611,892,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19892,5605,1015,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19893,5533,1018,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19895,814,1120,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19896,5458,1141,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19897,4747,1156,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1990,334,382,17,1,other,DSC_0844.JPG +19915,1399,2716,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19917,1117,2824,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19918,2149,2908,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19919,5152,580,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19921,1180,868,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19928,5419,1327,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1994,181,1348,17,1,other,DSC_0844.JPG +19942,4945,2242,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19945,3694,2737,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19946,2947,2791,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19947,2260,2848,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19948,3106,457,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19951,5746,1018,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19957,5137,1453,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19967,5356,1981,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19970,5443,2110,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19971,4918,2182,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19972,1117,2350,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19974,4096,2677,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19975,2869,2794,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19979,1399,1249,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19995,2914,2113,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19996,3127,2356,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19998,3124,2728,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20002,2185,2851,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20018,2545,2596,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20021,3550,2866,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20022,4057,2866,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20023,226,724,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20024,5683,892,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20026,1000,1057,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2003,862,2176,15,1,other,DSC_0844.JPG +20030,5554,1453,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20038,5050,637,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20039,5611,769,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20040,5650,832,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20048,823,1852,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20053,5107,2275,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20057,3337,2737,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20058,2476,2851,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2006,775,16,16,1,other,DSC_0844.JPG +20061,5119,1141,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20064,5242,1267,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20067,5623,1453,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20069,3319,1819,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2007,1198,25,17,1,other,DSC_0844.JPG +20073,5032,1996,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20075,3160,2671,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20076,1966,2716,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20078,1477,2824,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20079,4669,517,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2008,184,622,17,1,other,DSC_0844.JPG +20085,568,1297,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2009,190,994,15,1,other,DSC_0844.JPG +20095,4819,2428,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20096,5146,2467,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20097,5254,523,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20098,5365,586,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20103,256,1186,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20106,5557,1327,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20109,376,1726,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2011,5320,1369,17,1,other,DSC_0844.JPG +20110,4447,2008,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20113,4960,2125,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20114,5215,2128,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20115,4138,2368,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20118,5758,769,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20120,2998,1141,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20121,5530,1144,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20131,391,2788,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20132,5740,1267,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2014,4918,2110,15,1,other,DSC_0844.JPG +20140,826,1975,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20143,4456,2296,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20148,5188,640,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2015,268,2188,15,1,other,DSC_0844.JPG +20156,5230,1768,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20160,1609,2590,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20162,3373,2800,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20163,3763,463,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20167,5806,1510,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2017,4168,2299,16,1,other,DSC_0844.JPG +20174,5440,1996,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20177,4567,2242,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20178,2080,2536,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20179,4063,2734,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2018,3961,2302,17,1,other,DSC_0844.JPG +20180,4771,2749,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20181,3121,2854,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20182,3439,2920,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20187,2998,1264,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20196,1360,445,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2020,3454,319,17,1,other,DSC_0844.JPG +20204,5131,1828,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20214,886,2833,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20215,2047,2971,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20216,187,661,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20217,2785,751,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20219,223,1120,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20220,2596,1195,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20224,3508,1390,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20231,5008,2350,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20233,4039,2437,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20235,2185,2725,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20237,1069,931,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20239,5716,958,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2024,5290,1081,17,1,other,DSC_0844.JPG +20241,2557,1009,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20242,2923,1387,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20247,5407,1933,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20248,5086,2146,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20250,5407,2251,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20253,5182,523,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20260,5131,1705,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20265,4783,2371,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20266,5041,2578,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2027,5242,1258,15,1,other,DSC_0844.JPG +20272,4777,1342,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20273,5593,1393,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20275,5485,1453,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20277,337,1786,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20285,1471,2716,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20288,3799,2794,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20289,5617,643,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20290,5755,892,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20295,703,1180,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20296,5521,1393,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20298,5269,1576,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20299,5293,1879,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20306,2722,2917,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20307,5464,1018,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20312,271,1783,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20317,5707,1078,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2032,5257,1927,15,1,other,DSC_0844.JPG +20327,4987,2476,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20332,184,919,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20333,5677,1015,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20334,5674,1144,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20335,4957,1408,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20344,4303,2260,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20345,3409,2737,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20347,4228,2923,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20349,265,1300,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20352,5662,1393,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20359,1648,2779,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2036,1945,2275,17,1,other,DSC_0844.JPG +20360,2761,2857,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20361,2260,2962,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20362,1549,3058,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20368,5107,1267,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20374,5014,2230,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20375,5119,2395,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20377,3976,2566,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20378,3775,2614,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20379,1720,2782,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2038,148,433,15,1,other,DSC_0844.JPG +20381,5683,769,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20386,5485,1330,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20393,3406,2860,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20394,3910,2860,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20395,5578,832,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20405,3478,2860,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20406,4195,2863,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20408,262,793,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20414,5770,1447,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20419,3016,2794,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20420,1723,2902,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20421,3727,2923,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20422,5689,640,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20423,5650,703,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20424,217,856,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20434,4900,2614,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20435,283,2638,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20437,3337,2857,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20439,5398,526,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20440,5575,709,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20441,3802,889,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20442,3838,952,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2045,298,1651,17,1,other,DSC_0844.JPG +20450,4972,2743,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20451,1576,2776,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20452,3976,2980,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20453,1138,442,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20454,5224,703,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20457,3217,886,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20465,4858,2365,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20466,2728,2794,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20467,3445,2797,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20468,5227,826,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2047,1672,1927,17,1,other,DSC_0844.JPG +20474,5272,2179,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20476,5176,2275,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20478,1294,2773,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20479,2329,2851,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20483,4972,895,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20487,301,1597,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20489,5035,2410,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2049,928,2179,15,1,other,DSC_0844.JPG +20490,4213,2488,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20492,5044,523,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20493,5722,832,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20494,2413,877,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20499,5278,1957,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +205,895,1876,17,1,other,DSC_0844.JPG +2050,2323,2221,17,1,other,DSC_0844.JPG +20501,5269,2266,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20503,3700,2617,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20504,2683,2854,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20505,2758,2968,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20509,3157,2917,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2051,1762,2329,17,1,other,DSC_0844.JPG +20510,5008,463,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20512,2449,943,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20516,5299,1642,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20518,4990,2179,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2052,220,49,15,1,other,DSC_0844.JPG +20520,454,2851,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20522,3370,2920,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20523,4474,2980,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20524,5503,583,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20530,5218,2332,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20532,4282,2488,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20533,4945,2536,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20537,1789,2905,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20539,2332,2965,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20540,850,439,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20541,4903,1027,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20544,5449,1876,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20545,4492,2122,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20547,2185,2962,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20553,2440,2911,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20560,2689,2971,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20561,2545,2974,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20562,5074,2059,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20563,4645,2125,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20564,253,2356,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20565,4315,2422,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20566,4027,2677,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20567,1369,2764,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20568,2296,2785,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20569,4411,2869,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20570,1870,2905,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20571,2236,451,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20572,4060,466,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20573,1210,934,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20574,5629,1330,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20575,5662,1510,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20578,424,2575,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20579,2224,2911,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20586,5341,2284,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20588,3730,2677,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20589,1759,2839,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20590,2902,2857,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20592,4495,466,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20593,5734,1510,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20594,4936,2674,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20595,4621,2854,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20596,3079,2917,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20597,4423,463,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20598,5800,703,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20601,229,1846,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20602,4579,2008,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20603,4243,2194,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20604,1507,2770,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20605,5089,2785,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20606,265,547,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20607,5734,1390,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20609,5080,2515,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20610,838,2893,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20611,5293,466,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20612,5725,580,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20613,5758,646,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20614,5341,1453,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20615,5164,1885,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20617,5047,2287,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20621,2074,2785,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20622,1609,2836,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20623,1579,2890,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20624,991,439,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20625,337,544,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20628,4486,2236,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20629,1225,2770,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20631,2833,2968,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20632,2116,2971,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20633,922,442,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20635,229,1594,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20637,205,1918,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20641,4339,2869,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20642,3868,2923,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20643,301,490,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20644,5773,1327,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20645,418,1537,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20646,5503,1756,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20648,5134,2014,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20649,5491,2071,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20651,1513,2890,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20652,5710,1201,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20654,5668,1264,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20655,433,1306,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20658,3799,2920,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20659,4582,2926,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20663,4666,2809,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20664,5692,523,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20665,1939,940,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20668,4528,2179,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20669,4975,2602,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20670,463,2644,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20671,1186,2824,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20672,4765,2875,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20673,4303,2926,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20674,4039,3079,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20675,4270,463,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20679,706,436,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20680,5632,1201,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20685,4000,2626,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20686,2977,2857,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20687,376,490,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2069,5128,2302,16,1,other,DSC_0844.JPG +20690,1543,2830,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20692,2407,2968,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20693,5593,1267,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20696,4249,2422,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20698,1333,2824,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20699,5230,2911,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +207,694,133,16,1,other,DSC_0844.JPG +2070,442,2446,16,1,other,DSC_0844.JPG +20700,2869,2914,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20701,4516,2935,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20702,3754,3073,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20705,4384,2296,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20707,280,2482,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20708,4069,2620,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20709,3832,2983,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2071,4696,2452,15,1,other,DSC_0844.JPG +20710,5767,1570,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20714,3871,2662,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20717,4729,2809,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20718,4093,2926,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20719,3658,2932,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20720,1903,2965,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20721,1687,3055,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20724,466,2089,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20725,313,2302,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20726,4531,2308,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20729,3796,2680,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20731,4447,2929,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20732,4348,463,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20733,223,1243,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20735,5368,1882,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20736,5506,2002,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2074,376,451,17,1,other,DSC_0844.JPG +20741,331,2710,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20742,502,2785,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20743,1402,2827,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20744,3403,2980,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20745,3250,3073,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20746,418,433,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20747,148,1717,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20748,5074,1948,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20749,274,2218,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2075,4510,601,17,1,other,DSC_0844.JPG +20750,238,2290,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20752,2476,2971,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20753,2971,2971,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20754,4192,2977,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20755,412,547,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20756,1618,877,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20759,5005,2662,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20760,3871,2800,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20762,5644,958,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20764,5368,2119,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20765,5152,2176,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20767,655,2560,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20769,4801,2815,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20770,1258,2821,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20771,1762,2959,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20772,5149,463,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20775,4231,2803,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20776,3763,2860,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20777,2935,2914,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20778,3472,2980,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20779,2152,3022,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20780,2473,3067,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20781,259,436,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20782,3685,463,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20783,4135,466,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20784,529,487,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20785,5827,769,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20786,5524,1513,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20788,1687,2839,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20789,3511,2920,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2079,3196,2176,17,5,other,DSC_0844.JPG +20790,2617,2971,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20791,2614,3073,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20793,208,1783,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20794,1438,2770,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20795,4375,2929,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20796,1618,2953,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20797,1975,2971,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20798,4204,466,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20799,5701,1330,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2080,1279,2179,15,1,other,DSC_0844.JPG +20800,5479,1576,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20801,2722,3019,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20802,2329,3064,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20803,226,490,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20804,5647,580,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20806,5149,2095,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20807,586,2215,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20809,2899,2974,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2081,1801,2275,17,1,other,DSC_0844.JPG +20810,3691,2983,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20811,4117,2986,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20812,4633,463,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20814,5620,526,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20815,2233,946,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20816,265,1657,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20819,3766,2737,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20820,4258,2980,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20821,5542,529,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20822,187,1057,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20823,196,1660,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20824,5266,1693,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20828,4021,2929,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20829,1828,2959,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2083,4237,2299,15,1,other,DSC_0844.JPG +20830,5074,466,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20831,2860,883,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20832,5563,1762,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20833,304,1984,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20834,4906,2752,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20837,1438,2887,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20838,5440,2896,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20839,4162,2920,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2084,2818,46,17,1,other,DSC_0844.JPG +20840,5038,3079,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20842,4873,2818,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20843,3115,2971,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20844,3190,2980,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20845,5362,3013,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20847,5248,2050,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20848,5194,2401,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2085,4204,127,16,1,other,DSC_0844.JPG +20850,4699,2866,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20851,3622,2989,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20853,5074,2452,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20855,640,2713,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20856,538,2845,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20857,1156,2881,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20858,3910,2974,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20859,5254,3073,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20860,160,724,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20861,5821,895,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20862,5818,1018,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20863,148,1804,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20864,3988,2740,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20866,5161,2911,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20867,3586,2917,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20868,2542,3064,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20869,2044,3073,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20870,4675,3079,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20871,4567,469,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20873,5485,1813,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20874,541,2299,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20875,5008,2527,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20878,1369,2884,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20879,1753,3061,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2088,220,307,17,1,other,DSC_0844.JPG +20880,5434,466,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20883,376,2644,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20884,415,2710,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20885,1972,3070,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20886,4465,3073,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20889,5518,1882,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20890,3049,2977,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20891,3397,3076,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20892,142,853,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20893,5782,1207,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20895,5101,2581,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20898,1933,3013,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20901,253,2074,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20902,487,2518,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20903,1222,2884,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20904,1516,3001,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20905,5788,832,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20906,5884,1054,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20907,136,1633,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20908,4891,2425,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20909,616,2455,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2091,4570,730,17,1,other,DSC_0844.JPG +20910,1654,2896,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20911,3547,2977,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20912,2440,3013,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20913,4708,463,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20914,5218,466,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20916,157,988,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20917,5557,1573,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20918,5800,1636,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20920,184,2356,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20921,211,2425,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20923,538,2710,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20924,1477,2947,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20925,4402,2977,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20926,1870,3019,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20927,1474,3058,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20928,3322,3070,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20929,487,430,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20930,142,601,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20931,4330,2170,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20933,3946,2800,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20934,1549,2950,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20935,5191,2965,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20936,637,433,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20937,5731,469,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20940,187,1177,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20941,583,2524,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20943,1693,2953,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20944,3652,3037,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20945,2257,3070,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20946,4252,3073,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20947,5362,463,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20950,5647,2875,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20951,5515,1639,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20952,5038,1888,15,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20953,4834,2875,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20954,4795,2935,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20955,5122,2968,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20956,1333,3052,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20957,5401,3067,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20958,3034,3070,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2096,895,2236,15,1,other,DSC_0844.JPG +20961,5698,1570,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20962,5626,1699,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20963,157,2284,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20964,766,2848,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20965,5299,2905,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20966,2191,3067,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20967,562,430,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2097,3370,2239,17,1,other,DSC_0844.JPG +20970,4867,1087,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20971,5731,1633,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20972,4417,2230,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20973,586,2785,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20974,4654,2929,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20975,1624,3052,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20978,5896,676,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20979,109,679,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2098,1522,2254,17,1,other,DSC_0844.JPG +20981,5287,2113,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20983,469,2359,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20984,2968,3073,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20985,3466,3076,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20986,775,436,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20987,5764,526,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2099,4876,2275,17,1,other,DSC_0844.JPG +20991,4456,2179,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20993,3856,2584,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20994,3760,2980,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2100,3889,2302,17,1,other,DSC_0844.JPG +21000,5623,2269,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21001,4213,2365,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21002,5578,2881,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21003,4729,2932,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21004,1582,2995,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21005,5008,3028,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21006,1903,3070,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21008,5482,2257,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21010,3013,2908,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21011,2791,3016,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21012,2752,3070,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21019,5740,1144,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21020,244,1354,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21021,157,1864,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21022,4978,2980,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21023,5794,583,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21027,244,1477,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21029,382,2503,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2103,3574,2362,17,1,other,DSC_0844.JPG +21030,4327,2986,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21031,2656,3025,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21032,4540,3079,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21039,4045,2983,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2104,1621,31,15,1,other,DSC_0844.JPG +21040,1792,3016,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21041,5080,3025,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21042,1831,3064,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21048,106,1033,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21049,325,2389,17,5,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21050,1291,2881,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21051,1723,3001,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21052,4318,3070,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21053,3121,3073,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21054,5185,3076,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21059,235,2554,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21060,5197,2842,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21061,5332,2959,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21071,5806,1384,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21072,5593,1513,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21073,5548,1699,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21074,4471,2068,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21075,5263,2962,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21076,3334,2980,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21077,2227,3013,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21078,5290,3016,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21079,2866,3028,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21084,142,1117,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21086,5674,2821,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21087,5371,2896,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21088,1441,3004,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21089,4969,3076,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21090,457,487,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21098,5266,2842,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21099,5062,2857,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +211,439,1786,17,1,other,DSC_0844.JPG +21100,2371,3019,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21101,2938,3019,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21102,4792,3022,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21103,2110,3061,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21104,3964,3064,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21105,4114,3079,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21106,187,544,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2111,931,1942,15,1,other,DSC_0844.JPG +21110,115,769,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21117,4726,1888,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21118,5266,2392,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2112,1555,2200,17,1,other,DSC_0844.JPG +21129,235,1984,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21130,4990,2872,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21131,5149,3022,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21145,5548,2059,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21146,5017,2800,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21147,364,2866,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2115,2362,241,16,1,other,DSC_0844.JPG +21158,5605,2203,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21159,5044,2728,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21160,4912,2878,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21161,3262,2974,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21162,4873,3034,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21163,3541,3076,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21164,4825,3079,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21165,3616,3082,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21173,5866,1486,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21174,3955,2689,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21175,4945,2824,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21176,1099,2890,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21177,5476,2947,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21178,5224,3019,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21179,4603,3070,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21180,5113,3076,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21191,4249,2302,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21192,5335,2836,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21193,4576,3013,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21194,2011,3022,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21195,2401,3073,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21197,484,547,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2120,364,1426,15,1,other,DSC_0844.JPG +21209,4189,3070,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21229,5548,1963,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21230,4906,2983,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21231,5470,3061,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21232,3829,3082,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21233,4861,466,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21248,5608,2824,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21249,5515,2890,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21250,919,2896,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21251,5404,2953,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21266,5671,1807,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21268,301,2560,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21269,1408,2938,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21270,5542,2941,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21271,4936,3031,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21272,4396,3070,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21273,3184,3073,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21281,5878,1126,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21283,151,1963,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21284,619,2914,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21285,5659,469,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2129,5164,1264,17,1,other,DSC_0844.JPG +21296,5125,2851,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21297,1372,3004,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21298,5320,3067,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21299,4759,3076,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +213,2986,2290,16,5,other,DSC_0844.JPG +2130,1669,1816,17,1,other,DSC_0844.JPG +21300,5581,463,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21307,5335,2209,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21309,3913,2602,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2131,1069,1945,15,1,other,DSC_0844.JPG +21310,2581,3025,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21311,4786,463,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21323,5410,2836,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21324,4870,2929,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21325,1654,2998,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2133,4846,2110,15,1,other,DSC_0844.JPG +21347,5839,1576,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21349,523,2911,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21350,5824,634,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21353,5899,757,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21359,3835,2752,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2136,1105,2245,15,1,other,DSC_0844.JPG +21360,5293,2788,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21361,3433,3028,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21362,4720,3034,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2137,2176,2332,17,1,other,DSC_0844.JPG +2138,3190,2416,17,1,other,DSC_0844.JPG +21380,3916,2734,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21382,1330,2941,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21383,4618,2971,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21384,3868,3037,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21385,5512,469,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2139,3883,58,17,1,other,DSC_0844.JPG +21395,5818,1144,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21396,199,1306,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21398,5692,2206,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21399,4504,3034,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2141,31,607,15,1,other,DSC_0844.JPG +21413,109,934,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21420,5698,2065,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21421,772,2212,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21422,163,2566,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21438,5728,1822,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2144,181,1585,16,1,other,DSC_0844.JPG +21441,4690,2974,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21442,5047,2974,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21443,2290,3010,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21444,2827,3076,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21445,2905,3079,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21454,193,1528,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21455,178,2470,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21456,5092,2908,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21457,3148,3019,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21458,3082,3022,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21459,3511,3028,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2146,232,2125,15,1,other,DSC_0844.JPG +21461,5800,466,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21468,5890,829,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2147,574,2161,15,1,other,DSC_0844.JPG +21472,5326,1930,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21474,5530,2188,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21476,268,2731,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21477,5377,2779,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21483,4882,1156,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21485,5647,1867,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21486,5710,1879,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2149,4093,2293,17,1,other,DSC_0844.JPG +21496,127,1183,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21497,5611,2074,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21498,4948,2932,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21499,4837,2986,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2150,2251,2335,17,1,other,DSC_0844.JPG +21508,5593,2011,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21509,5650,2134,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2151,2635,2404,15,1,other,DSC_0844.JPG +21510,5152,2557,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21511,5152,2785,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21512,3583,3031,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21518,5887,979,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2152,403,127,15,1,other,DSC_0844.JPG +21523,5623,1576,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21524,5758,1684,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21526,340,439,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21527,4930,472,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2153,4591,199,15,1,other,DSC_0844.JPG +21536,4279,2368,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21537,5200,2503,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21539,316,2809,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21553,5287,2326,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21554,691,2896,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21555,5434,3004,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21556,4648,3022,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21557,1414,3070,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21558,3691,3088,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21569,5428,2176,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2157,5176,907,16,1,other,DSC_0844.JPG +21570,3808,2542,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21571,865,2773,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21572,5497,2785,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21573,5512,2998,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21588,5875,1417,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21590,4012,3031,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21601,5722,1738,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21602,5695,1975,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21603,214,2629,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21604,5017,2926,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21605,3295,3022,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21606,4906,3085,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2161,403,1483,17,1,other,DSC_0844.JPG +21612,5119,2731,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21613,3007,3022,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21630,5188,2044,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21650,5149,2323,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21656,5578,2146,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21658,4402,2152,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2166,1033,2242,15,1,other,DSC_0844.JPG +21669,427,2215,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2167,4030,2290,17,1,other,DSC_0844.JPG +21670,4156,3025,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21675,5917,877,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21676,5506,1090,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21680,778,2902,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21681,2662,2905,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21688,331,1912,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21689,493,1999,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2169,4600,67,17,1,other,DSC_0844.JPG +21690,5230,2788,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21693,5557,1831,15,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21694,2071,3022,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21699,139,1567,16,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2170,3427,118,15,1,other,DSC_0844.JPG +21700,5890,1615,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21701,5632,1945,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21702,5107,2638,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21703,5545,2830,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21708,5563,2248,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21709,3217,3028,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21710,2695,3079,17,1,other,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21711,2938,376,17,1,other,DSC_0828.JPG +21712,2572,1564,17,1,other,DSC_0828.JPG +21713,2830,316,17,1,other,DSC_0828.JPG +21714,1969,1969,17,1,other,DSC_0828.JPG +21715,1771,133,17,1,other,DSC_0828.JPG +21716,2356,136,17,1,other,DSC_0828.JPG +21717,1738,427,17,1,other,DSC_0828.JPG +21718,1555,487,17,1,other,DSC_0828.JPG +21719,3151,2380,17,1,other,DSC_0828.JPG +21720,751,133,17,1,other,DSC_0828.JPG +21721,2680,319,17,1,other,DSC_0828.JPG +21722,1516,193,17,1,other,DSC_0828.JPG +21723,1633,724,17,1,other,DSC_0828.JPG +21724,1759,2188,17,1,other,DSC_0828.JPG +21725,1564,1672,15,1,other,DSC_0828.JPG +21726,2329,2317,15,1,other,DSC_0828.JPG +21727,1642,2365,15,1,other,DSC_0828.JPG +21728,2899,205,17,1,other,DSC_0828.JPG +21729,565,73,17,1,other,DSC_0828.JPG +2173,5113,661,17,1,other,DSC_0844.JPG +21730,3016,160,17,1,other,DSC_0828.JPG +21731,2860,265,17,1,other,DSC_0828.JPG +21732,1921,370,17,1,other,DSC_0828.JPG +21733,3559,442,15,1,other,DSC_0828.JPG +21734,1123,601,17,1,other,DSC_0828.JPG +21735,2395,667,17,1,other,DSC_0828.JPG +21736,3589,2386,15,1,other,DSC_0828.JPG +21737,3778,91,17,1,other,DSC_0828.JPG +21738,2431,142,15,1,other,DSC_0828.JPG +21739,3595,148,17,1,other,DSC_0828.JPG +2174,40,1216,15,1,other,DSC_0844.JPG +21740,3445,151,17,1,other,DSC_0828.JPG +21741,1993,250,17,1,other,DSC_0828.JPG +21742,2179,550,17,1,other,DSC_0828.JPG +21743,2314,796,17,1,other,DSC_0828.JPG +21744,2647,1213,17,1,other,DSC_0828.JPG +21745,2074,2020,17,1,other,DSC_0828.JPG +21746,1567,2368,17,1,other,DSC_0828.JPG +21747,2902,82,17,1,other,DSC_0828.JPG +21748,3553,91,17,1,other,DSC_0828.JPG +21749,529,133,16,1,other,DSC_0828.JPG +21750,2650,139,17,1,other,DSC_0828.JPG +21751,1735,190,17,1,other,DSC_0828.JPG +21752,1075,193,17,1,other,DSC_0828.JPG +21753,1555,250,17,1,other,DSC_0828.JPG +21754,2977,316,17,1,other,DSC_0828.JPG +21755,1954,430,17,1,other,DSC_0828.JPG +21756,1777,487,17,1,other,DSC_0828.JPG +21757,1441,913,15,1,other,DSC_0828.JPG +21758,2326,1732,17,1,other,DSC_0828.JPG +21759,1987,19,15,1,other,DSC_0828.JPG +21760,4399,34,17,1,other,DSC_0828.JPG +21761,1147,73,17,1,other,DSC_0828.JPG +21762,2173,73,15,1,other,DSC_0828.JPG +21763,2245,79,15,1,other,DSC_0828.JPG +21764,2386,319,17,1,other,DSC_0828.JPG +21765,3988,451,17,1,other,DSC_0828.JPG +21766,1666,544,17,1,other,DSC_0828.JPG +21767,2209,1558,15,1,other,DSC_0828.JPG +21768,2758,1972,17,1,other,DSC_0828.JPG +21769,298,2371,15,1,other,DSC_0828.JPG +21770,3226,34,15,1,other,DSC_0828.JPG +21771,2977,82,17,1,other,DSC_0828.JPG +21772,2455,88,17,1,other,DSC_0828.JPG +21773,1480,136,15,1,other,DSC_0828.JPG +21774,1918,136,15,1,other,DSC_0828.JPG +21775,2938,142,17,1,other,DSC_0828.JPG +21776,313,166,15,1,other,DSC_0828.JPG +21777,2935,262,17,1,other,DSC_0828.JPG +21778,973,367,17,1,other,DSC_0828.JPG +21779,2539,550,17,1,other,DSC_0828.JPG +2178,748,2227,15,1,other,DSC_0844.JPG +21780,2350,613,17,1,other,DSC_0828.JPG +21781,1702,730,15,1,other,DSC_0828.JPG +21782,3007,739,17,1,other,DSC_0828.JPG +21783,2908,922,15,1,other,DSC_0828.JPG +21784,2326,2083,17,1,other,DSC_0828.JPG +21785,2941,2266,17,1,other,DSC_0828.JPG +21786,2479,2308,17,1,other,DSC_0828.JPG +21787,1801,85,15,1,other,DSC_0828.JPG +21788,3256,94,17,1,other,DSC_0828.JPG +21789,2320,196,17,1,other,DSC_0828.JPG +21790,3406,211,17,1,other,DSC_0828.JPG +21791,2134,253,17,1,other,DSC_0828.JPG +21792,1987,379,15,1,other,DSC_0828.JPG +21793,3478,2098,17,1,other,DSC_0828.JPG +21794,4465,46,16,1,other,DSC_0828.JPG +21795,1261,136,15,1,other,DSC_0828.JPG +21796,1048,139,17,1,other,DSC_0828.JPG +21797,1333,148,17,1,other,DSC_0828.JPG +21798,3301,262,17,1,other,DSC_0828.JPG +21799,2716,268,15,1,other,DSC_0828.JPG +2180,4204,2359,15,1,other,DSC_0844.JPG +21800,1291,316,16,1,other,DSC_0828.JPG +21801,1339,370,17,1,other,DSC_0828.JPG +21802,3265,673,17,1,other,DSC_0828.JPG +21803,1888,784,17,1,other,DSC_0828.JPG +21804,1852,844,17,1,other,DSC_0828.JPG +21805,2578,1084,17,1,other,DSC_0828.JPG +21806,1627,1087,16,1,other,DSC_0828.JPG +21807,4687,43,17,1,other,DSC_0828.JPG +21808,3487,88,17,1,other,DSC_0828.JPG +21809,2722,145,15,1,other,DSC_0828.JPG +2181,1024,2362,17,1,other,DSC_0844.JPG +21810,2866,145,15,1,other,DSC_0828.JPG +21811,3880,157,17,1,other,DSC_0828.JPG +21812,3916,217,17,1,other,DSC_0828.JPG +21813,4279,259,17,1,other,DSC_0828.JPG +21814,3187,562,17,1,other,DSC_0828.JPG +21815,2425,613,17,1,other,DSC_0828.JPG +21816,1882,700,16,1,other,DSC_0828.JPG +21817,4402,787,17,1,other,DSC_0828.JPG +21818,2398,1261,17,1,other,DSC_0828.JPG +21819,2347,28,16,1,other,DSC_0828.JPG +2182,3637,121,17,1,other,DSC_0844.JPG +21820,3073,34,17,1,other,DSC_0828.JPG +21821,2029,73,15,1,other,DSC_0828.JPG +21822,1948,88,17,1,other,DSC_0828.JPG +21823,2530,91,17,1,other,DSC_0828.JPG +21824,2062,253,17,1,other,DSC_0828.JPG +21825,2749,322,17,1,other,DSC_0828.JPG +21826,3586,391,17,1,other,DSC_0828.JPG +21827,1960,550,16,1,other,DSC_0828.JPG +21828,1918,610,17,1,other,DSC_0828.JPG +21829,2137,610,17,1,other,DSC_0828.JPG +21830,1195,721,17,1,other,DSC_0828.JPG +21831,2065,724,15,1,other,DSC_0828.JPG +21832,3370,2155,17,1,other,DSC_0828.JPG +21833,2494,25,17,1,other,DSC_0828.JPG +21834,3964,34,17,1,other,DSC_0828.JPG +21835,1333,52,15,1,other,DSC_0828.JPG +21836,3406,94,17,1,other,DSC_0828.JPG +21837,1696,130,17,1,other,DSC_0828.JPG +21838,3733,157,15,1,other,DSC_0828.JPG +21839,2470,196,16,1,other,DSC_0828.JPG +21840,1837,256,17,1,other,DSC_0828.JPG +21841,2104,430,17,1,other,DSC_0828.JPG +21842,2281,490,17,1,other,DSC_0828.JPG +21843,2323,547,17,1,other,DSC_0828.JPG +21844,1738,781,17,1,other,DSC_0828.JPG +21845,3190,922,17,1,other,DSC_0828.JPG +21846,2500,970,17,1,other,DSC_0828.JPG +21847,1816,1021,17,1,other,DSC_0828.JPG +21848,1858,1198,17,1,other,DSC_0828.JPG +21849,2071,1315,17,1,other,DSC_0828.JPG +2185,304,442,15,1,other,DSC_0844.JPG +21850,2431,1678,17,1,other,DSC_0828.JPG +21851,2548,2308,17,1,other,DSC_0828.JPG +21852,223,2368,17,1,other,DSC_0828.JPG +21853,3439,2383,17,1,other,DSC_0828.JPG +21854,2860,31,15,1,other,DSC_0828.JPG +21855,4282,103,15,1,other,DSC_0828.JPG +21856,2071,136,17,1,other,DSC_0828.JPG +21857,2566,145,17,1,other,DSC_0828.JPG +21858,682,169,15,1,other,DSC_0828.JPG +21859,1042,250,17,1,other,DSC_0828.JPG +21860,2794,259,17,1,other,DSC_0828.JPG +21861,2167,319,17,1,other,DSC_0828.JPG +21862,1231,427,17,1,other,DSC_0828.JPG +21863,4357,448,17,1,other,DSC_0828.JPG +21864,3337,559,17,1,other,DSC_0828.JPG +21865,2974,799,15,1,other,DSC_0828.JPG +21866,2728,889,15,1,other,DSC_0828.JPG +21867,2680,922,17,1,other,DSC_0828.JPG +21868,2251,1027,15,1,other,DSC_0828.JPG +21869,1378,1135,17,1,other,DSC_0828.JPG +21870,2254,1495,17,1,other,DSC_0828.JPG +21871,2398,1738,15,1,other,DSC_0828.JPG +21872,2368,2131,17,1,other,DSC_0828.JPG +21873,1717,2140,17,1,other,DSC_0828.JPG +21874,2188,2185,15,1,other,DSC_0828.JPG +21875,1222,2356,15,1,other,DSC_0828.JPG +21876,1585,73,17,1,other,DSC_0828.JPG +21877,1660,73,17,1,other,DSC_0828.JPG +21878,4219,94,17,1,other,DSC_0828.JPG +21879,3991,100,16,1,other,DSC_0828.JPG +21880,976,142,15,1,other,DSC_0828.JPG +21881,1984,142,15,1,other,DSC_0828.JPG +21882,2542,199,17,1,other,DSC_0828.JPG +21883,2422,265,15,1,other,DSC_0828.JPG +21884,1435,313,15,1,other,DSC_0828.JPG +21885,802,697,15,1,other,DSC_0828.JPG +21886,2254,784,17,1,other,DSC_0828.JPG +21887,2098,790,17,1,other,DSC_0828.JPG +21888,2935,862,17,1,other,DSC_0828.JPG +21889,1090,1021,17,1,other,DSC_0828.JPG +21890,2314,1033,17,1,other,DSC_0828.JPG +21891,2431,1099,17,1,other,DSC_0828.JPG +21892,2752,1153,16,1,other,DSC_0828.JPG +21893,1780,1432,17,1,other,DSC_0828.JPG +21894,2053,1732,17,1,other,DSC_0828.JPG +21895,2686,2320,17,1,other,DSC_0828.JPG +21896,3853,91,17,1,other,DSC_0828.JPG +21897,2284,136,17,1,other,DSC_0828.JPG +21898,2794,154,15,1,other,DSC_0828.JPG +21899,3259,211,17,1,other,DSC_0828.JPG +21900,967,253,15,1,other,DSC_0828.JPG +21901,859,310,17,1,other,DSC_0828.JPG +21902,3400,331,17,1,other,DSC_0828.JPG +21903,2752,676,17,1,other,DSC_0828.JPG +21904,3895,901,17,1,other,DSC_0828.JPG +21905,1564,961,17,1,other,DSC_0828.JPG +21906,3733,2272,17,1,other,DSC_0828.JPG +21907,2191,2308,15,1,other,DSC_0828.JPG +21908,2398,2320,17,1,other,DSC_0828.JPG +21909,2515,2380,17,1,other,DSC_0828.JPG +21910,2758,85,15,1,other,DSC_0828.JPG +21911,1114,133,17,1,other,DSC_0828.JPG +21912,1834,139,17,1,other,DSC_0828.JPG +21913,2503,139,17,1,other,DSC_0828.JPG +21914,3667,148,17,1,other,DSC_0828.JPG +21915,1297,190,17,1,other,DSC_0828.JPG +21916,2095,199,17,1,other,DSC_0828.JPG +21917,1402,253,17,1,other,DSC_0828.JPG +21918,2245,313,17,1,other,DSC_0828.JPG +21919,2470,319,15,1,other,DSC_0828.JPG +21920,3343,322,17,1,other,DSC_0828.JPG +21921,2143,373,17,1,other,DSC_0828.JPG +21922,3898,427,17,1,other,DSC_0828.JPG +21923,3046,433,17,1,other,DSC_0828.JPG +21924,3184,445,15,1,other,DSC_0828.JPG +21925,1702,487,17,1,other,DSC_0828.JPG +21926,3301,499,17,1,other,DSC_0828.JPG +21927,1693,613,15,1,other,DSC_0828.JPG +21928,1849,967,17,1,other,DSC_0828.JPG +21929,4240,988,17,1,other,DSC_0828.JPG +21930,2539,1024,16,1,other,DSC_0828.JPG +21931,1927,1081,17,1,other,DSC_0828.JPG +21932,2071,1084,17,1,other,DSC_0828.JPG +21933,2209,1087,17,1,other,DSC_0828.JPG +21934,3304,1090,17,1,other,DSC_0828.JPG +21935,1810,1381,15,1,other,DSC_0828.JPG +21936,1954,1381,17,1,other,DSC_0828.JPG +21937,2539,1504,15,1,other,DSC_0828.JPG +21938,2185,1507,17,1,other,DSC_0828.JPG +21939,1714,2023,15,1,other,DSC_0828.JPG +2194,1834,2335,16,1,other,DSC_0844.JPG +21940,3331,2326,17,1,other,DSC_0828.JPG +21941,2101,76,17,1,other,DSC_0828.JPG +21942,2320,76,17,1,other,DSC_0828.JPG +21943,4726,100,17,1,other,DSC_0828.JPG +21944,463,136,17,1,other,DSC_0828.JPG +21945,3304,154,15,1,other,DSC_0828.JPG +21946,2245,196,17,1,other,DSC_0828.JPG +21947,2827,202,17,1,other,DSC_0828.JPG +21948,2281,259,17,1,other,DSC_0828.JPG +21949,3592,268,17,1,other,DSC_0828.JPG +2195,3751,2428,17,1,other,DSC_0844.JPG +21950,2719,373,17,1,other,DSC_0828.JPG +21951,3091,376,17,1,other,DSC_0828.JPG +21952,2860,382,15,1,other,DSC_0828.JPG +21953,1153,427,17,1,other,DSC_0828.JPG +21954,2320,433,16,1,other,DSC_0828.JPG +21955,1630,484,17,1,other,DSC_0828.JPG +21956,2650,490,17,1,other,DSC_0828.JPG +21957,2797,847,17,1,other,DSC_0828.JPG +21958,1633,976,17,1,other,DSC_0828.JPG +21959,1738,1147,17,1,other,DSC_0828.JPG +21960,1987,1207,17,1,other,DSC_0828.JPG +21961,2425,1207,17,1,other,DSC_0828.JPG +21962,1891,1258,15,1,other,DSC_0828.JPG +21963,2581,1318,17,1,other,DSC_0828.JPG +21964,2149,1549,17,1,other,DSC_0828.JPG +21965,2221,1681,15,1,other,DSC_0828.JPG +21966,2359,1795,17,1,other,DSC_0828.JPG +21967,3262,2326,17,1,other,DSC_0828.JPG +21968,2443,2365,17,1,other,DSC_0828.JPG +21969,1846,19,15,1,other,DSC_0828.JPG +21970,1216,76,17,1,other,DSC_0828.JPG +21971,1408,133,17,1,other,DSC_0828.JPG +21972,898,136,17,1,other,DSC_0828.JPG +21973,1189,136,15,1,other,DSC_0828.JPG +21974,1543,142,17,1,other,DSC_0828.JPG +21975,3163,157,15,1,other,DSC_0828.JPG +21976,4339,193,17,1,other,DSC_0828.JPG +21977,2395,196,17,1,other,DSC_0828.JPG +21978,2602,205,17,1,other,DSC_0828.JPG +21979,2506,256,17,1,other,DSC_0828.JPG +21980,3013,259,17,1,other,DSC_0828.JPG +21981,2020,319,15,1,other,DSC_0828.JPG +21982,3769,334,17,1,other,DSC_0828.JPG +21983,1045,367,17,1,other,DSC_0828.JPG +21984,1627,367,17,1,other,DSC_0828.JPG +21985,3304,379,17,1,other,DSC_0828.JPG +21986,2494,382,16,1,other,DSC_0828.JPG +21987,1375,430,15,1,other,DSC_0828.JPG +21988,2383,439,17,1,other,DSC_0828.JPG +21989,3367,505,17,1,other,DSC_0828.JPG +21990,2032,547,17,1,other,DSC_0828.JPG +21991,1342,604,17,1,other,DSC_0828.JPG +21992,2467,667,17,1,other,DSC_0828.JPG +21993,2530,676,17,1,other,DSC_0828.JPG +21994,3769,808,15,1,other,DSC_0828.JPG +21995,1708,880,17,1,other,DSC_0828.JPG +21996,3994,928,15,1,other,DSC_0828.JPG +21997,2725,967,17,1,other,DSC_0828.JPG +21998,1453,1021,17,1,other,DSC_0828.JPG +21999,1999,1081,17,1,other,DSC_0828.JPG +22000,3652,1219,15,1,other,DSC_0828.JPG +22001,2287,1333,17,1,other,DSC_0828.JPG +22002,1897,1375,17,1,other,DSC_0828.JPG +22003,2473,1378,15,1,other,DSC_0828.JPG +22004,3034,1738,17,1,other,DSC_0828.JPG +22005,2719,1918,17,1,other,DSC_0828.JPG +22006,2869,2032,16,1,other,DSC_0828.JPG +22007,1900,2305,17,1,other,DSC_0828.JPG +22008,1681,2311,17,1,other,DSC_0828.JPG +22009,1753,2314,17,1,other,DSC_0828.JPG +22010,2713,28,17,1,other,DSC_0828.JPG +22011,3373,31,17,1,other,DSC_0828.JPG +22012,3739,34,17,1,other,DSC_0828.JPG +22013,4027,37,15,1,other,DSC_0828.JPG +22014,1510,70,17,1,other,DSC_0828.JPG +22015,4048,187,15,1,other,DSC_0828.JPG +22016,3490,205,17,1,other,DSC_0828.JPG +22017,4438,214,17,1,other,DSC_0828.JPG +22018,1480,250,17,1,other,DSC_0828.JPG +22019,748,253,17,1,other,DSC_0828.JPG +22020,2644,262,17,1,other,DSC_0828.JPG +22021,1882,307,17,1,other,DSC_0828.JPG +22022,1081,310,17,1,other,DSC_0828.JPG +22023,1843,370,17,1,other,DSC_0828.JPG +22024,2206,376,17,1,other,DSC_0828.JPG +22025,3232,376,17,1,other,DSC_0828.JPG +22026,2638,379,17,1,other,DSC_0828.JPG +22027,1009,427,16,1,other,DSC_0828.JPG +22028,2938,544,17,1,other,DSC_0828.JPG +22029,2827,553,17,1,other,DSC_0828.JPG +2203,76,1276,17,1,other,DSC_0844.JPG +22030,4435,568,17,1,other,DSC_0828.JPG +22031,1993,610,16,1,other,DSC_0828.JPG +22032,2719,610,17,1,other,DSC_0828.JPG +22033,2497,616,16,1,other,DSC_0828.JPG +22034,1378,664,17,1,other,DSC_0828.JPG +22035,2686,670,17,1,other,DSC_0828.JPG +22036,2143,727,17,1,other,DSC_0828.JPG +22037,2026,790,17,1,other,DSC_0828.JPG +22038,2287,844,17,1,other,DSC_0828.JPG +22039,967,853,15,1,other,DSC_0828.JPG +2204,5275,1312,17,1,other,DSC_0844.JPG +22040,2113,910,17,1,other,DSC_0828.JPG +22041,1999,979,17,1,other,DSC_0828.JPG +22042,3808,994,15,1,other,DSC_0828.JPG +22043,1666,1021,16,1,other,DSC_0828.JPG +22044,2752,1036,16,1,other,DSC_0828.JPG +22045,1417,1075,15,1,other,DSC_0828.JPG +22046,2869,1087,17,1,other,DSC_0828.JPG +22047,1594,1138,17,1,other,DSC_0828.JPG +22048,1957,1144,17,1,other,DSC_0828.JPG +22049,1618,1378,15,1,other,DSC_0828.JPG +2205,2512,1684,17,1,other,DSC_0844.JPG +22050,1852,1558,15,1,other,DSC_0828.JPG +22051,2185,1726,17,1,other,DSC_0828.JPG +22052,3370,1810,17,1,other,DSC_0828.JPG +22053,4486,1873,17,1,other,DSC_0828.JPG +22054,1828,2083,15,1,other,DSC_0828.JPG +22055,2041,2083,15,1,other,DSC_0828.JPG +22056,1645,2254,17,1,other,DSC_0828.JPG +22057,2002,2392,15,1,other,DSC_0828.JPG +22058,2830,2437,16,1,other,DSC_0828.JPG +22059,886,19,17,1,other,DSC_0828.JPG +22060,2791,25,17,1,other,DSC_0828.JPG +22061,1438,70,17,1,other,DSC_0828.JPG +22062,1735,70,17,1,other,DSC_0828.JPG +22063,985,82,17,1,other,DSC_0828.JPG +22064,4363,91,15,1,other,DSC_0828.JPG +22065,3562,205,17,1,other,DSC_0828.JPG +22066,3331,211,15,1,other,DSC_0828.JPG +22067,2209,250,17,1,other,DSC_0828.JPG +22068,4084,250,17,1,other,DSC_0828.JPG +22069,1657,316,17,1,other,DSC_0828.JPG +22070,3823,427,17,1,other,DSC_0828.JPG +22071,2833,433,17,1,other,DSC_0828.JPG +22072,2212,490,17,1,other,DSC_0828.JPG +22073,3223,499,17,1,other,DSC_0828.JPG +22074,3805,508,17,1,other,DSC_0828.JPG +22075,1813,547,17,1,other,DSC_0828.JPG +22076,2401,547,15,1,other,DSC_0828.JPG +22077,2206,616,15,1,other,DSC_0828.JPG +22078,1813,664,17,1,other,DSC_0828.JPG +22079,1261,727,17,1,other,DSC_0828.JPG +22080,2395,784,17,1,other,DSC_0828.JPG +22081,1780,844,17,1,other,DSC_0828.JPG +22082,763,928,15,1,other,DSC_0828.JPG +22083,1921,961,17,1,other,DSC_0828.JPG +22084,1783,964,17,1,other,DSC_0828.JPG +22085,3373,991,15,1,other,DSC_0828.JPG +22086,2827,1036,15,1,other,DSC_0828.JPG +22087,2677,1153,17,1,other,DSC_0828.JPG +22088,1636,1195,17,1,other,DSC_0828.JPG +22089,1927,1312,17,1,other,DSC_0828.JPG +2209,2812,2353,17,1,other,DSC_0844.JPG +22090,2395,1504,15,1,other,DSC_0828.JPG +22091,2179,1615,16,1,other,DSC_0828.JPG +22092,1618,1732,17,1,other,DSC_0828.JPG +22093,2470,1972,16,1,other,DSC_0828.JPG +22094,2227,2365,15,1,other,DSC_0828.JPG +22095,4927,2398,17,1,other,DSC_0828.JPG +22096,4612,43,17,1,other,DSC_0828.JPG +22097,3700,94,17,1,other,DSC_0828.JPG +22098,628,103,15,1,other,DSC_0828.JPG +22099,1621,130,17,1,other,DSC_0828.JPG +2210,373,319,17,1,other,DSC_0844.JPG +22100,1585,190,17,1,other,DSC_0828.JPG +22101,1654,193,17,1,other,DSC_0828.JPG +22102,2032,196,17,1,other,DSC_0828.JPG +22103,1255,259,15,1,other,DSC_0828.JPG +22104,1762,259,17,1,other,DSC_0828.JPG +22105,1810,313,15,1,other,DSC_0828.JPG +22106,2320,313,17,1,other,DSC_0828.JPG +22107,2575,376,15,1,other,DSC_0828.JPG +22108,2170,436,17,1,other,DSC_0828.JPG +22109,3004,502,17,1,other,DSC_0828.JPG +22110,793,541,17,1,other,DSC_0828.JPG +22111,1741,547,17,1,other,DSC_0828.JPG +22112,2611,547,15,1,other,DSC_0828.JPG +22113,2095,556,17,1,other,DSC_0828.JPG +22114,1843,610,17,1,other,DSC_0828.JPG +22115,2644,613,17,1,other,DSC_0828.JPG +22116,1957,667,17,1,other,DSC_0828.JPG +22117,3625,682,17,1,other,DSC_0828.JPG +22118,3859,721,17,1,other,DSC_0828.JPG +22119,2365,727,17,1,other,DSC_0828.JPG +22120,1552,733,15,1,other,DSC_0828.JPG +22121,1159,781,17,1,other,DSC_0828.JPG +22122,1084,784,17,1,other,DSC_0828.JPG +22123,1594,784,17,1,other,DSC_0828.JPG +22124,2536,790,17,1,other,DSC_0828.JPG +22125,2620,790,17,1,other,DSC_0828.JPG +22126,2362,841,15,1,other,DSC_0828.JPG +22127,1630,844,17,1,other,DSC_0828.JPG +22128,1918,847,17,1,other,DSC_0828.JPG +22129,3121,919,17,1,other,DSC_0828.JPG +2213,4153,595,17,1,other,DSC_0844.JPG +22130,835,988,15,1,other,DSC_0828.JPG +22131,4171,997,17,1,other,DSC_0828.JPG +22132,2032,1270,17,1,other,DSC_0828.JPG +22133,2107,1387,17,1,other,DSC_0828.JPG +22134,1993,1444,17,1,other,DSC_0828.JPG +22135,2074,1552,17,1,other,DSC_0828.JPG +22136,1705,1675,17,1,other,DSC_0828.JPG +22137,1213,2023,17,1,other,DSC_0828.JPG +22138,1177,2080,17,1,other,DSC_0828.JPG +22139,3193,2095,17,1,other,DSC_0828.JPG +22140,2749,2203,17,1,other,DSC_0828.JPG +22141,4408,2218,16,1,other,DSC_0828.JPG +22142,4771,2341,17,1,other,DSC_0828.JPG +22143,4810,2386,17,1,other,DSC_0828.JPG +22144,295,22,15,1,other,DSC_0828.JPG +22145,2422,28,15,1,other,DSC_0828.JPG +22146,4321,43,16,1,other,DSC_0828.JPG +22147,859,76,15,1,other,DSC_0828.JPG +22148,3340,85,17,1,other,DSC_0828.JPG +22149,244,136,16,1,other,DSC_0828.JPG +2215,4945,1273,17,1,other,DSC_0844.JPG +22150,391,169,17,1,other,DSC_0828.JPG +22151,1810,190,17,1,other,DSC_0828.JPG +22152,1879,190,17,1,other,DSC_0828.JPG +22153,1954,193,17,1,other,DSC_0828.JPG +22154,2689,196,17,1,other,DSC_0828.JPG +22155,3082,259,17,1,other,DSC_0828.JPG +22156,3523,265,17,1,other,DSC_0828.JPG +22157,3697,334,15,1,other,DSC_0828.JPG +22158,1411,367,17,1,other,DSC_0828.JPG +22159,3952,394,17,1,other,DSC_0828.JPG +2216,112,1459,15,1,other,DSC_0844.JPG +22160,3271,436,17,1,other,DSC_0828.JPG +22161,1882,550,17,1,other,DSC_0828.JPG +22162,619,604,17,1,other,DSC_0828.JPG +22163,3379,613,17,1,other,DSC_0828.JPG +22164,2101,667,17,1,other,DSC_0828.JPG +22165,652,676,17,1,other,DSC_0828.JPG +22166,2068,844,17,1,other,DSC_0828.JPG +22167,2206,856,17,1,other,DSC_0828.JPG +22168,2869,865,17,1,other,DSC_0828.JPG +22169,3340,928,17,1,other,DSC_0828.JPG +22170,2218,964,17,1,other,DSC_0828.JPG +22171,2176,1021,17,1,other,DSC_0828.JPG +22172,3769,1051,16,1,other,DSC_0828.JPG +22173,1783,1198,15,1,other,DSC_0828.JPG +22174,2794,1204,17,1,other,DSC_0828.JPG +22175,2281,1213,17,1,other,DSC_0828.JPG +22176,3259,1273,15,1,other,DSC_0828.JPG +22177,2545,1276,17,1,other,DSC_0828.JPG +22178,2548,1378,17,1,other,DSC_0828.JPG +22179,1852,1438,15,1,other,DSC_0828.JPG +22180,3262,1630,17,1,other,DSC_0828.JPG +22181,5245,1681,17,1,other,DSC_0828.JPG +22182,3811,1684,17,1,other,DSC_0828.JPG +22183,3004,1801,17,1,other,DSC_0828.JPG +22184,3514,1807,17,1,other,DSC_0828.JPG +22185,1282,2023,17,1,other,DSC_0828.JPG +22186,1789,2026,17,1,other,DSC_0828.JPG +22187,1900,2071,17,1,other,DSC_0828.JPG +22188,1753,2080,17,1,other,DSC_0828.JPG +22189,1681,2083,17,1,other,DSC_0828.JPG +22190,4264,2215,17,1,other,DSC_0828.JPG +22191,4336,2215,17,1,other,DSC_0828.JPG +22192,3586,2272,17,1,other,DSC_0828.JPG +22193,4303,2275,17,1,other,DSC_0828.JPG +22194,1831,2305,15,1,other,DSC_0828.JPG +22195,3187,2323,17,1,other,DSC_0828.JPG +22196,3763,2329,17,1,other,DSC_0828.JPG +22197,5089,2329,15,1,other,DSC_0828.JPG +22198,4192,2332,16,1,other,DSC_0828.JPG +22199,2653,2368,15,1,other,DSC_0828.JPG +22200,814,16,17,1,other,DSC_0828.JPG +22201,3664,34,16,1,other,DSC_0828.JPG +22202,4255,37,17,1,other,DSC_0828.JPG +22203,2830,82,17,1,other,DSC_0828.JPG +22204,2386,85,17,1,other,DSC_0828.JPG +22205,3112,91,17,1,other,DSC_0828.JPG +22206,2131,139,17,1,other,DSC_0828.JPG +22207,3523,145,17,1,other,DSC_0828.JPG +22208,3082,148,15,1,other,DSC_0828.JPG +22209,3826,187,15,1,other,DSC_0828.JPG +22210,1003,193,17,1,other,DSC_0828.JPG +22211,4552,196,17,1,other,DSC_0828.JPG +22212,3118,319,17,1,other,DSC_0828.JPG +22213,3046,322,17,1,other,DSC_0828.JPG +22214,3202,325,15,1,other,DSC_0828.JPG +22215,3262,328,15,1,other,DSC_0828.JPG +22216,826,367,17,1,other,DSC_0828.JPG +22217,2431,373,17,1,other,DSC_0828.JPG +22218,1075,430,17,1,other,DSC_0828.JPG +22219,1597,433,16,1,other,DSC_0828.JPG +22220,3661,433,17,1,other,DSC_0828.JPG +22221,2023,436,17,1,other,DSC_0828.JPG +22222,2968,439,17,1,other,DSC_0828.JPG +22223,2539,445,17,1,other,DSC_0828.JPG +22224,4054,451,17,1,other,DSC_0828.JPG +22225,3640,484,17,1,other,DSC_0828.JPG +22226,1336,487,17,1,other,DSC_0828.JPG +22227,1486,487,17,1,other,DSC_0828.JPG +22228,2797,490,17,1,other,DSC_0828.JPG +22229,1255,493,17,1,other,DSC_0828.JPG +22230,1918,493,16,1,other,DSC_0828.JPG +22231,2062,616,15,1,other,DSC_0828.JPG +22232,763,637,17,1,other,DSC_0828.JPG +22233,1159,661,17,1,other,DSC_0828.JPG +22234,979,721,17,1,other,DSC_0828.JPG +22235,2434,727,17,1,other,DSC_0828.JPG +22236,2797,727,17,1,other,DSC_0828.JPG +22237,1669,781,17,1,other,DSC_0828.JPG +22238,1114,847,17,1,other,DSC_0828.JPG +22239,1555,847,17,1,other,DSC_0828.JPG +2224,5209,2281,15,1,other,DSC_0844.JPG +22240,1264,850,15,1,other,DSC_0828.JPG +22241,1495,850,16,1,other,DSC_0828.JPG +22242,2434,964,17,1,other,DSC_0828.JPG +22243,2041,1027,17,1,other,DSC_0828.JPG +22244,3118,1039,15,1,other,DSC_0828.JPG +22245,3148,1096,15,1,other,DSC_0828.JPG +22246,2242,1147,17,1,other,DSC_0828.JPG +22247,2170,1150,17,1,other,DSC_0828.JPG +22248,1129,1195,17,1,other,DSC_0828.JPG +22249,2065,1204,17,1,other,DSC_0828.JPG +2225,1093,2356,15,1,other,DSC_0844.JPG +22250,1600,1252,17,1,other,DSC_0828.JPG +22251,1789,1327,15,1,other,DSC_0828.JPG +22252,3808,1462,17,1,other,DSC_0828.JPG +22253,4168,1462,17,1,other,DSC_0828.JPG +22254,3193,1510,16,1,other,DSC_0828.JPG +22255,3019,1555,17,1,other,DSC_0828.JPG +22256,3190,1630,17,1,other,DSC_0828.JPG +22257,1492,1675,15,1,other,DSC_0828.JPG +22258,2113,1726,17,1,other,DSC_0828.JPG +22259,1714,1783,17,1,other,DSC_0828.JPG +2226,4732,2401,15,1,other,DSC_0844.JPG +22260,4948,1816,16,1,other,DSC_0828.JPG +22261,1828,1972,17,1,other,DSC_0828.JPG +22262,2902,1975,17,1,other,DSC_0828.JPG +22263,3622,2098,17,1,other,DSC_0828.JPG +22264,2791,2149,17,1,other,DSC_0828.JPG +22265,1711,2254,15,1,other,DSC_0828.JPG +22266,1606,2311,17,1,other,DSC_0828.JPG +22267,2764,2323,15,1,other,DSC_0828.JPG +22268,4984,2347,16,1,other,DSC_0828.JPG +22269,3016,2371,15,1,other,DSC_0828.JPG +2227,280,2425,15,1,other,DSC_0844.JPG +22270,3232,2374,17,1,other,DSC_0828.JPG +22271,2941,2383,17,1,other,DSC_0828.JPG +22272,4729,2398,17,1,other,DSC_0828.JPG +22273,925,76,17,1,other,DSC_0828.JPG +22274,1879,76,15,1,other,DSC_0828.JPG +22275,2677,85,17,1,other,DSC_0828.JPG +22276,3628,94,17,1,other,DSC_0828.JPG +22277,817,130,17,1,other,DSC_0828.JPG +22278,1225,196,15,1,other,DSC_0828.JPG +22279,1330,256,16,1,other,DSC_0828.JPG +2228,520,2461,17,1,other,DSC_0844.JPG +22280,1909,256,17,1,other,DSC_0828.JPG +22281,4351,259,17,1,other,DSC_0828.JPG +22282,3235,277,17,1,other,DSC_0828.JPG +22283,2536,319,17,1,other,DSC_0828.JPG +22284,2893,325,17,1,other,DSC_0828.JPG +22285,901,367,17,1,other,DSC_0828.JPG +22286,1258,370,17,1,other,DSC_0828.JPG +22287,1702,370,17,1,other,DSC_0828.JPG +22288,2356,370,17,1,other,DSC_0828.JPG +22289,2275,382,17,1,other,DSC_0828.JPG +2229,1483,28,16,1,other,DSC_0844.JPG +22290,4396,391,15,1,other,DSC_0828.JPG +22291,4678,406,16,1,other,DSC_0828.JPG +22292,1813,427,17,1,other,DSC_0828.JPG +22293,2758,433,17,1,other,DSC_0828.JPG +22294,3331,445,15,1,other,DSC_0828.JPG +22295,2140,490,17,1,other,DSC_0828.JPG +22296,2461,562,17,1,other,DSC_0828.JPG +22297,3625,568,15,1,other,DSC_0828.JPG +22298,2290,607,17,1,other,DSC_0828.JPG +22299,2248,664,17,1,other,DSC_0828.JPG +2230,5107,64,15,1,other,DSC_0844.JPG +22300,1741,667,17,1,other,DSC_0828.JPG +22301,2176,670,15,1,other,DSC_0828.JPG +22302,2287,721,15,1,other,DSC_0828.JPG +22303,1408,727,17,1,other,DSC_0828.JPG +22304,4456,880,17,1,other,DSC_0828.JPG +22305,1885,913,15,1,other,DSC_0828.JPG +22306,1708,964,17,1,other,DSC_0828.JPG +22307,2071,967,15,1,other,DSC_0828.JPG +22308,2287,979,17,1,other,DSC_0828.JPG +22309,4894,1003,17,1,other,DSC_0828.JPG +22310,553,1078,16,1,other,DSC_0828.JPG +22311,2725,1204,17,1,other,DSC_0828.JPG +22312,3880,1225,17,1,other,DSC_0828.JPG +22313,1897,1507,17,1,other,DSC_0828.JPG +22314,2038,1609,17,1,other,DSC_0828.JPG +22315,1633,1675,15,1,other,DSC_0828.JPG +22316,2650,1681,15,1,other,DSC_0828.JPG +22317,2575,1684,16,1,other,DSC_0828.JPG +22318,1564,1792,17,1,other,DSC_0828.JPG +22319,2290,1798,17,1,other,DSC_0828.JPG +2232,112,490,15,1,other,DSC_0844.JPG +22320,2581,1801,16,1,other,DSC_0828.JPG +22321,3010,1915,15,1,other,DSC_0828.JPG +22322,3946,1924,16,1,other,DSC_0828.JPG +22323,2398,1969,15,1,other,DSC_0828.JPG +22324,2008,2017,15,1,other,DSC_0828.JPG +22325,3550,2098,17,1,other,DSC_0828.JPG +22326,3079,2149,17,1,other,DSC_0828.JPG +22327,4663,2164,17,1,other,DSC_0828.JPG +22328,4945,2164,16,1,other,DSC_0828.JPG +22329,4768,2221,17,1,other,DSC_0828.JPG +22330,1507,2359,15,1,other,DSC_0828.JPG +22331,2149,2365,15,1,other,DSC_0828.JPG +22332,3658,2386,17,1,other,DSC_0828.JPG +22333,1036,16,16,1,other,DSC_0828.JPG +22334,1768,16,17,1,other,DSC_0828.JPG +22335,3148,34,17,1,other,DSC_0828.JPG +22336,4903,43,17,1,other,DSC_0828.JPG +22337,4171,46,17,1,other,DSC_0828.JPG +22338,346,70,17,1,other,DSC_0828.JPG +22339,4513,94,17,1,other,DSC_0828.JPG +22340,3055,100,15,1,other,DSC_0828.JPG +22341,4573,106,17,1,other,DSC_0828.JPG +22342,3382,151,15,1,other,DSC_0828.JPG +22343,2587,265,17,1,other,DSC_0828.JPG +22344,1519,310,17,1,other,DSC_0828.JPG +22345,484,313,15,1,other,DSC_0828.JPG +22346,2062,379,15,1,other,DSC_0828.JPG +22347,1297,427,17,1,other,DSC_0828.JPG +22348,2908,430,17,1,other,DSC_0828.JPG +22349,3121,433,17,1,other,DSC_0828.JPG +22350,2068,487,17,1,other,DSC_0828.JPG +22351,2869,490,17,1,other,DSC_0828.JPG +22352,3157,493,17,1,other,DSC_0828.JPG +22353,2254,547,17,1,other,DSC_0828.JPG +22354,2749,559,16,1,other,DSC_0828.JPG +22355,3298,619,17,1,other,DSC_0828.JPG +22356,1297,670,15,1,other,DSC_0828.JPG +22357,4213,697,17,1,other,DSC_0828.JPG +22358,3931,838,17,1,other,DSC_0828.JPG +22359,3295,865,15,1,other,DSC_0828.JPG +2236,220,1762,17,1,other,DSC_0844.JPG +22360,3805,865,15,1,other,DSC_0828.JPG +22361,1594,901,17,1,other,DSC_0828.JPG +22362,943,916,17,1,other,DSC_0828.JPG +22363,3835,925,17,1,other,DSC_0828.JPG +22364,4390,997,15,1,other,DSC_0828.JPG +22365,3007,1000,17,1,other,DSC_0828.JPG +22366,4609,1000,17,1,other,DSC_0828.JPG +22367,4747,1003,17,1,other,DSC_0828.JPG +22368,2401,1027,17,1,other,DSC_0828.JPG +22369,2689,1039,15,1,other,DSC_0828.JPG +22370,4285,1057,17,1,other,DSC_0828.JPG +22371,712,1144,17,1,other,DSC_0828.JPG +22372,2536,1153,15,1,other,DSC_0828.JPG +22373,2224,1204,17,1,other,DSC_0828.JPG +22374,907,1207,17,1,other,DSC_0828.JPG +22375,3595,1210,17,1,other,DSC_0828.JPG +22376,2182,1258,17,1,other,DSC_0828.JPG +22377,2320,1270,17,1,other,DSC_0828.JPG +22378,2650,1321,17,1,other,DSC_0828.JPG +22379,1531,1486,17,1,other,DSC_0828.JPG +2238,430,2032,15,1,other,DSC_0844.JPG +22380,1675,1501,17,1,other,DSC_0828.JPG +22381,2980,1612,17,1,other,DSC_0828.JPG +22382,2107,1621,17,1,other,DSC_0828.JPG +22383,2359,1681,17,1,other,DSC_0828.JPG +22384,3520,1693,17,1,other,DSC_0828.JPG +22385,3445,1807,16,1,other,DSC_0828.JPG +22386,2971,1855,17,1,other,DSC_0828.JPG +22387,2683,1858,17,1,other,DSC_0828.JPG +22388,3046,1861,17,1,other,DSC_0828.JPG +22389,3121,1864,16,1,other,DSC_0828.JPG +2239,607,2320,17,1,other,DSC_0844.JPG +22390,4057,1870,17,1,other,DSC_0828.JPG +22391,2260,1960,15,1,other,DSC_0828.JPG +22392,3010,2032,17,1,other,DSC_0828.JPG +22393,2473,2077,17,1,other,DSC_0828.JPG +22394,1867,2143,15,1,other,DSC_0828.JPG +22395,2146,2143,17,1,other,DSC_0828.JPG +22396,2431,2146,17,1,other,DSC_0828.JPG +22397,2833,2206,16,1,other,DSC_0828.JPG +22398,364,2257,17,1,other,DSC_0828.JPG +22399,2287,2257,17,1,other,DSC_0828.JPG +2240,1630,2320,16,1,other,DSC_0844.JPG +22400,3658,2275,17,1,other,DSC_0828.JPG +22401,472,2299,16,1,other,DSC_0828.JPG +22402,1540,2311,15,1,other,DSC_0828.JPG +22403,751,2314,17,1,other,DSC_0828.JPG +22404,3112,2323,15,1,other,DSC_0828.JPG +22405,4123,2329,15,1,other,DSC_0828.JPG +22406,4549,2335,17,1,other,DSC_0828.JPG +22407,127,2380,17,1,other,DSC_0828.JPG +22408,3298,2386,16,1,other,DSC_0828.JPG +22409,3301,28,17,1,other,DSC_0828.JPG +2241,745,2377,17,1,other,DSC_0844.JPG +22410,3520,31,17,1,other,DSC_0828.JPG +22411,421,73,17,1,other,DSC_0828.JPG +22412,1375,193,17,1,other,DSC_0828.JPG +22413,2170,193,17,1,other,DSC_0828.JPG +22414,1447,196,17,1,other,DSC_0828.JPG +22415,3118,205,17,1,other,DSC_0828.JPG +22416,2971,208,15,1,other,DSC_0828.JPG +22417,3706,208,17,1,other,DSC_0828.JPG +22418,823,253,15,1,other,DSC_0828.JPG +22419,2356,253,17,1,other,DSC_0828.JPG +2242,2329,43,15,1,other,DSC_0844.JPG +22420,3160,259,17,1,other,DSC_0828.JPG +22421,3817,265,17,1,other,DSC_0828.JPG +22422,1228,310,17,1,other,DSC_0828.JPG +22423,1363,313,17,1,other,DSC_0828.JPG +22424,3991,334,17,1,other,DSC_0828.JPG +22425,3157,379,17,1,other,DSC_0828.JPG +22426,2464,430,17,1,other,DSC_0828.JPG +22427,1873,436,17,1,other,DSC_0828.JPG +22428,2239,436,17,1,other,DSC_0828.JPG +22429,2347,496,17,1,other,DSC_0828.JPG +2243,5155,592,17,1,other,DSC_0844.JPG +22430,3121,556,16,1,other,DSC_0828.JPG +22431,3415,556,17,1,other,DSC_0828.JPG +22432,3562,562,15,1,other,DSC_0828.JPG +22433,3160,613,17,1,other,DSC_0828.JPG +22434,3292,742,17,1,other,DSC_0828.JPG +22435,2500,850,17,1,other,DSC_0828.JPG +22436,3511,862,16,1,other,DSC_0828.JPG +22437,3655,868,17,1,other,DSC_0828.JPG +22438,3601,901,17,1,other,DSC_0828.JPG +22439,2170,913,17,1,other,DSC_0828.JPG +22440,2314,919,15,1,other,DSC_0828.JPG +22441,1405,967,17,1,other,DSC_0828.JPG +22442,2569,976,17,1,other,DSC_0828.JPG +22443,3949,994,15,1,other,DSC_0828.JPG +22444,1516,1030,17,1,other,DSC_0828.JPG +22445,1564,1078,17,1,other,DSC_0828.JPG +22446,4351,1171,17,1,other,DSC_0828.JPG +22447,1930,1213,17,1,other,DSC_0828.JPG +22448,1672,1255,17,1,other,DSC_0828.JPG +22449,2107,1258,17,1,other,DSC_0828.JPG +2245,5356,766,15,1,other,DSC_0844.JPG +22450,2758,1273,17,1,other,DSC_0828.JPG +22451,3004,1327,15,1,other,DSC_0828.JPG +22452,1750,1372,17,1,other,DSC_0828.JPG +22453,3697,1402,17,1,other,DSC_0828.JPG +22454,2716,1447,17,1,other,DSC_0828.JPG +22455,4702,1525,17,1,other,DSC_0828.JPG +22456,2365,1552,17,1,other,DSC_0828.JPG +22457,2296,1555,17,1,other,DSC_0828.JPG +22458,2500,1564,17,1,other,DSC_0828.JPG +22459,1969,1624,17,1,other,DSC_0828.JPG +2246,5341,892,16,1,other,DSC_0844.JPG +22460,3583,1690,17,1,other,DSC_0828.JPG +22461,943,1714,15,1,other,DSC_0828.JPG +22462,3910,1750,17,1,other,DSC_0828.JPG +22463,2080,1783,17,1,other,DSC_0828.JPG +22464,1498,1792,15,1,other,DSC_0828.JPG +22465,2029,1846,15,1,other,DSC_0828.JPG +22466,1894,1852,15,1,other,DSC_0828.JPG +22467,2365,1915,17,1,other,DSC_0828.JPG +22468,2794,1915,16,1,other,DSC_0828.JPG +22469,5236,2053,16,1,other,DSC_0828.JPG +22470,1966,2083,17,1,other,DSC_0828.JPG +22471,2611,2089,17,1,other,DSC_0828.JPG +22472,3763,2098,17,1,other,DSC_0828.JPG +22473,2464,2200,17,1,other,DSC_0828.JPG +22474,112,2311,17,1,other,DSC_0828.JPG +22475,2734,2374,15,1,other,DSC_0828.JPG +22476,5086,2395,17,1,other,DSC_0828.JPG +22477,1186,16,15,1,other,DSC_0828.JPG +22478,2140,22,15,1,other,DSC_0828.JPG +22479,2281,31,15,1,other,DSC_0828.JPG +22480,3589,37,15,1,other,DSC_0828.JPG +22481,5053,46,17,1,other,DSC_0828.JPG +22482,3238,148,17,1,other,DSC_0828.JPG +22483,862,190,17,1,other,DSC_0828.JPG +22484,790,193,17,1,other,DSC_0828.JPG +22485,3046,214,17,1,other,DSC_0828.JPG +22486,4144,214,15,1,other,DSC_0828.JPG +22487,1624,253,17,1,other,DSC_0828.JPG +22488,1105,256,17,1,other,DSC_0828.JPG +22489,1690,259,16,1,other,DSC_0828.JPG +22490,1180,262,15,1,other,DSC_0828.JPG +22491,4684,289,17,1,other,DSC_0828.JPG +22492,2101,310,17,1,other,DSC_0828.JPG +22493,3562,337,15,1,other,DSC_0828.JPG +22494,3865,364,17,1,other,DSC_0828.JPG +22495,1561,370,17,1,other,DSC_0828.JPG +22496,1489,385,15,1,other,DSC_0828.JPG +22497,1441,430,17,1,other,DSC_0828.JPG +22498,2605,445,17,1,other,DSC_0828.JPG +22499,1852,487,17,1,other,DSC_0828.JPG +22500,2722,487,15,1,other,DSC_0828.JPG +22501,1108,493,17,1,other,DSC_0828.JPG +22502,3079,496,17,1,other,DSC_0828.JPG +22503,4033,517,17,1,other,DSC_0828.JPG +22504,1450,541,15,1,other,DSC_0828.JPG +22505,1303,547,16,1,other,DSC_0828.JPG +22506,4114,547,17,1,other,DSC_0828.JPG +22507,3709,604,17,1,other,DSC_0828.JPG +22508,1630,607,17,1,other,DSC_0828.JPG +22509,2788,616,17,1,other,DSC_0828.JPG +2251,364,2020,17,1,other,DSC_0844.JPG +22510,2902,670,17,1,other,DSC_0828.JPG +22511,3118,685,17,1,other,DSC_0828.JPG +22512,1054,724,17,1,other,DSC_0828.JPG +22513,2182,784,17,1,other,DSC_0828.JPG +22514,2746,796,17,1,other,DSC_0828.JPG +22515,4936,826,17,1,other,DSC_0828.JPG +22516,3742,874,17,1,other,DSC_0828.JPG +22517,2398,901,15,1,other,DSC_0828.JPG +22518,3697,949,17,1,other,DSC_0828.JPG +22519,1204,964,17,1,other,DSC_0828.JPG +22520,556,967,17,1,other,DSC_0828.JPG +22521,3523,976,17,1,other,DSC_0828.JPG +22522,619,994,17,1,other,DSC_0828.JPG +22523,1270,994,15,1,other,DSC_0828.JPG +22524,991,997,17,1,other,DSC_0828.JPG +22525,1162,1015,15,1,other,DSC_0828.JPG +22526,2461,1030,17,1,other,DSC_0828.JPG +22527,1774,1087,15,1,other,DSC_0828.JPG +22528,1888,1141,17,1,other,DSC_0828.JPG +22529,1021,1153,17,1,other,DSC_0828.JPG +2253,1876,2272,15,1,other,DSC_0844.JPG +22530,3331,1159,17,1,other,DSC_0828.JPG +22531,1495,1198,17,1,other,DSC_0828.JPG +22532,1573,1318,17,1,other,DSC_0828.JPG +22533,2038,1375,17,1,other,DSC_0828.JPG +22534,2653,1435,17,1,other,DSC_0828.JPG +22535,2500,1441,17,1,other,DSC_0828.JPG +22536,2641,1564,17,1,other,DSC_0828.JPG +22537,2863,1567,17,1,other,DSC_0828.JPG +22538,3055,1630,16,1,other,DSC_0828.JPG +22539,2071,1675,17,1,other,DSC_0828.JPG +2254,2152,2272,17,1,other,DSC_0844.JPG +22540,2803,1675,17,1,other,DSC_0828.JPG +22541,4948,1684,17,1,other,DSC_0828.JPG +22542,3730,1690,15,1,other,DSC_0828.JPG +22543,3619,1750,17,1,other,DSC_0828.JPG +22544,1636,1795,17,1,other,DSC_0828.JPG +22545,3085,1804,17,1,other,DSC_0828.JPG +22546,2902,1858,17,1,other,DSC_0828.JPG +22547,2224,1915,16,1,other,DSC_0828.JPG +22548,5023,2050,15,1,other,DSC_0828.JPG +22549,4699,2104,16,1,other,DSC_0828.JPG +2255,1069,2293,15,1,other,DSC_0844.JPG +22550,1795,2128,17,1,other,DSC_0828.JPG +22551,2401,2206,17,1,other,DSC_0828.JPG +22552,1972,2314,15,1,other,DSC_0828.JPG +22553,2254,2314,15,1,other,DSC_0828.JPG +22554,2902,2320,15,1,other,DSC_0828.JPG +22555,1693,16,17,1,other,DSC_0828.JPG +22556,4762,40,17,1,other,DSC_0828.JPG +22557,4828,49,17,1,other,DSC_0828.JPG +22558,199,70,17,1,other,DSC_0828.JPG +22559,2602,94,17,1,other,DSC_0828.JPG +22560,4063,103,17,1,other,DSC_0828.JPG +22561,4936,109,15,1,other,DSC_0828.JPG +22562,2755,199,17,1,other,DSC_0828.JPG +22563,3187,208,17,1,other,DSC_0828.JPG +22564,460,253,15,1,other,DSC_0828.JPG +22565,3376,262,17,1,other,DSC_0828.JPG +22566,4027,280,15,1,other,DSC_0828.JPG +22567,3478,328,17,1,other,DSC_0828.JPG +22568,3625,331,15,1,other,DSC_0828.JPG +22569,4570,343,16,1,other,DSC_0828.JPG +2257,3811,64,16,1,other,DSC_0844.JPG +22570,1114,367,17,1,other,DSC_0828.JPG +22571,1762,376,17,1,other,DSC_0828.JPG +22572,1666,430,17,1,other,DSC_0828.JPG +22573,3406,445,17,1,other,DSC_0828.JPG +22574,1036,493,17,1,other,DSC_0828.JPG +22575,2422,493,17,1,other,DSC_0828.JPG +22576,4279,493,16,1,other,DSC_0828.JPG +22577,3964,505,17,1,other,DSC_0828.JPG +22578,3259,562,17,1,other,DSC_0828.JPG +22579,2578,607,17,1,other,DSC_0828.JPG +22580,4045,661,17,1,other,DSC_0828.JPG +22581,1093,667,17,1,other,DSC_0828.JPG +22582,3562,676,17,1,other,DSC_0828.JPG +22583,3373,739,17,1,other,DSC_0828.JPG +22584,3085,745,17,1,other,DSC_0828.JPG +22585,3004,856,17,1,other,DSC_0828.JPG +22586,2530,913,17,1,other,DSC_0828.JPG +22587,589,916,16,1,other,DSC_0828.JPG +22588,3487,931,17,1,other,DSC_0828.JPG +22589,4288,937,15,1,other,DSC_0828.JPG +2259,223,1177,17,1,other,DSC_0844.JPG +22590,2107,1018,15,1,other,DSC_0828.JPG +22591,1486,1081,17,1,other,DSC_0828.JPG +22592,3082,1087,15,1,other,DSC_0828.JPG +22593,2131,1093,17,1,other,DSC_0828.JPG +22594,1813,1144,15,1,other,DSC_0828.JPG +22595,2317,1147,17,1,other,DSC_0828.JPG +22596,4492,1171,17,1,other,DSC_0828.JPG +22597,1807,1261,17,1,other,DSC_0828.JPG +22598,3118,1273,16,1,other,DSC_0828.JPG +22599,4492,1288,16,1,other,DSC_0828.JPG +2260,181,1705,17,1,other,DSC_0844.JPG +22600,2506,1318,17,1,other,DSC_0828.JPG +22601,2722,1333,17,1,other,DSC_0828.JPG +22602,2608,1387,17,1,other,DSC_0828.JPG +22603,2893,1387,17,1,other,DSC_0828.JPG +22604,2281,1438,15,1,other,DSC_0828.JPG +22605,2932,1444,15,1,other,DSC_0828.JPG +22606,2869,1450,17,1,other,DSC_0828.JPG +22607,1819,1492,17,1,other,DSC_0828.JPG +22608,2617,1498,15,1,other,DSC_0828.JPG +22609,2680,1498,17,1,other,DSC_0828.JPG +2261,1210,1978,17,1,other,DSC_0844.JPG +22610,2461,1501,15,1,other,DSC_0828.JPG +22611,1966,1504,17,1,other,DSC_0828.JPG +22612,3985,1516,16,1,other,DSC_0828.JPG +22613,3442,1576,17,1,other,DSC_0828.JPG +22614,2401,1612,17,1,other,DSC_0828.JPG +22615,2323,1624,17,1,other,DSC_0828.JPG +22616,1780,1669,17,1,other,DSC_0828.JPG +22617,3379,1678,17,1,other,DSC_0828.JPG +22618,2503,1681,17,1,other,DSC_0828.JPG +22619,2680,1738,17,1,other,DSC_0828.JPG +22620,4087,1810,17,1,other,DSC_0828.JPG +22621,2323,1855,17,1,other,DSC_0828.JPG +22622,2935,1918,17,1,other,DSC_0828.JPG +22623,3517,1924,16,1,other,DSC_0828.JPG +22624,3736,1927,17,1,other,DSC_0828.JPG +22625,1750,1969,17,1,other,DSC_0828.JPG +22626,3271,1969,17,1,other,DSC_0828.JPG +22627,1648,2014,17,1,other,DSC_0828.JPG +22628,1426,2020,15,1,other,DSC_0828.JPG +22629,2578,2032,17,1,other,DSC_0828.JPG +22630,3802,2044,16,1,other,DSC_0828.JPG +22631,1828,2200,17,1,other,DSC_0828.JPG +22632,1900,2203,17,1,other,DSC_0828.JPG +22633,4156,2272,17,1,other,DSC_0828.JPG +22634,4732,2281,17,1,other,DSC_0828.JPG +22635,3370,2383,16,1,other,DSC_0828.JPG +22636,1255,13,17,1,other,DSC_0828.JPG +22637,1477,13,17,1,other,DSC_0828.JPG +22638,748,16,15,1,other,DSC_0828.JPG +22639,2569,25,17,1,other,DSC_0828.JPG +22640,2641,25,17,1,other,DSC_0828.JPG +22641,781,73,17,1,other,DSC_0828.JPG +22642,1072,73,17,1,other,DSC_0828.JPG +22643,478,82,17,1,other,DSC_0828.JPG +22644,2212,139,15,1,other,DSC_0828.JPG +22645,634,199,15,1,other,DSC_0828.JPG +22646,682,265,16,1,other,DSC_0828.JPG +22647,3673,268,17,1,other,DSC_0828.JPG +22648,3889,268,17,1,other,DSC_0828.JPG +22649,2614,316,17,1,other,DSC_0828.JPG +2265,5056,2326,15,1,other,DSC_0844.JPG +22650,1726,319,15,1,other,DSC_0828.JPG +22651,2794,376,15,1,other,DSC_0828.JPG +22652,3769,448,15,1,other,DSC_0828.JPG +22653,1183,490,17,1,other,DSC_0828.JPG +22654,928,553,17,1,other,DSC_0828.JPG +22655,3922,577,17,1,other,DSC_0828.JPG +22656,3007,625,17,1,other,DSC_0828.JPG +22657,940,661,17,1,other,DSC_0828.JPG +22658,1522,664,17,1,other,DSC_0828.JPG +22659,3340,676,17,1,other,DSC_0828.JPG +2266,1552,28,16,1,other,DSC_0844.JPG +22660,1333,730,17,1,other,DSC_0828.JPG +22661,1810,787,17,1,other,DSC_0828.JPG +22662,2140,847,17,1,other,DSC_0828.JPG +22663,2569,853,17,1,other,DSC_0828.JPG +22664,2644,859,17,1,other,DSC_0828.JPG +22665,3376,859,15,1,other,DSC_0828.JPG +22666,1813,904,17,1,other,DSC_0828.JPG +22667,2971,922,17,1,other,DSC_0828.JPG +22668,838,928,15,1,other,DSC_0828.JPG +22669,1486,964,17,1,other,DSC_0828.JPG +22670,3586,982,15,1,other,DSC_0828.JPG +22671,907,988,15,1,other,DSC_0828.JPG +22672,1597,1021,17,1,other,DSC_0828.JPG +22673,3265,1042,15,1,other,DSC_0828.JPG +22674,4930,1063,17,1,other,DSC_0828.JPG +22675,1126,1078,17,1,other,DSC_0828.JPG +22676,1345,1078,17,1,other,DSC_0828.JPG +22677,2509,1084,17,1,other,DSC_0828.JPG +22678,2719,1096,17,1,other,DSC_0828.JPG +22679,3013,1102,17,1,other,DSC_0828.JPG +22680,4027,1111,17,1,other,DSC_0828.JPG +22681,3190,1159,17,1,other,DSC_0828.JPG +22682,2674,1264,15,1,other,DSC_0828.JPG +22683,2461,1267,17,1,other,DSC_0828.JPG +22684,3196,1279,17,1,other,DSC_0828.JPG +22685,1636,1312,17,1,other,DSC_0828.JPG +22686,1849,1321,15,1,other,DSC_0828.JPG +22687,3484,1399,17,1,other,DSC_0828.JPG +22688,1750,1492,15,1,other,DSC_0828.JPG +22689,2806,1558,17,1,other,DSC_0828.JPG +2269,5209,1084,16,1,other,DSC_0844.JPG +22690,3382,1564,17,1,other,DSC_0828.JPG +22691,3955,1579,17,1,other,DSC_0828.JPG +22692,1741,1615,16,1,other,DSC_0828.JPG +22693,3337,1630,17,1,other,DSC_0828.JPG +22694,4489,1642,17,1,other,DSC_0828.JPG +22695,4993,1645,16,1,other,DSC_0828.JPG +22696,5104,1684,17,1,other,DSC_0828.JPG +22697,3664,1687,15,1,other,DSC_0828.JPG +22698,3445,1693,17,1,other,DSC_0828.JPG +22699,70,1702,17,1,other,DSC_0828.JPG +2270,181,1231,17,1,other,DSC_0844.JPG +22700,787,1714,17,1,other,DSC_0828.JPG +22701,1531,1723,15,1,other,DSC_0828.JPG +22702,1780,1792,17,1,other,DSC_0828.JPG +22703,2794,1801,17,1,other,DSC_0828.JPG +22704,3151,1804,17,1,other,DSC_0828.JPG +22705,1573,1897,17,1,other,DSC_0828.JPG +22706,1210,1906,15,1,other,DSC_0828.JPG +22707,5236,1939,16,1,other,DSC_0828.JPG +22708,3697,1987,16,1,other,DSC_0828.JPG +22709,4699,1990,16,1,other,DSC_0828.JPG +22710,3367,2038,17,1,other,DSC_0828.JPG +22711,1480,2077,16,1,other,DSC_0828.JPG +22712,3520,2158,17,1,other,DSC_0828.JPG +22713,5089,2170,17,1,other,DSC_0828.JPG +22714,1033,2194,16,1,other,DSC_0828.JPG +22715,895,2197,17,1,other,DSC_0828.JPG +22716,4051,2215,17,1,other,DSC_0828.JPG +22717,1576,2242,17,1,other,DSC_0828.JPG +22718,2359,2257,15,1,other,DSC_0828.JPG +22719,2656,2266,17,1,other,DSC_0828.JPG +22720,4801,2278,17,1,other,DSC_0828.JPG +22721,2833,2323,17,1,other,DSC_0828.JPG +22722,2077,2371,15,1,other,DSC_0828.JPG +22723,3943,2389,17,1,other,DSC_0828.JPG +22724,2050,2434,16,1,other,DSC_0828.JPG +22725,3184,94,17,1,other,DSC_0828.JPG +22726,3925,94,15,1,other,DSC_0828.JPG +22727,4402,157,16,1,other,DSC_0828.JPG +22728,4171,277,15,1,other,DSC_0828.JPG +22729,1006,310,17,1,other,DSC_0828.JPG +22730,4225,334,17,1,other,DSC_0828.JPG +22731,4720,349,17,1,other,DSC_0828.JPG +22732,4297,370,16,1,other,DSC_0828.JPG +22733,610,382,17,1,other,DSC_0828.JPG +22734,3007,382,16,1,other,DSC_0828.JPG +22735,4036,385,17,1,other,DSC_0828.JPG +22736,3367,388,15,1,other,DSC_0828.JPG +22737,856,433,16,1,other,DSC_0828.JPG +22738,2680,442,15,1,other,DSC_0828.JPG +22739,1987,493,17,1,other,DSC_0828.JPG +2274,400,2086,17,1,other,DSC_0844.JPG +22740,3454,499,17,1,other,DSC_0828.JPG +22741,2683,556,15,1,other,DSC_0828.JPG +22742,3040,559,17,1,other,DSC_0828.JPG +22743,3484,559,17,1,other,DSC_0828.JPG +22744,1189,610,15,1,other,DSC_0828.JPG +22745,2863,619,15,1,other,DSC_0828.JPG +22746,2938,625,17,1,other,DSC_0828.JPG +22747,1585,673,17,1,other,DSC_0828.JPG +22748,3202,676,17,1,other,DSC_0828.JPG +22749,616,721,17,1,other,DSC_0828.JPG +2275,859,2296,16,1,other,DSC_0844.JPG +22750,1780,724,17,1,other,DSC_0828.JPG +22751,2500,736,15,1,other,DSC_0828.JPG +22752,1522,784,17,1,other,DSC_0828.JPG +22753,3124,790,17,1,other,DSC_0828.JPG +22754,3706,814,17,1,other,DSC_0828.JPG +22755,1996,847,16,1,other,DSC_0828.JPG +22756,2614,907,17,1,other,DSC_0828.JPG +22757,4213,934,15,1,other,DSC_0828.JPG +22758,700,964,17,1,other,DSC_0828.JPG +22759,4465,1000,17,1,other,DSC_0828.JPG +2276,4765,2455,15,1,other,DSC_0844.JPG +22760,1744,1021,17,1,other,DSC_0828.JPG +22761,2290,1084,17,1,other,DSC_0828.JPG +22762,3367,1102,17,1,other,DSC_0828.JPG +22763,3598,1111,17,1,other,DSC_0828.JPG +22764,3268,1144,17,1,other,DSC_0828.JPG +22765,2893,1153,17,1,other,DSC_0828.JPG +22766,3913,1168,17,1,other,DSC_0828.JPG +22767,2356,1204,17,1,other,DSC_0828.JPG +22768,3442,1219,15,1,other,DSC_0828.JPG +22769,589,1255,17,1,other,DSC_0828.JPG +22770,2254,1264,15,1,other,DSC_0828.JPG +22771,2356,1327,15,1,other,DSC_0828.JPG +22772,2941,1336,16,1,other,DSC_0828.JPG +22773,2398,1378,17,1,other,DSC_0828.JPG +22774,3769,1399,17,1,other,DSC_0828.JPG +22775,1060,1429,17,1,other,DSC_0828.JPG +22776,2137,1438,15,1,other,DSC_0828.JPG +22777,2785,1444,17,1,other,DSC_0828.JPG +22778,3229,1453,16,1,other,DSC_0828.JPG +22779,3733,1459,17,1,other,DSC_0828.JPG +22780,4741,1468,17,1,other,DSC_0828.JPG +22781,4414,1519,17,1,other,DSC_0828.JPG +22782,1486,1555,16,1,other,DSC_0828.JPG +22783,1645,1561,15,1,other,DSC_0828.JPG +22784,3589,1579,16,1,other,DSC_0828.JPG +22785,3811,1579,17,1,other,DSC_0828.JPG +22786,1663,1618,17,1,other,DSC_0828.JPG +22787,4669,1819,17,1,other,DSC_0828.JPG +22788,2398,1858,17,1,other,DSC_0828.JPG +22789,4624,1873,17,1,other,DSC_0828.JPG +2279,4915,1102,17,1,other,DSC_0844.JPG +22790,2290,1900,15,1,other,DSC_0828.JPG +22791,1645,1909,15,1,other,DSC_0828.JPG +22792,3439,1924,17,1,other,DSC_0828.JPG +22793,3805,1927,17,1,other,DSC_0828.JPG +22794,4810,1933,16,1,other,DSC_0828.JPG +22795,1906,1960,17,1,other,DSC_0828.JPG +22796,1864,2014,17,1,other,DSC_0828.JPG +22797,2296,2017,17,1,other,DSC_0828.JPG +22798,2794,2032,17,1,other,DSC_0828.JPG +22799,5167,2053,16,1,other,DSC_0828.JPG +2280,1480,1348,15,1,other,DSC_0844.JPG +22800,2899,2089,17,1,other,DSC_0828.JPG +22801,3694,2098,17,1,other,DSC_0828.JPG +22802,2065,2137,15,1,other,DSC_0828.JPG +22803,2728,2149,17,1,other,DSC_0828.JPG +22804,2038,2200,17,1,other,DSC_0828.JPG +22805,1783,2251,17,1,other,DSC_0828.JPG +22806,1471,2314,17,1,other,DSC_0828.JPG +22807,2041,2317,17,1,other,DSC_0828.JPG +22808,2614,2320,17,1,other,DSC_0828.JPG +22809,5194,2344,17,1,other,DSC_0828.JPG +22810,1111,16,15,1,other,DSC_0828.JPG +22811,4546,40,16,1,other,DSC_0828.JPG +22812,4981,40,17,1,other,DSC_0828.JPG +22813,670,46,17,1,other,DSC_0828.JPG +22814,4252,154,17,1,other,DSC_0828.JPG +22815,931,190,17,1,other,DSC_0828.JPG +22816,3445,265,17,1,other,DSC_0828.JPG +22817,4543,289,17,1,other,DSC_0828.JPG +22818,799,316,17,1,other,DSC_0828.JPG +22819,1165,316,17,1,other,DSC_0828.JPG +2282,4672,2056,15,5,other,DSC_0844.JPG +22820,3484,442,17,1,other,DSC_0828.JPG +22821,4858,454,17,1,other,DSC_0828.JPG +22822,1783,610,15,1,other,DSC_0828.JPG +22823,3658,625,17,1,other,DSC_0828.JPG +22824,3691,685,17,1,other,DSC_0828.JPG +22825,2719,739,15,1,other,DSC_0828.JPG +22826,2866,742,17,1,other,DSC_0828.JPG +22827,3952,757,17,1,other,DSC_0828.JPG +22828,3592,772,15,1,other,DSC_0828.JPG +22829,1306,781,17,1,other,DSC_0828.JPG +22830,2464,790,17,1,other,DSC_0828.JPG +22831,1414,844,17,1,other,DSC_0828.JPG +22832,4291,844,15,1,other,DSC_0828.JPG +22833,892,853,17,1,other,DSC_0828.JPG +22834,1333,853,17,1,other,DSC_0828.JPG +22835,1516,907,15,1,other,DSC_0828.JPG +22836,2467,907,17,1,other,DSC_0828.JPG +22837,3409,925,15,1,other,DSC_0828.JPG +22838,1342,961,17,1,other,DSC_0828.JPG +22839,763,988,15,1,other,DSC_0828.JPG +22840,3091,988,15,1,other,DSC_0828.JPG +22841,4672,1006,16,1,other,DSC_0828.JPG +22842,3403,1045,15,1,other,DSC_0828.JPG +22843,3631,1051,17,1,other,DSC_0828.JPG +22844,3844,1051,17,1,other,DSC_0828.JPG +22845,3919,1054,17,1,other,DSC_0828.JPG +22846,1708,1078,17,1,other,DSC_0828.JPG +22847,3226,1102,17,1,other,DSC_0828.JPG +22848,3739,1111,17,1,other,DSC_0828.JPG +22849,1450,1150,16,1,other,DSC_0828.JPG +2285,601,2467,17,1,other,DSC_0844.JPG +22850,3550,1153,17,1,other,DSC_0828.JPG +22851,2467,1156,17,1,other,DSC_0828.JPG +22852,4567,1174,17,1,other,DSC_0828.JPG +22853,1711,1195,17,1,other,DSC_0828.JPG +22854,3523,1222,15,1,other,DSC_0828.JPG +22855,1090,1249,17,1,other,DSC_0828.JPG +22856,1741,1261,15,1,other,DSC_0828.JPG +22857,1144,1321,17,1,other,DSC_0828.JPG +22858,1705,1321,15,1,other,DSC_0828.JPG +22859,3658,1459,17,1,other,DSC_0828.JPG +22860,4528,1465,16,1,other,DSC_0828.JPG +22861,3700,1519,17,1,other,DSC_0828.JPG +22862,1780,1561,17,1,other,DSC_0828.JPG +22863,2674,1621,17,1,other,DSC_0828.JPG +22864,4414,1639,17,1,other,DSC_0828.JPG +22865,4201,1642,16,1,other,DSC_0828.JPG +22866,853,1669,17,1,other,DSC_0828.JPG +22867,4453,1690,16,1,other,DSC_0828.JPG +22868,4018,1693,17,1,other,DSC_0828.JPG +22869,1735,1732,17,1,other,DSC_0828.JPG +2287,904,538,17,1,other,DSC_0844.JPG +22870,1957,1732,15,1,other,DSC_0828.JPG +22871,2608,1738,17,1,other,DSC_0828.JPG +22872,2149,1783,17,1,other,DSC_0828.JPG +22873,2944,1804,17,1,other,DSC_0828.JPG +22874,1324,1837,15,1,other,DSC_0828.JPG +22875,2110,1852,15,1,other,DSC_0828.JPG +22876,925,1894,17,1,other,DSC_0828.JPG +22877,1936,1900,17,1,other,DSC_0828.JPG +22878,2866,1915,16,1,other,DSC_0828.JPG +22879,3085,1918,16,1,other,DSC_0828.JPG +22880,4090,1927,17,1,other,DSC_0828.JPG +22881,2038,1966,15,1,other,DSC_0828.JPG +22882,3766,1984,17,1,other,DSC_0828.JPG +22883,3733,2029,17,1,other,DSC_0828.JPG +22884,2512,2035,17,1,other,DSC_0828.JPG +22885,3436,2035,17,1,other,DSC_0828.JPG +22886,3517,2041,17,1,other,DSC_0828.JPG +22887,4087,2041,17,1,other,DSC_0828.JPG +22888,742,2080,17,1,other,DSC_0828.JPG +22889,2761,2089,15,1,other,DSC_0828.JPG +22890,4234,2158,16,1,other,DSC_0828.JPG +22891,5164,2170,17,1,other,DSC_0828.JPG +22892,2326,2200,17,1,other,DSC_0828.JPG +22893,3193,2209,15,1,other,DSC_0828.JPG +22894,1516,2248,17,1,other,DSC_0828.JPG +22895,1213,2251,16,1,other,DSC_0828.JPG +22896,2500,2257,17,1,other,DSC_0828.JPG +22897,2869,2263,15,1,other,DSC_0828.JPG +22898,3517,2272,17,1,other,DSC_0828.JPG +22899,3871,2272,17,1,other,DSC_0828.JPG +229,295,1774,17,1,other,DSC_0844.JPG +2290,1534,1444,17,1,other,DSC_0844.JPG +22900,4516,2278,17,1,other,DSC_0828.JPG +22901,49,2308,18,1,other,DSC_0828.JPG +22902,892,2308,17,1,other,DSC_0828.JPG +22903,3547,2329,17,1,other,DSC_0828.JPG +22904,4054,2332,17,1,other,DSC_0828.JPG +22905,1294,2359,15,1,other,DSC_0828.JPG +22906,2296,2365,17,1,other,DSC_0828.JPG +22907,4156,2389,17,1,other,DSC_0828.JPG +22908,1912,16,17,1,other,DSC_0828.JPG +22909,2065,16,17,1,other,DSC_0828.JPG +2291,148,1639,15,1,other,DSC_0844.JPG +22910,5125,40,17,1,other,DSC_0828.JPG +22911,3439,43,15,1,other,DSC_0828.JPG +22912,4141,94,17,1,other,DSC_0828.JPG +22913,4795,109,15,1,other,DSC_0828.JPG +22914,5080,109,17,1,other,DSC_0828.JPG +22915,535,250,17,1,other,DSC_0828.JPG +22916,625,316,17,1,other,DSC_0828.JPG +22917,4105,388,16,1,other,DSC_0828.JPG +22918,934,427,17,1,other,DSC_0828.JPG +22919,4435,448,17,1,other,DSC_0828.JPG +2292,154,1759,17,1,other,DSC_0844.JPG +22920,1402,496,17,1,other,DSC_0828.JPG +22921,1522,544,17,1,other,DSC_0828.JPG +22922,1000,550,17,1,other,DSC_0828.JPG +22923,3778,577,17,1,other,DSC_0828.JPG +22924,1555,607,17,1,other,DSC_0828.JPG +22925,3082,619,15,1,other,DSC_0828.JPG +22926,4105,622,17,1,other,DSC_0828.JPG +22927,1231,664,17,1,other,DSC_0828.JPG +22928,2314,673,17,1,other,DSC_0828.JPG +22929,2827,676,15,1,other,DSC_0828.JPG +22930,2215,727,17,1,other,DSC_0828.JPG +22931,2575,730,17,1,other,DSC_0828.JPG +22932,2644,730,17,1,other,DSC_0828.JPG +22933,3478,802,17,1,other,DSC_0828.JPG +22934,4075,844,17,1,other,DSC_0828.JPG +22935,1270,928,15,1,other,DSC_0828.JPG +22936,4069,931,15,1,other,DSC_0828.JPG +22937,2359,967,17,1,other,DSC_0828.JPG +22938,2869,985,17,1,other,DSC_0828.JPG +22939,2614,1021,15,1,other,DSC_0828.JPG +22940,3181,1036,17,1,other,DSC_0828.JPG +22941,1855,1096,17,1,other,DSC_0828.JPG +22942,2797,1102,17,1,other,DSC_0828.JPG +22943,3871,1108,17,1,other,DSC_0828.JPG +22944,4177,1114,17,1,other,DSC_0828.JPG +22945,2035,1141,17,1,other,DSC_0828.JPG +22946,2611,1141,15,1,other,DSC_0828.JPG +22947,2386,1150,17,1,other,DSC_0828.JPG +22948,4528,1234,17,1,other,DSC_0828.JPG +22949,2824,1273,17,1,other,DSC_0828.JPG +2295,4978,2443,15,1,other,DSC_0844.JPG +22950,3052,1279,17,1,other,DSC_0828.JPG +22951,2146,1315,17,1,other,DSC_0828.JPG +22952,2332,1381,15,1,other,DSC_0828.JPG +22953,2032,1501,15,1,other,DSC_0828.JPG +22954,2986,1501,17,1,other,DSC_0828.JPG +22955,2323,1504,15,1,other,DSC_0828.JPG +22956,49,1636,15,1,other,DSC_0828.JPG +22957,3703,1639,17,1,other,DSC_0828.JPG +22958,1930,1675,15,1,other,DSC_0828.JPG +22959,706,1714,17,1,other,DSC_0828.JPG +2296,1018,85,15,1,other,DSC_0844.JPG +22960,1471,1729,17,1,other,DSC_0828.JPG +22961,3184,1741,17,1,other,DSC_0828.JPG +22962,5047,1747,15,1,other,DSC_0828.JPG +22963,1771,1849,17,1,other,DSC_0828.JPG +22964,1963,1849,15,1,other,DSC_0828.JPG +22965,3625,1867,17,1,other,DSC_0828.JPG +22966,3910,1870,17,1,other,DSC_0828.JPG +22967,4198,1870,17,1,other,DSC_0828.JPG +22968,4771,1876,17,1,other,DSC_0828.JPG +22969,2080,1915,17,1,other,DSC_0828.JPG +2297,5299,133,15,1,other,DSC_0844.JPG +22970,1321,1966,17,1,other,DSC_0828.JPG +22971,3409,1981,16,1,other,DSC_0828.JPG +22972,3985,1984,16,1,other,DSC_0828.JPG +22973,3844,1987,17,1,other,DSC_0828.JPG +22974,2725,2035,17,1,other,DSC_0828.JPG +22975,3082,2035,17,1,other,DSC_0828.JPG +22976,3586,2041,17,1,other,DSC_0828.JPG +22977,1249,2080,17,1,other,DSC_0828.JPG +22978,2404,2089,16,1,other,DSC_0828.JPG +22979,2299,2134,17,1,other,DSC_0828.JPG +2298,154,685,15,1,other,DSC_0844.JPG +22980,2509,2134,16,1,other,DSC_0828.JPG +22981,859,2137,15,1,other,DSC_0828.JPG +22982,1504,2140,16,1,other,DSC_0828.JPG +22983,5236,2170,17,1,other,DSC_0828.JPG +22984,1540,2188,15,1,other,DSC_0828.JPG +22985,1198,2194,17,1,other,DSC_0828.JPG +22986,1681,2200,17,1,other,DSC_0828.JPG +22987,2620,2206,15,1,other,DSC_0828.JPG +22988,1861,2257,17,1,other,DSC_0828.JPG +22989,2152,2260,17,1,other,DSC_0828.JPG +22990,2581,2263,16,1,other,DSC_0828.JPG +22991,3370,2272,17,1,other,DSC_0828.JPG +22992,1342,2305,15,1,other,DSC_0828.JPG +22993,1180,2311,17,1,other,DSC_0828.JPG +22994,2110,2317,17,1,other,DSC_0828.JPG +22995,3403,2326,17,1,other,DSC_0828.JPG +22996,3901,2329,17,1,other,DSC_0828.JPG +22997,1711,2362,15,1,other,DSC_0828.JPG +22998,49,2377,17,1,other,DSC_0828.JPG +22999,5014,2404,16,1,other,DSC_0828.JPG +230,2047,169,16,1,other,DSC_0844.JPG +2300,1105,1888,15,1,other,DSC_0844.JPG +23000,595,13,17,1,other,DSC_0828.JPG +23001,3811,40,15,1,other,DSC_0828.JPG +23002,4660,142,17,1,other,DSC_0828.JPG +23003,1156,193,17,1,other,DSC_0828.JPG +23004,4210,220,15,1,other,DSC_0828.JPG +23005,244,262,15,1,other,DSC_0828.JPG +23006,598,265,15,1,other,DSC_0828.JPG +23007,1960,313,17,1,other,DSC_0828.JPG +23008,4330,313,15,1,other,DSC_0828.JPG +23009,4867,334,17,1,other,DSC_0828.JPG +23010,4438,349,17,1,other,DSC_0828.JPG +23011,3448,382,17,1,other,DSC_0828.JPG +23012,3745,502,17,1,other,DSC_0828.JPG +23013,3679,535,17,1,other,DSC_0828.JPG +23014,1075,550,17,1,other,DSC_0828.JPG +23015,859,553,15,1,other,DSC_0828.JPG +23016,1372,553,15,1,other,DSC_0828.JPG +23017,3850,577,17,1,other,DSC_0828.JPG +23018,4507,586,17,1,other,DSC_0828.JPG +23019,1276,607,17,1,other,DSC_0828.JPG +2302,103,2050,17,1,other,DSC_0844.JPG +23020,3514,622,17,1,other,DSC_0828.JPG +23021,3799,628,17,1,other,DSC_0828.JPG +23022,4312,634,15,1,other,DSC_0828.JPG +23023,2035,667,17,1,other,DSC_0828.JPG +23024,3043,676,17,1,other,DSC_0828.JPG +23025,3787,718,15,1,other,DSC_0828.JPG +23026,1477,733,17,1,other,DSC_0828.JPG +23027,3670,736,17,1,other,DSC_0828.JPG +23028,4024,754,17,1,other,DSC_0828.JPG +23029,406,757,17,1,other,DSC_0828.JPG +2303,5029,2053,17,1,other,DSC_0844.JPG +23030,1225,787,17,1,other,DSC_0828.JPG +23031,3262,805,17,1,other,DSC_0828.JPG +23032,3859,838,17,1,other,DSC_0828.JPG +23033,1957,904,17,1,other,DSC_0828.JPG +23034,1663,913,15,1,other,DSC_0828.JPG +23035,4489,931,15,1,other,DSC_0828.JPG +23036,4528,1003,15,1,other,DSC_0828.JPG +23037,2896,1033,15,1,other,DSC_0828.JPG +23038,2653,1084,17,1,other,DSC_0828.JPG +23039,2356,1087,15,1,other,DSC_0828.JPG +23040,4240,1114,16,1,other,DSC_0828.JPG +23041,1063,1195,15,1,other,DSC_0828.JPG +23042,2140,1204,17,1,other,DSC_0828.JPG +23043,1453,1267,17,1,other,DSC_0828.JPG +23044,4063,1285,17,1,other,DSC_0828.JPG +23045,1483,1321,15,1,other,DSC_0828.JPG +23046,2215,1321,15,1,other,DSC_0828.JPG +23047,4165,1342,17,1,other,DSC_0828.JPG +23048,4522,1348,17,1,other,DSC_0828.JPG +23049,1312,1366,17,1,other,DSC_0828.JPG +2305,3052,2413,16,1,other,DSC_0844.JPG +23050,1711,1549,17,1,other,DSC_0828.JPG +23051,2719,1564,16,1,other,DSC_0828.JPG +23052,2941,1567,16,1,other,DSC_0828.JPG +23053,2542,1741,17,1,other,DSC_0828.JPG +23054,5185,1750,17,1,other,DSC_0828.JPG +23055,1927,1798,17,1,other,DSC_0828.JPG +23056,3946,1807,15,1,other,DSC_0828.JPG +23057,3805,1810,17,1,other,DSC_0828.JPG +23058,3877,1813,17,1,other,DSC_0828.JPG +23059,1258,1840,17,1,other,DSC_0828.JPG +2306,58,163,17,1,other,DSC_0844.JPG +23060,1432,1897,16,1,other,DSC_0828.JPG +23061,1507,1897,17,1,other,DSC_0828.JPG +23062,1285,1909,17,1,other,DSC_0828.JPG +23063,2002,1912,17,1,other,DSC_0828.JPG +23064,2434,1912,15,1,other,DSC_0828.JPG +23065,3871,1921,15,1,other,DSC_0828.JPG +23066,4237,1927,16,1,other,DSC_0828.JPG +23067,1600,1960,16,1,other,DSC_0828.JPG +23068,3121,1963,15,1,other,DSC_0828.JPG +23069,1462,1966,17,1,other,DSC_0828.JPG +2307,148,805,17,1,other,DSC_0844.JPG +23070,4267,1984,17,1,other,DSC_0828.JPG +23071,1501,2023,17,1,other,DSC_0828.JPG +23072,2143,2023,15,1,other,DSC_0828.JPG +23073,2434,2029,17,1,other,DSC_0828.JPG +23074,4444,2044,17,1,other,DSC_0828.JPG +23075,2131,2083,17,1,other,DSC_0828.JPG +23076,2977,2089,16,1,other,DSC_0828.JPG +23077,3265,2095,17,1,other,DSC_0828.JPG +23078,4057,2101,17,1,other,DSC_0828.JPG +23079,2647,2149,17,1,other,DSC_0828.JPG +23080,1468,2197,16,1,other,DSC_0828.JPG +23081,3556,2215,15,1,other,DSC_0828.JPG +23082,5122,2227,17,1,other,DSC_0828.JPG +23083,1144,2251,15,1,other,DSC_0828.JPG +23084,3013,2266,17,1,other,DSC_0828.JPG +23085,4657,2278,17,1,other,DSC_0828.JPG +23086,4843,2329,15,1,other,DSC_0828.JPG +23087,3802,2389,17,1,other,DSC_0828.JPG +23088,3892,34,17,1,other,DSC_0828.JPG +23089,4111,34,17,1,other,DSC_0828.JPG +2309,5305,832,17,1,other,DSC_0844.JPG +23090,49,85,17,1,other,DSC_0828.JPG +23091,4870,100,17,1,other,DSC_0828.JPG +23092,5161,100,16,1,other,DSC_0828.JPG +23093,3973,190,17,1,other,DSC_0828.JPG +23094,895,250,17,1,other,DSC_0828.JPG +23095,4642,343,15,1,other,DSC_0828.JPG +23096,172,367,17,1,other,DSC_0828.JPG +23097,4606,406,17,1,other,DSC_0828.JPG +23098,4213,442,17,1,other,DSC_0828.JPG +23099,4495,460,16,1,other,DSC_0828.JPG +23100,4714,460,16,1,other,DSC_0828.JPG +23101,2503,490,17,1,other,DSC_0828.JPG +23102,4336,544,17,1,other,DSC_0828.JPG +23103,1051,604,17,1,other,DSC_0828.JPG +23104,1405,607,17,1,other,DSC_0828.JPG +23105,1477,613,16,1,other,DSC_0828.JPG +23106,4531,640,17,1,other,DSC_0828.JPG +23107,1660,676,17,1,other,DSC_0828.JPG +23108,3418,679,16,1,other,DSC_0828.JPG +23109,4348,694,17,1,other,DSC_0828.JPG +23110,3922,697,17,1,other,DSC_0828.JPG +23111,544,721,17,1,other,DSC_0828.JPG +23112,1444,787,17,1,other,DSC_0828.JPG +23113,3043,796,17,1,other,DSC_0828.JPG +23114,3181,802,15,1,other,DSC_0828.JPG +23115,1198,844,17,1,other,DSC_0828.JPG +23116,3232,856,15,1,other,DSC_0828.JPG +23117,1051,958,17,1,other,DSC_0828.JPG +23118,2803,973,17,1,other,DSC_0828.JPG +23119,3877,994,15,1,other,DSC_0828.JPG +23120,3553,1030,17,1,other,DSC_0828.JPG +23121,1189,1087,15,1,other,DSC_0828.JPG +23122,4318,1114,17,1,other,DSC_0828.JPG +23123,3049,1144,17,1,other,DSC_0828.JPG +23124,2833,1156,15,1,other,DSC_0828.JPG +23125,4132,1171,17,1,other,DSC_0828.JPG +23126,3160,1219,16,1,other,DSC_0828.JPG +23127,3691,1279,17,1,other,DSC_0828.JPG +23128,3922,1288,17,1,other,DSC_0828.JPG +23129,1996,1330,17,1,other,DSC_0828.JPG +2313,541,2095,17,1,other,DSC_0844.JPG +23130,3805,1342,17,1,other,DSC_0828.JPG +23131,1678,1387,17,1,other,DSC_0828.JPG +23132,2206,1444,17,1,other,DSC_0828.JPG +23133,3157,1453,17,1,other,DSC_0828.JPG +23134,3667,1576,16,1,other,DSC_0828.JPG +23135,1348,1579,17,1,other,DSC_0828.JPG +23136,1897,1624,17,1,other,DSC_0828.JPG +23137,3151,1684,17,1,other,DSC_0828.JPG +23138,5173,1684,17,1,other,DSC_0828.JPG +23139,1834,1735,17,1,other,DSC_0828.JPG +23140,3685,1747,17,1,other,DSC_0828.JPG +23141,3976,1750,17,1,other,DSC_0828.JPG +23142,4960,1750,17,1,other,DSC_0828.JPG +23143,4165,1816,16,1,other,DSC_0828.JPG +23144,1552,1846,17,1,other,DSC_0828.JPG +23145,2482,1852,15,1,other,DSC_0828.JPG +23146,2827,1858,17,1,other,DSC_0828.JPG +23147,2542,1861,16,1,other,DSC_0828.JPG +23148,4879,1933,17,1,other,DSC_0828.JPG +23149,2620,1978,17,1,other,DSC_0828.JPG +2315,3685,2302,15,1,other,DSC_0844.JPG +23150,3331,1981,16,1,other,DSC_0828.JPG +23151,4228,2038,15,1,other,DSC_0828.JPG +23152,3301,2041,17,1,other,DSC_0828.JPG +23153,4159,2044,16,1,other,DSC_0828.JPG +23154,2260,2074,17,1,other,DSC_0828.JPG +23155,889,2080,17,1,other,DSC_0828.JPG +23156,4267,2101,17,1,other,DSC_0828.JPG +23157,5056,2110,17,1,other,DSC_0828.JPG +23158,5128,2110,17,1,other,DSC_0828.JPG +23159,4588,2161,17,1,other,DSC_0828.JPG +2316,949,2353,15,1,other,DSC_0844.JPG +23160,2257,2182,15,1,other,DSC_0828.JPG +23161,2116,2203,17,1,other,DSC_0828.JPG +23162,3118,2206,15,1,other,DSC_0828.JPG +23163,4120,2215,17,1,other,DSC_0828.JPG +23164,3481,2218,15,1,other,DSC_0828.JPG +23165,5059,2227,16,1,other,DSC_0828.JPG +23166,5197,2227,17,1,other,DSC_0828.JPG +23167,76,2254,17,1,other,DSC_0828.JPG +23168,2011,2263,17,1,other,DSC_0828.JPG +23169,3151,2269,15,1,other,DSC_0828.JPG +23170,4081,2272,17,1,other,DSC_0828.JPG +23171,223,2308,17,1,other,DSC_0828.JPG +23172,3835,2326,15,1,other,DSC_0828.JPG +23173,1945,2365,17,1,other,DSC_0828.JPG +23174,4288,2386,17,1,other,DSC_0828.JPG +23175,1756,2431,15,1,other,DSC_0828.JPG +23176,961,19,16,1,other,DSC_0828.JPG +23177,3010,37,15,1,other,DSC_0828.JPG +23178,4171,163,15,1,other,DSC_0828.JPG +23179,4612,277,17,1,other,DSC_0828.JPG +23180,3913,334,17,1,other,DSC_0828.JPG +23181,754,367,17,1,other,DSC_0828.JPG +23182,3511,391,17,1,other,DSC_0828.JPG +23183,466,499,16,1,other,DSC_0828.JPG +23184,4681,508,15,1,other,DSC_0828.JPG +23185,295,550,17,1,other,DSC_0828.JPG +23186,1588,553,16,1,other,DSC_0828.JPG +23187,4000,607,17,1,other,DSC_0828.JPG +23188,3226,616,17,1,other,DSC_0828.JPG +23189,4456,637,17,1,other,DSC_0828.JPG +2319,3706,259,16,1,other,DSC_0844.JPG +23190,865,661,17,1,other,DSC_0828.JPG +23191,4405,664,15,1,other,DSC_0828.JPG +23192,2974,673,17,1,other,DSC_0828.JPG +23193,4078,724,17,1,other,DSC_0828.JPG +23194,3232,727,15,1,other,DSC_0828.JPG +23195,3448,736,15,1,other,DSC_0828.JPG +23196,1375,778,17,1,other,DSC_0828.JPG +23197,3328,802,15,1,other,DSC_0828.JPG +23198,3568,838,17,1,other,DSC_0828.JPG +23199,3049,922,16,1,other,DSC_0828.JPG +23200,3265,925,17,1,other,DSC_0828.JPG +23201,5299,934,16,1,other,DSC_0828.JPG +23202,2149,967,17,1,other,DSC_0828.JPG +23203,3457,982,15,1,other,DSC_0828.JPG +23204,4333,994,17,1,other,DSC_0828.JPG +23205,4828,1000,15,1,other,DSC_0828.JPG +23206,1960,1024,17,1,other,DSC_0828.JPG +23207,4642,1057,15,1,other,DSC_0828.JPG +23208,3988,1069,17,1,other,DSC_0828.JPG +23209,1669,1135,17,1,other,DSC_0828.JPG +2321,115,613,15,1,other,DSC_0844.JPG +23210,1525,1138,16,1,other,DSC_0828.JPG +23211,1198,1195,15,1,other,DSC_0828.JPG +23212,844,1201,15,1,other,DSC_0828.JPG +23213,3223,1219,16,1,other,DSC_0828.JPG +23214,1528,1252,17,1,other,DSC_0828.JPG +23215,1246,1267,15,1,other,DSC_0828.JPG +23216,2902,1273,17,1,other,DSC_0828.JPG +23217,3301,1324,17,1,other,DSC_0828.JPG +23218,4663,1348,16,1,other,DSC_0828.JPG +23219,2968,1390,16,1,other,DSC_0828.JPG +23220,1642,1429,17,1,other,DSC_0828.JPG +23221,1933,1435,15,1,other,DSC_0828.JPG +23222,2578,1438,17,1,other,DSC_0828.JPG +23223,2362,1450,17,1,other,DSC_0828.JPG +23224,3304,1456,17,1,other,DSC_0828.JPG +23225,1462,1489,17,1,other,DSC_0828.JPG +23226,3481,1519,17,1,other,DSC_0828.JPG +23227,3775,1519,17,1,other,DSC_0828.JPG +23228,4666,1585,17,1,other,DSC_0828.JPG +23229,2248,1615,17,1,other,DSC_0828.JPG +2323,5131,1207,17,1,other,DSC_0844.JPG +23230,2902,1627,17,1,other,DSC_0828.JPG +23231,3628,1633,15,1,other,DSC_0828.JPG +23232,2284,1675,17,1,other,DSC_0828.JPG +23233,1396,1726,17,1,other,DSC_0828.JPG +23234,2848,1738,17,1,other,DSC_0828.JPG +23235,2440,1786,15,1,other,DSC_0828.JPG +23236,2221,1798,15,1,other,DSC_0828.JPG +23237,2866,1801,17,1,other,DSC_0828.JPG +23238,3667,1813,16,1,other,DSC_0828.JPG +23239,4018,1813,17,1,other,DSC_0828.JPG +23240,2176,1852,17,1,other,DSC_0828.JPG +23241,2242,1852,15,1,other,DSC_0828.JPG +23242,3412,1867,16,1,other,DSC_0828.JPG +23243,3559,1873,17,1,other,DSC_0828.JPG +23244,5059,1876,16,1,other,DSC_0828.JPG +23245,2584,1918,17,1,other,DSC_0828.JPG +23246,3226,1921,17,1,other,DSC_0828.JPG +23247,3196,1981,16,1,other,DSC_0828.JPG +23248,1570,2023,16,1,other,DSC_0828.JPG +23249,2359,2029,17,1,other,DSC_0828.JPG +23250,4588,2044,17,1,other,DSC_0828.JPG +23251,2833,2089,16,1,other,DSC_0828.JPG +23252,4339,2101,17,1,other,DSC_0828.JPG +23253,4840,2107,17,1,other,DSC_0828.JPG +23254,1930,2140,17,1,other,DSC_0828.JPG +23255,1576,2143,17,1,other,DSC_0828.JPG +23256,3661,2158,17,1,other,DSC_0828.JPG +23257,4303,2158,16,1,other,DSC_0828.JPG +23258,1972,2185,17,1,other,DSC_0828.JPG +23259,1285,2251,15,1,other,DSC_0828.JPG +23260,646,2254,15,1,other,DSC_0828.JPG +23261,3946,2275,17,1,other,DSC_0828.JPG +23262,3481,2329,17,1,other,DSC_0828.JPG +23263,3625,2329,15,1,other,DSC_0828.JPG +23264,1861,2365,17,1,other,DSC_0828.JPG +23265,2575,2371,15,1,other,DSC_0828.JPG +23266,2359,2374,17,1,other,DSC_0828.JPG +23267,2404,2434,15,1,other,DSC_0828.JPG +23268,1549,13,17,1,other,DSC_0828.JPG +23269,166,133,17,1,other,DSC_0828.JPG +2327,322,2359,17,1,other,DSC_0844.JPG +23270,4648,223,15,1,other,DSC_0828.JPG +23271,3751,271,17,1,other,DSC_0828.JPG +23272,4144,343,17,1,other,DSC_0828.JPG +23273,4831,391,17,1,other,DSC_0828.JPG +23274,4966,400,17,1,other,DSC_0828.JPG +23275,208,421,15,1,other,DSC_0828.JPG +23276,388,481,17,1,other,DSC_0828.JPG +23277,3862,481,17,1,other,DSC_0828.JPG +23278,325,487,17,1,other,DSC_0828.JPG +23279,4471,523,16,1,other,DSC_0828.JPG +2328,4381,2416,15,1,other,DSC_0844.JPG +23280,964,610,17,1,other,DSC_0828.JPG +23281,1990,730,17,1,other,DSC_0828.JPG +23282,2944,745,15,1,other,DSC_0828.JPG +23283,4330,778,15,1,other,DSC_0828.JPG +23284,1957,790,15,1,other,DSC_0828.JPG +23285,3988,817,16,1,other,DSC_0828.JPG +23286,4561,820,16,1,other,DSC_0828.JPG +23287,4504,826,15,1,other,DSC_0828.JPG +23288,766,844,17,1,other,DSC_0828.JPG +23289,3151,862,17,1,other,DSC_0828.JPG +23290,1156,916,17,1,other,DSC_0828.JPG +23291,4396,934,17,1,other,DSC_0828.JPG +23292,4093,994,17,1,other,DSC_0828.JPG +23293,796,1132,17,1,other,DSC_0828.JPG +23294,1414,1195,17,1,other,DSC_0828.JPG +23295,2578,1204,17,1,other,DSC_0828.JPG +23296,2860,1210,15,1,other,DSC_0828.JPG +23297,3010,1216,17,1,other,DSC_0828.JPG +23298,4246,1231,17,1,other,DSC_0828.JPG +23299,1180,1258,17,1,other,DSC_0828.JPG +2330,5200,649,17,1,other,DSC_0844.JPG +23300,4561,1291,17,1,other,DSC_0828.JPG +23301,2431,1321,17,1,other,DSC_0828.JPG +23302,3229,1339,16,1,other,DSC_0828.JPG +23303,2164,1384,17,1,other,DSC_0828.JPG +23304,4561,1408,17,1,other,DSC_0828.JPG +23305,2434,1450,17,1,other,DSC_0828.JPG +23306,4312,1462,17,1,other,DSC_0828.JPG +23307,3958,1465,17,1,other,DSC_0828.JPG +23308,4594,1465,17,1,other,DSC_0828.JPG +23309,3412,1504,17,1,other,DSC_0828.JPG +2331,5248,1141,15,1,other,DSC_0844.JPG +23310,3112,1507,17,1,other,DSC_0828.JPG +23311,2842,1516,17,1,other,DSC_0828.JPG +23312,3301,1573,17,1,other,DSC_0828.JPG +23313,4525,1582,17,1,other,DSC_0828.JPG +23314,3112,1621,17,1,other,DSC_0828.JPG +23315,3550,1633,17,1,other,DSC_0828.JPG +23316,1213,1669,15,1,other,DSC_0828.JPG +23317,3121,1732,17,1,other,DSC_0828.JPG +23318,2767,1735,15,1,other,DSC_0828.JPG +23319,4888,1750,15,1,other,DSC_0828.JPG +23320,3589,1807,15,1,other,DSC_0828.JPG +23321,4591,1816,17,1,other,DSC_0828.JPG +23322,5239,1822,17,1,other,DSC_0828.JPG +23323,1681,1855,17,1,other,DSC_0828.JPG +23324,3694,1864,15,1,other,DSC_0828.JPG +23325,4699,1876,17,1,other,DSC_0828.JPG +23326,1354,1909,16,1,other,DSC_0828.JPG +23327,5029,1939,17,1,other,DSC_0828.JPG +23328,2320,1966,15,1,other,DSC_0828.JPG +23329,3043,1972,17,1,other,DSC_0828.JPG +2333,1147,1348,15,1,other,DSC_0844.JPG +23330,3622,1984,17,1,other,DSC_0828.JPG +23331,4054,1984,17,1,other,DSC_0828.JPG +23332,1360,2026,17,1,other,DSC_0828.JPG +23333,1936,2029,17,1,other,DSC_0828.JPG +23334,3160,2038,17,1,other,DSC_0828.JPG +23335,3949,2044,17,1,other,DSC_0828.JPG +23336,1540,2071,15,1,other,DSC_0828.JPG +23337,2689,2089,15,1,other,DSC_0828.JPG +23338,3121,2092,17,1,other,DSC_0828.JPG +23339,3340,2101,16,1,other,DSC_0828.JPG +23340,1294,2128,17,1,other,DSC_0828.JPG +23341,1213,2137,17,1,other,DSC_0828.JPG +23342,2551,2191,17,1,other,DSC_0828.JPG +23343,1324,2194,15,1,other,DSC_0828.JPG +23344,3046,2209,17,1,other,DSC_0828.JPG +23345,4840,2221,15,1,other,DSC_0828.JPG +23346,3226,2266,16,1,other,DSC_0828.JPG +23347,3292,2266,17,1,other,DSC_0828.JPG +23348,4261,2332,17,1,other,DSC_0828.JPG +23349,4906,2341,17,1,other,DSC_0828.JPG +23350,1375,2365,17,1,other,DSC_0828.JPG +23351,4228,2389,17,1,other,DSC_0828.JPG +23352,3049,2440,17,1,other,DSC_0828.JPG +23353,1399,16,17,1,other,DSC_0828.JPG +23354,2938,22,17,1,other,DSC_0828.JPG +23355,496,190,17,1,other,DSC_0828.JPG +23356,1597,310,15,1,other,DSC_0828.JPG +23357,1186,370,17,1,other,DSC_0828.JPG +23358,652,430,17,1,other,DSC_0828.JPG +23359,508,433,16,1,other,DSC_0828.JPG +2336,679,2221,15,1,other,DSC_0844.JPG +23360,253,487,17,1,other,DSC_0828.JPG +23361,2575,493,15,1,other,DSC_0828.JPG +23362,1231,544,17,1,other,DSC_0828.JPG +23363,829,607,15,1,other,DSC_0828.JPG +23364,3883,628,15,1,other,DSC_0828.JPG +23365,2611,667,17,1,other,DSC_0828.JPG +23366,3166,736,17,1,other,DSC_0828.JPG +23367,4168,754,17,1,other,DSC_0828.JPG +23368,2683,793,17,1,other,DSC_0828.JPG +23369,652,799,16,1,other,DSC_0828.JPG +23370,4645,838,15,1,other,DSC_0828.JPG +23371,1039,853,17,1,other,DSC_0828.JPG +23372,3082,856,15,1,other,DSC_0828.JPG +23373,2248,910,17,1,other,DSC_0828.JPG +23374,331,958,15,1,other,DSC_0828.JPG +23375,1114,970,17,1,other,DSC_0828.JPG +23376,3151,976,17,1,other,DSC_0828.JPG +23377,1888,1021,17,1,other,DSC_0828.JPG +23378,979,1078,17,1,other,DSC_0828.JPG +23379,3955,1129,17,1,other,DSC_0828.JPG +23380,2947,1207,17,1,other,DSC_0828.JPG +23381,2512,1219,17,1,other,DSC_0828.JPG +23382,3742,1228,17,1,other,DSC_0828.JPG +23383,4165,1228,16,1,other,DSC_0828.JPG +23384,4126,1282,17,1,other,DSC_0828.JPG +23385,4780,1294,17,1,other,DSC_0828.JPG +23386,1060,1312,17,1,other,DSC_0828.JPG +23387,2794,1330,15,1,other,DSC_0828.JPG +23388,4099,1345,17,1,other,DSC_0828.JPG +23389,1153,1378,17,1,other,DSC_0828.JPG +2339,1135,2302,17,1,other,DSC_0844.JPG +23390,3055,1378,17,1,other,DSC_0828.JPG +23391,1564,1429,17,1,other,DSC_0828.JPG +23392,4096,1462,17,1,other,DSC_0828.JPG +23393,1381,1498,16,1,other,DSC_0828.JPG +23394,3559,1519,17,1,other,DSC_0828.JPG +23395,4453,1579,16,1,other,DSC_0828.JPG +23396,2464,1621,15,1,other,DSC_0828.JPG +23397,1063,1663,17,1,other,DSC_0828.JPG +23398,1276,1672,15,1,other,DSC_0828.JPG +23399,3082,1684,17,1,other,DSC_0828.JPG +2340,565,2392,17,1,other,DSC_0844.JPG +23400,4159,1693,17,1,other,DSC_0828.JPG +23401,2977,1744,15,1,other,DSC_0828.JPG +23402,3334,1750,17,1,other,DSC_0828.JPG +23403,4735,1750,17,1,other,DSC_0828.JPG +23404,2650,1801,17,1,other,DSC_0828.JPG +23405,3478,1867,17,1,other,DSC_0828.JPG +23406,4267,1870,17,1,other,DSC_0828.JPG +23407,1792,1900,17,1,other,DSC_0828.JPG +23408,1717,1912,17,1,other,DSC_0828.JPG +23409,4162,1930,16,1,other,DSC_0828.JPG +2341,4450,2413,17,1,other,DSC_0844.JPG +23410,4666,1933,17,1,other,DSC_0828.JPG +23411,1396,1954,17,1,other,DSC_0828.JPG +23412,2119,1960,15,1,other,DSC_0828.JPG +23413,1528,1963,17,1,other,DSC_0828.JPG +23414,4552,1984,15,1,other,DSC_0828.JPG +23415,2224,2020,15,1,other,DSC_0828.JPG +23416,4879,2050,17,1,other,DSC_0828.JPG +23417,2542,2086,15,1,other,DSC_0828.JPG +23418,3019,2137,17,1,other,DSC_0828.JPG +23419,1432,2140,16,1,other,DSC_0828.JPG +2342,790,2464,17,1,other,DSC_0844.JPG +23420,2872,2149,16,1,other,DSC_0828.JPG +23421,3442,2155,17,1,other,DSC_0828.JPG +23422,4732,2164,17,1,other,DSC_0828.JPG +23423,3334,2212,17,1,other,DSC_0828.JPG +23424,4978,2224,17,1,other,DSC_0828.JPG +23425,1072,2236,17,1,other,DSC_0828.JPG +23426,2230,2248,17,1,other,DSC_0828.JPG +23427,148,2251,16,1,other,DSC_0828.JPG +23428,1933,2254,15,1,other,DSC_0828.JPG +23429,4372,2275,17,1,other,DSC_0828.JPG +23430,1402,2305,15,1,other,DSC_0828.JPG +23431,793,2353,15,1,other,DSC_0828.JPG +23432,1078,2356,17,1,other,DSC_0828.JPG +23433,4087,2389,17,1,other,DSC_0828.JPG +23434,5143,2395,17,1,other,DSC_0828.JPG +23435,5233,2407,17,1,other,DSC_0828.JPG +23436,1258,2431,17,1,other,DSC_0828.JPG +23437,2548,2440,17,1,other,DSC_0828.JPG +23438,718,79,16,1,other,DSC_0828.JPG +23439,574,193,17,1,other,DSC_0828.JPG +23440,3952,274,15,1,other,DSC_0828.JPG +23441,358,310,17,1,other,DSC_0828.JPG +23442,781,436,16,1,other,DSC_0828.JPG +23443,724,442,16,1,other,DSC_0828.JPG +23444,4789,466,17,1,other,DSC_0828.JPG +23445,976,481,17,1,other,DSC_0828.JPG +23446,4174,517,17,1,other,DSC_0828.JPG +23447,901,601,17,1,other,DSC_0828.JPG +23448,4612,643,17,1,other,DSC_0828.JPG +23449,1009,664,17,1,other,DSC_0828.JPG +23450,838,760,16,1,other,DSC_0828.JPG +23451,4900,766,17,1,other,DSC_0828.JPG +23452,4252,790,17,1,other,DSC_0828.JPG +23453,2425,853,17,1,other,DSC_0828.JPG +23454,3448,856,16,1,other,DSC_0828.JPG +23455,4174,877,17,1,other,DSC_0828.JPG +23456,1093,916,17,1,other,DSC_0828.JPG +23457,2020,919,15,1,other,DSC_0828.JPG +23458,475,928,15,1,other,DSC_0828.JPG +23459,3301,976,15,1,other,DSC_0828.JPG +23460,2932,982,15,1,other,DSC_0828.JPG +23461,475,991,17,1,other,DSC_0828.JPG +23462,5299,997,15,1,other,DSC_0828.JPG +23463,1384,1021,17,1,other,DSC_0828.JPG +23464,4357,1060,17,1,other,DSC_0828.JPG +23465,2941,1084,17,1,other,DSC_0828.JPG +23466,3415,1147,17,1,other,DSC_0828.JPG +23467,4930,1177,15,1,other,DSC_0828.JPG +23468,4201,1183,17,1,other,DSC_0828.JPG +23469,3955,1225,15,1,other,DSC_0828.JPG +2347,145,1168,15,1,other,DSC_0844.JPG +23470,3811,1228,17,1,other,DSC_0828.JPG +23471,2614,1258,17,1,other,DSC_0828.JPG +23472,4201,1285,17,1,other,DSC_0828.JPG +23473,1207,1312,17,1,other,DSC_0828.JPG +23474,1348,1324,17,1,other,DSC_0828.JPG +23475,3439,1327,17,1,other,DSC_0828.JPG +23476,4027,1345,17,1,other,DSC_0828.JPG +23477,4744,1351,17,1,other,DSC_0828.JPG +23478,2266,1384,17,1,other,DSC_0828.JPG +23479,1390,1408,15,1,other,DSC_0828.JPG +23480,3082,1453,16,1,other,DSC_0828.JPG +23481,3340,1516,17,1,other,DSC_0828.JPG +23482,3628,1519,17,1,other,DSC_0828.JPG +23483,4630,1525,17,1,other,DSC_0828.JPG +23484,3523,1576,16,1,other,DSC_0828.JPG +23485,4378,1579,17,1,other,DSC_0828.JPG +23486,4885,1585,16,1,other,DSC_0828.JPG +23487,1819,1618,15,1,other,DSC_0828.JPG +23488,4339,1636,17,1,other,DSC_0828.JPG +23489,2002,1675,17,1,other,DSC_0828.JPG +23490,1423,1678,17,1,other,DSC_0828.JPG +23491,2719,1681,17,1,other,DSC_0828.JPG +23492,2260,1726,17,1,other,DSC_0828.JPG +23493,3838,1750,17,1,other,DSC_0828.JPG +23494,2521,1792,17,1,other,DSC_0828.JPG +23495,2728,1801,15,1,other,DSC_0828.JPG +23496,3727,1807,17,1,other,DSC_0828.JPG +23497,4885,1819,15,1,other,DSC_0828.JPG +23498,1621,1849,17,1,other,DSC_0828.JPG +23499,2656,1918,15,1,other,DSC_0828.JPG +2350,5302,1861,15,1,other,DSC_0844.JPG +23500,4018,1927,17,1,other,DSC_0828.JPG +23501,1258,1969,15,1,other,DSC_0828.JPG +23502,2689,1978,17,1,other,DSC_0828.JPG +23503,3907,1984,17,1,other,DSC_0828.JPG +23504,1141,2026,16,1,other,DSC_0828.JPG +23505,2941,2032,17,1,other,DSC_0828.JPG +23506,3415,2086,16,1,other,DSC_0828.JPG +23507,4483,2104,17,1,other,DSC_0828.JPG +23508,2224,2134,15,1,other,DSC_0828.JPG +23509,1357,2140,17,1,other,DSC_0828.JPG +23510,3157,2152,17,1,other,DSC_0828.JPG +23511,4882,2167,17,1,other,DSC_0828.JPG +23512,2971,2203,16,1,other,DSC_0828.JPG +23513,3622,2212,15,1,other,DSC_0828.JPG +23514,3802,2275,17,1,other,DSC_0828.JPG +23515,4948,2281,15,1,other,DSC_0828.JPG +23516,5233,2287,17,1,other,DSC_0828.JPG +23517,538,2299,17,1,other,DSC_0828.JPG +23518,1000,2356,15,1,other,DSC_0828.JPG +23519,934,2359,15,1,other,DSC_0828.JPG +23520,1447,2371,17,1,other,DSC_0828.JPG +23521,439,2374,17,1,other,DSC_0828.JPG +23522,4654,2395,17,1,other,DSC_0828.JPG +23523,532,19,15,1,other,DSC_0828.JPG +23524,2209,19,15,1,other,DSC_0828.JPG +23525,274,85,17,1,other,DSC_0828.JPG +23526,4489,193,17,1,other,DSC_0828.JPG +23527,3775,211,17,1,other,DSC_0828.JPG +23528,322,256,16,1,other,DSC_0828.JPG +23529,19,259,17,1,other,DSC_0828.JPG +23530,4471,277,15,1,other,DSC_0828.JPG +23531,4390,322,17,1,other,DSC_0828.JPG +23532,3742,382,17,1,other,DSC_0828.JPG +23533,1531,436,17,1,other,DSC_0828.JPG +23534,4642,463,17,1,other,DSC_0828.JPG +23535,829,481,15,1,other,DSC_0828.JPG +23536,2941,487,15,1,other,DSC_0828.JPG +23537,3514,508,15,1,other,DSC_0828.JPG +23538,643,553,17,1,other,DSC_0828.JPG +23539,403,607,17,1,other,DSC_0828.JPG +23540,3589,628,15,1,other,DSC_0828.JPG +23541,367,667,16,1,other,DSC_0828.JPG +23542,1438,673,17,1,other,DSC_0828.JPG +23543,3487,673,17,1,other,DSC_0828.JPG +23544,4534,742,17,1,other,DSC_0828.JPG +23545,3730,745,17,1,other,DSC_0828.JPG +23546,940,784,15,1,other,DSC_0828.JPG +23547,1012,796,17,1,other,DSC_0828.JPG +23548,619,859,17,1,other,DSC_0828.JPG +23549,277,907,15,1,other,DSC_0828.JPG +23550,3661,991,16,1,other,DSC_0828.JPG +23551,3700,1030,15,1,other,DSC_0828.JPG +23552,3667,1108,17,1,other,DSC_0828.JPG +23553,487,1114,17,1,other,DSC_0828.JPG +23554,4105,1117,17,1,other,DSC_0828.JPG +23555,1303,1135,17,1,other,DSC_0828.JPG +23556,3109,1153,17,1,other,DSC_0828.JPG +23557,4426,1171,15,1,other,DSC_0828.JPG +23558,1558,1198,17,1,other,DSC_0828.JPG +23559,262,1228,16,1,other,DSC_0828.JPG +23560,868,1264,17,1,other,DSC_0828.JPG +23561,3628,1285,17,1,other,DSC_0828.JPG +23562,3769,1285,17,1,other,DSC_0828.JPG +23563,4996,1297,16,1,other,DSC_0828.JPG +23564,3361,1327,17,1,other,DSC_0828.JPG +23565,4237,1345,17,1,other,DSC_0828.JPG +23566,3559,1387,17,1,other,DSC_0828.JPG +23567,3631,1402,17,1,other,DSC_0828.JPG +23568,1483,1438,17,1,other,DSC_0828.JPG +23569,481,1444,17,1,other,DSC_0828.JPG +23570,1717,1444,15,1,other,DSC_0828.JPG +23571,2068,1444,17,1,other,DSC_0828.JPG +23572,3589,1459,17,1,other,DSC_0828.JPG +23573,4675,1468,15,1,other,DSC_0828.JPG +23574,2902,1507,17,1,other,DSC_0828.JPG +23575,3268,1513,15,1,other,DSC_0828.JPG +23576,706,1549,17,1,other,DSC_0828.JPG +23577,1285,1549,17,1,other,DSC_0828.JPG +23578,3088,1558,17,1,other,DSC_0828.JPG +23579,2002,1561,15,1,other,DSC_0828.JPG +23580,3226,1570,17,1,other,DSC_0828.JPG +23581,1531,1603,17,1,other,DSC_0828.JPG +23582,2545,1627,17,1,other,DSC_0828.JPG +23583,1351,1666,15,1,other,DSC_0828.JPG +23584,2149,1669,17,1,other,DSC_0828.JPG +23585,5041,1681,17,1,other,DSC_0828.JPG +23586,280,1705,17,1,other,DSC_0828.JPG +23587,1894,1726,17,1,other,DSC_0828.JPG +23588,1300,1729,15,1,other,DSC_0828.JPG +23589,3760,1744,16,1,other,DSC_0828.JPG +2359,157,1876,17,1,other,DSC_0844.JPG +23590,3550,1750,17,1,other,DSC_0828.JPG +23591,4333,1756,17,1,other,DSC_0828.JPG +23592,1363,1786,17,1,other,DSC_0828.JPG +23593,1279,1789,15,1,other,DSC_0828.JPG +23594,4240,1813,15,1,other,DSC_0828.JPG +23595,4522,1816,17,1,other,DSC_0828.JPG +23596,4810,1816,15,1,other,DSC_0828.JPG +23597,5167,1819,16,1,other,DSC_0828.JPG +23598,1465,1840,17,1,other,DSC_0828.JPG +23599,2140,1903,15,1,other,DSC_0828.JPG +2360,1138,1954,17,1,other,DSC_0844.JPG +23600,784,1930,16,1,other,DSC_0828.JPG +23601,4597,1936,16,1,other,DSC_0828.JPG +23602,2179,1969,17,1,other,DSC_0828.JPG +23603,2968,1975,15,1,other,DSC_0828.JPG +23604,3556,1984,15,1,other,DSC_0828.JPG +23605,4408,1987,16,1,other,DSC_0828.JPG +23606,4486,1990,17,1,other,DSC_0828.JPG +23607,4840,1993,16,1,other,DSC_0828.JPG +23608,2668,2029,15,1,other,DSC_0828.JPG +23609,4945,2047,17,1,other,DSC_0828.JPG +23610,5095,2053,17,1,other,DSC_0828.JPG +23611,3043,2080,17,1,other,DSC_0828.JPG +23612,1606,2083,16,1,other,DSC_0828.JPG +23613,3838,2098,16,1,other,DSC_0828.JPG +23614,3979,2098,17,1,other,DSC_0828.JPG +23615,4123,2098,17,1,other,DSC_0828.JPG +23616,4195,2098,16,1,other,DSC_0828.JPG +23617,3916,2104,17,1,other,DSC_0828.JPG +23618,5194,2110,17,1,other,DSC_0828.JPG +23619,5275,2116,17,1,other,DSC_0828.JPG +23620,1645,2128,17,1,other,DSC_0828.JPG +23621,4801,2161,15,1,other,DSC_0828.JPG +23622,106,2194,17,1,other,DSC_0828.JPG +23623,4870,2281,17,1,other,DSC_0828.JPG +23624,1111,2299,16,1,other,DSC_0828.JPG +23625,5296,2329,17,1,other,DSC_0828.JPG +23626,4405,2350,17,1,other,DSC_0828.JPG +23627,724,2374,17,1,other,DSC_0828.JPG +23628,2866,2380,17,1,other,DSC_0828.JPG +23629,4369,2410,15,1,other,DSC_0828.JPG +2363,5173,2353,16,1,other,DSC_0844.JPG +23630,2467,2425,17,1,other,DSC_0828.JPG +23631,1900,2431,17,1,other,DSC_0828.JPG +23632,5011,106,17,1,other,DSC_0828.JPG +23633,4765,172,16,1,other,DSC_0828.JPG +23634,4702,181,17,1,other,DSC_0828.JPG +23635,5206,193,16,1,other,DSC_0828.JPG +23636,4504,331,17,1,other,DSC_0828.JPG +23637,4936,340,17,1,other,DSC_0828.JPG +23638,4534,400,15,1,other,DSC_0828.JPG +23639,4468,403,15,1,other,DSC_0828.JPG +2364,3259,2422,16,1,other,DSC_0844.JPG +23640,4942,469,16,1,other,DSC_0828.JPG +23641,898,484,17,1,other,DSC_0828.JPG +23642,721,544,15,1,other,DSC_0828.JPG +23643,4900,631,16,1,other,DSC_0828.JPG +23644,4936,706,17,1,other,DSC_0828.JPG +23645,694,727,16,1,other,DSC_0828.JPG +23646,1840,736,17,1,other,DSC_0828.JPG +23647,3526,739,17,1,other,DSC_0828.JPG +23648,3412,790,15,1,other,DSC_0828.JPG +23649,2833,925,17,1,other,DSC_0828.JPG +23650,3775,928,15,1,other,DSC_0828.JPG +23651,3490,1051,17,1,other,DSC_0828.JPG +23652,769,1081,16,1,other,DSC_0828.JPG +23653,841,1081,17,1,other,DSC_0828.JPG +23654,3454,1108,16,1,other,DSC_0828.JPG +23655,1162,1135,17,1,other,DSC_0828.JPG +23656,3490,1153,17,1,other,DSC_0828.JPG +23657,550,1192,16,1,other,DSC_0828.JPG +23658,1273,1195,17,1,other,DSC_0828.JPG +23659,1348,1210,17,1,other,DSC_0828.JPG +23660,4891,1240,16,1,other,DSC_0828.JPG +23661,658,1255,15,1,other,DSC_0828.JPG +23662,1972,1273,15,1,other,DSC_0828.JPG +23663,1417,1321,15,1,other,DSC_0828.JPG +23664,835,1327,16,1,other,DSC_0828.JPG +23665,3157,1333,16,1,other,DSC_0828.JPG +23666,1093,1369,17,1,other,DSC_0828.JPG +23667,3853,1405,17,1,other,DSC_0828.JPG +23668,4810,1468,17,1,other,DSC_0828.JPG +23669,1597,1501,16,1,other,DSC_0828.JPG +23670,4087,1573,17,1,other,DSC_0828.JPG +23671,958,1606,17,1,other,DSC_0828.JPG +23672,1450,1615,17,1,other,DSC_0828.JPG +23673,3403,1627,16,1,other,DSC_0828.JPG +23674,3838,1633,17,1,other,DSC_0828.JPG +23675,283,1639,17,1,other,DSC_0828.JPG +23676,4567,1645,17,1,other,DSC_0828.JPG +23677,790,1651,17,1,other,DSC_0828.JPG +23678,3265,1750,17,1,other,DSC_0828.JPG +23679,4042,1750,16,1,other,DSC_0828.JPG +2368,5254,1021,16,1,other,DSC_0844.JPG +23680,4309,1816,17,1,other,DSC_0828.JPG +23681,3979,1867,17,1,other,DSC_0828.JPG +23682,3157,1906,15,1,other,DSC_0828.JPG +23683,3301,1921,15,1,other,DSC_0828.JPG +23684,4309,1927,15,1,other,DSC_0828.JPG +23685,3670,1930,17,1,other,DSC_0828.JPG +23686,1183,1969,17,1,other,DSC_0828.JPG +23687,5200,1996,17,1,other,DSC_0828.JPG +23688,4294,2038,17,1,other,DSC_0828.JPG +23689,3877,2041,16,1,other,DSC_0828.JPG +23690,4768,2107,17,1,other,DSC_0828.JPG +23691,1141,2137,17,1,other,DSC_0828.JPG +23692,2005,2140,15,1,other,DSC_0828.JPG +23693,3304,2143,15,1,other,DSC_0828.JPG +23694,3868,2155,17,1,other,DSC_0828.JPG +23695,4156,2155,16,1,other,DSC_0828.JPG +23696,820,2197,17,1,other,DSC_0828.JPG +23697,3265,2215,16,1,other,DSC_0828.JPG +23698,4693,2221,17,1,other,DSC_0828.JPG +23699,4630,2224,17,1,other,DSC_0828.JPG +2370,121,1813,15,1,other,DSC_0844.JPG +23700,4015,2272,16,1,other,DSC_0828.JPG +23701,1258,2302,15,1,other,DSC_0828.JPG +23702,322,2308,15,1,other,DSC_0828.JPG +23703,3046,2320,15,1,other,DSC_0828.JPG +23704,3688,2329,16,1,other,DSC_0828.JPG +23705,3868,2386,17,1,other,DSC_0828.JPG +23706,4582,2410,15,1,other,DSC_0828.JPG +23707,4426,103,17,1,other,DSC_0828.JPG +23708,91,133,16,1,other,DSC_0828.JPG +23709,4909,175,17,1,other,DSC_0828.JPG +2371,1714,1864,15,1,other,DSC_0844.JPG +23710,388,364,17,1,other,DSC_0828.JPG +23711,247,367,17,1,other,DSC_0828.JPG +23712,427,427,15,1,other,DSC_0828.JPG +23713,685,484,17,1,other,DSC_0828.JPG +23714,763,490,16,1,other,DSC_0828.JPG +23715,4609,523,17,1,other,DSC_0828.JPG +23716,4252,556,15,1,other,DSC_0828.JPG +23717,4564,577,17,1,other,DSC_0828.JPG +23718,322,601,17,1,other,DSC_0828.JPG +23719,532,607,17,1,other,DSC_0828.JPG +23720,3445,619,17,1,other,DSC_0828.JPG +23721,586,667,17,1,other,DSC_0828.JPG +23722,4681,679,17,1,other,DSC_0828.JPG +23723,1114,727,17,1,other,DSC_0828.JPG +23724,4603,763,16,1,other,DSC_0828.JPG +23725,3823,778,15,1,other,DSC_0828.JPG +23726,2905,793,15,1,other,DSC_0828.JPG +23727,4378,871,17,1,other,DSC_0828.JPG +23728,1375,907,17,1,other,DSC_0828.JPG +23729,1012,916,17,1,other,DSC_0828.JPG +23730,3550,928,15,1,other,DSC_0828.JPG +23731,4891,1120,17,1,other,DSC_0828.JPG +23732,874,1135,17,1,other,DSC_0828.JPG +23733,2101,1147,17,1,other,DSC_0828.JPG +23734,1381,1267,16,1,other,DSC_0828.JPG +23735,922,1318,16,1,other,DSC_0828.JPG +23736,3523,1342,17,1,other,DSC_0828.JPG +23737,2767,1378,17,1,other,DSC_0828.JPG +23738,3340,1399,17,1,other,DSC_0828.JPG +23739,4204,1402,17,1,other,DSC_0828.JPG +2374,1123,31,15,1,other,DSC_0844.JPG +23740,1339,1438,17,1,other,DSC_0828.JPG +23741,3019,1441,16,1,other,DSC_0828.JPG +23742,3448,1456,15,1,other,DSC_0828.JPG +23743,2107,1507,17,1,other,DSC_0828.JPG +23744,2761,1507,15,1,other,DSC_0828.JPG +23745,1069,1579,15,1,other,DSC_0828.JPG +23746,4594,1582,17,1,other,DSC_0828.JPG +23747,4783,1645,16,1,other,DSC_0828.JPG +23748,919,1648,17,1,other,DSC_0828.JPG +23749,994,1663,17,1,other,DSC_0828.JPG +2375,1984,37,15,1,other,DSC_0844.JPG +23750,3295,1684,15,1,other,DSC_0828.JPG +23751,4087,1708,15,1,other,DSC_0828.JPG +23752,583,1732,17,1,other,DSC_0828.JPG +23753,3397,1744,17,1,other,DSC_0828.JPG +23754,4477,1744,15,1,other,DSC_0828.JPG +23755,3769,1867,16,1,other,DSC_0828.JPG +23756,4342,1870,17,1,other,DSC_0828.JPG +23757,3844,1873,16,1,other,DSC_0828.JPG +23758,4411,1873,17,1,other,DSC_0828.JPG +23759,4843,1876,17,1,other,DSC_0828.JPG +23760,3379,1912,17,1,other,DSC_0828.JPG +23761,4726,1927,17,1,other,DSC_0828.JPG +23762,4948,1933,17,1,other,DSC_0828.JPG +23763,3490,1987,17,1,other,DSC_0828.JPG +23764,4018,2041,17,1,other,DSC_0828.JPG +23765,4732,2047,17,1,other,DSC_0828.JPG +23766,955,2077,17,1,other,DSC_0828.JPG +23767,1411,2077,17,1,other,DSC_0828.JPG +23768,538,2101,15,1,other,DSC_0828.JPG +23769,1123,2191,15,1,other,DSC_0828.JPG +23770,1603,2194,17,1,other,DSC_0828.JPG +23771,4477,2218,17,1,other,DSC_0828.JPG +23772,877,2251,17,1,other,DSC_0828.JPG +23773,1360,2251,15,1,other,DSC_0828.JPG +23774,2071,2254,15,1,other,DSC_0828.JPG +23775,2794,2266,17,1,other,DSC_0828.JPG +23776,4441,2272,15,1,other,DSC_0828.JPG +23777,5017,2281,15,1,other,DSC_0828.JPG +23778,1780,2365,15,1,other,DSC_0828.JPG +23779,2806,2371,17,1,other,DSC_0828.JPG +23780,1108,2425,15,1,other,DSC_0828.JPG +23781,2902,2437,17,1,other,DSC_0828.JPG +23782,88,10,17,1,other,DSC_0828.JPG +23783,1627,19,15,1,other,DSC_0828.JPG +23784,4837,160,17,1,other,DSC_0828.JPG +23785,145,547,17,1,other,DSC_0828.JPG +23786,1165,547,17,1,other,DSC_0828.JPG +23787,4717,583,17,1,other,DSC_0828.JPG +23788,2776,922,17,1,other,DSC_0828.JPG +23789,4864,943,16,1,other,DSC_0828.JPG +2379,4888,2053,17,1,other,DSC_0844.JPG +23790,2656,976,15,1,other,DSC_0828.JPG +23791,3742,982,15,1,other,DSC_0828.JPG +23792,4021,994,15,1,other,DSC_0828.JPG +23793,520,1027,16,1,other,DSC_0828.JPG +23794,3295,1219,17,1,other,DSC_0828.JPG +23795,4312,1228,17,1,other,DSC_0828.JPG +23796,337,1231,15,1,other,DSC_0828.JPG +23797,4597,1231,17,1,other,DSC_0828.JPG +23798,1024,1255,17,1,other,DSC_0828.JPG +23799,1315,1258,15,1,other,DSC_0828.JPG +2380,2911,2413,17,1,other,DSC_0844.JPG +23800,2968,1267,17,1,other,DSC_0828.JPG +23801,3421,1273,17,1,other,DSC_0828.JPG +23802,2869,1333,17,1,other,DSC_0828.JPG +23803,3868,1342,15,1,other,DSC_0828.JPG +23804,4960,1354,17,1,other,DSC_0828.JPG +23805,3193,1396,17,1,other,DSC_0828.JPG +23806,4348,1405,17,1,other,DSC_0828.JPG +23807,4492,1408,17,1,other,DSC_0828.JPG +23808,4924,1408,15,1,other,DSC_0828.JPG +23809,4852,1411,17,1,other,DSC_0828.JPG +2381,175,103,17,1,other,DSC_0844.JPG +23810,3880,1462,17,1,other,DSC_0828.JPG +23811,1321,1495,15,1,other,DSC_0828.JPG +23812,3052,1501,15,1,other,DSC_0828.JPG +23813,4564,1525,17,1,other,DSC_0828.JPG +23814,616,1555,17,1,other,DSC_0828.JPG +23815,1933,1564,16,1,other,DSC_0828.JPG +23816,1141,1567,15,1,other,DSC_0828.JPG +23817,2830,1624,17,1,other,DSC_0828.JPG +23818,2947,1675,17,1,other,DSC_0828.JPG +23819,3025,1681,15,1,other,DSC_0828.JPG +2382,253,109,16,1,other,DSC_0844.JPG +23820,5302,1681,15,1,other,DSC_0828.JPG +23821,3229,1687,17,1,other,DSC_0828.JPG +23822,3871,1690,15,1,other,DSC_0828.JPG +23823,4819,1693,15,1,other,DSC_0828.JPG +23824,2482,1732,17,1,other,DSC_0828.JPG +23825,4258,1747,17,1,other,DSC_0828.JPG +23826,3478,1750,17,1,other,DSC_0828.JPG +23827,1435,1786,17,1,other,DSC_0828.JPG +23828,3295,1804,17,1,other,DSC_0828.JPG +23829,4738,1816,16,1,other,DSC_0828.JPG +2383,5176,1027,17,1,other,DSC_0844.JPG +23830,4372,1924,17,1,other,DSC_0828.JPG +23831,2536,1960,17,1,other,DSC_0828.JPG +23832,4201,1987,17,1,other,DSC_0828.JPG +23833,4342,1987,17,1,other,DSC_0828.JPG +23834,4549,2101,17,1,other,DSC_0828.JPG +23835,4624,2107,15,1,other,DSC_0828.JPG +23836,211,2155,15,1,other,DSC_0828.JPG +23837,3589,2158,17,1,other,DSC_0828.JPG +23838,970,2185,17,1,other,DSC_0828.JPG +23839,3757,2197,15,1,other,DSC_0828.JPG +2384,109,1222,17,1,other,DSC_0844.JPG +23840,1432,2254,16,1,other,DSC_0828.JPG +23841,2725,2263,15,1,other,DSC_0828.JPG +23842,826,2299,17,1,other,DSC_0828.JPG +23843,2980,2311,17,1,other,DSC_0828.JPG +23844,580,2392,16,1,other,DSC_0828.JPG +23845,4444,2392,15,1,other,DSC_0828.JPG +23846,2263,2416,15,1,other,DSC_0828.JPG +23847,184,2425,17,1,other,DSC_0828.JPG +23848,3337,2443,16,1,other,DSC_0828.JPG +23849,160,10,17,1,other,DSC_0828.JPG +2385,40,1330,17,1,other,DSC_0844.JPG +23850,4831,292,17,1,other,DSC_0828.JPG +23851,730,316,17,1,other,DSC_0828.JPG +23852,520,379,17,1,other,DSC_0828.JPG +23853,463,382,17,1,other,DSC_0828.JPG +23854,5011,469,17,1,other,DSC_0828.JPG +23855,172,481,17,1,other,DSC_0828.JPG +23856,4396,520,16,1,other,DSC_0828.JPG +23857,211,544,15,1,other,DSC_0828.JPG +23858,685,601,17,1,other,DSC_0828.JPG +23859,475,643,16,1,other,DSC_0828.JPG +2386,109,1336,17,1,other,DSC_0844.JPG +23860,715,667,17,1,other,DSC_0828.JPG +23861,4798,694,16,1,other,DSC_0828.JPG +23862,4117,781,17,1,other,DSC_0828.JPG +23863,2833,787,17,1,other,DSC_0828.JPG +23864,3655,790,15,1,other,DSC_0828.JPG +23865,391,844,17,1,other,DSC_0828.JPG +23866,835,844,16,1,other,DSC_0828.JPG +23867,307,847,17,1,other,DSC_0828.JPG +23868,685,853,15,1,other,DSC_0828.JPG +23869,4528,880,17,1,other,DSC_0828.JPG +23870,4606,883,17,1,other,DSC_0828.JPG +23871,3235,988,16,1,other,DSC_0828.JPG +23872,1324,1027,15,1,other,DSC_0828.JPG +23873,4576,1063,17,1,other,DSC_0828.JPG +23874,946,1135,17,1,other,DSC_0828.JPG +23875,1099,1138,17,1,other,DSC_0828.JPG +23876,4390,1234,17,1,other,DSC_0828.JPG +23877,4459,1234,17,1,other,DSC_0828.JPG +23878,4672,1234,17,1,other,DSC_0828.JPG +23879,3991,1288,17,1,other,DSC_0828.JPG +2388,4063,2236,15,1,other,DSC_0844.JPG +23880,883,1372,17,1,other,DSC_0828.JPG +23881,1249,1372,17,1,other,DSC_0828.JPG +23882,2824,1387,15,1,other,DSC_0828.JPG +23883,4126,1399,17,1,other,DSC_0828.JPG +23884,568,1438,16,1,other,DSC_0828.JPG +23885,3370,1450,15,1,other,DSC_0828.JPG +23886,961,1492,17,1,other,DSC_0828.JPG +23887,772,1546,17,1,other,DSC_0828.JPG +23888,904,1555,15,1,other,DSC_0828.JPG +23889,1567,1561,17,1,other,DSC_0828.JPG +2389,157,2293,17,1,other,DSC_0844.JPG +23890,3154,1567,16,1,other,DSC_0828.JPG +23891,4738,1585,17,1,other,DSC_0828.JPG +23892,2611,1615,17,1,other,DSC_0828.JPG +23893,2761,1615,15,1,other,DSC_0828.JPG +23894,3778,1639,17,1,other,DSC_0828.JPG +23895,718,1651,15,1,other,DSC_0828.JPG +23896,2866,1675,17,1,other,DSC_0828.JPG +23897,3946,1690,15,1,other,DSC_0828.JPG +23898,5302,1747,15,1,other,DSC_0828.JPG +23899,1999,1795,17,1,other,DSC_0828.JPG +239,5116,1567,15,1,other,DSC_0844.JPG +2390,205,2362,16,1,other,DSC_0844.JPG +23900,3226,1807,16,1,other,DSC_0828.JPG +23901,5092,1816,16,1,other,DSC_0828.JPG +23902,5029,1822,17,1,other,DSC_0828.JPG +23903,2614,1858,17,1,other,DSC_0828.JPG +23904,3193,1864,17,1,other,DSC_0828.JPG +23905,3343,1867,16,1,other,DSC_0828.JPG +23906,1849,1900,17,1,other,DSC_0828.JPG +23907,2494,1909,17,1,other,DSC_0828.JPG +23908,5089,1933,17,1,other,DSC_0828.JPG +23909,2830,1972,15,1,other,DSC_0828.JPG +2391,4168,2428,15,1,other,DSC_0844.JPG +23910,4912,1993,17,1,other,DSC_0828.JPG +23911,5125,1993,16,1,other,DSC_0828.JPG +23912,4981,2110,16,1,other,DSC_0828.JPG +23913,1072,2140,17,1,other,DSC_0828.JPG +23914,3226,2155,17,1,other,DSC_0828.JPG +23915,4453,2164,17,1,other,DSC_0828.JPG +23916,2683,2206,17,1,other,DSC_0828.JPG +23917,2905,2206,17,1,other,DSC_0828.JPG +23918,253,2215,17,1,other,DSC_0828.JPG +23919,3838,2215,17,1,other,DSC_0828.JPG +23920,4198,2218,17,1,other,DSC_0828.JPG +23921,4231,2272,15,1,other,DSC_0828.JPG +23922,370,2374,17,1,other,DSC_0828.JPG +23923,3727,2386,17,1,other,DSC_0828.JPG +23924,502,2389,15,1,other,DSC_0828.JPG +23925,967,2425,15,1,other,DSC_0828.JPG +23926,5275,43,16,1,other,DSC_0828.JPG +23927,121,67,17,1,other,DSC_0828.JPG +23928,4975,169,15,1,other,DSC_0828.JPG +23929,391,265,16,1,other,DSC_0828.JPG +23930,139,310,17,1,other,DSC_0828.JPG +23931,4075,328,17,1,other,DSC_0828.JPG +23932,4252,403,17,1,other,DSC_0828.JPG +23933,430,556,17,1,other,DSC_0828.JPG +23934,4366,601,17,1,other,DSC_0828.JPG +23935,4261,661,17,1,other,DSC_0828.JPG +23936,4135,694,17,1,other,DSC_0828.JPG +23937,4495,694,15,1,other,DSC_0828.JPG +23938,262,724,18,1,other,DSC_0828.JPG +23939,4432,733,17,1,other,DSC_0828.JPG +2394,5125,529,17,1,other,DSC_0844.JPG +23940,769,757,15,1,other,DSC_0828.JPG +23941,505,778,17,1,other,DSC_0828.JPG +23942,367,901,17,1,other,DSC_0828.JPG +23943,4564,943,17,1,other,DSC_0828.JPG +23944,4960,1006,15,1,other,DSC_0828.JPG +23945,871,1033,17,1,other,DSC_0828.JPG +23946,3049,1042,17,1,other,DSC_0828.JPG +23947,3340,1045,18,1,other,DSC_0828.JPG +23948,4060,1051,17,1,other,DSC_0828.JPG +23949,304,1054,16,1,other,DSC_0828.JPG +2395,259,1003,17,1,other,DSC_0844.JPG +23950,4426,1057,17,1,other,DSC_0828.JPG +23951,406,1078,17,1,other,DSC_0828.JPG +23952,910,1078,17,1,other,DSC_0828.JPG +23953,682,1087,17,1,other,DSC_0828.JPG +23954,4669,1117,17,1,other,DSC_0828.JPG +23955,1246,1141,17,1,other,DSC_0828.JPG +23956,214,1147,17,1,other,DSC_0828.JPG +23957,3085,1216,16,1,other,DSC_0828.JPG +23958,3364,1219,17,1,other,DSC_0828.JPG +23959,4018,1222,17,1,other,DSC_0828.JPG +23960,4093,1225,17,1,other,DSC_0828.JPG +23961,724,1264,17,1,other,DSC_0828.JPG +23962,514,1267,17,1,other,DSC_0828.JPG +23963,3556,1282,16,1,other,DSC_0828.JPG +23964,3835,1285,15,1,other,DSC_0828.JPG +23965,1531,1369,17,1,other,DSC_0828.JPG +23966,2689,1381,15,1,other,DSC_0828.JPG +23967,4267,1405,17,1,other,DSC_0828.JPG +23968,664,1408,15,1,other,DSC_0828.JPG +23969,4774,1408,17,1,other,DSC_0828.JPG +2397,4906,2449,15,1,other,DSC_0844.JPG +23970,991,1429,17,1,other,DSC_0828.JPG +23971,1213,1444,15,1,other,DSC_0828.JPG +23972,4381,1462,17,1,other,DSC_0828.JPG +23973,4957,1468,16,1,other,DSC_0828.JPG +23974,739,1489,17,1,other,DSC_0828.JPG +23975,1174,1501,15,1,other,DSC_0828.JPG +23976,3838,1516,17,1,other,DSC_0828.JPG +23977,1417,1561,16,1,other,DSC_0828.JPG +23978,4813,1585,16,1,other,DSC_0828.JPG +23979,853,1591,15,1,other,DSC_0828.JPG +2398,3601,55,17,1,other,DSC_0844.JPG +23980,1252,1609,17,1,other,DSC_0828.JPG +23981,532,1651,15,1,other,DSC_0828.JPG +23982,511,1732,17,1,other,DSC_0828.JPG +23983,2911,1735,17,1,other,DSC_0828.JPG +23984,4189,1744,16,1,other,DSC_0828.JPG +23985,1390,1834,15,1,other,DSC_0828.JPG +23986,1828,1843,17,1,other,DSC_0828.JPG +23987,4126,1867,15,1,other,DSC_0828.JPG +23988,4522,1933,17,1,other,DSC_0828.JPG +23989,964,1951,17,1,other,DSC_0828.JPG +2399,76,799,17,1,other,DSC_0844.JPG +23990,4120,1984,16,1,other,DSC_0828.JPG +23991,3226,2035,16,1,other,DSC_0828.JPG +23992,3652,2038,17,1,other,DSC_0828.JPG +23993,4381,2044,16,1,other,DSC_0828.JPG +23994,4414,2101,15,1,other,DSC_0828.JPG +23995,679,2197,17,1,other,DSC_0828.JPG +23996,4549,2215,15,1,other,DSC_0828.JPG +23997,4909,2221,15,1,other,DSC_0828.JPG +23998,934,2239,16,1,other,DSC_0828.JPG +23999,3442,2272,17,1,other,DSC_0828.JPG +2400,5260,898,17,1,other,DSC_0844.JPG +24000,5161,2290,17,1,other,DSC_0828.JPG +24001,4480,2332,15,1,other,DSC_0828.JPG +24002,1135,2365,17,1,other,DSC_0828.JPG +24003,3517,2389,17,1,other,DSC_0828.JPG +24004,4870,2401,17,1,other,DSC_0828.JPG +24005,826,2428,16,1,other,DSC_0828.JPG +24006,3190,2440,17,1,other,DSC_0828.JPG +24007,394,19,17,1,other,DSC_0828.JPG +24008,274,205,17,1,other,DSC_0828.JPG +24009,4939,223,16,1,other,DSC_0828.JPG +24010,322,370,17,1,other,DSC_0828.JPG +24011,688,373,16,1,other,DSC_0828.JPG +24012,289,430,17,1,other,DSC_0828.JPG +24013,4138,439,17,1,other,DSC_0828.JPG +24014,4057,574,17,1,other,DSC_0828.JPG +24015,3985,691,16,1,other,DSC_0828.JPG +24016,907,721,17,1,other,DSC_0828.JPG +24017,334,727,17,1,other,DSC_0828.JPG +24018,439,814,16,1,other,DSC_0828.JPG +24019,532,850,17,1,other,DSC_0828.JPG +2402,2845,2413,15,1,other,DSC_0844.JPG +24020,4243,877,17,1,other,DSC_0828.JPG +24021,712,1024,16,1,other,DSC_0828.JPG +24022,4495,1054,16,1,other,DSC_0828.JPG +24023,4783,1060,17,1,other,DSC_0828.JPG +24024,1057,1093,17,1,other,DSC_0828.JPG +24025,3802,1120,15,1,other,DSC_0828.JPG +24026,3844,1168,17,1,other,DSC_0828.JPG +24027,4066,1171,17,1,other,DSC_0828.JPG +24028,4858,1180,17,1,other,DSC_0828.JPG +24029,4963,1237,17,1,other,DSC_0828.JPG +2403,2737,2455,17,1,other,DSC_0844.JPG +24030,769,1312,17,1,other,DSC_0828.JPG +24031,3664,1342,17,1,other,DSC_0828.JPG +24032,3946,1342,17,1,other,DSC_0828.JPG +24033,844,1426,16,1,other,DSC_0828.JPG +24034,4450,1465,16,1,other,DSC_0828.JPG +24035,1243,1501,17,1,other,DSC_0828.JPG +24036,4126,1636,17,1,other,DSC_0828.JPG +24037,4630,1642,17,1,other,DSC_0828.JPG +24038,4702,1642,17,1,other,DSC_0828.JPG +24039,1861,1669,15,1,other,DSC_0828.JPG +2404,328,112,17,1,other,DSC_0844.JPG +24040,4525,1693,15,1,other,DSC_0828.JPG +24041,4405,1747,17,1,other,DSC_0828.JPG +24042,706,1795,17,1,other,DSC_0828.JPG +24043,1162,1849,17,1,other,DSC_0828.JPG +24044,1060,1903,15,1,other,DSC_0828.JPG +24045,4765,1993,15,1,other,DSC_0828.JPG +24046,4663,2047,17,1,other,DSC_0828.JPG +24047,2587,2149,15,1,other,DSC_0828.JPG +24048,3796,2155,17,1,other,DSC_0828.JPG +24049,1267,2191,17,1,other,DSC_0828.JPG +24050,748,2194,15,1,other,DSC_0828.JPG +24051,574,2257,17,1,other,DSC_0828.JPG +24052,790,2257,17,1,other,DSC_0828.JPG +24053,3079,2380,17,1,other,DSC_0828.JPG +24054,4519,2395,17,1,other,DSC_0828.JPG +24055,1186,2428,16,1,other,DSC_0828.JPG +24056,1684,2428,15,1,other,DSC_0828.JPG +24057,3268,2443,16,1,other,DSC_0828.JPG +24058,115,196,17,1,other,DSC_0828.JPG +24059,199,202,17,1,other,DSC_0828.JPG +24060,3643,214,16,1,other,DSC_0828.JPG +24061,4747,406,17,1,other,DSC_0828.JPG +24062,136,421,15,1,other,DSC_0828.JPG +24063,571,427,16,1,other,DSC_0828.JPG +24064,364,430,17,1,other,DSC_0828.JPG +24065,616,487,16,1,other,DSC_0828.JPG +24066,4750,520,16,1,other,DSC_0828.JPG +24067,256,607,17,1,other,DSC_0828.JPG +24068,4282,715,17,1,other,DSC_0828.JPG +24069,289,778,17,1,other,DSC_0828.JPG +24070,4468,778,15,1,other,DSC_0828.JPG +24071,4858,823,17,1,other,DSC_0828.JPG +24072,4144,934,15,1,other,DSC_0828.JPG +24073,4798,943,15,1,other,DSC_0828.JPG +24074,394,973,17,1,other,DSC_0828.JPG +24075,619,1075,17,1,other,DSC_0828.JPG +24076,4597,1114,17,1,other,DSC_0828.JPG +24077,4462,1117,17,1,other,DSC_0828.JPG +24078,2965,1153,17,1,other,DSC_0828.JPG +24079,4279,1168,15,1,other,DSC_0828.JPG +24080,3709,1171,17,1,other,DSC_0828.JPG +24081,4639,1177,17,1,other,DSC_0828.JPG +24082,4786,1180,17,1,other,DSC_0828.JPG +24083,4822,1237,16,1,other,DSC_0828.JPG +24084,4714,1297,17,1,other,DSC_0828.JPG +24085,4855,1297,17,1,other,DSC_0828.JPG +24086,478,1309,17,1,other,DSC_0828.JPG +24087,559,1318,16,1,other,DSC_0828.JPG +24088,631,1318,16,1,other,DSC_0828.JPG +24089,3592,1339,15,1,other,DSC_0828.JPG +24090,3733,1342,17,1,other,DSC_0828.JPG +24091,4603,1351,16,1,other,DSC_0828.JPG +24092,598,1375,17,1,other,DSC_0828.JPG +24093,3268,1381,17,1,other,DSC_0828.JPG +24094,520,1387,17,1,other,DSC_0828.JPG +24095,3409,1399,17,1,other,DSC_0828.JPG +24096,3916,1402,17,1,other,DSC_0828.JPG +24097,4054,1402,16,1,other,DSC_0828.JPG +24098,4705,1408,17,1,other,DSC_0828.JPG +24099,4885,1468,17,1,other,DSC_0828.JPG +24100,3739,1579,17,1,other,DSC_0828.JPG +24101,4537,1750,17,1,other,DSC_0828.JPG +24102,4816,1753,17,1,other,DSC_0828.JPG +24103,244,1759,17,1,other,DSC_0828.JPG +24104,1123,1792,17,1,other,DSC_0828.JPG +24105,1210,1795,16,1,other,DSC_0828.JPG +24106,4387,1819,17,1,other,DSC_0828.JPG +24107,1090,1846,17,1,other,DSC_0828.JPG +24108,4621,1987,17,1,other,DSC_0828.JPG +24109,781,2023,17,1,other,DSC_0828.JPG +2411,1153,2377,17,1,other,DSC_0844.JPG +24110,4804,2050,16,1,other,DSC_0828.JPG +24111,829,2071,17,1,other,DSC_0828.JPG +24112,250,2080,17,1,other,DSC_0828.JPG +24113,4918,2110,16,1,other,DSC_0828.JPG +24114,919,2134,17,1,other,DSC_0828.JPG +24115,1015,2134,16,1,other,DSC_0828.JPG +24116,643,2143,17,1,other,DSC_0828.JPG +24117,4090,2158,17,1,other,DSC_0828.JPG +24118,34,2194,17,1,other,DSC_0828.JPG +24119,397,2200,16,1,other,DSC_0828.JPG +2412,3541,2419,15,1,other,DSC_0844.JPG +24120,3412,2203,15,1,other,DSC_0828.JPG +24121,3907,2215,17,1,other,DSC_0828.JPG +24122,5278,2233,17,1,other,DSC_0828.JPG +24123,4624,2335,15,1,other,DSC_0828.JPG +24124,1330,2413,17,1,other,DSC_0828.JPG +24125,2131,2428,17,1,other,DSC_0828.JPG +24126,13,13,16,1,other,DSC_0828.JPG +24127,232,16,15,1,other,DSC_0828.JPG +24128,4726,232,17,1,other,DSC_0828.JPG +24129,4759,307,17,1,other,DSC_0828.JPG +2413,103,106,17,1,other,DSC_0844.JPG +24130,559,319,15,1,other,DSC_0828.JPG +24131,544,487,17,1,other,DSC_0828.JPG +24132,481,727,17,1,other,DSC_0828.JPG +24133,562,793,17,1,other,DSC_0828.JPG +24134,4021,865,17,1,other,DSC_0828.JPG +24135,5227,997,17,1,other,DSC_0828.JPG +24136,208,1030,17,1,other,DSC_0828.JPG +24137,4135,1057,15,1,other,DSC_0828.JPG +24138,268,1114,17,1,other,DSC_0828.JPG +24139,3478,1279,17,1,other,DSC_0828.JPG +24140,4345,1285,17,1,other,DSC_0828.JPG +24141,301,1288,16,1,other,DSC_0828.JPG +24142,250,1321,17,1,other,DSC_0828.JPG +24143,3094,1324,17,1,other,DSC_0828.JPG +24144,4378,1342,17,1,other,DSC_0828.JPG +24145,1030,1492,16,1,other,DSC_0828.JPG +24146,874,1498,17,1,other,DSC_0828.JPG +24147,4132,1522,17,1,other,DSC_0828.JPG +24148,4924,1531,17,1,other,DSC_0828.JPG +24149,3871,1573,17,1,other,DSC_0828.JPG +24150,4018,1576,17,1,other,DSC_0828.JPG +24151,5029,1591,16,1,other,DSC_0828.JPG +24152,1597,1618,17,1,other,DSC_0828.JPG +24153,3481,1618,17,1,other,DSC_0828.JPG +24154,4051,1639,15,1,other,DSC_0828.JPG +24155,1126,1669,15,1,other,DSC_0828.JPG +24156,4309,1696,16,1,other,DSC_0828.JPG +24157,643,1705,17,1,other,DSC_0828.JPG +24158,1033,1723,17,1,other,DSC_0828.JPG +24159,1171,1723,16,1,other,DSC_0828.JPG +24160,1006,1795,17,1,other,DSC_0828.JPG +24161,4444,1810,17,1,other,DSC_0828.JPG +24162,2764,1849,15,1,other,DSC_0828.JPG +24163,847,1909,17,1,other,DSC_0828.JPG +24164,1147,1915,17,1,other,DSC_0828.JPG +24165,37,1951,15,1,other,DSC_0828.JPG +24166,247,1984,17,1,other,DSC_0828.JPG +24167,667,2077,17,1,other,DSC_0828.JPG +24168,1102,2080,17,1,other,DSC_0828.JPG +24169,2191,2089,17,1,other,DSC_0828.JPG +2417,5230,715,16,1,other,DSC_0844.JPG +24170,4015,2155,16,1,other,DSC_0828.JPG +24171,2440,2263,17,1,other,DSC_0828.JPG +24172,3085,2266,15,1,other,DSC_0828.JPG +24173,4591,2281,17,1,other,DSC_0828.JPG +24174,1045,2305,15,1,other,DSC_0828.JPG +24175,649,2371,16,1,other,DSC_0828.JPG +24176,5293,2404,17,1,other,DSC_0828.JPG +24177,2971,2437,16,1,other,DSC_0828.JPG +24178,3481,2443,15,1,other,DSC_0828.JPG +24179,3835,2443,15,1,other,DSC_0828.JPG +2418,5266,778,16,1,other,DSC_0844.JPG +24180,4873,235,17,1,other,DSC_0828.JPG +24181,4966,286,17,1,other,DSC_0828.JPG +24182,295,316,17,1,other,DSC_0828.JPG +24183,208,322,17,1,other,DSC_0828.JPG +24184,5014,355,17,1,other,DSC_0828.JPG +24185,4573,469,15,1,other,DSC_0828.JPG +24186,511,550,16,1,other,DSC_0828.JPG +24187,586,550,17,1,other,DSC_0828.JPG +24188,4645,583,17,1,other,DSC_0828.JPG +24189,4174,619,17,1,other,DSC_0828.JPG +24190,3748,652,17,1,other,DSC_0828.JPG +24191,301,670,17,1,other,DSC_0828.JPG +24192,4672,757,17,1,other,DSC_0828.JPG +24193,4789,823,17,1,other,DSC_0828.JPG +24194,118,877,17,1,other,DSC_0828.JPG +24195,4999,937,17,1,other,DSC_0828.JPG +24196,4210,1057,17,1,other,DSC_0828.JPG +24197,1270,1075,17,1,other,DSC_0828.JPG +24198,463,1174,17,1,other,DSC_0828.JPG +24199,982,1195,15,1,other,DSC_0828.JPG +2420,331,1957,17,1,other,DSC_0844.JPG +24200,700,1213,17,1,other,DSC_0828.JPG +24201,805,1252,17,1,other,DSC_0828.JPG +24202,961,1258,17,1,other,DSC_0828.JPG +24203,4285,1306,17,1,other,DSC_0828.JPG +24204,988,1315,15,1,other,DSC_0828.JPG +24205,4447,1345,17,1,other,DSC_0828.JPG +24206,1027,1372,17,1,other,DSC_0828.JPG +24207,3124,1378,17,1,other,DSC_0828.JPG +24208,925,1447,15,1,other,DSC_0828.JPG +24209,3523,1447,17,1,other,DSC_0828.JPG +2421,3670,64,17,1,other,DSC_0844.JPG +24210,4231,1456,17,1,other,DSC_0828.JPG +24211,4024,1462,17,1,other,DSC_0828.JPG +24212,4285,1525,16,1,other,DSC_0828.JPG +24213,4354,1525,17,1,other,DSC_0828.JPG +24214,559,1567,17,1,other,DSC_0828.JPG +24215,4270,1639,17,1,other,DSC_0828.JPG +24216,205,1699,15,1,other,DSC_0828.JPG +24217,886,1855,17,1,other,DSC_0828.JPG +24218,5167,1936,16,1,other,DSC_0828.JPG +24219,895,1969,16,1,other,DSC_0828.JPG +2422,58,295,15,1,other,DSC_0844.JPG +24220,4981,1993,17,1,other,DSC_0828.JPG +24221,4513,2044,17,1,other,DSC_0828.JPG +24222,16,2128,15,1,other,DSC_0828.JPG +24223,343,2131,17,1,other,DSC_0828.JPG +24224,4513,2158,17,1,other,DSC_0828.JPG +24225,1387,2194,17,1,other,DSC_0828.JPG +24226,610,2299,16,1,other,DSC_0828.JPG +24227,973,2299,16,1,other,DSC_0828.JPG +24228,4693,2332,15,1,other,DSC_0828.JPG +24229,3991,2338,17,1,other,DSC_0828.JPG +24230,1405,2416,16,1,other,DSC_0828.JPG +24231,2326,2425,17,1,other,DSC_0828.JPG +24232,1537,2428,17,1,other,DSC_0828.JPG +24233,2764,2440,17,1,other,DSC_0828.JPG +24234,457,10,15,1,other,DSC_0828.JPG +24235,5212,133,15,1,other,DSC_0828.JPG +24236,22,169,15,1,other,DSC_0828.JPG +24237,727,202,17,1,other,DSC_0828.JPG +24238,4801,235,17,1,other,DSC_0828.JPG +24239,4906,412,16,1,other,DSC_0828.JPG +2424,118,1693,15,1,other,DSC_0844.JPG +24240,115,610,17,1,other,DSC_0828.JPG +24241,64,916,15,1,other,DSC_0828.JPG +24242,4720,943,17,1,other,DSC_0828.JPG +24243,265,994,17,1,other,DSC_0828.JPG +24244,4960,1117,17,1,other,DSC_0828.JPG +24245,3994,1168,16,1,other,DSC_0828.JPG +24246,4708,1177,17,1,other,DSC_0828.JPG +24247,634,1201,17,1,other,DSC_0828.JPG +24248,4738,1231,17,1,other,DSC_0828.JPG +24249,172,1321,17,1,other,DSC_0828.JPG +24250,730,1384,17,1,other,DSC_0828.JPG +24251,4420,1405,17,1,other,DSC_0828.JPG +24252,4849,1645,17,1,other,DSC_0828.JPG +24253,4387,1690,16,1,other,DSC_0828.JPG +24254,886,1723,17,1,other,DSC_0828.JPG +24255,4120,1753,16,1,other,DSC_0828.JPG +24256,190,1789,17,1,other,DSC_0828.JPG +24257,1057,2020,15,1,other,DSC_0828.JPG +24258,1006,2041,15,1,other,DSC_0828.JPG +24259,5017,2167,17,1,other,DSC_0828.JPG +2426,187,1819,15,1,other,DSC_0844.JPG +24260,853,2365,17,1,other,DSC_0828.JPG +24261,1609,2410,17,1,other,DSC_0828.JPG +24262,3907,2443,15,1,other,DSC_0828.JPG +24263,4096,160,15,1,other,DSC_0828.JPG +24264,5119,163,15,1,other,DSC_0828.JPG +24265,427,313,15,1,other,DSC_0828.JPG +24266,433,679,17,1,other,DSC_0828.JPG +24267,3892,781,15,1,other,DSC_0828.JPG +24268,355,796,16,1,other,DSC_0828.JPG +24269,4972,883,15,1,other,DSC_0828.JPG +2427,124,2218,17,1,other,DSC_0844.JPG +24270,5221,931,17,1,other,DSC_0828.JPG +24271,5155,934,16,1,other,DSC_0828.JPG +24272,1225,1027,17,1,other,DSC_0828.JPG +24273,4714,1057,15,1,other,DSC_0828.JPG +24274,4519,1108,16,1,other,DSC_0828.JPG +24275,586,1135,17,1,other,DSC_0828.JPG +24276,4996,1180,16,1,other,DSC_0828.JPG +24277,169,1192,17,1,other,DSC_0828.JPG +24278,5032,1240,16,1,other,DSC_0828.JPG +24279,4921,1294,17,1,other,DSC_0828.JPG +2428,505,2251,17,1,other,DSC_0844.JPG +24280,103,1318,17,1,other,DSC_0828.JPG +24281,4894,1354,16,1,other,DSC_0828.JPG +24282,307,1405,16,1,other,DSC_0828.JPG +24283,1273,1423,17,1,other,DSC_0828.JPG +24284,1129,1438,15,1,other,DSC_0828.JPG +24285,253,1444,17,1,other,DSC_0828.JPG +24286,1102,1489,17,1,other,DSC_0828.JPG +24287,577,1501,17,1,other,DSC_0828.JPG +24288,3916,1519,17,1,other,DSC_0828.JPG +24289,4210,1522,16,1,other,DSC_0828.JPG +2429,691,2320,15,1,other,DSC_0844.JPG +24290,5059,1528,17,1,other,DSC_0828.JPG +24291,994,1549,17,1,other,DSC_0828.JPG +24292,1225,1558,15,1,other,DSC_0828.JPG +24293,346,1582,16,1,other,DSC_0828.JPG +24294,4243,1582,17,1,other,DSC_0828.JPG +24295,472,1672,17,1,other,DSC_0828.JPG +24296,5122,1744,17,1,other,DSC_0828.JPG +24297,919,1810,17,1,other,DSC_0828.JPG +24298,973,1846,17,1,other,DSC_0828.JPG +24299,5137,1885,18,1,other,DSC_0828.JPG +2430,4114,2380,17,1,other,DSC_0844.JPG +24300,1690,1960,17,1,other,DSC_0828.JPG +24301,1099,1966,17,1,other,DSC_0828.JPG +24302,286,2140,16,1,other,DSC_0828.JPG +24303,1000,2251,15,1,other,DSC_0828.JPG +24304,1825,2413,15,1,other,DSC_0828.JPG +24305,3622,2443,15,1,other,DSC_0828.JPG +24306,3064,568,16,1,other,DSC_0819.JPG +24313,1999,439,16,1,other,DSC_0819.JPG +2432,148,922,15,1,other,DSC_0844.JPG +24325,3934,751,17,1,other,DSC_0819.JPG +24329,4798,1768,16,5,other,DSC_0819.JPG +24331,1189,115,16,1,other,DSC_0819.JPG +24336,1819,118,16,1,other,DSC_0819.JPG +24339,1750,115,16,1,other,DSC_0819.JPG +2435,1345,1933,15,1,other,DSC_0844.JPG +2436,1372,2062,17,1,other,DSC_0844.JPG +24364,2518,2194,16,1,other,DSC_0819.JPG +24366,1366,1540,16,1,other,DSC_0819.JPG +2437,5269,2206,15,1,other,DSC_0844.JPG +24376,2272,2134,15,1,other,DSC_0819.JPG +2438,1729,2269,15,1,other,DSC_0844.JPG +24387,1153,55,17,1,other,DSC_0819.JPG +2439,832,2401,17,1,other,DSC_0844.JPG +24392,3268,691,17,1,other,DSC_0819.JPG +2440,154,556,17,1,other,DSC_0844.JPG +24402,1189,1714,15,1,other,DSC_0819.JPG +24408,1510,937,17,1,other,DSC_0819.JPG +24410,4330,61,17,1,other,DSC_0819.JPG +24414,1891,1954,16,1,other,DSC_0819.JPG +24415,1855,2131,15,1,other,DSC_0819.JPG +24418,3289,2320,16,1,other,DSC_0819.JPG +24423,2209,691,15,5,other,DSC_0819.JPG +24426,1432,1774,16,1,other,DSC_0819.JPG +2443,220,1528,17,1,other,DSC_0844.JPG +24431,1408,1117,15,1,other,DSC_0819.JPG +2444,5338,1549,15,1,other,DSC_0844.JPG +24450,3619,814,17,1,other,DSC_0819.JPG +2446,883,2350,15,1,other,DSC_0844.JPG +24461,4132,2191,15,1,other,DSC_0819.JPG +24464,2104,505,16,1,other,DSC_0819.JPG +24466,3790,871,17,1,other,DSC_0819.JPG +24467,3652,1105,17,1,other,DSC_0819.JPG +2447,5272,70,17,1,other,DSC_0844.JPG +24471,1438,304,17,1,other,DSC_0819.JPG +24474,1582,1057,15,1,other,DSC_0819.JPG +24479,4177,811,17,1,other,DSC_0819.JPG +2448,22,226,15,1,other,DSC_0844.JPG +24482,1294,1657,17,1,other,DSC_0819.JPG +24485,3784,2080,17,1,other,DSC_0819.JPG +24487,3499,2317,15,1,other,DSC_0819.JPG +24490,2140,439,17,1,other,DSC_0819.JPG +24492,3970,568,17,1,other,DSC_0819.JPG +24495,2173,1117,16,5,other,DSC_0819.JPG +24499,1999,58,17,1,other,DSC_0819.JPG +24504,3967,1048,15,1,other,DSC_0819.JPG +2451,70,670,17,1,other,DSC_0844.JPG +24510,2869,2317,16,1,other,DSC_0819.JPG +24512,2287,52,15,1,other,DSC_0819.JPG +24514,2140,565,16,1,other,DSC_0819.JPG +24516,3790,1228,17,1,other,DSC_0819.JPG +24520,1750,1837,15,1,other,DSC_0819.JPG +24523,2728,2194,17,1,other,DSC_0819.JPG +24525,3568,2317,15,1,other,DSC_0819.JPG +24527,757,115,17,1,other,DSC_0819.JPG +24530,1513,1180,16,1,other,DSC_0819.JPG +24536,862,58,17,1,other,DSC_0819.JPG +2454,4990,2110,17,1,other,DSC_0844.JPG +24551,1999,691,17,1,other,DSC_0819.JPG +24552,4324,691,17,1,other,DSC_0819.JPG +24553,1546,1237,17,1,other,DSC_0819.JPG +24554,1333,1360,17,1,other,DSC_0819.JPG +24563,3538,2140,15,5,other,DSC_0819.JPG +24565,1609,115,17,1,other,DSC_0819.JPG +24568,3376,379,16,5,other,DSC_0819.JPG +2457,5359,646,17,1,other,DSC_0844.JPG +24570,4216,748,17,1,other,DSC_0819.JPG +24577,1501,2011,17,1,other,DSC_0819.JPG +2458,46,1450,17,1,other,DSC_0844.JPG +2459,220,1645,17,1,other,DSC_0844.JPG +24606,1687,1120,15,1,other,DSC_0819.JPG +24607,1618,1240,16,1,other,DSC_0819.JPG +24609,1540,1480,17,1,other,DSC_0819.JPG +24613,4726,2008,15,1,other,DSC_0819.JPG +24622,3547,928,17,1,other,DSC_0819.JPG +24623,4036,931,17,1,other,DSC_0819.JPG +24624,1480,997,15,1,other,DSC_0819.JPG +2463,193,2062,17,1,other,DSC_0844.JPG +24630,1366,55,17,1,other,DSC_0819.JPG +24634,1537,1714,15,1,other,DSC_0819.JPG +24637,1609,1834,16,1,other,DSC_0819.JPG +24638,2590,2197,15,1,other,DSC_0819.JPG +24639,1297,58,17,1,other,DSC_0819.JPG +24641,2887,121,15,1,other,DSC_0819.JPG +24642,904,241,17,1,other,DSC_0819.JPG +2465,82,1399,15,1,other,DSC_0844.JPG +24653,3961,2137,15,1,other,DSC_0819.JPG +24661,1618,1120,17,1,other,DSC_0819.JPG +24667,3853,2080,16,1,other,DSC_0819.JPG +24668,2800,2200,15,1,other,DSC_0819.JPG +24669,3748,2260,15,1,other,DSC_0819.JPG +2467,5227,136,16,1,other,DSC_0844.JPG +24670,1261,115,17,1,other,DSC_0819.JPG +24671,4510,118,17,1,other,DSC_0819.JPG +24675,1930,565,16,1,other,DSC_0819.JPG +24676,616,748,17,1,other,DSC_0819.JPG +24677,1690,1240,17,1,other,DSC_0819.JPG +24681,4627,1831,16,1,other,DSC_0819.JPG +24682,3853,2200,16,1,other,DSC_0819.JPG +24685,1438,433,17,1,other,DSC_0819.JPG +24686,4075,628,17,1,other,DSC_0819.JPG +24688,3862,991,17,1,other,DSC_0819.JPG +2469,145,1522,17,1,other,DSC_0844.JPG +24691,3721,1228,16,1,other,DSC_0819.JPG +24692,3754,1285,17,1,other,DSC_0819.JPG +24693,4426,1351,16,1,other,DSC_0819.JPG +24697,1435,1891,15,1,other,DSC_0819.JPG +24698,2488,1897,16,1,other,DSC_0819.JPG +24700,1117,2059,17,1,other,DSC_0819.JPG +24704,1294,175,17,1,other,DSC_0819.JPG +24715,3592,118,15,1,other,DSC_0819.JPG +24716,403,235,17,1,other,DSC_0819.JPG +24723,5305,1159,15,1,other,DSC_0819.JPG +24724,3859,1228,17,1,other,DSC_0819.JPG +24725,1930,1537,15,5,other,DSC_0819.JPG +24728,3799,631,17,1,other,DSC_0819.JPG +24729,4111,691,17,1,other,DSC_0819.JPG +2473,3223,2479,15,1,other,DSC_0844.JPG +24732,1405,997,17,1,other,DSC_0819.JPG +24737,1084,1654,15,1,other,DSC_0819.JPG +24739,1711,1891,17,1,other,DSC_0819.JPG +24744,1996,2134,16,1,other,DSC_0819.JPG +24746,4063,2314,15,1,other,DSC_0819.JPG +24747,1330,118,17,1,other,DSC_0819.JPG +24748,4294,121,17,1,other,DSC_0819.JPG +24752,1963,631,16,1,other,DSC_0819.JPG +24754,3826,925,17,1,other,DSC_0819.JPG +24756,1651,1180,15,1,other,DSC_0819.JPG +2476,196,2179,17,1,other,DSC_0844.JPG +2477,2566,2401,17,1,other,DSC_0844.JPG +24778,4612,682,16,1,other,DSC_0819.JPG +24779,4105,931,17,1,other,DSC_0819.JPG +24785,943,1885,15,1,other,DSC_0819.JPG +24787,4309,2131,15,1,other,DSC_0819.JPG +2479,5275,652,17,1,other,DSC_0844.JPG +24794,1930,814,16,1,other,DSC_0819.JPG +24796,4390,931,17,1,other,DSC_0819.JPG +24797,4639,988,17,1,other,DSC_0819.JPG +24806,4660,2008,15,1,other,DSC_0819.JPG +24807,1540,2071,15,1,other,DSC_0819.JPG +24809,4237,2131,15,1,other,DSC_0819.JPG +24812,790,55,16,1,other,DSC_0819.JPG +24815,3805,118,17,1,other,DSC_0819.JPG +2482,301,2014,17,1,other,DSC_0844.JPG +24820,1999,565,15,1,other,DSC_0819.JPG +24822,3757,694,17,1,other,DSC_0819.JPG +24823,4177,931,17,1,other,DSC_0819.JPG +2483,5215,2101,17,1,other,DSC_0844.JPG +24830,1468,1714,17,1,other,DSC_0819.JPG +24835,1960,2074,16,1,other,DSC_0819.JPG +2484,2704,2404,15,1,other,DSC_0844.JPG +24840,1225,178,16,1,other,DSC_0819.JPG +24847,1189,997,16,1,other,DSC_0819.JPG +24849,3583,1111,17,1,other,DSC_0819.JPG +24857,4906,1705,17,1,other,DSC_0819.JPG +2486,1855,874,16,1,other,DSC_0844.JPG +24862,4348,1837,17,1,other,DSC_0819.JPG +24869,1855,181,17,1,other,DSC_0819.JPG +2487,49,1564,15,1,other,DSC_0844.JPG +24874,3619,1048,17,1,other,DSC_0819.JPG +24881,3625,58,16,1,other,DSC_0819.JPG +24882,3841,58,15,1,other,DSC_0819.JPG +24884,940,178,17,1,other,DSC_0819.JPG +2489,1387,1729,17,1,other,DSC_0844.JPG +24890,3691,688,17,1,other,DSC_0819.JPG +24891,3829,691,16,1,other,DSC_0819.JPG +24893,1756,754,17,1,other,DSC_0819.JPG +24894,3757,811,16,1,other,DSC_0819.JPG +2490,151,1996,17,1,other,DSC_0844.JPG +24900,1369,1423,17,1,other,DSC_0819.JPG +24901,1399,1480,15,1,other,DSC_0819.JPG +24903,4975,1705,15,1,other,DSC_0819.JPG +2491,436,2143,15,1,other,DSC_0844.JPG +24911,4171,2017,16,1,other,DSC_0819.JPG +24915,3007,2320,17,1,other,DSC_0819.JPG +24916,1717,55,17,1,other,DSC_0819.JPG +24918,2953,244,17,1,other,DSC_0819.JPG +2492,3403,2419,17,1,other,DSC_0844.JPG +24924,1618,871,17,1,other,DSC_0819.JPG +24926,3898,931,17,1,other,DSC_0819.JPG +24927,3514,991,17,1,other,DSC_0819.JPG +24928,4141,1108,17,1,other,DSC_0819.JPG +24929,3442,1111,17,1,other,DSC_0819.JPG +24930,3757,1165,17,1,other,DSC_0819.JPG +2494,1696,2314,15,1,other,DSC_0844.JPG +24942,2848,58,17,1,other,DSC_0819.JPG +24946,3934,634,17,1,other,DSC_0819.JPG +24947,1930,694,17,1,other,DSC_0819.JPG +24948,3859,871,17,1,other,DSC_0819.JPG +24949,4462,928,15,1,other,DSC_0819.JPG +2495,4864,2500,15,1,other,DSC_0844.JPG +24956,4201,2191,15,1,other,DSC_0819.JPG +2496,370,46,15,1,other,DSC_0844.JPG +24960,3184,2263,15,1,other,DSC_0819.JPG +24963,1435,58,15,1,other,DSC_0819.JPG +24964,2779,58,17,1,other,DSC_0819.JPG +24966,475,364,17,1,other,DSC_0819.JPG +24969,1894,502,16,1,other,DSC_0819.JPG +2497,5383,829,15,1,other,DSC_0844.JPG +24972,3547,1048,16,1,other,DSC_0819.JPG +24979,1504,1891,15,1,other,DSC_0819.JPG +24983,4549,2068,15,1,other,DSC_0819.JPG +24988,4306,2251,15,1,other,DSC_0819.JPG +24989,4165,2254,15,1,other,DSC_0819.JPG +24991,4615,61,15,1,other,DSC_0819.JPG +24992,541,115,17,1,other,DSC_0819.JPG +24996,3967,691,17,1,other,DSC_0819.JPG +24997,4069,988,17,1,other,DSC_0819.JPG +24998,1549,994,17,1,other,DSC_0819.JPG +24999,3688,1048,17,1,other,DSC_0819.JPG +25001,3157,1360,17,1,other,DSC_0819.JPG +25009,721,55,17,1,other,DSC_0819.JPG +2501,1234,1741,17,1,other,DSC_0844.JPG +25010,508,178,17,1,other,DSC_0819.JPG +2502,3646,2368,17,1,other,DSC_0844.JPG +25020,4027,2134,15,1,other,DSC_0819.JPG +25026,1363,304,17,1,other,DSC_0819.JPG +25029,2032,751,17,1,other,DSC_0819.JPG +2503,1378,70,16,1,other,DSC_0844.JPG +25031,4321,928,17,1,other,DSC_0819.JPG +25032,4141,991,16,1,other,DSC_0819.JPG +25033,5275,1219,15,1,other,DSC_0819.JPG +25044,832,238,17,1,other,DSC_0819.JPG +25045,649,304,15,1,other,DSC_0819.JPG +25047,5278,1099,15,1,other,DSC_0819.JPG +25049,3367,1231,16,1,other,DSC_0819.JPG +2505,1930,1039,16,1,other,DSC_0844.JPG +25052,1396,1714,15,1,other,DSC_0819.JPG +25053,1681,1837,15,1,other,DSC_0819.JPG +25057,4486,1951,15,1,other,DSC_0819.JPG +25064,4189,61,15,1,other,DSC_0819.JPG +25065,1045,112,17,1,other,DSC_0819.JPG +25066,973,115,16,1,other,DSC_0819.JPG +25074,4426,988,16,1,other,DSC_0819.JPG +2508,475,2200,15,1,other,DSC_0844.JPG +2509,220,2242,17,1,other,DSC_0844.JPG +25092,3415,61,16,1,other,DSC_0819.JPG +2510,3679,2425,15,1,other,DSC_0844.JPG +25100,4666,1534,15,1,other,DSC_0819.JPG +25104,1330,1714,15,1,other,DSC_0819.JPG +25117,904,115,16,1,other,DSC_0819.JPG +2512,1459,1747,17,1,other,DSC_0844.JPG +25120,4042,694,17,1,other,DSC_0819.JPG +25121,3862,754,17,1,other,DSC_0819.JPG +25124,3019,997,17,1,other,DSC_0819.JPG +25126,1225,1057,16,1,other,DSC_0819.JPG +25134,4213,1837,15,1,other,DSC_0819.JPG +25139,3925,2077,16,1,other,DSC_0819.JPG +2514,1417,2446,17,1,other,DSC_0844.JPG +25140,2029,2188,17,1,other,DSC_0819.JPG +25142,4063,2194,16,1,other,DSC_0819.JPG +25143,3463,2257,17,1,other,DSC_0819.JPG +25146,1009,55,17,1,other,DSC_0819.JPG +25147,1078,55,15,1,other,DSC_0819.JPG +25148,4471,61,16,1,other,DSC_0819.JPG +25149,793,178,17,1,other,DSC_0819.JPG +2515,4549,2464,15,1,other,DSC_0844.JPG +25154,4003,988,17,1,other,DSC_0819.JPG +25155,4249,1048,15,1,other,DSC_0819.JPG +25158,3583,1231,17,1,other,DSC_0819.JPG +2516,2635,43,16,1,other,DSC_0844.JPG +25166,4693,1951,15,1,other,DSC_0819.JPG +25169,2833,2020,15,1,other,DSC_0819.JPG +25172,4270,2191,15,1,other,DSC_0819.JPG +25175,2920,55,17,1,other,DSC_0819.JPG +25176,4582,121,17,1,other,DSC_0819.JPG +2518,214,685,17,1,other,DSC_0844.JPG +25180,2071,568,17,1,other,DSC_0819.JPG +25181,3901,691,17,1,other,DSC_0819.JPG +25182,4324,814,17,1,other,DSC_0819.JPG +25183,1756,871,17,1,other,DSC_0819.JPG +25184,1369,940,17,1,other,DSC_0819.JPG +25188,4036,1168,17,1,other,DSC_0819.JPG +25189,3928,1225,17,1,other,DSC_0819.JPG +25192,1615,1480,15,1,other,DSC_0819.JPG +25193,4732,1534,17,1,other,DSC_0819.JPG +25194,4765,1588,15,1,other,DSC_0819.JPG +25198,1573,2011,15,1,other,DSC_0819.JPG +25201,682,115,15,1,other,DSC_0819.JPG +25202,3877,118,17,1,other,DSC_0819.JPG +25203,1717,181,16,1,other,DSC_0819.JPG +2521,2014,2266,17,1,other,DSC_0844.JPG +25214,3718,1474,17,1,other,DSC_0819.JPG +25217,4384,1777,15,1,other,DSC_0819.JPG +25222,1888,2074,16,1,other,DSC_0819.JPG +25223,2872,2077,17,5,other,DSC_0819.JPG +25224,4375,2368,17,1,other,DSC_0819.JPG +25226,1471,367,17,1,other,DSC_0819.JPG +25228,223,424,17,1,other,DSC_0819.JPG +25229,4144,628,17,1,other,DSC_0819.JPG +2523,508,28,17,1,other,DSC_0844.JPG +25232,3481,1048,17,1,other,DSC_0819.JPG +25236,115,1216,15,1,other,DSC_0819.JPG +2524,4276,1330,17,1,other,DSC_0844.JPG +25247,4204,2071,17,1,other,DSC_0819.JPG +25249,2062,2368,17,1,other,DSC_0819.JPG +25251,4255,61,15,1,other,DSC_0819.JPG +25252,760,244,15,1,other,DSC_0819.JPG +25253,3730,502,15,1,other,DSC_0819.JPG +25258,5209,1096,17,1,other,DSC_0819.JPG +25260,1585,1180,15,1,other,DSC_0819.JPG +25265,1327,1831,16,1,other,DSC_0819.JPG +25269,4135,2077,17,1,other,DSC_0819.JPG +2527,3994,2245,15,1,other,DSC_0844.JPG +25270,1537,2188,15,1,other,DSC_0819.JPG +25272,772,2290,17,1,other,DSC_0819.JPG +25273,2305,2431,15,1,other,DSC_0819.JPG +25274,937,55,17,1,other,DSC_0819.JPG +25275,4546,64,17,1,other,DSC_0819.JPG +2528,574,2266,15,1,other,DSC_0844.JPG +25280,4285,868,17,1,other,DSC_0819.JPG +25288,4936,1885,15,1,other,DSC_0819.JPG +2529,4933,2497,15,1,other,DSC_0844.JPG +253,4837,1219,17,1,other,DSC_0844.JPG +2530,5299,1603,17,1,other,DSC_0844.JPG +25305,3826,1048,17,1,other,DSC_0819.JPG +25306,1441,1057,16,1,other,DSC_0819.JPG +25308,3964,1165,17,1,other,DSC_0819.JPG +25309,3895,1285,17,1,other,DSC_0819.JPG +2531,52,1687,15,1,other,DSC_0844.JPG +25311,4771,1351,17,1,other,DSC_0819.JPG +2532,88,1750,15,1,other,DSC_0844.JPG +25325,3886,2260,15,1,other,DSC_0819.JPG +25327,1963,121,17,1,other,DSC_0819.JPG +25328,4438,121,17,1,other,DSC_0819.JPG +25330,154,1039,17,1,other,DSC_0819.JPG +25332,4708,1354,17,1,other,DSC_0819.JPG +25336,1366,1891,17,1,other,DSC_0819.JPG +25338,1468,1951,16,1,other,DSC_0819.JPG +2534,1432,1966,15,1,other,DSC_0844.JPG +25345,1576,55,17,1,other,DSC_0819.JPG +25346,3343,58,17,1,other,DSC_0819.JPG +25347,4894,67,15,1,other,DSC_0819.JPG +2535,373,2134,15,1,other,DSC_0844.JPG +25353,4006,631,17,1,other,DSC_0819.JPG +25356,3967,928,17,1,other,DSC_0819.JPG +25357,3685,1168,17,1,other,DSC_0819.JPG +25358,3967,1288,17,1,other,DSC_0819.JPG +25359,1330,1480,15,1,other,DSC_0819.JPG +2536,4954,67,17,1,other,DSC_0844.JPG +25364,1855,2011,17,1,other,DSC_0819.JPG +25370,4339,2191,15,1,other,DSC_0819.JPG +25372,2308,2311,17,1,other,DSC_0819.JPG +25373,1294,2362,15,1,other,DSC_0819.JPG +25376,1504,55,15,1,other,DSC_0819.JPG +25377,4621,184,17,1,other,DSC_0819.JPG +25379,1642,310,17,1,other,DSC_0819.JPG +25387,3823,1165,17,1,other,DSC_0819.JPG +2539,1519,1999,17,1,other,DSC_0844.JPG +25391,2170,1837,16,5,other,DSC_0819.JPG +25398,3850,2434,15,1,other,DSC_0819.JPG +25403,3967,811,17,1,other,DSC_0819.JPG +25405,4144,868,17,1,other,DSC_0819.JPG +25406,3655,988,15,1,other,DSC_0819.JPG +25407,4177,1048,17,1,other,DSC_0819.JPG +25409,3685,1288,17,1,other,DSC_0819.JPG +2541,5341,193,15,1,other,DSC_0844.JPG +25410,1651,1300,16,1,other,DSC_0819.JPG +25418,3814,2260,15,1,other,DSC_0819.JPG +25419,1363,2365,15,1,other,DSC_0819.JPG +2542,4195,403,17,1,other,DSC_0844.JPG +25420,2971,2386,17,1,other,DSC_0819.JPG +25421,1402,118,17,1,other,DSC_0819.JPG +25423,1153,178,17,1,other,DSC_0819.JPG +25425,616,238,17,1,other,DSC_0819.JPG +25426,685,238,17,1,other,DSC_0819.JPG +25430,4252,688,17,1,other,DSC_0819.JPG +25431,4246,811,15,1,other,DSC_0819.JPG +25432,1369,1057,17,1,other,DSC_0819.JPG +25438,1783,1894,15,1,other,DSC_0819.JPG +2544,115,1573,15,1,other,DSC_0844.JPG +25440,1540,1951,17,1,other,DSC_0819.JPG +25446,3376,250,17,1,other,DSC_0819.JPG +25451,3550,814,17,1,other,DSC_0819.JPG +25454,5269,1582,15,1,other,DSC_0819.JPG +25459,4171,1897,17,1,other,DSC_0819.JPG +25463,2308,2194,15,1,other,DSC_0819.JPG +25465,649,55,17,1,other,DSC_0819.JPG +2547,1558,2074,16,1,other,DSC_0844.JPG +25473,4210,991,17,1,other,DSC_0819.JPG +25474,1297,1060,17,1,other,DSC_0819.JPG +25476,3439,1231,17,1,other,DSC_0819.JPG +2548,610,2221,16,1,other,DSC_0844.JPG +25482,4624,1951,15,1,other,DSC_0819.JPG +25484,4342,2074,15,1,other,DSC_0819.JPG +25489,1927,55,17,1,other,DSC_0819.JPG +2549,1663,2266,15,1,other,DSC_0844.JPG +25491,3835,316,17,5,other,DSC_0819.JPG +25494,3616,1165,17,1,other,DSC_0819.JPG +25495,4177,1168,17,1,other,DSC_0819.JPG +25496,4282,1231,17,1,other,DSC_0819.JPG +25499,4702,1474,15,1,other,DSC_0819.JPG +2550,3928,2359,17,1,other,DSC_0844.JPG +25500,5050,1585,17,1,other,DSC_0819.JPG +25502,2173,1717,17,5,other,DSC_0819.JPG +25503,2134,2017,17,1,other,DSC_0819.JPG +25508,649,175,17,1,other,DSC_0819.JPG +2551,4210,2482,15,1,other,DSC_0844.JPG +25510,793,427,16,1,other,DSC_0819.JPG +25512,3517,871,17,1,other,DSC_0819.JPG +25514,3721,1108,17,1,other,DSC_0819.JPG +25515,4249,1168,17,1,other,DSC_0819.JPG +2552,1249,2245,16,1,other,DSC_0844.JPG +25520,4765,1708,15,1,other,DSC_0819.JPG +25525,4591,2008,15,1,other,DSC_0819.JPG +25527,4516,2245,15,1,other,DSC_0819.JPG +2553,1453,2257,17,1,other,DSC_0844.JPG +25531,1012,178,17,1,other,DSC_0819.JPG +25534,1507,310,15,1,other,DSC_0819.JPG +25539,4111,568,17,1,other,DSC_0819.JPG +2554,2500,2407,15,1,other,DSC_0844.JPG +25540,4219,628,17,1,other,DSC_0819.JPG +25546,4216,871,17,1,other,DSC_0819.JPG +25553,1225,1537,15,1,other,DSC_0819.JPG +25557,4663,1771,16,1,other,DSC_0819.JPG +25558,1645,1777,17,1,other,DSC_0819.JPG +25560,4450,2014,17,1,other,DSC_0819.JPG +25561,2554,2377,15,1,other,DSC_0819.JPG +25562,2218,55,17,1,other,DSC_0819.JPG +25563,2422,55,17,1,other,DSC_0819.JPG +25564,3199,58,17,1,other,DSC_0819.JPG +25565,3268,58,16,1,other,DSC_0819.JPG +25566,613,112,17,1,other,DSC_0819.JPG +25568,5035,187,17,1,other,DSC_0819.JPG +25572,4357,754,17,1,other,DSC_0819.JPG +25574,3580,871,17,1,other,DSC_0819.JPG +25577,1759,994,17,1,other,DSC_0819.JPG +25578,4039,1048,17,1,other,DSC_0819.JPG +25579,2911,1060,16,1,other,DSC_0819.JPG +25580,4072,1225,17,1,other,DSC_0819.JPG +25581,4003,1228,17,1,other,DSC_0819.JPG +25589,3079,1960,17,1,other,DSC_0819.JPG +25591,1819,2071,15,1,other,DSC_0819.JPG +25592,4963,70,15,1,other,DSC_0819.JPG +25594,5101,190,17,1,other,DSC_0819.JPG +25598,5143,619,17,1,other,DSC_0819.JPG +25600,4147,748,17,1,other,DSC_0819.JPG +25602,4246,931,17,1,other,DSC_0819.JPG +25604,3895,1048,17,1,other,DSC_0819.JPG +25605,4108,1048,17,1,other,DSC_0819.JPG +25607,5299,1516,17,1,other,DSC_0819.JPG +2561,5248,2146,15,1,other,DSC_0844.JPG +25614,3679,1906,17,1,other,DSC_0819.JPG +25620,2413,2251,17,1,other,DSC_0819.JPG +25621,703,2293,17,1,other,DSC_0819.JPG +25622,2482,2374,15,1,other,DSC_0819.JPG +25625,829,115,16,1,other,DSC_0819.JPG +25626,4366,118,17,1,other,DSC_0819.JPG +2563,5062,2437,17,1,other,DSC_0844.JPG +25633,4357,988,17,1,other,DSC_0819.JPG +25634,1261,997,16,1,other,DSC_0819.JPG +25637,1576,1417,17,1,other,DSC_0819.JPG +2564,628,10,15,1,other,DSC_0844.JPG +25643,5035,2299,15,1,other,DSC_0819.JPG +25645,1123,2416,15,1,other,DSC_0819.JPG +25646,4201,2437,16,1,other,DSC_0819.JPG +25647,1225,58,17,1,other,DSC_0819.JPG +25649,2281,442,17,1,other,DSC_0819.JPG +2565,82,1633,17,1,other,DSC_0844.JPG +25653,1225,937,17,1,other,DSC_0819.JPG +25654,1792,937,17,1,other,DSC_0819.JPG +25655,4318,1048,17,1,other,DSC_0819.JPG +25657,5245,1159,17,1,other,DSC_0819.JPG +25659,1441,1177,17,1,other,DSC_0819.JPG +2566,61,2128,15,1,other,DSC_0844.JPG +25661,4036,1288,17,1,other,DSC_0819.JPG +25662,4144,1474,17,1,other,DSC_0819.JPG +25663,1468,1597,17,1,other,DSC_0819.JPG +25665,4597,1654,16,1,other,DSC_0819.JPG +25667,4732,1765,17,1,other,DSC_0819.JPG +25669,2731,2080,17,1,other,DSC_0819.JPG +25671,1189,2302,15,1,other,DSC_0819.JPG +25682,1333,877,16,1,other,DSC_0819.JPG +25684,4075,1108,17,1,other,DSC_0819.JPG +25686,4144,1228,17,1,other,DSC_0819.JPG +25687,1297,1297,15,1,other,DSC_0819.JPG +25688,2911,1426,16,1,other,DSC_0819.JPG +25695,1399,1951,15,1,other,DSC_0819.JPG +25699,295,52,17,1,other,DSC_0819.JPG +25700,3487,58,15,1,other,DSC_0819.JPG +25701,1117,115,17,1,other,DSC_0819.JPG +25702,151,178,17,1,other,DSC_0819.JPG +2571,646,2269,15,1,other,DSC_0844.JPG +25710,4873,1414,17,1,other,DSC_0819.JPG +25711,5269,1456,17,1,other,DSC_0819.JPG +25712,1435,1537,17,1,other,DSC_0819.JPG +25718,4621,2185,15,1,other,DSC_0819.JPG +25719,3394,2257,17,1,other,DSC_0819.JPG +2572,5245,2338,15,1,other,DSC_0844.JPG +25724,3901,568,17,1,other,DSC_0819.JPG +25727,4423,868,17,1,other,DSC_0819.JPG +25728,4354,871,17,1,other,DSC_0819.JPG +25730,4282,991,17,1,other,DSC_0819.JPG +25731,4354,1108,17,1,other,DSC_0819.JPG +25733,5275,1339,15,1,other,DSC_0819.JPG +25736,4843,1351,17,1,other,DSC_0819.JPG +25742,313,2215,16,1,other,DSC_0819.JPG +25743,1117,2296,15,1,other,DSC_0819.JPG +25747,4924,13,16,1,other,DSC_0819.JPG +25748,2992,55,17,1,other,DSC_0819.JPG +25749,5029,76,15,1,other,DSC_0819.JPG +25750,1045,244,17,1,other,DSC_0819.JPG +25751,508,304,17,1,other,DSC_0819.JPG +25752,4336,313,17,1,other,DSC_0819.JPG +25754,3871,505,17,1,other,DSC_0819.JPG +25757,4642,868,17,1,other,DSC_0819.JPG +25759,1723,1057,16,1,other,DSC_0819.JPG +2576,1597,1924,17,1,other,DSC_0844.JPG +25760,3544,1168,17,1,other,DSC_0819.JPG +25762,1507,1420,17,1,other,DSC_0819.JPG +25769,4654,124,17,1,other,DSC_0819.JPG +2577,274,2302,16,1,other,DSC_0844.JPG +25770,334,238,16,1,other,DSC_0819.JPG +2578,2041,2410,17,1,other,DSC_0844.JPG +25780,3613,1537,17,5,other,DSC_0819.JPG +25789,4477,2428,15,1,other,DSC_0819.JPG +2579,2428,2410,15,1,other,DSC_0844.JPG +25790,4861,130,17,1,other,DSC_0819.JPG +25792,4513,241,15,1,other,DSC_0819.JPG +25796,4213,1105,17,1,other,DSC_0819.JPG +2580,2743,46,17,1,other,DSC_0844.JPG +25803,4315,1777,17,1,other,DSC_0819.JPG +25806,4825,2065,15,1,other,DSC_0819.JPG +2581,5374,133,15,1,other,DSC_0844.JPG +25817,550,622,17,1,other,DSC_0819.JPG +2582,5158,718,15,1,other,DSC_0844.JPG +25824,5239,1402,17,1,other,DSC_0819.JPG +25825,1435,1657,15,1,other,DSC_0819.JPG +25828,1117,1714,17,1,other,DSC_0819.JPG +25833,4243,2014,15,1,other,DSC_0819.JPG +25837,739,2233,17,1,other,DSC_0819.JPG +2584,79,1510,15,1,other,DSC_0844.JPG +25841,946,2356,15,1,other,DSC_0819.JPG +25843,4720,124,17,1,other,DSC_0819.JPG +25844,868,178,17,1,other,DSC_0819.JPG +25845,541,241,17,1,other,DSC_0819.JPG +25846,370,304,17,1,other,DSC_0819.JPG +25848,337,364,17,1,other,DSC_0819.JPG +2585,2083,2293,17,1,other,DSC_0844.JPG +25850,4180,685,17,1,other,DSC_0819.JPG +25851,3619,688,17,1,other,DSC_0819.JPG +25857,1189,1240,17,1,other,DSC_0819.JPG +2586,5092,2371,17,1,other,DSC_0844.JPG +25869,3148,2200,16,5,other,DSC_0819.JPG +2587,5203,2416,17,1,other,DSC_0844.JPG +25872,3007,2443,15,1,other,DSC_0819.JPG +25875,439,301,17,1,other,DSC_0819.JPG +25879,4288,751,17,1,other,DSC_0819.JPG +2588,4846,130,17,1,other,DSC_0844.JPG +25894,805,2233,17,1,other,DSC_0819.JPG +25898,2071,52,17,1,other,DSC_0819.JPG +25899,577,178,17,1,other,DSC_0819.JPG +25904,3583,754,17,1,other,DSC_0819.JPG +25905,121,850,17,1,other,DSC_0819.JPG +25906,4000,868,15,1,other,DSC_0819.JPG +25907,85,913,17,1,other,DSC_0819.JPG +25908,3619,931,17,1,other,DSC_0819.JPG +25909,3859,1105,17,1,other,DSC_0819.JPG +25912,688,1351,17,1,other,DSC_0819.JPG +25915,5203,1465,17,1,other,DSC_0819.JPG +25923,580,55,17,1,other,DSC_0819.JPG +25928,190,1336,15,1,other,DSC_0819.JPG +25934,1051,1591,17,1,other,DSC_0819.JPG +25941,322,2443,15,1,other,DSC_0819.JPG +25944,4792,121,17,1,other,DSC_0819.JPG +25945,973,244,16,1,other,DSC_0819.JPG +25946,724,301,17,1,other,DSC_0819.JPG +25949,4186,568,17,1,other,DSC_0819.JPG +25960,4516,2128,15,1,other,DSC_0819.JPG +25962,667,2230,17,1,other,DSC_0819.JPG +25963,223,52,17,1,other,DSC_0819.JPG +25965,1156,307,17,1,other,DSC_0819.JPG +25968,3091,874,16,1,other,DSC_0819.JPG +25969,2914,940,16,1,other,DSC_0819.JPG +2597,5128,2428,15,1,other,DSC_0844.JPG +25977,3499,2437,15,1,other,DSC_0819.JPG +25978,1789,52,15,1,other,DSC_0819.JPG +25979,3661,118,15,1,other,DSC_0819.JPG +2598,4309,184,15,1,other,DSC_0844.JPG +25980,3766,181,17,1,other,DSC_0819.JPG +25983,3727,628,17,1,other,DSC_0819.JPG +25987,1189,874,17,1,other,DSC_0819.JPG +25988,976,997,16,1,other,DSC_0819.JPG +25994,4633,1588,15,1,other,DSC_0819.JPG +25996,1645,58,16,1,other,DSC_0819.JPG +260,1771,34,16,1,other,DSC_0844.JPG +26000,259,361,17,1,other,DSC_0819.JPG +26002,724,427,15,1,other,DSC_0819.JPG +26005,1621,994,15,1,other,DSC_0819.JPG +26007,3895,1165,17,1,other,DSC_0819.JPG +2601,4243,2419,17,1,other,DSC_0844.JPG +26017,4453,1894,17,1,other,DSC_0819.JPG +26019,4585,2125,16,1,other,DSC_0819.JPG +26020,4024,2257,15,1,other,DSC_0819.JPG +26021,4501,7,17,1,other,DSC_0819.JPG +26022,511,52,17,1,other,DSC_0819.JPG +26024,4975,439,17,1,other,DSC_0819.JPG +26029,4003,751,17,1,other,DSC_0819.JPG +26033,5209,856,17,1,other,DSC_0819.JPG +26034,688,994,17,1,other,DSC_0819.JPG +2604,5179,1144,15,1,other,DSC_0844.JPG +26042,2734,1723,17,1,other,DSC_0819.JPG +26045,4795,2122,15,1,other,DSC_0819.JPG +26047,3535,2257,17,1,other,DSC_0819.JPG +26049,4828,2419,17,1,other,DSC_0819.JPG +26050,3769,58,17,1,other,DSC_0819.JPG +26051,118,115,17,1,other,DSC_0819.JPG +26056,4393,685,17,1,other,DSC_0819.JPG +26058,3760,928,17,1,other,DSC_0819.JPG +2606,5386,1369,15,1,other,DSC_0844.JPG +26060,85,1153,17,1,other,DSC_0819.JPG +26063,4270,2074,17,1,other,DSC_0819.JPG +26065,4864,2365,17,1,other,DSC_0819.JPG +26066,4684,2422,17,1,other,DSC_0819.JPG +26067,4273,2431,15,1,other,DSC_0819.JPG +26068,718,178,17,1,other,DSC_0819.JPG +26069,1261,241,17,1,other,DSC_0819.JPG +26077,3223,1234,16,1,other,DSC_0819.JPG +26079,1477,1243,17,1,other,DSC_0819.JPG +2608,415,2371,17,1,other,DSC_0844.JPG +26080,802,1294,17,1,other,DSC_0819.JPG +26087,5233,1639,17,1,other,DSC_0819.JPG +2609,3334,2422,17,1,other,DSC_0844.JPG +26095,3064,58,15,1,other,DSC_0819.JPG +26096,85,178,17,1,other,DSC_0819.JPG +26098,832,367,17,1,other,DSC_0819.JPG +26099,4870,370,17,1,other,DSC_0819.JPG +261,3214,115,16,1,other,DSC_0844.JPG +2610,5224,2476,15,1,other,DSC_0844.JPG +26103,4078,751,15,1,other,DSC_0819.JPG +26105,4678,931,16,1,other,DSC_0819.JPG +26106,3793,988,17,1,other,DSC_0819.JPG +2611,5335,73,15,1,other,DSC_0844.JPG +26113,226,1513,17,1,other,DSC_0819.JPG +26116,4384,1894,15,1,other,DSC_0819.JPG +26119,1081,2356,17,1,other,DSC_0819.JPG +26120,4756,2422,15,1,other,DSC_0819.JPG +26122,2029,2425,15,1,other,DSC_0819.JPG +26123,511,427,17,1,other,DSC_0819.JPG +26126,547,745,17,1,other,DSC_0819.JPG +26128,3793,1102,17,1,other,DSC_0819.JPG +26134,5266,1699,17,1,other,DSC_0819.JPG +26139,3112,2257,17,1,other,DSC_0819.JPG +2614,226,1888,15,1,other,DSC_0844.JPG +26140,979,2296,17,1,other,DSC_0819.JPG +26141,4129,2434,15,1,other,DSC_0819.JPG +26143,3130,58,17,1,other,DSC_0819.JPG +26144,3559,58,15,1,other,DSC_0819.JPG +26148,5206,376,17,1,other,DSC_0819.JPG +26150,3658,628,17,1,other,DSC_0819.JPG +26154,3934,991,17,1,other,DSC_0819.JPG +26157,3364,1351,16,1,other,DSC_0819.JPG +2616,313,2239,15,1,other,DSC_0844.JPG +26160,5158,1642,17,1,other,DSC_0819.JPG +26162,5074,1882,17,1,other,DSC_0819.JPG +26163,4792,2002,17,1,other,DSC_0819.JPG +26164,4480,2068,15,1,other,DSC_0819.JPG +26167,4546,2428,15,1,other,DSC_0819.JPG +26168,2491,58,17,1,other,DSC_0819.JPG +26169,2569,58,15,1,other,DSC_0819.JPG +2617,127,2362,15,1,other,DSC_0844.JPG +26170,403,115,16,1,other,DSC_0819.JPG +26171,580,298,17,1,other,DSC_0819.JPG +26178,4735,1414,15,1,other,DSC_0819.JPG +26181,2728,2437,17,1,other,DSC_0819.JPG +26183,691,367,15,1,other,DSC_0819.JPG +2619,5161,2482,17,1,other,DSC_0844.JPG +26193,3721,988,15,1,other,DSC_0819.JPG +26195,229,1042,17,1,other,DSC_0819.JPG +26196,298,1042,17,1,other,DSC_0819.JPG +26202,4177,1414,16,1,other,DSC_0819.JPG +26204,190,1570,17,1,other,DSC_0819.JPG +26207,4621,2065,17,1,other,DSC_0819.JPG +2621,5005,2500,15,1,other,DSC_0844.JPG +26210,4822,64,17,1,other,DSC_0819.JPG +26211,190,115,17,1,other,DSC_0819.JPG +26212,193,487,16,1,other,DSC_0819.JPG +26215,3409,931,15,1,other,DSC_0819.JPG +2622,292,40,17,1,other,DSC_0844.JPG +26221,4399,64,15,1,other,DSC_0819.JPG +26222,4225,250,17,1,other,DSC_0819.JPG +26223,4723,373,17,1,other,DSC_0819.JPG +26224,367,430,17,1,other,DSC_0819.JPG +26227,4393,811,17,1,other,DSC_0819.JPG +26228,3370,1105,17,1,other,DSC_0819.JPG +26232,265,1456,17,1,other,DSC_0819.JPG +26233,3508,1477,16,5,other,DSC_0819.JPG +26236,2710,58,17,1,other,DSC_0819.JPG +26237,4228,121,15,1,other,DSC_0819.JPG +26245,262,1342,17,1,other,DSC_0819.JPG +2625,5302,1735,17,1,other,DSC_0844.JPG +26251,5224,1879,17,1,other,DSC_0819.JPG +26254,4927,127,15,1,other,DSC_0819.JPG +26255,583,430,17,1,other,DSC_0819.JPG +26258,85,670,17,1,other,DSC_0819.JPG +26262,82,1036,17,1,other,DSC_0819.JPG +26265,223,1396,17,1,other,DSC_0819.JPG +26269,244,2326,17,1,other,DSC_0819.JPG +2627,508,2149,17,1,other,DSC_0844.JPG +26270,4969,2416,15,1,other,DSC_0819.JPG +26271,1957,2434,17,1,other,DSC_0819.JPG +26272,2356,58,15,1,other,DSC_0819.JPG +26273,4753,67,15,1,other,DSC_0819.JPG +26274,1468,118,17,1,other,DSC_0819.JPG +26275,88,547,17,1,other,DSC_0819.JPG +26277,5242,682,16,1,other,DSC_0819.JPG +2628,898,2407,15,1,other,DSC_0844.JPG +26289,877,2236,17,1,other,DSC_0819.JPG +2629,58,52,15,1,other,DSC_0844.JPG +26290,421,2278,15,1,other,DSC_0819.JPG +26292,3217,2440,15,1,other,DSC_0819.JPG +263,4642,730,17,1,other,DSC_0844.JPG +26300,4519,2014,17,1,other,DSC_0819.JPG +26301,4858,2239,17,1,other,DSC_0819.JPG +26302,172,2317,15,1,other,DSC_0819.JPG +26303,1261,2419,15,1,other,DSC_0819.JPG +26305,4585,499,17,5,other,DSC_0819.JPG +26306,5329,619,17,1,other,DSC_0819.JPG +26307,5308,916,15,1,other,DSC_0819.JPG +26309,3235,1108,15,1,other,DSC_0819.JPG +26311,3823,1288,17,1,other,DSC_0819.JPG +26318,160,1864,17,1,other,DSC_0819.JPG +26319,5257,1939,17,1,other,DSC_0819.JPG +26321,913,2173,17,1,other,DSC_0819.JPG +26323,4903,184,15,1,other,DSC_0819.JPG +26329,3511,1231,17,1,other,DSC_0819.JPG +2633,187,1939,15,1,other,DSC_0844.JPG +26331,5311,1279,15,1,other,DSC_0819.JPG +26332,4213,1477,16,1,other,DSC_0819.JPG +26333,1507,1537,17,1,other,DSC_0819.JPG +26336,631,2290,17,1,other,DSC_0819.JPG +26337,877,2353,17,1,other,DSC_0819.JPG +2634,1198,2320,17,1,other,DSC_0844.JPG +26343,478,616,17,1,other,DSC_0819.JPG +26344,5275,739,17,1,other,DSC_0819.JPG +26347,3202,1054,17,5,other,DSC_0819.JPG +26352,1474,1480,15,1,other,DSC_0819.JPG +26355,4459,1654,17,1,other,DSC_0819.JPG +26356,5224,2002,15,1,other,DSC_0819.JPG +26358,493,2398,15,1,other,DSC_0819.JPG +2636,1603,2026,15,1,other,DSC_0844.JPG +26360,4855,13,15,1,other,DSC_0819.JPG +26361,367,49,17,1,other,DSC_0819.JPG +26366,583,805,17,1,other,DSC_0819.JPG +26368,3721,871,15,1,other,DSC_0819.JPG +2637,178,2425,15,1,other,DSC_0844.JPG +26371,46,1210,15,1,other,DSC_0819.JPG +26374,115,1327,17,1,other,DSC_0819.JPG +26376,5299,1399,15,1,other,DSC_0819.JPG +26377,115,1444,15,1,other,DSC_0819.JPG +26379,274,2152,17,1,other,DSC_0819.JPG +26380,4831,2302,17,1,other,DSC_0819.JPG +26382,670,2350,17,1,other,DSC_0819.JPG +26383,4117,61,15,1,other,DSC_0819.JPG +26386,3259,1177,17,1,other,DSC_0819.JPG +26387,3613,1285,17,1,other,DSC_0819.JPG +26388,478,1462,16,1,other,DSC_0819.JPG +26389,5077,2008,17,1,other,DSC_0819.JPG +2639,5380,523,16,1,other,DSC_0844.JPG +26390,634,2401,15,1,other,DSC_0819.JPG +26391,703,2407,15,1,other,DSC_0819.JPG +26392,3919,2437,15,1,other,DSC_0819.JPG +26393,439,52,17,1,other,DSC_0819.JPG +26395,223,298,17,1,other,DSC_0819.JPG +26397,544,367,17,1,other,DSC_0819.JPG +26398,157,424,17,1,other,DSC_0819.JPG +26408,1084,1537,16,1,other,DSC_0819.JPG +26412,3430,2434,16,1,other,DSC_0819.JPG +26413,3910,61,15,1,other,DSC_0819.JPG +26414,5149,499,17,1,other,DSC_0819.JPG +26418,5335,856,15,1,other,DSC_0819.JPG +26420,3160,991,17,1,other,DSC_0819.JPG +2643,3298,2482,17,1,other,DSC_0844.JPG +26430,5284,1876,17,1,other,DSC_0819.JPG +26431,100,1966,17,1,other,DSC_0819.JPG +26433,838,2299,17,1,other,DSC_0819.JPG +26434,355,2389,16,1,other,DSC_0819.JPG +26435,4894,2422,15,1,other,DSC_0819.JPG +26436,3694,58,17,1,other,DSC_0819.JPG +26437,5140,130,15,1,other,DSC_0819.JPG +26438,370,178,17,1,other,DSC_0819.JPG +26439,5176,316,17,1,other,DSC_0819.JPG +2644,5080,2494,17,1,other,DSC_0844.JPG +26447,1441,1423,17,1,other,DSC_0819.JPG +26449,187,1690,17,1,other,DSC_0819.JPG +26453,562,2404,17,1,other,DSC_0819.JPG +26455,4969,190,17,1,other,DSC_0819.JPG +26456,472,235,16,1,other,DSC_0819.JPG +26457,298,424,17,1,other,DSC_0819.JPG +26458,124,487,17,1,other,DSC_0819.JPG +26459,370,1045,16,1,other,DSC_0819.JPG +26460,190,1105,17,1,other,DSC_0819.JPG +26469,5104,2299,15,1,other,DSC_0819.JPG +2647,1783,1159,15,1,other,DSC_0844.JPG +26470,805,2353,17,1,other,DSC_0819.JPG +26471,1189,2419,17,1,other,DSC_0819.JPG +26472,85,58,15,1,other,DSC_0819.JPG +26483,1225,1297,17,1,other,DSC_0819.JPG +26486,154,1507,17,1,other,DSC_0819.JPG +26489,304,2098,17,1,other,DSC_0819.JPG +2649,1174,1897,16,5,other,DSC_0844.JPG +26490,739,2347,17,1,other,DSC_0819.JPG +26491,979,2416,16,1,other,DSC_0819.JPG +26492,3145,2437,15,1,other,DSC_0819.JPG +26495,5044,685,17,1,other,DSC_0819.JPG +2650,79,2281,17,1,other,DSC_0844.JPG +26501,5206,979,17,1,other,DSC_0819.JPG +26502,4318,1171,17,1,other,DSC_0819.JPG +26503,4528,1291,16,1,other,DSC_0819.JPG +26507,4522,1654,17,1,other,DSC_0819.JPG +26509,241,2209,17,1,other,DSC_0819.JPG +2651,817,2338,15,1,other,DSC_0844.JPG +26510,139,2260,15,1,other,DSC_0819.JPG +26511,4342,2434,15,1,other,DSC_0819.JPG +26512,4681,67,17,1,other,DSC_0819.JPG +26514,4042,571,17,1,other,DSC_0819.JPG +26515,5302,679,17,1,other,DSC_0819.JPG +26517,157,913,17,1,other,DSC_0819.JPG +26519,4564,1228,17,1,other,DSC_0819.JPG +2652,487,2377,16,1,other,DSC_0844.JPG +26524,2146,58,17,1,other,DSC_0819.JPG +26527,52,604,15,1,other,DSC_0819.JPG +26528,154,1159,15,1,other,DSC_0819.JPG +2653,2356,2401,15,1,other,DSC_0844.JPG +26532,85,1267,17,1,other,DSC_0819.JPG +26535,121,1564,17,1,other,DSC_0819.JPG +2654,4882,61,17,1,other,DSC_0844.JPG +26541,343,2158,17,1,other,DSC_0819.JPG +26542,4360,7,15,1,other,DSC_0819.JPG +26543,331,115,16,1,other,DSC_0819.JPG +26544,475,115,17,1,other,DSC_0819.JPG +26546,5143,376,17,1,other,DSC_0819.JPG +26558,4930,2362,17,1,other,DSC_0819.JPG +26559,4288,7,15,1,other,DSC_0819.JPG +26567,2587,2431,17,1,other,DSC_0819.JPG +26568,532,2452,15,1,other,DSC_0819.JPG +26569,5209,499,17,1,other,DSC_0819.JPG +26570,4009,505,17,1,other,DSC_0819.JPG +26575,223,919,17,1,other,DSC_0819.JPG +26582,1018,2359,17,1,other,DSC_0819.JPG +26583,139,2371,17,1,other,DSC_0819.JPG +26585,4411,2431,15,1,other,DSC_0819.JPG +26587,4783,10,17,1,other,DSC_0819.JPG +26588,5203,13,15,1,other,DSC_0819.JPG +26590,5236,193,17,1,other,DSC_0819.JPG +26597,121,973,17,1,other,DSC_0819.JPG +26598,5305,1039,17,1,other,DSC_0819.JPG +26608,598,2233,17,1,other,DSC_0819.JPG +26609,5170,2296,17,1,other,DSC_0819.JPG +26610,151,55,17,1,other,DSC_0819.JPG +26612,121,607,17,1,other,DSC_0819.JPG +26613,508,685,17,1,other,DSC_0819.JPG +26619,2518,2440,17,1,other,DSC_0819.JPG +2662,1375,2002,15,1,other,DSC_0844.JPG +26622,799,934,15,1,other,DSC_0819.JPG +26627,154,1390,17,1,other,DSC_0819.JPG +2663,1981,2329,17,1,other,DSC_0844.JPG +26630,5290,1759,15,1,other,DSC_0819.JPG +26635,4714,10,17,1,other,DSC_0819.JPG +2664,4312,2428,17,1,other,DSC_0844.JPG +26642,151,1276,17,1,other,DSC_0819.JPG +26644,3550,1411,17,1,other,DSC_0819.JPG +26647,5179,2182,15,1,other,DSC_0819.JPG +26648,3673,2260,15,1,other,DSC_0819.JPG +2665,1474,2485,17,1,other,DSC_0844.JPG +26650,4690,2299,17,1,other,DSC_0819.JPG +26651,211,2383,17,1,other,DSC_0819.JPG +26652,1609,2425,15,1,other,DSC_0819.JPG +26655,5272,622,17,1,other,DSC_0819.JPG +26658,331,865,17,1,other,DSC_0819.JPG +26665,370,1990,17,1,other,DSC_0819.JPG +26666,67,2017,15,1,other,DSC_0819.JPG +26668,5215,2122,17,1,other,DSC_0819.JPG +26669,208,2266,17,1,other,DSC_0819.JPG +26670,5071,2359,17,1,other,DSC_0819.JPG +26671,598,2458,17,1,other,DSC_0819.JPG +26676,4675,805,15,1,other,DSC_0819.JPG +26678,5140,865,15,1,other,DSC_0819.JPG +26686,115,1687,15,1,other,DSC_0819.JPG +26689,1330,2416,17,1,other,DSC_0819.JPG +26690,178,2440,17,1,other,DSC_0819.JPG +26691,2629,55,17,1,other,DSC_0819.JPG +26700,58,1681,17,1,other,DSC_0819.JPG +26701,67,2131,17,1,other,DSC_0819.JPG +26702,5302,2158,17,1,other,DSC_0819.JPG +26705,4432,7,15,1,other,DSC_0819.JPG +26706,1858,61,17,1,other,DSC_0819.JPG +26708,121,364,15,1,other,DSC_0819.JPG +26714,262,982,17,1,other,DSC_0819.JPG +26719,5296,1639,16,1,other,DSC_0819.JPG +26721,5104,2182,17,1,other,DSC_0819.JPG +26722,4621,2422,17,1,other,DSC_0819.JPG +26724,619,370,17,1,other,DSC_0819.JPG +26726,55,481,17,1,other,DSC_0819.JPG +26739,295,1165,16,1,other,DSC_0819.JPG +26743,88,1501,17,1,other,DSC_0819.JPG +26744,154,1627,17,1,other,DSC_0819.JPG +26745,94,1738,15,1,other,DSC_0819.JPG +26749,4582,2368,17,5,other,DSC_0819.JPG +2675,121,1939,15,1,other,DSC_0844.JPG +26750,223,175,17,1,other,DSC_0819.JPG +26751,88,301,17,1,other,DSC_0819.JPG +26753,5110,556,17,1,other,DSC_0819.JPG +2676,343,2188,15,1,other,DSC_0844.JPG +26766,445,1873,17,1,other,DSC_0819.JPG +26767,460,2446,17,1,other,DSC_0819.JPG +26768,4993,13,16,1,other,DSC_0819.JPG +26769,118,241,17,1,other,DSC_0819.JPG +2677,5188,43,17,1,other,DSC_0844.JPG +26776,5233,2389,17,1,other,DSC_0819.JPG +26777,424,2395,17,1,other,DSC_0819.JPG +26778,4645,7,16,1,other,DSC_0819.JPG +26779,5095,73,17,1,other,DSC_0819.JPG +26780,5143,250,15,1,other,DSC_0819.JPG +26793,409,1813,15,1,other,DSC_0819.JPG +26794,88,1858,17,1,other,DSC_0819.JPG +26795,130,2026,17,1,other,DSC_0819.JPG +26796,538,2206,15,1,other,DSC_0819.JPG +26797,388,2224,15,1,other,DSC_0819.JPG +26798,5269,2224,15,1,other,DSC_0819.JPG +26799,73,2248,15,1,other,DSC_0819.JPG +268,148,1051,17,1,other,DSC_0844.JPG +26800,595,2347,17,1,other,DSC_0819.JPG +26801,4159,121,15,1,other,DSC_0819.JPG +26803,5242,322,15,1,other,DSC_0819.JPG +26809,154,676,17,1,other,DSC_0819.JPG +26815,298,1399,15,1,other,DSC_0819.JPG +26822,352,2275,17,1,other,DSC_0819.JPG +26824,3379,4,17,1,other,DSC_0819.JPG +26825,151,298,17,1,other,DSC_0819.JPG +26828,5272,859,17,1,other,DSC_0819.JPG +2683,847,19,15,1,other,DSC_0844.JPG +26833,484,1699,15,1,other,DSC_0819.JPG +26836,1261,4,16,1,other,DSC_0819.JPG +26837,5062,133,17,1,other,DSC_0819.JPG +26838,4195,184,17,1,other,DSC_0819.JPG +26847,208,2149,15,1,other,DSC_0819.JPG +26848,5239,2284,15,1,other,DSC_0819.JPG +26849,3457,4,17,1,other,DSC_0819.JPG +26855,5305,799,17,1,other,DSC_0819.JPG +26857,4684,1174,15,1,other,DSC_0819.JPG +2686,412,511,17,1,other,DSC_0844.JPG +26869,157,1747,17,1,other,DSC_0819.JPG +26870,193,1804,17,1,other,DSC_0819.JPG +26872,772,2410,15,1,other,DSC_0819.JPG +26874,262,490,17,1,other,DSC_0819.JPG +26877,55,733,15,1,other,DSC_0819.JPG +26879,5245,802,15,1,other,DSC_0819.JPG +26887,301,1870,17,1,other,DSC_0819.JPG +26889,913,2413,15,1,other,DSC_0819.JPG +26891,394,2443,17,1,other,DSC_0819.JPG +26892,295,178,17,1,other,DSC_0819.JPG +26893,439,178,15,1,other,DSC_0819.JPG +26908,5272,253,17,1,other,DSC_0819.JPG +26909,193,364,17,1,other,DSC_0819.JPG +26915,52,1090,15,1,other,DSC_0819.JPG +26924,139,2131,17,1,other,DSC_0819.JPG +26925,562,2290,17,1,other,DSC_0819.JPG +26926,5236,73,15,1,other,DSC_0819.JPG +2694,265,2071,17,1,other,DSC_0844.JPG +26943,5281,1999,15,1,other,DSC_0819.JPG +26944,5188,2065,17,1,other,DSC_0819.JPG +26945,5170,2404,15,1,other,DSC_0819.JPG +26946,673,2455,15,1,other,DSC_0819.JPG +26954,3340,1165,15,1,other,DSC_0819.JPG +26956,82,1390,15,1,other,DSC_0819.JPG +26959,526,2341,17,1,other,DSC_0819.JPG +26960,808,2458,15,1,other,DSC_0819.JPG +26962,5338,379,17,1,other,DSC_0819.JPG +26967,5137,742,17,1,other,DSC_0819.JPG +26973,5257,2062,15,1,other,DSC_0819.JPG +26974,100,2077,15,1,other,DSC_0819.JPG +26976,250,2443,15,1,other,DSC_0819.JPG +26977,3232,7,15,1,other,DSC_0819.JPG +26979,4081,511,15,1,other,DSC_0819.JPG +2698,4309,1276,15,1,other,DSC_0844.JPG +26981,5278,970,15,1,other,DSC_0819.JPG +26985,337,1576,17,1,other,DSC_0819.JPG +26987,193,1915,15,1,other,DSC_0819.JPG +26988,1051,2419,15,1,other,DSC_0819.JPG +26989,4576,4,16,1,other,DSC_0819.JPG +26990,5002,124,17,1,other,DSC_0819.JPG +26991,5206,133,15,1,other,DSC_0819.JPG +26996,367,1285,17,1,other,DSC_0819.JPG +2700,136,46,15,1,other,DSC_0844.JPG +27000,256,115,17,1,other,DSC_0819.JPG +27013,91,1621,17,1,other,DSC_0819.JPG +27017,415,2164,17,1,other,DSC_0819.JPG +27018,847,2407,15,1,other,DSC_0819.JPG +27029,5341,1216,17,1,other,DSC_0819.JPG +2703,142,2134,17,1,other,DSC_0844.JPG +27035,301,1750,17,1,other,DSC_0819.JPG +27037,337,2044,17,1,other,DSC_0819.JPG +27038,4051,445,17,1,other,DSC_0819.JPG +2704,367,2281,17,1,other,DSC_0844.JPG +27049,448,2107,17,1,other,DSC_0819.JPG +27050,49,235,17,1,other,DSC_0819.JPG +27052,5269,379,17,1,other,DSC_0819.JPG +2706,5029,73,17,1,other,DSC_0844.JPG +27068,4009,256,15,1,other,DSC_0819.JPG +27074,259,1105,17,1,other,DSC_0819.JPG +27081,127,1912,17,1,other,DSC_0819.JPG +27082,1399,2428,15,1,other,DSC_0819.JPG +27083,190,238,17,1,other,DSC_0819.JPG +27095,121,1798,17,1,other,DSC_0819.JPG +27098,409,2047,15,1,other,DSC_0819.JPG +27099,5134,2353,17,1,other,DSC_0819.JPG +27100,745,2458,15,1,other,DSC_0819.JPG +27101,880,2470,15,1,other,DSC_0819.JPG +27102,4156,4,17,1,other,DSC_0819.JPG +27105,187,739,15,1,other,DSC_0819.JPG +27106,5167,802,17,1,other,DSC_0819.JPG +27110,661,1645,17,1,other,DSC_0819.JPG +27111,451,2224,17,1,other,DSC_0819.JPG +27112,5035,2410,17,1,other,DSC_0819.JPG +27113,5335,1096,17,1,other,DSC_0819.JPG +27118,625,1942,17,1,other,DSC_0819.JPG +27119,4369,2485,15,1,other,DSC_0819.JPG +2712,1201,1438,17,1,other,DSC_0844.JPG +27120,4084,250,17,1,other,DSC_0819.JPG +27131,4729,2470,15,1,other,DSC_0819.JPG +27132,898,4,15,1,other,DSC_0819.JPG +27133,973,4,15,1,other,DSC_0819.JPG +27140,55,847,17,1,other,DSC_0819.JPG +27146,259,1687,15,1,other,DSC_0819.JPG +27147,5320,1816,17,1,other,DSC_0819.JPG +27148,3610,2488,15,1,other,DSC_0819.JPG +2715,3883,2437,17,1,other,DSC_0844.JPG +27153,55,970,17,1,other,DSC_0819.JPG +27155,4102,1177,15,1,other,DSC_0819.JPG +27157,43,1327,15,1,other,DSC_0819.JPG +27159,520,2110,16,1,other,DSC_0819.JPG +27160,5302,2383,17,1,other,DSC_0819.JPG +27161,952,2473,15,1,other,DSC_0819.JPG +27162,262,238,17,1,other,DSC_0819.JPG +27175,235,2098,17,1,other,DSC_0819.JPG +27176,457,2338,17,1,other,DSC_0819.JPG +27177,283,2386,17,1,other,DSC_0819.JPG +27179,22,670,17,1,other,DSC_0819.JPG +27188,58,1906,17,1,other,DSC_0819.JPG +27189,268,1927,17,1,other,DSC_0819.JPG +27190,268,2263,15,1,other,DSC_0819.JPG +27191,3595,4,17,1,other,DSC_0819.JPG +27192,4222,7,15,1,other,DSC_0819.JPG +27194,5368,562,17,1,other,DSC_0819.JPG +27200,262,1807,17,1,other,DSC_0819.JPG +27201,232,1861,15,1,other,DSC_0819.JPG +27202,232,1984,17,1,other,DSC_0819.JPG +27203,376,2104,17,1,other,DSC_0819.JPG +27204,664,2119,17,1,other,DSC_0819.JPG +27205,5209,2236,17,1,other,DSC_0819.JPG +27206,385,2332,17,1,other,DSC_0819.JPG +27207,5098,2407,15,1,other,DSC_0819.JPG +27208,1783,2476,17,1,other,DSC_0819.JPG +27209,2686,2485,15,1,other,DSC_0819.JPG +27210,5071,13,17,1,other,DSC_0819.JPG +27211,3943,124,15,1,other,DSC_0819.JPG +27212,5341,136,15,1,other,DSC_0819.JPG +27213,3979,187,15,1,other,DSC_0819.JPG +27221,220,1624,17,1,other,DSC_0819.JPG +27224,625,1822,17,1,other,DSC_0819.JPG +27225,442,1990,17,1,other,DSC_0819.JPG +27227,1333,2179,15,1,other,DSC_0819.JPG +27229,4039,184,17,1,other,DSC_0819.JPG +2723,10,1270,15,1,other,DSC_0844.JPG +27230,5239,433,15,1,other,DSC_0819.JPG +27231,5305,433,17,1,other,DSC_0819.JPG +27234,340,979,17,1,other,DSC_0819.JPG +27237,4081,1357,17,1,other,DSC_0819.JPG +27239,2344,2494,17,1,other,DSC_0819.JPG +27241,5338,253,17,1,other,DSC_0819.JPG +27252,31,1960,17,1,other,DSC_0819.JPG +27253,4012,52,15,1,other,DSC_0819.JPG +27257,172,2203,17,1,other,DSC_0819.JPG +27258,1468,4,15,1,other,DSC_0819.JPG +27259,1963,4,16,1,other,DSC_0819.JPG +2726,4795,2512,17,1,other,DSC_0844.JPG +27260,3658,4,15,1,other,DSC_0819.JPG +27261,5278,136,15,1,other,DSC_0819.JPG +27268,109,2182,15,1,other,DSC_0819.JPG +27269,5140,16,17,1,other,DSC_0819.JPG +2727,25,103,15,1,other,DSC_0844.JPG +27270,5305,319,17,1,other,DSC_0819.JPG +27272,5302,559,15,1,other,DSC_0819.JPG +27277,5365,2161,17,1,other,DSC_0819.JPG +27278,5395,2215,17,1,other,DSC_0819.JPG +27279,4021,2491,15,1,other,DSC_0819.JPG +27280,3871,4,15,1,other,DSC_0819.JPG +27282,16,910,17,1,other,DSC_0819.JPG +27284,490,2287,17,1,other,DSC_0819.JPG +27285,4789,2479,15,1,other,DSC_0819.JPG +27286,52,121,15,1,other,DSC_0819.JPG +27290,5335,979,17,1,other,DSC_0819.JPG +27294,160,1972,17,1,other,DSC_0819.JPG +27295,301,1984,15,1,other,DSC_0819.JPG +27296,3535,2497,15,1,other,DSC_0819.JPG +27297,3529,10,16,1,other,DSC_0819.JPG +27300,25,1027,17,1,other,DSC_0819.JPG +27302,37,2188,17,1,other,DSC_0819.JPG +27303,3322,2503,17,1,other,DSC_0819.JPG +27306,5362,1516,17,1,other,DSC_0819.JPG +27307,262,2041,15,1,other,DSC_0819.JPG +27308,5317,2059,17,1,other,DSC_0819.JPG +27309,2827,2500,15,1,other,DSC_0819.JPG +27310,3124,2500,15,1,other,DSC_0819.JPG +27311,5167,67,17,1,other,DSC_0819.JPG +27312,5305,199,15,1,other,DSC_0819.JPG +27313,4147,217,17,1,other,DSC_0819.JPG +27314,5080,244,17,1,other,DSC_0819.JPG +27319,19,1735,16,1,other,DSC_0819.JPG +27320,52,1798,17,1,other,DSC_0819.JPG +27321,313,2332,17,1,other,DSC_0819.JPG +27322,115,2428,17,1,other,DSC_0819.JPG +27323,4510,2485,17,1,other,DSC_0819.JPG +27324,4441,2488,17,1,other,DSC_0819.JPG +27325,3742,2500,17,1,other,DSC_0819.JPG +27328,520,1756,15,1,other,DSC_0819.JPG +27329,196,2035,17,1,other,DSC_0819.JPG +27330,3019,4,17,1,other,DSC_0819.JPG +27332,5395,1330,17,1,other,DSC_0819.JPG +27334,2956,4,15,1,other,DSC_0819.JPG +27337,5359,1393,15,1,other,DSC_0819.JPG +27339,25,1612,17,1,other,DSC_0819.JPG +27340,4102,2497,17,1,other,DSC_0819.JPG +27343,160,2080,15,1,other,DSC_0819.JPG +27344,106,2311,17,1,other,DSC_0819.JPG +27345,3391,2500,17,1,other,DSC_0819.JPG +27348,4576,2488,17,1,other,DSC_0819.JPG +27349,2764,2491,17,1,other,DSC_0819.JPG +2735,1543,2347,15,1,other,DSC_0844.JPG +27350,3163,7,15,1,other,DSC_0819.JPG +27351,5371,439,15,1,other,DSC_0819.JPG +27353,5326,1459,17,1,other,DSC_0819.JPG +27354,4645,2473,15,1,other,DSC_0819.JPG +27355,3250,2494,15,1,other,DSC_0819.JPG +27356,4237,2494,17,1,other,DSC_0819.JPG +27357,214,2500,17,1,other,DSC_0819.JPG +27358,1825,7,17,1,other,DSC_0819.JPG +27359,4078,136,15,1,other,DSC_0819.JPG +2736,2947,2455,15,1,other,DSC_0844.JPG +27361,5386,1450,17,1,other,DSC_0819.JPG +27362,4858,2476,17,1,other,DSC_0819.JPG +27363,3880,2500,17,1,other,DSC_0819.JPG +27364,2746,7,17,1,other,DSC_0819.JPG +27365,19,790,17,1,other,DSC_0819.JPG +27367,5326,1573,15,1,other,DSC_0819.JPG +27368,652,1759,15,1,other,DSC_0819.JPG +27369,4000,2065,17,1,other,DSC_0819.JPG +2737,3085,2467,15,1,other,DSC_0844.JPG +27370,40,2071,17,1,other,DSC_0819.JPG +27371,3307,4,15,1,other,DSC_0819.JPG +27372,85,430,15,1,other,DSC_0819.JPG +27373,5368,1273,17,1,other,DSC_0819.JPG +27376,4306,2488,17,1,other,DSC_0819.JPG +27377,2992,2500,17,1,other,DSC_0819.JPG +27378,3469,2500,15,1,other,DSC_0819.JPG +27379,427,2512,17,1,other,DSC_0819.JPG +27380,1096,2467,15,1,other,DSC_0819.JPG +27381,4930,2479,17,1,other,DSC_0819.JPG +27382,3952,2488,15,1,other,DSC_0819.JPG +27384,5347,1987,17,1,other,DSC_0819.JPG +27385,5347,2335,17,1,other,DSC_0819.JPG +27386,5128,2455,15,1,other,DSC_0819.JPG +27387,1021,2476,17,1,other,DSC_0819.JPG +27388,2065,2476,15,1,other,DSC_0819.JPG +27389,1999,2488,17,1,other,DSC_0819.JPG +2739,1519,2431,17,1,other,DSC_0844.JPG +27390,5308,70,15,1,other,DSC_0819.JPG +27391,5275,502,15,1,other,DSC_0819.JPG +27393,5263,2338,15,1,other,DSC_0819.JPG +27394,3673,2491,17,1,other,DSC_0819.JPG +27395,358,2503,15,1,other,DSC_0819.JPG +27396,5341,10,17,1,other,DSC_0819.JPG +27397,28,1855,15,1,other,DSC_0819.JPG +27398,4060,25,15,1,other,DSC_0819.JPG +27399,5311,1924,15,1,other,DSC_0819.JPG +27400,5335,2215,16,1,other,DSC_0819.JPG +27401,280,2497,15,1,other,DSC_0819.JPG +27402,2893,2503,17,1,other,DSC_0819.JPG +27403,5167,199,15,1,other,DSC_0819.JPG +27404,5371,319,17,1,other,DSC_0819.JPG +27405,61,358,17,1,other,DSC_0819.JPG +27407,5338,499,17,1,other,DSC_0819.JPG +27408,5365,793,17,1,other,DSC_0819.JPG +27409,5395,1102,15,1,other,DSC_0819.JPG +27410,3814,2485,15,1,other,DSC_0819.JPG +27411,3799,7,15,1,other,DSC_0819.JPG +27412,697,4,17,1,other,DSC_0819.JPG +27413,1618,7,17,1,other,DSC_0819.JPG +27415,5335,1336,15,1,other,DSC_0819.JPG +27416,5062,2470,17,1,other,DSC_0819.JPG +27417,4162,2497,17,1,other,DSC_0819.JPG +27418,5272,10,15,1,other,DSC_0819.JPG +27419,5377,79,15,1,other,DSC_0819.JPG +27420,5371,913,17,1,other,DSC_0819.JPG +27421,5389,1570,17,1,other,DSC_0819.JPG +27422,4990,2473,15,1,other,DSC_0819.JPG +27423,3055,2503,15,1,other,DSC_0819.JPG +27424,1324,1012,15,1,other,DSC_0819.JPG +27425,22,1261,15,1,other,DSC_0819.JPG +27427,5359,2272,16,1,other,DSC_0819.JPG +27428,5302,2275,17,1,other,DSC_0819.JPG +27429,145,2488,17,1,other,DSC_0819.JPG +27431,5362,1156,15,1,other,DSC_0819.JPG +27432,3826,2137,15,5,other,DSC_0819.JPG +27434,5347,1867,15,1,other,DSC_0819.JPG +27435,5356,1759,17,1,other,DSC_0819.JPG +27436,1684,4,17,1,other,DSC_0819.JPG +27437,5395,733,15,1,other,DSC_0819.JPG +27438,5368,1033,17,1,other,DSC_0819.JPG +27439,5383,1693,17,1,other,DSC_0819.JPG +27440,490,2512,15,1,other,DSC_0819.JPG +27441,2686,4,15,1,other,DSC_0819.JPG +27442,3724,7,17,1,other,DSC_0819.JPG +27443,5209,253,17,1,other,DSC_0819.JPG +27444,5368,670,17,1,other,DSC_0819.JPG +27445,5395,973,17,1,other,DSC_0819.JPG +27446,4,2011,15,1,other,DSC_0819.JPG +27447,1885,4,15,1,other,DSC_0819.JPG +27448,5203,2452,15,1,other,DSC_0819.JPG +27449,4066,82,15,1,other,DSC_0819.JPG +27450,55,1558,15,1,other,DSC_0819.JPG +27451,3085,7,17,1,other,DSC_0819.JPG +27452,5380,196,17,1,other,DSC_0819.JPG +27453,7,2122,15,1,other,DSC_0819.JPG +27454,2251,7,15,1,other,DSC_0819.JPG +27455,5152,2236,15,1,other,DSC_0819.JPG +27456,5269,2440,17,1,other,DSC_0819.JPG +27457,5362,1627,15,1,other,DSC_0819.JPG +27458,5332,730,17,1,other,DSC_0819.JPG +27459,130,4,15,1,other,DSC_0819.JPG +2746,7,1393,15,1,other,DSC_0844.JPG +27462,2092,2062,15,1,other,DSC_0819.JPG +27463,16,2263,17,1,other,DSC_0819.JPG +27464,2893,7,17,1,other,DSC_0819.JPG +27465,4204,1237,15,1,other,DSC_0819.JPG +27466,2026,4,15,1,other,DSC_0819.JPG +27467,3976,7,15,1,other,DSC_0819.JPG +2747,1330,1510,15,1,other,DSC_0844.JPG +27470,3184,1312,17,1,other,DSC_0819.JPG +27471,5380,1930,17,1,other,DSC_0819.JPG +27472,5368,2080,17,1,other,DSC_0819.JPG +27473,61,2377,15,1,other,DSC_0819.JPG +27474,406,4,15,1,other,DSC_0819.JPG +27475,46,2320,17,1,other,DSC_0819.JPG +27476,547,7,15,1,other,DSC_0819.JPG +27477,43,10,16,1,other,DSC_0819.JPG +27478,5377,1816,15,1,other,DSC_0819.JPG +27479,5395,862,17,1,other,DSC_0819.JPG +27480,1333,7,15,1,other,DSC_0819.JPG +27484,4195,178,16,1,other,DSC_0840.JPG +27485,889,91,16,5,other,DSC_0840.JPG +2749,403,2197,15,1,other,DSC_0844.JPG +27493,1918,907,15,1,other,DSC_0840.JPG +27497,3016,610,16,1,other,DSC_0840.JPG +27499,1558,1852,16,1,other,DSC_0840.JPG +2750,3376,2488,17,1,other,DSC_0844.JPG +27501,3088,109,15,1,other,DSC_0840.JPG +27502,1318,217,15,1,other,DSC_0840.JPG +27506,250,328,15,1,other,DSC_0840.JPG +27508,1921,415,17,5,other,DSC_0840.JPG +27510,3877,112,17,1,other,DSC_0840.JPG +27514,136,748,17,1,other,DSC_0840.JPG +27515,2563,289,16,1,other,DSC_0840.JPG +27517,5242,127,16,1,other,DSC_0840.JPG +27519,4051,172,17,1,other,DSC_0840.JPG +27520,283,262,17,5,other,DSC_0840.JPG +27523,4228,112,17,1,other,DSC_0840.JPG +27524,3979,175,17,1,other,DSC_0840.JPG +27525,2416,418,16,1,other,DSC_0840.JPG +27527,5203,1582,17,5,other,DSC_0840.JPG +27528,2623,913,17,5,other,DSC_0840.JPG +27529,2584,1096,15,1,other,DSC_0840.JPG +27530,2632,289,15,1,other,DSC_0840.JPG +27532,709,151,15,5,other,DSC_0840.JPG +27534,2410,790,17,1,other,DSC_0840.JPG +27538,1735,1795,17,5,other,DSC_0840.JPG +2754,2809,2455,15,1,other,DSC_0844.JPG +27540,4267,304,16,1,other,DSC_0840.JPG +27541,4228,370,16,1,other,DSC_0840.JPG +27543,2209,166,17,1,other,DSC_0840.JPG +27545,2560,415,15,1,other,DSC_0840.JPG +27546,2629,418,16,1,other,DSC_0840.JPG +27547,1663,1792,15,1,other,DSC_0840.JPG +27548,1069,403,16,1,other,DSC_0840.JPG +27549,2731,853,16,1,other,DSC_0840.JPG +2755,4921,130,15,1,other,DSC_0844.JPG +27555,751,88,16,1,other,DSC_0840.JPG +27558,2410,1741,17,1,other,DSC_0840.JPG +27561,3871,238,16,1,other,DSC_0840.JPG +27562,397,328,17,1,other,DSC_0840.JPG +27563,1993,541,15,1,other,DSC_0840.JPG +27566,1132,34,17,1,other,DSC_0840.JPG +27567,712,274,17,5,other,DSC_0840.JPG +27568,1882,967,16,1,other,DSC_0840.JPG +27573,3625,433,17,1,other,DSC_0840.JPG +27575,2728,976,17,1,other,DSC_0840.JPG +27577,3739,241,15,1,other,DSC_0840.JPG +27579,2878,610,16,1,other,DSC_0840.JPG +27583,4234,241,16,1,other,DSC_0840.JPG +27584,430,268,17,1,other,DSC_0840.JPG +27585,1069,274,17,1,other,DSC_0840.JPG +27594,4159,109,17,1,other,DSC_0840.JPG +27595,604,211,17,5,other,DSC_0840.JPG +27598,2830,1156,17,1,other,DSC_0840.JPG +27599,4051,76,16,1,other,DSC_0840.JPG +276,1480,151,15,1,other,DSC_0844.JPG +2760,238,2011,17,1,other,DSC_0844.JPG +27600,640,148,17,5,other,DSC_0840.JPG +27604,5038,2299,15,1,other,DSC_0840.JPG +27605,1141,403,16,1,other,DSC_0840.JPG +27606,4648,505,17,5,other,DSC_0840.JPG +27610,1804,2035,17,1,other,DSC_0840.JPG +27611,1366,43,15,1,other,DSC_0840.JPG +27614,4222,622,16,1,other,DSC_0840.JPG +27615,2335,1741,16,1,other,DSC_0840.JPG +27616,3667,241,15,5,other,DSC_0840.JPG +2762,1057,22,15,1,other,DSC_0844.JPG +27621,2767,670,16,1,other,DSC_0840.JPG +27622,2980,673,16,1,other,DSC_0840.JPG +27623,2521,853,17,1,other,DSC_0840.JPG +27625,778,2068,16,1,other,DSC_0840.JPG +27627,4573,631,15,1,other,DSC_0840.JPG +27631,4438,376,16,1,other,DSC_0840.JPG +27633,4951,697,15,1,other,DSC_0840.JPG +27642,2950,484,16,1,other,DSC_0840.JPG +27646,4375,112,17,1,other,DSC_0840.JPG +27647,853,151,15,1,other,DSC_0840.JPG +27655,2980,547,17,1,other,DSC_0840.JPG +27656,2557,667,17,1,other,DSC_0840.JPG +27659,4300,112,16,1,other,DSC_0840.JPG +2766,1339,2140,16,1,other,DSC_0844.JPG +27660,3910,175,16,1,other,DSC_0840.JPG +27661,1990,787,17,1,other,DSC_0840.JPG +27662,2875,859,17,1,other,DSC_0840.JPG +27663,1873,1672,17,1,other,DSC_0840.JPG +27664,2965,1873,16,1,other,DSC_0840.JPG +27665,4723,2350,17,1,other,DSC_0840.JPG +27667,673,211,17,5,other,DSC_0840.JPG +27669,2809,355,17,1,other,DSC_0840.JPG +2767,4483,2461,15,1,other,DSC_0844.JPG +27675,2944,610,17,1,other,DSC_0840.JPG +27676,3052,670,17,1,other,DSC_0840.JPG +27677,1207,2077,17,1,other,DSC_0840.JPG +27678,499,2179,15,1,other,DSC_0840.JPG +27682,2905,1036,17,1,other,DSC_0840.JPG +27685,2533,103,15,1,other,DSC_0840.JPG +27693,2515,1096,16,1,other,DSC_0840.JPG +27694,2797,1096,17,1,other,DSC_0840.JPG +27695,2422,163,15,1,other,DSC_0840.JPG +27700,2794,1939,16,1,other,DSC_0840.JPG +27703,3631,301,17,5,other,DSC_0840.JPG +27706,2482,913,16,1,other,DSC_0840.JPG +27712,3943,241,15,1,other,DSC_0840.JPG +27713,4585,376,17,1,other,DSC_0840.JPG +27714,2128,787,17,1,other,DSC_0840.JPG +27715,3085,856,17,5,other,DSC_0840.JPG +27717,3079,982,17,1,other,DSC_0840.JPG +27722,4897,2299,17,1,other,DSC_0840.JPG +27725,1213,403,17,1,other,DSC_0840.JPG +27727,2875,736,17,1,other,DSC_0840.JPG +27728,1561,904,17,5,other,DSC_0840.JPG +2773,1447,2056,16,1,other,DSC_0844.JPG +27731,5161,1642,17,5,other,DSC_0840.JPG +27732,5038,2182,17,1,other,DSC_0840.JPG +27734,2662,730,16,1,other,DSC_0840.JPG +27736,5212,1354,17,5,other,DSC_0840.JPG +27737,2965,1753,16,1,other,DSC_0840.JPG +27738,532,2239,15,5,other,DSC_0840.JPG +27739,1819,223,16,1,other,DSC_0840.JPG +2774,1261,2116,15,1,other,DSC_0844.JPG +27740,1420,1375,15,1,other,DSC_0840.JPG +27741,1348,1966,15,1,other,DSC_0840.JPG +27743,3124,49,17,1,other,DSC_0840.JPG +2775,5176,2152,15,1,other,DSC_0844.JPG +27751,1312,2023,17,1,other,DSC_0840.JPG +27752,1273,2080,17,1,other,DSC_0840.JPG +27757,3403,922,17,1,other,DSC_0840.JPG +27759,2833,1039,15,1,other,DSC_0840.JPG +27761,2206,46,17,1,other,DSC_0840.JPG +27762,2668,355,16,1,other,DSC_0840.JPG +27764,2878,484,17,1,other,DSC_0840.JPG +27765,2626,793,16,1,other,DSC_0840.JPG +27772,820,211,15,5,other,DSC_0840.JPG +27773,2950,232,15,1,other,DSC_0840.JPG +27777,2344,667,17,5,other,DSC_0840.JPG +27778,2554,913,16,1,other,DSC_0840.JPG +27780,5056,1465,17,5,other,DSC_0840.JPG +27781,601,91,17,1,other,DSC_0840.JPG +27791,4267,178,16,1,other,DSC_0840.JPG +27793,4480,307,17,1,other,DSC_0840.JPG +27796,2050,1501,17,1,other,DSC_0840.JPG +27799,1555,1969,16,1,other,DSC_0840.JPG +2780,3019,2467,17,1,other,DSC_0844.JPG +27803,2803,733,16,1,other,DSC_0840.JPG +27804,2341,790,17,1,other,DSC_0840.JPG +27808,1876,2032,17,1,other,DSC_0840.JPG +27809,2281,292,17,1,other,DSC_0840.JPG +27811,2905,922,17,1,other,DSC_0840.JPG +27814,5227,1759,15,5,other,DSC_0840.JPG +27815,2338,1864,16,1,other,DSC_0840.JPG +27816,2572,43,17,1,other,DSC_0840.JPG +27817,3199,58,17,1,other,DSC_0840.JPG +27827,745,2011,17,1,other,DSC_0840.JPG +27831,3124,550,17,1,other,DSC_0840.JPG +27832,2695,673,17,1,other,DSC_0840.JPG +27833,2734,733,17,1,other,DSC_0840.JPG +27834,2938,1099,15,1,other,DSC_0840.JPG +27838,4342,55,15,1,other,DSC_0840.JPG +2784,5260,2050,17,1,other,DSC_0844.JPG +27842,3148,1216,17,1,other,DSC_0840.JPG +27843,3148,1336,17,1,other,DSC_0840.JPG +27845,637,1714,16,1,other,DSC_0840.JPG +27847,1213,277,16,1,other,DSC_0840.JPG +27851,3436,859,17,1,other,DSC_0840.JPG +27854,2767,913,17,1,other,DSC_0840.JPG +27855,1243,1669,16,1,other,DSC_0840.JPG +27856,2791,2053,16,1,other,DSC_0840.JPG +2786,2599,2467,17,1,other,DSC_0844.JPG +27862,3130,298,15,1,other,DSC_0840.JPG +27866,319,451,17,5,other,DSC_0840.JPG +27868,1849,904,17,1,other,DSC_0840.JPG +2787,916,19,16,1,other,DSC_0844.JPG +27872,4663,1645,17,1,other,DSC_0840.JPG +27873,5110,2062,17,5,other,DSC_0840.JPG +27876,4378,241,17,1,other,DSC_0840.JPG +27878,2938,979,17,1,other,DSC_0840.JPG +27882,391,2119,16,1,other,DSC_0840.JPG +27883,2809,229,15,1,other,DSC_0840.JPG +27886,2974,1159,15,1,other,DSC_0840.JPG +27888,2965,1513,15,1,other,DSC_0840.JPG +27890,2758,2113,17,1,other,DSC_0840.JPG +27892,427,145,15,1,other,DSC_0840.JPG +27893,4303,238,17,1,other,DSC_0840.JPG +27895,2944,736,17,1,other,DSC_0840.JPG +27896,2485,790,17,1,other,DSC_0840.JPG +27897,2308,853,17,1,other,DSC_0840.JPG +27900,2725,1816,17,1,other,DSC_0840.JPG +27902,2179,106,17,1,other,DSC_0840.JPG +27909,2026,847,17,1,other,DSC_0840.JPG +27911,2866,1099,15,1,other,DSC_0840.JPG +27913,2656,2053,17,1,other,DSC_0840.JPG +27914,1930,43,17,1,other,DSC_0840.JPG +27917,3238,118,15,1,other,DSC_0840.JPG +27918,466,208,17,1,other,DSC_0840.JPG +27920,3343,430,17,1,other,DSC_0840.JPG +27923,4912,754,17,1,other,DSC_0840.JPG +27925,2974,1039,16,1,other,DSC_0840.JPG +27926,3118,1042,17,1,other,DSC_0840.JPG +27928,1276,1372,16,5,other,DSC_0840.JPG +2793,1300,2074,15,1,other,DSC_0844.JPG +27930,2860,1573,17,1,other,DSC_0840.JPG +27933,3808,118,17,1,other,DSC_0840.JPG +27935,2986,172,17,1,other,DSC_0840.JPG +27938,4681,568,15,1,other,DSC_0840.JPG +27939,1954,724,17,1,other,DSC_0840.JPG +27940,5296,763,17,5,other,DSC_0840.JPG +27941,2059,787,17,1,other,DSC_0840.JPG +27942,4531,814,16,1,other,DSC_0840.JPG +27943,3010,982,17,1,other,DSC_0840.JPG +27947,1027,1666,17,1,other,DSC_0840.JPG +27955,3250,1510,17,1,other,DSC_0840.JPG +27958,4444,2119,17,1,other,DSC_0840.JPG +27959,922,2311,17,1,other,DSC_0840.JPG +2796,2296,2404,17,1,other,DSC_0844.JPG +27961,2986,424,16,1,other,DSC_0840.JPG +27963,3232,487,17,5,other,DSC_0840.JPG +27965,3187,919,17,1,other,DSC_0840.JPG +27973,2626,1873,16,1,other,DSC_0840.JPG +27974,673,2245,15,1,other,DSC_0840.JPG +27975,3565,184,17,5,other,DSC_0840.JPG +27976,1249,217,17,1,other,DSC_0840.JPG +27977,4585,247,17,1,other,DSC_0840.JPG +27982,3580,736,17,1,other,DSC_0840.JPG +27983,2590,976,15,1,other,DSC_0840.JPG +27984,2623,1039,17,1,other,DSC_0840.JPG +27985,2692,1156,17,1,other,DSC_0840.JPG +27986,1768,1261,17,5,other,DSC_0840.JPG +27988,2410,1864,16,1,other,DSC_0840.JPG +27989,499,151,17,1,other,DSC_0840.JPG +28000,2236,847,17,1,other,DSC_0840.JPG +28001,3580,856,17,1,other,DSC_0840.JPG +28002,3472,919,17,1,other,DSC_0840.JPG +28007,991,2191,15,1,other,DSC_0840.JPG +28008,4552,313,16,1,other,DSC_0840.JPG +28020,2374,1924,16,1,other,DSC_0840.JPG +28022,1876,2152,17,1,other,DSC_0840.JPG +28023,2350,166,17,1,other,DSC_0840.JPG +28024,3778,178,15,1,other,DSC_0840.JPG +28025,3022,361,17,1,other,DSC_0840.JPG +28026,3409,553,16,1,other,DSC_0840.JPG +28027,2026,598,17,1,other,DSC_0840.JPG +28032,2761,1039,17,1,other,DSC_0840.JPG +28036,1699,1852,15,5,other,DSC_0840.JPG +28043,3007,1219,16,1,other,DSC_0840.JPG +28044,1594,1321,15,1,other,DSC_0840.JPG +28047,919,1837,16,1,other,DSC_0840.JPG +28050,5302,1996,15,5,other,DSC_0840.JPG +28051,1060,2194,17,1,other,DSC_0840.JPG +28052,4753,37,17,1,other,DSC_0840.JPG +28056,1144,274,16,1,other,DSC_0840.JPG +28061,2974,919,17,1,other,DSC_0840.JPG +28066,2653,1564,17,1,other,DSC_0840.JPG +28068,1276,1729,16,1,other,DSC_0840.JPG +28069,565,2182,15,1,other,DSC_0840.JPG +2807,2662,2464,17,1,other,DSC_0844.JPG +28070,2452,100,17,1,other,DSC_0840.JPG +28071,3676,124,15,1,other,DSC_0840.JPG +28072,568,148,17,5,other,DSC_0840.JPG +28073,3061,295,17,1,other,DSC_0840.JPG +28076,1348,1258,17,1,other,DSC_0840.JPG +28078,883,1660,16,1,other,DSC_0840.JPG +28079,1138,2071,17,1,other,DSC_0840.JPG +2808,4723,2515,17,1,other,DSC_0844.JPG +28080,2263,2215,16,1,other,DSC_0840.JPG +28082,2137,289,16,1,other,DSC_0840.JPG +28086,2236,724,17,1,other,DSC_0840.JPG +28091,5338,2056,15,1,other,DSC_0840.JPG +28097,2026,724,17,1,other,DSC_0840.JPG +28101,3502,1099,16,1,other,DSC_0840.JPG +28103,5236,1642,15,5,other,DSC_0840.JPG +28104,709,2068,17,1,other,DSC_0840.JPG +28107,2545,2221,15,1,other,DSC_0840.JPG +28108,1852,43,17,1,other,DSC_0840.JPG +2811,5332,1663,15,1,other,DSC_0844.JPG +28111,3808,241,17,1,other,DSC_0840.JPG +28113,325,328,17,1,other,DSC_0840.JPG +28116,3226,613,15,1,other,DSC_0840.JPG +28117,3298,616,16,1,other,DSC_0840.JPG +28119,2905,1156,15,1,other,DSC_0840.JPG +28120,5092,1294,17,5,other,DSC_0840.JPG +28122,5155,1759,17,5,other,DSC_0840.JPG +28124,4684,2068,16,1,other,DSC_0840.JPG +28125,634,2182,15,1,other,DSC_0840.JPG +28126,2740,94,16,1,other,DSC_0840.JPG +28127,2563,166,15,1,other,DSC_0840.JPG +28145,3358,1336,17,1,other,DSC_0840.JPG +28149,4411,178,16,1,other,DSC_0840.JPG +28150,856,277,15,5,other,DSC_0840.JPG +28153,3214,1216,15,1,other,DSC_0840.JPG +28154,2827,1996,16,1,other,DSC_0840.JPG +28157,2281,169,17,1,other,DSC_0840.JPG +2816,2881,2467,17,1,other,DSC_0844.JPG +28160,3193,550,17,1,other,DSC_0840.JPG +28161,3727,619,17,1,other,DSC_0840.JPG +28168,1888,97,17,1,other,DSC_0840.JPG +28170,283,388,17,1,other,DSC_0840.JPG +28176,2392,100,17,1,other,DSC_0840.JPG +28181,2521,730,16,1,other,DSC_0840.JPG +28190,5095,1525,15,5,other,DSC_0840.JPG +28192,5263,2056,17,5,other,DSC_0840.JPG +2820,5311,1795,17,1,other,DSC_0844.JPG +28200,2485,664,17,1,other,DSC_0840.JPG +28203,1669,964,17,5,other,DSC_0840.JPG +28204,3433,979,15,1,other,DSC_0840.JPG +28206,3004,1450,16,1,other,DSC_0840.JPG +28208,5224,1996,17,5,other,DSC_0840.JPG +28218,3388,2113,17,5,other,DSC_0840.JPG +28219,2689,2116,17,1,other,DSC_0840.JPG +28220,1519,2149,17,1,other,DSC_0840.JPG +28221,5110,2308,15,1,other,DSC_0840.JPG +28222,2989,43,15,1,other,DSC_0840.JPG +28223,4336,304,16,1,other,DSC_0840.JPG +2823,5281,2278,17,1,other,DSC_0844.JPG +28230,3604,1156,17,1,other,DSC_0840.JPG +28231,2935,1219,17,1,other,DSC_0840.JPG +28234,2050,1621,17,1,other,DSC_0840.JPG +28242,3340,553,17,1,other,DSC_0840.JPG +28243,2092,724,16,1,other,DSC_0840.JPG +28246,5023,1060,16,5,other,DSC_0840.JPG +28248,2440,1327,17,1,other,DSC_0840.JPG +28250,2158,1444,17,1,other,DSC_0840.JPG +28256,4966,2299,17,1,other,DSC_0840.JPG +28257,4441,2350,16,1,other,DSC_0840.JPG +28260,4405,310,17,1,other,DSC_0840.JPG +28262,4042,679,17,1,other,DSC_0840.JPG +28265,4987,1120,17,5,other,DSC_0840.JPG +28269,1486,1735,17,1,other,DSC_0840.JPG +28271,1489,1972,17,1,other,DSC_0840.JPG +28274,1357,157,15,5,other,DSC_0840.JPG +28275,3844,181,17,1,other,DSC_0840.JPG +28276,4516,247,17,1,other,DSC_0840.JPG +28277,3658,490,17,1,other,DSC_0840.JPG +28278,3331,676,17,1,other,DSC_0840.JPG +2828,3949,2446,15,1,other,DSC_0844.JPG +28281,1489,1021,17,5,other,DSC_0840.JPG +28285,5356,70,16,1,other,DSC_0840.JPG +28288,538,211,15,1,other,DSC_0840.JPG +28291,1915,784,17,1,other,DSC_0840.JPG +28296,1276,1609,17,1,other,DSC_0840.JPG +28297,322,2110,17,5,other,DSC_0840.JPG +28299,1639,37,17,1,other,DSC_0840.JPG +28302,3373,613,17,1,other,DSC_0840.JPG +28308,4411,1942,17,1,other,DSC_0840.JPG +28309,2761,1993,17,1,other,DSC_0840.JPG +28312,1114,2311,17,1,other,DSC_0840.JPG +28317,5332,442,17,5,other,DSC_0840.JPG +28319,3835,553,17,1,other,DSC_0840.JPG +28320,3190,799,17,5,other,DSC_0840.JPG +28325,2929,2056,17,1,other,DSC_0840.JPG +28328,5338,319,17,5,other,DSC_0840.JPG +2833,3151,2464,15,1,other,DSC_0844.JPG +28330,1885,847,16,1,other,DSC_0840.JPG +28331,2587,856,17,1,other,DSC_0840.JPG +28332,3154,856,17,1,other,DSC_0840.JPG +28336,601,1651,17,1,other,DSC_0840.JPG +28337,5182,2062,17,5,other,DSC_0840.JPG +28338,2860,2173,17,1,other,DSC_0840.JPG +28339,1960,100,15,1,other,DSC_0840.JPG +2834,859,2467,15,1,other,DSC_0844.JPG +28343,3874,367,16,5,other,DSC_0840.JPG +28344,3544,799,17,1,other,DSC_0840.JPG +28345,3121,919,17,1,other,DSC_0840.JPG +28348,4135,1228,17,1,other,DSC_0840.JPG +28349,307,1291,17,1,other,DSC_0840.JPG +2835,2536,2470,17,1,other,DSC_0844.JPG +28350,2863,1453,17,1,other,DSC_0840.JPG +28353,1096,2134,17,1,other,DSC_0840.JPG +28354,4126,52,15,1,other,DSC_0840.JPG +28355,3664,364,16,1,other,DSC_0840.JPG +28356,4114,559,16,1,other,DSC_0840.JPG +28358,3262,676,17,1,other,DSC_0840.JPG +28359,3370,859,17,1,other,DSC_0840.JPG +2836,4285,2485,15,1,other,DSC_0844.JPG +28360,1702,907,17,5,other,DSC_0840.JPG +28362,1732,1321,17,5,other,DSC_0840.JPG +28363,1660,2146,17,1,other,DSC_0840.JPG +28367,4711,748,17,1,other,DSC_0840.JPG +28369,1702,1024,17,5,other,DSC_0840.JPG +2837,2293,2491,15,1,other,DSC_0844.JPG +28371,2758,1513,17,1,other,DSC_0840.JPG +28374,883,2131,17,1,other,DSC_0840.JPG +28378,3862,613,17,1,other,DSC_0840.JPG +28380,2662,853,15,1,other,DSC_0840.JPG +28386,3001,2170,17,1,other,DSC_0840.JPG +28389,4552,181,17,1,other,DSC_0840.JPG +28392,355,388,17,5,other,DSC_0840.JPG +28396,1420,655,16,1,other,DSC_0840.JPG +28397,322,697,16,5,other,DSC_0840.JPG +28398,2269,787,17,1,other,DSC_0840.JPG +28399,1600,961,16,5,other,DSC_0840.JPG +2840,16,1738,15,1,other,DSC_0844.JPG +28402,463,1771,16,1,other,DSC_0840.JPG +28404,2554,1864,17,1,other,DSC_0840.JPG +2841,1312,2251,15,1,other,DSC_0844.JPG +28411,4372,370,17,1,other,DSC_0840.JPG +28413,4879,811,17,1,other,DSC_0840.JPG +28414,1954,847,17,1,other,DSC_0840.JPG +28415,2122,1264,17,5,other,DSC_0840.JPG +28416,1666,1321,17,5,other,DSC_0840.JPG +2842,5089,2263,15,1,other,DSC_0844.JPG +28420,100,688,17,1,other,DSC_0840.JPG +28421,3259,799,16,5,other,DSC_0840.JPG +28422,4747,808,17,1,other,DSC_0840.JPG +28423,3817,919,15,5,other,DSC_0840.JPG +28424,79,925,17,1,other,DSC_0840.JPG +28426,3391,1513,17,1,other,DSC_0840.JPG +28432,2278,46,15,1,other,DSC_0840.JPG +28437,3163,490,17,1,other,DSC_0840.JPG +28438,3622,673,17,1,other,DSC_0840.JPG +28440,3574,1099,17,1,other,DSC_0840.JPG +28441,5059,1120,17,5,other,DSC_0840.JPG +28443,1555,1492,17,5,other,DSC_0840.JPG +28447,2689,2233,17,1,other,DSC_0840.JPG +2845,94,1870,15,1,other,DSC_0844.JPG +28453,3997,985,17,1,other,DSC_0840.JPG +28454,5131,1123,17,5,other,DSC_0840.JPG +28458,970,2374,16,1,other,DSC_0840.JPG +28459,2353,52,15,1,other,DSC_0840.JPG +28460,1066,151,15,1,other,DSC_0840.JPG +28461,1288,280,17,1,other,DSC_0840.JPG +28464,5095,1177,17,5,other,DSC_0840.JPG +28469,1285,151,17,1,other,DSC_0840.JPG +28471,3796,619,17,1,other,DSC_0840.JPG +28473,3958,1162,17,1,other,DSC_0840.JPG +28477,1840,1495,17,1,other,DSC_0840.JPG +28479,1765,2212,16,1,other,DSC_0840.JPG +2848,538,2203,17,1,other,DSC_0844.JPG +28481,2842,295,17,1,other,DSC_0840.JPG +28482,3124,427,15,1,other,DSC_0840.JPG +2849,2389,2470,15,1,other,DSC_0844.JPG +28492,3211,2170,16,1,other,DSC_0840.JPG +28494,442,2299,17,1,other,DSC_0840.JPG +28496,316,2374,17,1,other,DSC_0840.JPG +28497,4714,2425,16,1,other,DSC_0840.JPG +28499,3151,985,17,1,other,DSC_0840.JPG +28505,2551,1627,15,5,other,DSC_0840.JPG +28508,562,28,15,5,other,DSC_0840.JPG +2851,3664,193,17,1,other,DSC_0844.JPG +28512,1066,2077,17,1,other,DSC_0840.JPG +28514,814,2248,15,5,other,DSC_0840.JPG +28515,1657,2263,16,1,other,DSC_0840.JPG +28519,3445,490,17,1,other,DSC_0840.JPG +2852,5383,1774,17,1,other,DSC_0844.JPG +28529,4381,1288,17,1,other,DSC_0840.JPG +28536,289,2056,15,5,other,DSC_0840.JPG +28541,2911,550,17,1,other,DSC_0840.JPG +28542,3226,736,17,1,other,DSC_0840.JPG +28543,2095,847,15,1,other,DSC_0840.JPG +28546,3154,1102,17,1,other,DSC_0840.JPG +2855,13,1504,15,1,other,DSC_0844.JPG +28554,5371,382,15,1,other,DSC_0840.JPG +28557,3331,922,17,1,other,DSC_0840.JPG +2856,5386,1651,15,1,other,DSC_0844.JPG +28561,565,1594,16,1,other,DSC_0840.JPG +28562,2479,1627,15,1,other,DSC_0840.JPG +28563,5353,1942,15,1,other,DSC_0840.JPG +28564,1666,2029,17,1,other,DSC_0840.JPG +28567,4480,178,17,1,other,DSC_0840.JPG +2857,5296,1990,17,1,other,DSC_0844.JPG +28573,2617,1387,17,1,other,DSC_0840.JPG +2858,5329,2191,15,1,other,DSC_0844.JPG +28586,3250,1630,17,1,other,DSC_0840.JPG +28587,2773,19,17,1,other,DSC_0840.JPG +28588,2131,43,15,1,other,DSC_0840.JPG +28589,2497,49,16,1,other,DSC_0840.JPG +2859,2455,2470,17,1,other,DSC_0844.JPG +28591,4447,244,15,1,other,DSC_0840.JPG +28595,2833,916,17,1,other,DSC_0840.JPG +28601,601,1534,16,1,other,DSC_0840.JPG +28607,4261,40,17,1,other,DSC_0840.JPG +28608,4711,628,17,1,other,DSC_0840.JPG +28611,3256,925,17,1,other,DSC_0840.JPG +28613,3643,1219,17,5,other,DSC_0840.JPG +28614,5185,1936,17,5,other,DSC_0840.JPG +28615,1306,2143,15,1,other,DSC_0840.JPG +28616,3304,493,15,1,other,DSC_0840.JPG +28621,5059,1003,17,5,other,DSC_0840.JPG +28626,3001,1570,17,1,other,DSC_0840.JPG +28628,847,2308,15,1,other,DSC_0840.JPG +28630,4297,370,16,1,other,DSC_0840.JPG +28638,565,1711,16,1,other,DSC_0840.JPG +28641,2479,2221,15,1,other,DSC_0840.JPG +28644,3859,862,17,1,other,DSC_0840.JPG +28645,2161,970,17,1,other,DSC_0840.JPG +28649,568,1474,16,1,other,DSC_0840.JPG +2865,58,1807,17,1,other,DSC_0844.JPG +28653,916,2188,17,1,other,DSC_0840.JPG +28654,4930,2359,17,1,other,DSC_0840.JPG +28655,4486,34,17,1,other,DSC_0840.JPG +28656,1135,151,15,5,other,DSC_0840.JPG +28657,3127,178,16,1,other,DSC_0840.JPG +28659,3589,499,15,1,other,DSC_0840.JPG +2866,5308,2137,17,1,other,DSC_0844.JPG +28667,5179,2311,15,1,other,DSC_0840.JPG +28671,4747,568,17,1,other,DSC_0840.JPG +28676,3373,493,17,1,other,DSC_0840.JPG +28680,3817,1162,17,5,other,DSC_0840.JPG +28684,4060,1459,17,5,other,DSC_0840.JPG +28687,217,1939,17,1,other,DSC_0840.JPG +28691,880,2374,17,1,other,DSC_0840.JPG +28700,1384,1204,17,1,other,DSC_0840.JPG +28705,670,1774,17,1,other,DSC_0840.JPG +28708,1096,2251,15,1,other,DSC_0840.JPG +28711,1570,658,17,1,other,DSC_0840.JPG +28716,5350,1585,15,5,other,DSC_0840.JPG +28717,433,1942,17,1,other,DSC_0840.JPG +28718,253,2116,17,1,other,DSC_0840.JPG +28722,3955,88,17,1,other,DSC_0840.JPG +28723,961,214,17,5,other,DSC_0840.JPG +28738,3658,619,17,1,other,DSC_0840.JPG +28750,3157,2353,16,1,other,DSC_0840.JPG +28773,781,2302,15,1,other,DSC_0840.JPG +28775,4561,37,17,1,other,DSC_0840.JPG +28777,4009,613,16,1,other,DSC_0840.JPG +28781,2230,1327,15,5,other,DSC_0840.JPG +28786,5305,1870,15,1,other,DSC_0840.JPG +28805,3919,1939,17,1,other,DSC_0840.JPG +28809,3562,2173,17,1,other,DSC_0840.JPG +28811,3691,556,15,1,other,DSC_0840.JPG +28826,3739,2425,17,1,other,DSC_0840.JPG +2883,3439,2476,15,1,other,DSC_0844.JPG +28833,4600,808,15,1,other,DSC_0840.JPG +28842,1027,2017,15,1,other,DSC_0840.JPG +28853,3328,1156,15,1,other,DSC_0840.JPG +2886,637,2161,15,1,other,DSC_0844.JPG +2887,4414,2470,17,1,other,DSC_0844.JPG +28879,3922,1105,15,1,other,DSC_0840.JPG +28881,3850,1339,17,1,other,DSC_0840.JPG +2889,22,1624,15,1,other,DSC_0844.JPG +28892,5350,193,15,1,other,DSC_0840.JPG +28896,3331,1039,15,1,other,DSC_0840.JPG +28913,3883,2236,17,1,other,DSC_0840.JPG +28920,3787,856,17,1,other,DSC_0840.JPG +28922,2020,967,17,1,other,DSC_0840.JPG +2893,5035,2551,17,1,other,DSC_0844.JPG +28931,4057,1702,17,1,other,DSC_0840.JPG +28936,5215,2248,15,1,other,DSC_0840.JPG +2894,1411,22,15,1,other,DSC_0844.JPG +28946,4240,1285,16,1,other,DSC_0840.JPG +2895,34,739,15,1,other,DSC_0844.JPG +28954,466,2239,17,1,other,DSC_0840.JPG +28957,3040,2347,17,1,other,DSC_0840.JPG +2896,988,22,15,1,other,DSC_0844.JPG +28974,742,2245,15,5,other,DSC_0840.JPG +28993,493,1711,17,1,other,DSC_0840.JPG +290,1837,2215,17,1,other,DSC_0844.JPG +2900,4348,2473,15,1,other,DSC_0844.JPG +29002,3172,2230,17,1,other,DSC_0840.JPG +29003,226,2368,17,1,other,DSC_0840.JPG +2901,5176,2548,17,1,other,DSC_0844.JPG +2902,5371,1597,15,1,other,DSC_0844.JPG +29024,5314,1645,15,5,other,DSC_0840.JPG +2903,4654,2518,17,1,other,DSC_0844.JPG +29030,5377,256,16,1,other,DSC_0840.JPG +2904,181,10,15,1,other,DSC_0844.JPG +29074,49,1030,17,1,other,DSC_0840.JPG +2909,5110,2542,17,1,other,DSC_0844.JPG +29098,5176,1180,17,5,other,DSC_0840.JPG +291,2014,106,15,1,other,DSC_0844.JPG +2911,4390,2290,15,5,other,DSC_0844.JPG +29110,211,1816,16,1,other,DSC_0840.JPG +29117,3052,49,15,5,other,DSC_0840.JPG +29121,5101,703,15,1,other,DSC_0840.JPG +29144,4156,2116,15,1,other,DSC_0840.JPG +29145,2089,2275,16,1,other,DSC_0840.JPG +29146,715,2308,17,1,other,DSC_0840.JPG +29150,4987,757,17,1,other,DSC_0840.JPG +2916,7,1159,15,1,other,DSC_0844.JPG +29160,319,1765,17,1,other,DSC_0840.JPG +29166,1168,2020,17,1,other,DSC_0840.JPG +29171,3520,493,17,1,other,DSC_0840.JPG +2919,4111,2437,17,1,other,DSC_0844.JPG +29197,2794,2272,16,1,other,DSC_0840.JPG +29199,511,2299,17,1,other,DSC_0840.JPG +292,2929,109,17,1,other,DSC_0844.JPG +2920,1627,1873,17,1,other,DSC_0844.JPG +29200,1045,2353,17,1,other,DSC_0840.JPG +29201,5278,58,17,1,other,DSC_0840.JPG +29208,202,997,16,1,other,DSC_0840.JPG +29230,3736,2230,17,1,other,DSC_0840.JPG +29232,4858,2362,17,1,other,DSC_0840.JPG +2924,10,1036,17,1,other,DSC_0844.JPG +29265,2800,94,15,1,other,DSC_0840.JPG +2927,4033,2515,15,1,other,DSC_0844.JPG +29272,4738,691,15,1,other,DSC_0840.JPG +29274,2056,910,17,1,other,DSC_0840.JPG +29288,1471,2320,17,1,other,DSC_0840.JPG +2929,1834,988,15,1,other,DSC_0844.JPG +293,1126,142,15,1,other,DSC_0844.JPG +2931,5368,1831,15,1,other,DSC_0844.JPG +29319,4996,2359,17,1,other,DSC_0840.JPG +2932,2644,2296,15,1,other,DSC_0844.JPG +29320,3022,2410,17,1,other,DSC_0840.JPG +29321,4069,4,17,1,other,DSC_0840.JPG +29322,3946,10,15,1,other,DSC_0840.JPG +29323,4414,25,16,1,other,DSC_0840.JPG +29324,3721,64,15,1,other,DSC_0840.JPG +29326,856,511,17,1,other,DSC_0840.JPG +2933,4255,58,17,1,other,DSC_0844.JPG +29330,5044,760,15,1,other,DSC_0840.JPG +29341,1558,1375,17,1,other,DSC_0840.JPG +29380,4201,1825,15,1,other,DSC_0840.JPG +29396,211,1348,17,1,other,DSC_0840.JPG +294,3280,250,16,1,other,DSC_0844.JPG +29410,199,2059,17,1,other,DSC_0840.JPG +2944,4849,2446,15,1,other,DSC_0844.JPG +29444,4918,637,17,1,other,DSC_0840.JPG +2945,3439,2533,17,1,other,DSC_0844.JPG +2946,409,7,17,1,other,DSC_0844.JPG +29475,2359,2281,17,1,other,DSC_0840.JPG +2949,3997,2419,15,1,other,DSC_0844.JPG +2950,2233,2485,15,1,other,DSC_0844.JPG +29503,85,1585,17,1,other,DSC_0840.JPG +2951,25,7,17,1,other,DSC_0844.JPG +29511,5269,1813,15,5,other,DSC_0840.JPG +29513,1063,1960,17,1,other,DSC_0840.JPG +29520,5206,2377,17,1,other,DSC_0840.JPG +2954,232,2473,17,1,other,DSC_0844.JPG +2955,10,910,15,1,other,DSC_0844.JPG +2956,1876,1078,16,1,other,DSC_0844.JPG +29563,4843,757,15,1,other,DSC_0840.JPG +29587,421,2371,15,1,other,DSC_0840.JPG +29588,1471,2401,17,1,other,DSC_0840.JPG +2959,5392,1123,15,1,other,DSC_0844.JPG +29590,2035,91,15,1,other,DSC_0840.JPG +296,1048,409,17,1,other,DSC_0844.JPG +29600,91,802,17,1,other,DSC_0840.JPG +2961,112,2416,17,1,other,DSC_0844.JPG +2962,4819,58,17,1,other,DSC_0844.JPG +29625,4048,2176,15,1,other,DSC_0840.JPG +29628,571,2290,17,1,other,DSC_0840.JPG +2963,5362,1714,17,1,other,DSC_0844.JPG +29631,5065,2356,15,1,other,DSC_0840.JPG +2965,3574,2482,17,1,other,DSC_0844.JPG +29659,4522,2440,16,1,other,DSC_0840.JPG +2966,5392,469,15,1,other,DSC_0844.JPG +29682,2938,2296,17,1,other,DSC_0840.JPG +29684,3448,2344,17,1,other,DSC_0840.JPG +29685,2713,7,17,1,other,DSC_0840.JPG +2969,3643,2479,15,1,other,DSC_0844.JPG +29690,2125,910,17,1,other,DSC_0840.JPG +297,4264,535,17,1,other,DSC_0844.JPG +2970,565,7,15,1,other,DSC_0844.JPG +29703,5137,2362,15,1,other,DSC_0840.JPG +2971,5389,1012,15,1,other,DSC_0844.JPG +29753,2095,970,17,1,other,DSC_0840.JPG +2976,3910,421,16,1,other,DSC_0837.JPG +2977,1447,1561,15,1,other,DSC_0837.JPG +29778,676,91,17,1,other,DSC_0840.JPG +29815,2833,34,17,1,other,DSC_0840.JPG +2982,2905,799,15,1,other,DSC_0837.JPG +29831,1102,2011,17,1,other,DSC_0840.JPG +29838,3883,40,15,1,other,DSC_0840.JPG +29839,3739,121,15,1,other,DSC_0840.JPG +29845,4222,742,15,1,other,DSC_0840.JPG +29849,4381,1171,16,1,other,DSC_0840.JPG +2985,4015,487,17,1,other,DSC_0837.JPG +29862,166,1996,17,1,other,DSC_0840.JPG +29874,2266,2419,17,1,other,DSC_0840.JPG +29875,2842,172,15,1,other,DSC_0840.JPG +29907,1996,37,17,1,other,DSC_0840.JPG +29943,1210,2407,17,1,other,DSC_0840.JPG +2996,4993,1333,15,5,other,DSC_0837.JPG +29972,4453,2428,16,1,other,DSC_0840.JPG +29974,100,454,15,1,other,DSC_0840.JPG +29994,2968,2371,15,1,other,DSC_0840.JPG +3002,3634,856,16,5,other,DSC_0837.JPG +3005,3058,418,16,1,other,DSC_0837.JPG +30051,3790,43,16,1,other,DSC_0840.JPG +30052,52,139,17,1,other,DSC_0840.JPG +3006,2215,2179,15,1,other,DSC_0837.JPG +30072,5149,40,17,1,other,DSC_0840.JPG +30083,58,1519,17,1,other,DSC_0840.JPG +30089,76,1999,17,1,other,DSC_0840.JPG +30098,4669,688,17,5,other,DSC_0840.JPG +30114,124,2068,17,1,other,DSC_0840.JPG +30115,3313,2341,15,1,other,DSC_0840.JPG +3014,5023,1516,15,1,other,DSC_0837.JPG +30143,646,2293,15,1,other,DSC_0840.JPG +30145,5158,2413,17,1,other,DSC_0840.JPG +30146,5206,2440,17,1,other,DSC_0840.JPG +3016,5134,1453,16,5,other,DSC_0837.JPG +30161,2107,97,15,1,other,DSC_0840.JPG +30182,3508,631,15,1,other,DSC_0840.JPG +30184,4810,811,15,1,other,DSC_0840.JPG +30194,5257,2185,17,1,other,DSC_0840.JPG +30199,37,25,15,1,other,DSC_0840.JPG +30202,67,628,17,1,other,DSC_0840.JPG +3021,3598,1525,15,1,other,DSC_0837.JPG +30212,109,2281,15,1,other,DSC_0840.JPG +30213,3784,2368,17,1,other,DSC_0840.JPG +30214,4825,2431,17,1,other,DSC_0840.JPG +30232,3673,2404,17,1,other,DSC_0840.JPG +30237,37,1726,17,1,other,DSC_0840.JPG +30243,4201,2437,17,1,other,DSC_0840.JPG +30245,2929,10,15,1,other,DSC_0840.JPG +30258,52,373,15,1,other,DSC_0840.JPG +3026,4549,1819,15,1,other,DSC_0837.JPG +30260,76,1297,15,1,other,DSC_0840.JPG +30263,1075,1906,17,1,other,DSC_0840.JPG +30264,5296,2116,15,1,other,DSC_0840.JPG +3027,2377,730,15,1,other,DSC_0837.JPG +30275,103,2140,15,1,other,DSC_0840.JPG +3028,4234,1762,17,1,other,DSC_0837.JPG +30284,154,1444,17,1,other,DSC_0840.JPG +30290,5197,1813,15,5,other,DSC_0840.JPG +30292,2689,2350,17,1,other,DSC_0840.JPG +30293,4879,2419,15,1,other,DSC_0840.JPG +30305,2881,2422,15,1,other,DSC_0840.JPG +30308,67,508,15,1,other,DSC_0840.JPG +30310,2290,1450,15,1,other,DSC_0840.JPG +30312,2515,2329,17,1,other,DSC_0840.JPG +30313,4039,2353,16,1,other,DSC_0840.JPG +30315,499,2365,17,1,other,DSC_0840.JPG +30321,3586,610,15,1,other,DSC_0840.JPG +30322,61,730,17,1,other,DSC_0840.JPG +30323,61,1144,17,1,other,DSC_0840.JPG +30326,5275,2269,17,1,other,DSC_0840.JPG +30327,1408,2323,17,1,other,DSC_0840.JPG +3034,1453,1207,15,1,other,DSC_0837.JPG +30349,922,2440,17,1,other,DSC_0840.JPG +30350,2230,2335,17,1,other,DSC_0840.JPG +30353,16,1363,17,1,other,DSC_0840.JPG +30356,3880,2467,15,1,other,DSC_0840.JPG +30358,148,2344,17,1,other,DSC_0840.JPG +30361,2146,166,15,1,other,DSC_0840.JPG +30363,4030,2002,17,1,other,DSC_0840.JPG +30365,2965,112,15,1,other,DSC_0840.JPG +3037,1639,148,17,1,other,DSC_0837.JPG +30380,22,1264,17,1,other,DSC_0840.JPG +30381,3805,2440,17,1,other,DSC_0840.JPG +30382,5221,40,17,1,other,DSC_0840.JPG +30383,4192,16,16,1,other,DSC_0840.JPG +30386,4918,2461,17,1,other,DSC_0840.JPG +30391,1132,1963,15,1,other,DSC_0840.JPG +30395,2107,229,17,1,other,DSC_0840.JPG +30396,3607,10,15,1,other,DSC_0840.JPG +304,4027,61,17,1,other,DSC_0844.JPG +30404,5248,2317,17,1,other,DSC_0840.JPG +30405,3184,2404,17,1,other,DSC_0840.JPG +30407,13,82,17,1,other,DSC_0840.JPG +30411,4957,2407,17,1,other,DSC_0840.JPG +30415,163,1780,17,1,other,DSC_0840.JPG +30425,73,1387,17,1,other,DSC_0840.JPG +30428,796,2356,17,1,other,DSC_0840.JPG +30431,2683,2437,15,1,other,DSC_0840.JPG +30435,3709,4,16,1,other,DSC_0840.JPG +30438,3985,2053,17,1,other,DSC_0840.JPG +30439,1567,31,15,1,other,DSC_0840.JPG +3044,4987,1453,15,1,other,DSC_0837.JPG +30440,4,1468,15,1,other,DSC_0840.JPG +30441,1093,214,17,1,other,DSC_0840.JPG +30447,94,1660,17,1,other,DSC_0840.JPG +30448,2638,2401,15,1,other,DSC_0840.JPG +30449,3238,7,15,1,other,DSC_0840.JPG +30451,2062,31,15,1,other,DSC_0840.JPG +30452,5377,1531,17,1,other,DSC_0840.JPG +30453,517,91,17,1,other,DSC_0840.JPG +30455,25,1564,15,1,other,DSC_0840.JPG +30456,148,1570,15,1,other,DSC_0840.JPG +30461,4768,1954,17,1,other,DSC_0840.JPG +30462,3175,7,16,1,other,DSC_0840.JPG +30463,4306,7,15,1,other,DSC_0840.JPG +30465,64,1774,15,1,other,DSC_0840.JPG +30466,2056,1849,15,1,other,DSC_0840.JPG +30467,4648,2254,17,1,other,DSC_0840.JPG +30469,2857,106,15,1,other,DSC_0840.JPG +3047,1531,463,15,1,other,DSC_0837.JPG +30473,5059,2059,16,1,other,DSC_0820.JPG +30475,4915,2173,15,1,other,DSC_0820.JPG +30476,5098,2113,17,1,other,DSC_0820.JPG +30477,4534,2242,15,1,other,DSC_0820.JPG +30478,544,250,17,1,other,DSC_0820.JPG +30485,211,1585,17,1,other,DSC_0820.JPG +30486,4219,2185,17,1,other,DSC_0820.JPG +30487,4465,2242,16,1,other,DSC_0820.JPG +30488,4219,2299,16,1,other,DSC_0820.JPG +30489,4429,2302,17,1,other,DSC_0820.JPG +30490,2329,2095,16,1,other,DSC_0820.JPG +30492,508,187,16,1,other,DSC_0820.JPG +30493,2878,124,15,1,other,DSC_0820.JPG +30494,1804,2155,17,1,other,DSC_0820.JPG +30495,4675,2239,15,1,other,DSC_0820.JPG +30496,2911,190,16,1,other,DSC_0820.JPG +30498,4807,2008,15,1,other,DSC_0820.JPG +30500,136,1702,15,1,other,DSC_0820.JPG +30503,4876,1768,17,1,other,DSC_0820.JPG +30505,4078,2302,15,1,other,DSC_0820.JPG +30506,4006,2305,15,1,other,DSC_0820.JPG +30507,4744,2353,15,1,other,DSC_0820.JPG +30508,3157,103,16,1,other,DSC_0820.JPG +30509,508,2194,15,1,other,DSC_0820.JPG +3051,5407,793,17,1,other,DSC_0837.JPG +30511,4324,2245,17,1,other,DSC_0820.JPG +30517,1210,2086,17,1,other,DSC_0820.JPG +30518,3547,184,16,1,other,DSC_0820.JPG +30521,4780,2296,17,1,other,DSC_0820.JPG +30525,4567,2182,15,1,other,DSC_0820.JPG +30526,4699,1954,17,1,other,DSC_0820.JPG +30530,4186,2359,16,1,other,DSC_0820.JPG +30531,4114,2362,17,1,other,DSC_0820.JPG +30532,3616,184,16,1,other,DSC_0820.JPG +30534,709,1135,17,1,other,DSC_0820.JPG +30536,4288,2182,17,1,other,DSC_0820.JPG +30537,4570,2299,16,1,other,DSC_0820.JPG +30539,790,184,17,1,other,DSC_0820.JPG +3054,4477,673,15,1,other,DSC_0837.JPG +30542,775,1012,17,1,other,DSC_0820.JPG +30543,5017,1765,17,1,other,DSC_0820.JPG +30546,541,2134,16,1,other,DSC_0820.JPG +30548,4957,2233,17,1,other,DSC_0820.JPG +3055,4087,985,15,1,other,DSC_0837.JPG +30552,691,514,17,1,other,DSC_0820.JPG +30554,421,1126,17,1,other,DSC_0820.JPG +30555,505,2314,17,1,other,DSC_0820.JPG +30558,451,823,16,1,other,DSC_0820.JPG +30559,5020,2002,16,1,other,DSC_0820.JPG +3056,3559,859,15,5,other,DSC_0837.JPG +30560,4498,2299,17,1,other,DSC_0820.JPG +30561,4360,2302,15,1,other,DSC_0820.JPG +30564,4990,2173,17,1,other,DSC_0820.JPG +30565,4774,2179,15,1,other,DSC_0820.JPG +30566,532,1192,17,1,other,DSC_0820.JPG +30567,4771,1951,16,1,other,DSC_0820.JPG +30568,2596,250,17,1,other,DSC_0820.JPG +30572,4843,2065,15,1,other,DSC_0820.JPG +30575,4741,2236,17,1,other,DSC_0820.JPG +30577,4150,2302,15,1,other,DSC_0820.JPG +30581,565,1132,16,1,other,DSC_0820.JPG +30586,4603,2239,15,1,other,DSC_0820.JPG +30587,367,184,17,1,other,DSC_0820.JPG +30588,172,1768,15,1,other,DSC_0820.JPG +30589,2629,184,16,1,other,DSC_0820.JPG +30590,5023,2116,15,1,other,DSC_0820.JPG +30591,433,2191,17,1,other,DSC_0820.JPG +30592,4294,2302,17,1,other,DSC_0820.JPG +30593,5035,2347,15,1,other,DSC_0820.JPG +30594,406,121,17,1,other,DSC_0820.JPG +30595,655,448,17,1,other,DSC_0820.JPG +30598,2704,184,17,1,other,DSC_0820.JPG +30599,115,616,17,1,other,DSC_0820.JPG +30604,4819,2353,15,1,other,DSC_0820.JPG +30605,4750,166,17,1,other,DSC_0820.JPG +30606,649,187,16,1,other,DSC_0820.JPG +30608,217,2059,15,1,other,DSC_0820.JPG +30609,472,2128,17,1,other,DSC_0820.JPG +3061,1636,277,17,1,other,DSC_0837.JPG +30610,4495,2182,17,1,other,DSC_0820.JPG +30611,541,2254,17,1,other,DSC_0820.JPG +30612,4711,2296,15,1,other,DSC_0820.JPG +30613,2386,253,17,1,other,DSC_0820.JPG +30618,5128,1825,17,1,other,DSC_0820.JPG +30619,4774,2068,15,1,other,DSC_0820.JPG +30620,5176,2110,15,1,other,DSC_0820.JPG +30623,577,2314,16,1,other,DSC_0820.JPG +30624,901,118,17,1,other,DSC_0820.JPG +30625,4888,166,16,1,other,DSC_0820.JPG +30626,3121,181,16,1,other,DSC_0820.JPG +30627,4786,229,16,5,other,DSC_0820.JPG +30631,469,2251,16,1,other,DSC_0820.JPG +30632,2665,121,15,1,other,DSC_0820.JPG +30635,436,1957,17,1,other,DSC_0820.JPG +30636,4924,2290,17,1,other,DSC_0820.JPG +30638,5077,2524,17,1,other,DSC_0820.JPG +30639,1573,322,17,1,other,DSC_0820.JPG +30640,838,517,16,1,other,DSC_0820.JPG +30641,592,703,17,1,other,DSC_0820.JPG +30642,4816,820,15,1,other,DSC_0820.JPG +30643,4816,1420,15,1,other,DSC_0820.JPG +30644,748,1432,17,1,other,DSC_0820.JPG +30646,4885,2236,17,1,other,DSC_0820.JPG +30647,4852,2293,15,1,other,DSC_0820.JPG +30648,3829,172,17,1,other,DSC_0820.JPG +30652,4840,1951,17,1,other,DSC_0820.JPG +30654,508,2074,15,1,other,DSC_0820.JPG +30657,4885,2350,15,1,other,DSC_0820.JPG +30658,4780,106,15,1,other,DSC_0820.JPG +30661,4852,754,17,1,other,DSC_0820.JPG +30662,4948,1651,15,1,other,DSC_0820.JPG +30666,4645,238,17,1,other,DSC_0820.JPG +30668,1171,1798,17,1,other,DSC_0820.JPG +30670,4183,175,15,1,other,DSC_0820.JPG +30671,427,1366,15,1,other,DSC_0820.JPG +30672,5125,1705,17,1,other,DSC_0820.JPG +30673,4186,2134,15,5,other,DSC_0820.JPG +30677,3619,2257,17,1,other,DSC_0820.JPG +30679,685,121,16,1,other,DSC_0820.JPG +3068,4042,799,17,1,other,DSC_0837.JPG +30682,541,1663,17,1,other,DSC_0820.JPG +30684,4357,2185,15,1,other,DSC_0820.JPG +30685,613,2257,17,1,other,DSC_0820.JPG +30686,4327,2362,17,1,other,DSC_0820.JPG +30687,4432,94,17,1,other,DSC_0820.JPG +30688,4960,166,16,1,other,DSC_0820.JPG +3069,4834,1573,17,1,other,DSC_0837.JPG +30690,577,184,17,1,other,DSC_0820.JPG +30691,1111,253,17,1,other,DSC_0820.JPG +30694,457,1186,17,1,other,DSC_0820.JPG +30700,1018,577,17,1,other,DSC_0820.JPG +30701,4888,937,17,1,other,DSC_0820.JPG +30703,4951,2116,17,1,other,DSC_0820.JPG +30705,4570,103,16,1,other,DSC_0820.JPG +30707,745,1309,17,1,other,DSC_0820.JPG +30708,5131,1942,15,1,other,DSC_0820.JPG +30709,4912,1945,17,1,other,DSC_0820.JPG +3071,2233,730,16,1,other,DSC_0837.JPG +30712,2290,2155,15,1,other,DSC_0820.JPG +30713,4045,2251,17,1,other,DSC_0820.JPG +30714,334,127,17,1,other,DSC_0820.JPG +30715,439,187,17,1,other,DSC_0820.JPG +30716,3760,316,16,1,other,DSC_0820.JPG +30717,700,766,17,1,other,DSC_0820.JPG +30718,4849,1477,17,1,other,DSC_0820.JPG +30719,4948,1768,17,1,other,DSC_0820.JPG +30726,976,388,17,1,other,DSC_0820.JPG +30728,5296,859,16,1,other,DSC_0820.JPG +30729,811,955,17,1,other,DSC_0820.JPG +30733,5362,1450,17,1,other,DSC_0820.JPG +30734,4603,1546,17,1,other,DSC_0820.JPG +30735,436,1837,17,1,other,DSC_0820.JPG +30739,4642,634,17,1,other,DSC_0820.JPG +30741,5089,1645,15,1,other,DSC_0820.JPG +30743,436,2071,17,1,other,DSC_0820.JPG +30745,4429,2185,15,1,other,DSC_0820.JPG +30746,4255,2242,16,1,other,DSC_0820.JPG +30747,3760,172,17,1,other,DSC_0820.JPG +30748,757,256,15,1,other,DSC_0820.JPG +30750,880,706,15,1,other,DSC_0820.JPG +30753,1546,895,17,5,other,DSC_0820.JPG +30754,364,2068,15,1,other,DSC_0820.JPG +30756,4636,2182,15,1,other,DSC_0820.JPG +30758,4183,2245,17,1,other,DSC_0820.JPG +30759,646,2317,15,1,other,DSC_0820.JPG +30760,3793,244,17,1,other,DSC_0820.JPG +30764,637,1249,17,1,other,DSC_0820.JPG +30768,547,121,15,1,other,DSC_0820.JPG +30770,484,763,17,1,other,DSC_0820.JPG +30771,4708,1363,17,1,other,DSC_0820.JPG +30774,4873,1891,17,1,other,DSC_0820.JPG +30775,4669,2011,15,1,other,DSC_0820.JPG +30776,4882,2119,15,1,other,DSC_0820.JPG +30779,2314,256,17,1,other,DSC_0820.JPG +30780,1222,322,16,1,other,DSC_0820.JPG +30786,4909,1828,17,1,other,DSC_0820.JPG +30792,2911,67,16,1,other,DSC_0820.JPG +30793,757,124,15,1,other,DSC_0820.JPG +30794,403,247,16,1,other,DSC_0820.JPG +3080,3055,544,16,5,other,DSC_0837.JPG +30800,454,1066,17,1,other,DSC_0820.JPG +30801,457,1306,16,1,other,DSC_0820.JPG +30802,247,1657,17,1,other,DSC_0820.JPG +30803,4672,2125,15,1,other,DSC_0820.JPG +30805,4960,2350,15,1,other,DSC_0820.JPG +30806,2593,115,15,1,other,DSC_0820.JPG +30809,4888,694,17,1,other,DSC_0820.JPG +3081,3838,544,15,1,other,DSC_0837.JPG +30811,670,1072,16,1,other,DSC_0820.JPG +30812,640,1132,15,1,other,DSC_0820.JPG +30813,676,1192,17,1,other,DSC_0820.JPG +30814,5053,1945,15,1,other,DSC_0820.JPG +30817,3691,2257,17,1,other,DSC_0820.JPG +30819,4042,2362,15,1,other,DSC_0820.JPG +30822,5323,1390,17,1,other,DSC_0820.JPG +30823,4945,1888,15,1,other,DSC_0820.JPG +30825,3937,2308,17,1,other,DSC_0820.JPG +30826,4534,2362,17,1,other,DSC_0820.JPG +30827,3619,319,17,5,other,DSC_0820.JPG +30828,880,832,17,1,other,DSC_0820.JPG +3083,3823,1045,15,1,other,DSC_0837.JPG +30831,535,1309,17,1,other,DSC_0820.JPG +30832,4807,1891,15,5,other,DSC_0820.JPG +30833,4633,2068,15,1,other,DSC_0820.JPG +30835,4705,2179,17,1,other,DSC_0820.JPG +30836,4852,2410,15,1,other,DSC_0820.JPG +30838,2836,187,17,1,other,DSC_0820.JPG +30839,256,244,17,1,other,DSC_0820.JPG +30845,5053,1828,17,1,other,DSC_0820.JPG +30846,400,1894,17,1,other,DSC_0820.JPG +30847,214,1942,15,1,other,DSC_0820.JPG +30849,4009,2194,15,1,other,DSC_0820.JPG +30851,4255,310,16,1,other,DSC_0820.JPG +30854,1324,514,17,1,other,DSC_0820.JPG +30858,250,1774,15,1,other,DSC_0820.JPG +30860,4600,1897,15,1,other,DSC_0820.JPG +30861,289,1948,16,1,other,DSC_0820.JPG +30862,250,2005,15,1,other,DSC_0820.JPG +30864,4981,2062,15,1,other,DSC_0820.JPG +30869,1396,118,15,1,other,DSC_0820.JPG +3087,2182,2119,15,1,other,DSC_0837.JPG +30871,3652,253,16,1,other,DSC_0820.JPG +30875,520,823,17,1,other,DSC_0820.JPG +30876,496,1366,16,1,other,DSC_0820.JPG +30879,5134,2056,15,1,other,DSC_0820.JPG +30880,286,2062,17,1,other,DSC_0820.JPG +30881,4255,2359,15,1,other,DSC_0820.JPG +30882,4930,2407,17,1,other,DSC_0820.JPG +30883,5005,2410,16,1,other,DSC_0820.JPG +30884,4537,169,15,1,other,DSC_0820.JPG +30885,328,247,17,1,other,DSC_0820.JPG +30886,1675,253,17,1,other,DSC_0820.JPG +30887,1360,322,16,1,other,DSC_0820.JPG +30889,3475,457,17,5,other,DSC_0820.JPG +30891,4993,748,17,1,other,DSC_0820.JPG +30892,526,952,17,1,other,DSC_0820.JPG +30896,4816,2233,15,1,other,DSC_0820.JPG +30898,4678,2356,17,1,other,DSC_0820.JPG +30899,265,118,15,1,other,DSC_0820.JPG +3090,5278,1696,16,1,other,DSC_0837.JPG +30901,1714,322,16,1,other,DSC_0820.JPG +30903,712,1489,17,1,other,DSC_0820.JPG +30905,892,1552,16,1,other,DSC_0820.JPG +30906,5053,1708,15,1,other,DSC_0820.JPG +30907,2050,1858,16,1,other,DSC_0820.JPG +30910,5110,2230,17,1,other,DSC_0820.JPG +30911,4393,2242,15,1,other,DSC_0820.JPG +30913,364,310,16,1,other,DSC_0820.JPG +30916,739,952,17,1,other,DSC_0820.JPG +30917,1792,958,15,1,other,DSC_0820.JPG +30918,2707,961,17,1,other,DSC_0820.JPG +30919,5320,1753,17,1,other,DSC_0820.JPG +30920,4603,2011,15,1,other,DSC_0820.JPG +30921,4327,2131,17,1,other,DSC_0820.JPG +30923,4645,97,16,1,other,DSC_0820.JPG +30924,4819,163,16,1,other,DSC_0820.JPG +30925,1015,451,17,1,other,DSC_0820.JPG +30926,877,580,17,1,other,DSC_0820.JPG +30928,148,679,16,1,other,DSC_0820.JPG +30929,2080,835,17,1,other,DSC_0820.JPG +30930,418,1006,17,1,other,DSC_0820.JPG +30931,5200,1582,15,1,other,DSC_0820.JPG +30932,361,1834,17,1,other,DSC_0820.JPG +30934,400,2128,15,1,other,DSC_0820.JPG +30938,829,121,15,1,other,DSC_0820.JPG +30939,616,124,15,1,other,DSC_0820.JPG +30940,1783,319,16,1,other,DSC_0820.JPG +30941,3547,451,17,1,other,DSC_0820.JPG +30943,949,829,17,1,other,DSC_0820.JPG +30948,322,2128,17,1,other,DSC_0820.JPG +30949,1594,2275,16,1,other,DSC_0820.JPG +30950,2029,106,17,1,other,DSC_0820.JPG +30951,3649,115,16,1,other,DSC_0820.JPG +30953,3934,235,17,1,other,DSC_0820.JPG +30956,3199,1558,17,1,other,DSC_0820.JPG +30957,94,1633,15,1,other,DSC_0820.JPG +3096,3562,1702,15,1,other,DSC_0837.JPG +30960,400,2245,17,1,other,DSC_0820.JPG +30964,2635,52,16,1,other,DSC_0820.JPG +30965,4681,169,16,1,other,DSC_0820.JPG +30967,5071,232,17,1,other,DSC_0820.JPG +30969,3478,322,17,5,other,DSC_0820.JPG +3097,3340,2182,15,1,other,DSC_0837.JPG +30970,1087,577,16,1,other,DSC_0820.JPG +30971,4783,757,17,1,other,DSC_0820.JPG +30974,400,2011,16,1,other,DSC_0820.JPG +30975,892,2026,15,1,other,DSC_0820.JPG +30976,4600,2125,15,1,other,DSC_0820.JPG +30978,4927,2527,16,1,other,DSC_0820.JPG +30979,4714,97,17,1,other,DSC_0820.JPG +30980,2734,112,17,1,other,DSC_0820.JPG +30981,475,121,17,1,other,DSC_0820.JPG +30982,475,250,17,1,other,DSC_0820.JPG +30983,490,1009,17,1,other,DSC_0820.JPG +30985,5203,1702,17,1,other,DSC_0820.JPG +30986,4984,1708,16,1,other,DSC_0820.JPG +30990,4969,2467,17,1,other,DSC_0820.JPG +30993,5026,1285,17,1,other,DSC_0820.JPG +30994,5089,1765,17,1,other,DSC_0820.JPG +30997,4393,2128,15,1,other,DSC_0820.JPG +30998,4639,2299,15,1,other,DSC_0820.JPG +30999,4399,2359,15,1,other,DSC_0820.JPG +31000,541,2371,15,1,other,DSC_0820.JPG +31001,895,2383,15,1,other,DSC_0820.JPG +31002,2947,124,16,1,other,DSC_0820.JPG +31003,1960,250,17,1,other,DSC_0820.JPG +31008,454,949,17,1,other,DSC_0820.JPG +31010,703,1009,17,1,other,DSC_0820.JPG +31012,4843,2173,17,1,other,DSC_0820.JPG +31015,3970,2365,17,1,other,DSC_0820.JPG +31016,4603,40,15,1,other,DSC_0820.JPG +31017,4504,103,15,1,other,DSC_0820.JPG +31018,1465,118,17,1,other,DSC_0820.JPG +31021,4996,994,17,5,other,DSC_0820.JPG +31022,5164,1645,17,1,other,DSC_0820.JPG +31023,2398,1741,16,1,other,DSC_0820.JPG +31026,328,2008,16,1,other,DSC_0820.JPG +31027,2770,181,17,1,other,DSC_0820.JPG +31028,1993,184,15,1,other,DSC_0820.JPG +31035,568,1249,16,1,other,DSC_0820.JPG +31037,5245,1522,17,1,other,DSC_0820.JPG +31039,325,1891,17,1,other,DSC_0820.JPG +31040,4705,2068,15,1,other,DSC_0820.JPG +31041,4252,2131,17,1,other,DSC_0820.JPG +31046,4258,166,17,1,other,DSC_0820.JPG +31047,1786,184,17,1,other,DSC_0820.JPG +31049,3442,250,17,1,other,DSC_0820.JPG +31054,556,763,17,1,other,DSC_0820.JPG +31056,631,889,16,1,other,DSC_0820.JPG +31058,4948,2005,15,1,other,DSC_0820.JPG +31062,247,2122,17,1,other,DSC_0820.JPG +31063,5065,2173,17,1,other,DSC_0820.JPG +31067,298,184,15,1,other,DSC_0820.JPG +31070,1831,898,17,1,other,DSC_0820.JPG +31073,4462,2125,16,1,other,DSC_0820.JPG +31075,5143,2173,17,1,other,DSC_0820.JPG +31078,2803,121,15,1,other,DSC_0820.JPG +3108,2950,2110,15,1,other,DSC_0837.JPG +31080,4180,307,15,1,other,DSC_0820.JPG +31083,5032,931,17,1,other,DSC_0820.JPG +31084,4747,1420,15,1,other,DSC_0820.JPG +31085,2956,1498,17,1,other,DSC_0820.JPG +31087,4879,2005,17,1,other,DSC_0820.JPG +31088,4045,2137,15,1,other,DSC_0820.JPG +3109,2392,2122,15,1,other,DSC_0837.JPG +31091,301,58,17,1,other,DSC_0820.JPG +31092,3724,385,16,1,other,DSC_0820.JPG +31094,5440,718,17,1,other,DSC_0820.JPG +31097,2254,1141,16,1,other,DSC_0820.JPG +31099,712,1369,17,1,other,DSC_0820.JPG +3110,1492,400,16,1,other,DSC_0837.JPG +31100,853,1372,17,1,other,DSC_0820.JPG +31101,328,1777,15,1,other,DSC_0820.JPG +31104,472,1897,17,1,other,DSC_0820.JPG +31105,4531,2122,17,1,other,DSC_0820.JPG +31106,4741,2122,15,1,other,DSC_0820.JPG +31110,4606,2359,15,1,other,DSC_0820.JPG +31111,3298,118,17,1,other,DSC_0820.JPG +31112,3370,253,17,1,other,DSC_0820.JPG +31113,2944,256,16,1,other,DSC_0820.JPG +31116,802,580,17,1,other,DSC_0820.JPG +31118,631,769,17,1,other,DSC_0820.JPG +3112,2200,664,16,1,other,DSC_0837.JPG +31120,466,1543,17,1,other,DSC_0820.JPG +31122,5128,1585,15,1,other,DSC_0820.JPG +31123,4915,1711,17,1,other,DSC_0820.JPG +31125,4840,1831,17,1,other,DSC_0820.JPG +31129,4996,2290,16,1,other,DSC_0820.JPG +3113,2341,667,17,1,other,DSC_0837.JPG +31132,4852,103,15,1,other,DSC_0820.JPG +31133,4111,172,17,1,other,DSC_0820.JPG +31135,3301,250,17,1,other,DSC_0820.JPG +31137,520,703,17,1,other,DSC_0820.JPG +31139,634,1009,17,1,other,DSC_0820.JPG +31140,5359,1690,16,1,other,DSC_0820.JPG +31141,3658,2314,15,1,other,DSC_0820.JPG +31144,2977,61,15,1,other,DSC_0820.JPG +31146,2524,253,17,1,other,DSC_0820.JPG +31151,1159,706,17,1,other,DSC_0820.JPG +31156,5095,2002,17,1,other,DSC_0820.JPG +31159,1750,256,17,1,other,DSC_0820.JPG +31161,322,1540,15,1,other,DSC_0820.JPG +31162,5248,1993,15,1,other,DSC_0820.JPG +31163,4738,2014,17,1,other,DSC_0820.JPG +31165,5110,2461,15,1,other,DSC_0820.JPG +31166,5044,2467,15,1,other,DSC_0820.JPG +31167,376,61,15,1,other,DSC_0820.JPG +31168,583,61,15,1,other,DSC_0820.JPG +31169,4078,238,17,1,other,DSC_0820.JPG +31172,1186,388,17,1,other,DSC_0820.JPG +31175,808,832,17,5,other,DSC_0820.JPG +31179,5284,1573,17,1,other,DSC_0820.JPG +3118,5314,1636,15,1,other,DSC_0837.JPG +31182,3898,2371,15,1,other,DSC_0820.JPG +31188,4957,688,17,1,other,DSC_0820.JPG +31192,4216,1129,16,1,other,DSC_0820.JPG +31194,4981,1825,17,1,other,DSC_0820.JPG +31197,5035,2230,17,1,other,DSC_0820.JPG +31199,3166,2326,17,1,other,DSC_0820.JPG +31200,4078,97,17,1,other,DSC_0820.JPG +31201,154,175,15,1,other,DSC_0820.JPG +31203,1150,322,17,1,other,DSC_0820.JPG +31204,982,520,15,1,other,DSC_0820.JPG +31206,3199,1678,17,1,other,DSC_0820.JPG +31208,3061,1912,17,1,other,DSC_0820.JPG +3121,2416,796,15,1,other,DSC_0837.JPG +31210,4360,2074,15,1,other,DSC_0820.JPG +31213,3580,118,15,1,other,DSC_0820.JPG +31215,1819,253,17,1,other,DSC_0820.JPG +31216,3970,313,16,1,other,DSC_0820.JPG +31220,115,487,17,1,other,DSC_0820.JPG +31223,601,1072,16,1,other,DSC_0820.JPG +31224,466,1426,15,1,other,DSC_0820.JPG +31225,208,1711,17,1,other,DSC_0820.JPG +31226,5245,1759,17,1,other,DSC_0820.JPG +31227,4042,1906,17,1,other,DSC_0820.JPG +31230,4891,2467,17,1,other,DSC_0820.JPG +31231,2773,46,15,1,other,DSC_0820.JPG +31234,2101,253,17,1,other,DSC_0820.JPG +31235,3547,319,17,5,other,DSC_0820.JPG +31238,5143,1225,17,5,other,DSC_0820.JPG +31239,4717,1240,16,1,other,DSC_0820.JPG +31240,388,1309,15,1,other,DSC_0820.JPG +31245,247,2242,17,1,other,DSC_0820.JPG +31246,718,2320,17,1,other,DSC_0820.JPG +31248,2737,253,17,1,other,DSC_0820.JPG +31249,3583,253,16,1,other,DSC_0820.JPG +3125,3703,1585,15,1,other,DSC_0837.JPG +31251,1369,955,17,1,other,DSC_0820.JPG +31252,5032,1411,17,1,other,DSC_0820.JPG +31253,4111,2245,15,1,other,DSC_0820.JPG +31254,3793,2311,17,1,other,DSC_0820.JPG +31255,613,2377,16,1,other,DSC_0820.JPG +31256,1936,2401,17,1,other,DSC_0820.JPG +31257,4006,241,17,1,other,DSC_0820.JPG +31260,4216,379,17,1,other,DSC_0820.JPG +31261,3370,388,17,1,other,DSC_0820.JPG +31262,1156,571,17,1,other,DSC_0820.JPG +31265,559,886,17,5,other,DSC_0820.JPG +31266,3232,1258,17,1,other,DSC_0820.JPG +31267,4600,1777,17,5,other,DSC_0820.JPG +31268,367,1951,17,1,other,DSC_0820.JPG +31271,3550,2140,17,1,other,DSC_0820.JPG +31273,997,2326,15,1,other,DSC_0820.JPG +31274,445,61,15,1,other,DSC_0820.JPG +31275,3931,94,17,1,other,DSC_0820.JPG +31276,3226,106,15,1,other,DSC_0820.JPG +31278,4540,310,15,1,other,DSC_0820.JPG +31280,1084,448,17,1,other,DSC_0820.JPG +31281,553,640,17,1,other,DSC_0820.JPG +31283,742,1192,17,1,other,DSC_0820.JPG +31284,5317,1513,15,1,other,DSC_0820.JPG +31285,5359,1807,16,1,other,DSC_0820.JPG +31286,247,1888,17,1,other,DSC_0820.JPG +31287,5317,1987,16,1,other,DSC_0820.JPG +31288,361,2188,17,1,other,DSC_0820.JPG +3129,1456,586,15,1,other,DSC_0837.JPG +31292,151,427,17,1,other,DSC_0820.JPG +31293,907,517,17,1,other,DSC_0820.JPG +31296,4849,628,17,1,other,DSC_0820.JPG +3130,3862,736,16,1,other,DSC_0837.JPG +31300,394,1540,17,1,other,DSC_0820.JPG +31304,1453,1918,17,1,other,DSC_0820.JPG +31305,4984,1948,17,1,other,DSC_0820.JPG +31306,3445,1969,17,1,other,DSC_0820.JPG +31308,3727,2314,15,1,other,DSC_0820.JPG +31309,1816,121,17,1,other,DSC_0820.JPG +3131,3163,970,15,1,other,DSC_0837.JPG +31312,4747,568,17,1,other,DSC_0820.JPG +31315,5407,787,17,1,other,DSC_0820.JPG +31316,4534,1186,17,1,other,DSC_0820.JPG +31320,3409,1909,17,1,other,DSC_0820.JPG +31321,3859,97,16,1,other,DSC_0820.JPG +31323,4471,301,17,1,other,DSC_0820.JPG +31325,82,553,17,1,other,DSC_0820.JPG +31326,4783,631,17,1,other,DSC_0820.JPG +31327,115,736,15,1,other,DSC_0820.JPG +3133,1387,460,16,1,other,DSC_0837.JPG +31330,2953,1261,17,1,other,DSC_0820.JPG +31331,5284,1933,15,1,other,DSC_0820.JPG +31334,3238,2320,15,1,other,DSC_0820.JPG +31335,2566,34,15,1,other,DSC_0820.JPG +31337,3229,250,17,1,other,DSC_0820.JPG +31338,4645,373,17,1,other,DSC_0820.JPG +31339,220,433,17,1,other,DSC_0820.JPG +31343,5329,922,15,1,other,DSC_0820.JPG +31345,355,1369,15,1,other,DSC_0820.JPG +31347,928,1855,17,1,other,DSC_0820.JPG +31348,3655,1966,16,1,other,DSC_0820.JPG +31351,4150,2191,15,1,other,DSC_0820.JPG +31353,232,64,17,1,other,DSC_0820.JPG +31354,5032,166,17,1,other,DSC_0820.JPG +31355,3331,322,17,1,other,DSC_0820.JPG +31357,4573,376,16,1,other,DSC_0820.JPG +31358,1045,388,16,1,other,DSC_0820.JPG +3136,5161,1993,16,1,other,DSC_0837.JPG +31360,3154,391,16,1,other,DSC_0820.JPG +31363,5101,931,16,1,other,DSC_0820.JPG +31365,814,1072,17,1,other,DSC_0820.JPG +31367,643,1372,17,1,other,DSC_0820.JPG +31368,2326,1381,17,1,other,DSC_0820.JPG +31369,430,1483,17,1,other,DSC_0820.JPG +31371,5167,1885,17,1,other,DSC_0820.JPG +31372,5167,1999,15,1,other,DSC_0820.JPG +31373,5251,2104,15,1,other,DSC_0820.JPG +31374,322,2245,17,1,other,DSC_0820.JPG +31376,3790,94,16,1,other,DSC_0820.JPG +31378,2245,253,17,1,other,DSC_0820.JPG +31379,256,367,17,1,other,DSC_0820.JPG +31380,4780,502,16,1,other,DSC_0820.JPG +31382,487,889,17,1,other,DSC_0820.JPG +31388,5404,1501,17,1,other,DSC_0820.JPG +31390,5356,1570,15,1,other,DSC_0820.JPG +31391,718,1609,17,1,other,DSC_0820.JPG +31392,5245,1639,17,1,other,DSC_0820.JPG +31394,577,1840,15,1,other,DSC_0820.JPG +31396,2818,2089,17,1,other,DSC_0820.JPG +31399,433,2311,15,1,other,DSC_0820.JPG +31400,5074,2404,17,1,other,DSC_0820.JPG +31401,2839,64,15,1,other,DSC_0820.JPG +31403,1114,388,17,1,other,DSC_0820.JPG +31408,490,1126,15,1,other,DSC_0820.JPG +31411,283,1834,17,1,other,DSC_0820.JPG +31415,2173,256,15,1,other,DSC_0820.JPG +31418,184,364,17,1,other,DSC_0820.JPG +31423,5251,1396,15,1,other,DSC_0820.JPG +31424,682,1663,17,1,other,DSC_0820.JPG +31425,208,1831,17,1,other,DSC_0820.JPG +31426,4633,1954,15,1,other,DSC_0820.JPG +31427,5209,2050,15,1,other,DSC_0820.JPG +3143,1459,460,15,1,other,DSC_0837.JPG +31431,4777,2410,15,1,other,DSC_0820.JPG +31432,3514,121,17,1,other,DSC_0820.JPG +31433,298,307,15,1,other,DSC_0820.JPG +31435,4921,754,16,1,other,DSC_0820.JPG +31439,673,1309,17,1,other,DSC_0820.JPG +31440,394,1423,17,1,other,DSC_0820.JPG +31441,5281,1699,17,1,other,DSC_0820.JPG +31442,436,1720,16,1,other,DSC_0820.JPG +31443,5398,1744,17,1,other,DSC_0820.JPG +31449,4465,2359,15,1,other,DSC_0820.JPG +3145,4300,607,17,1,other,DSC_0837.JPG +31450,4894,37,17,1,other,DSC_0820.JPG +31451,856,58,15,1,other,DSC_0820.JPG +31452,4993,106,17,1,other,DSC_0820.JPG +31453,1888,250,17,1,other,DSC_0820.JPG +31454,3088,250,17,1,other,DSC_0820.JPG +31457,4960,931,17,1,other,DSC_0820.JPG +31460,5320,1633,17,1,other,DSC_0820.JPG +31461,364,1720,15,1,other,DSC_0820.JPG +31463,4915,2062,15,1,other,DSC_0820.JPG +31465,5146,2515,15,1,other,DSC_0820.JPG +31466,4360,91,17,1,other,DSC_0820.JPG +31467,4927,100,17,1,other,DSC_0820.JPG +31471,4393,946,16,1,other,DSC_0820.JPG +31472,571,1369,17,1,other,DSC_0820.JPG +31474,5173,1528,15,1,other,DSC_0820.JPG +31476,472,2017,17,1,other,DSC_0820.JPG +31485,5032,1174,16,1,other,DSC_0820.JPG +31486,5218,1342,15,1,other,DSC_0820.JPG +31488,3025,1852,17,1,other,DSC_0820.JPG +31490,289,2185,15,1,other,DSC_0820.JPG +31492,4324,163,17,1,other,DSC_0820.JPG +31493,4039,169,17,1,other,DSC_0820.JPG +31495,1924,181,17,1,other,DSC_0820.JPG +31498,4675,568,16,1,other,DSC_0820.JPG +315,3388,319,17,1,other,DSC_0844.JPG +31501,5212,742,17,1,other,DSC_0820.JPG +31507,310,1183,17,1,other,DSC_0820.JPG +31508,607,1312,17,1,other,DSC_0820.JPG +31509,67,1564,15,1,other,DSC_0820.JPG +31510,139,1576,17,1,other,DSC_0820.JPG +31512,616,1666,17,1,other,DSC_0820.JPG +31514,4813,2125,17,1,other,DSC_0820.JPG +31516,5116,2347,17,1,other,DSC_0820.JPG +31518,1006,325,16,1,other,DSC_0820.JPG +3152,2251,2119,15,1,other,DSC_0837.JPG +31520,5365,607,17,1,other,DSC_0820.JPG +31521,910,766,15,1,other,DSC_0820.JPG +31522,4957,814,17,5,other,DSC_0820.JPG +31523,598,952,17,1,other,DSC_0820.JPG +31526,538,1426,17,1,other,DSC_0820.JPG +31528,283,1717,15,1,other,DSC_0820.JPG +31529,652,1726,17,1,other,DSC_0820.JPG +3153,3235,478,17,1,other,DSC_0837.JPG +31530,397,1783,17,1,other,DSC_0820.JPG +31532,5275,2332,17,1,other,DSC_0820.JPG +31533,3892,28,17,1,other,DSC_0820.JPG +31535,2386,115,17,1,other,DSC_0820.JPG +31538,5401,664,16,1,other,DSC_0820.JPG +31539,985,769,16,1,other,DSC_0820.JPG +31541,172,1648,17,1,other,DSC_0820.JPG +31545,937,55,15,1,other,DSC_0820.JPG +31547,616,388,17,1,other,DSC_0820.JPG +3155,2983,670,16,1,other,DSC_0837.JPG +31550,5251,679,17,1,other,DSC_0820.JPG +31553,5071,2290,15,1,other,DSC_0820.JPG +31554,283,2305,16,1,other,DSC_0820.JPG +31555,4222,2419,15,1,other,DSC_0820.JPG +31556,4399,25,16,1,other,DSC_0820.JPG +31558,1891,112,17,1,other,DSC_0820.JPG +31559,2491,184,16,1,other,DSC_0820.JPG +31561,181,241,17,1,other,DSC_0820.JPG +31562,2455,259,15,1,other,DSC_0820.JPG +31570,3343,2371,15,1,other,DSC_0820.JPG +31571,1855,184,17,1,other,DSC_0820.JPG +31577,2851,1321,16,1,other,DSC_0820.JPG +31581,5023,1648,17,1,other,DSC_0820.JPG +31582,577,1726,17,1,other,DSC_0820.JPG +31583,616,1786,16,1,other,DSC_0820.JPG +31585,3028,2323,15,1,other,DSC_0820.JPG +31586,3760,2371,15,1,other,DSC_0820.JPG +3159,1345,1144,15,1,other,DSC_0837.JPG +31591,2806,523,17,1,other,DSC_0820.JPG +31596,2467,1381,16,1,other,DSC_0820.JPG +31597,97,1756,15,1,other,DSC_0820.JPG +31598,3622,2374,15,1,other,DSC_0820.JPG +31600,4501,376,15,1,other,DSC_0820.JPG +31604,148,556,17,1,other,DSC_0820.JPG +31607,601,1192,17,1,other,DSC_0820.JPG +31608,5434,1564,15,1,other,DSC_0820.JPG +31609,5203,1819,17,1,other,DSC_0820.JPG +31611,4567,2068,15,1,other,DSC_0820.JPG +31612,4429,2077,16,1,other,DSC_0820.JPG +31613,3133,2140,17,1,other,DSC_0820.JPG +31619,4819,2464,17,1,other,DSC_0820.JPG +31620,4291,94,17,1,other,DSC_0820.JPG +31621,3016,121,15,1,other,DSC_0820.JPG +31627,2359,1201,16,1,other,DSC_0820.JPG +31629,25,1390,15,1,other,DSC_0820.JPG +3163,3559,1465,15,1,other,DSC_0837.JPG +31631,5062,1588,17,1,other,DSC_0820.JPG +31632,2785,1801,17,1,other,DSC_0820.JPG +31635,3157,256,15,1,other,DSC_0820.JPG +31642,4357,769,16,1,other,DSC_0820.JPG +31643,739,1078,17,1,other,DSC_0820.JPG +31645,2611,1264,17,1,other,DSC_0820.JPG +31648,679,1429,17,1,other,DSC_0820.JPG +31649,5212,1462,17,1,other,DSC_0820.JPG +31654,4006,1846,16,1,other,DSC_0820.JPG +31655,5356,1930,15,1,other,DSC_0820.JPG +31656,4078,2191,16,1,other,DSC_0820.JPG +31657,3718,100,16,1,other,DSC_0820.JPG +31658,2173,115,15,1,other,DSC_0820.JPG +3166,4882,238,17,1,other,DSC_0837.JPG +31663,5398,1627,15,1,other,DSC_0820.JPG +31665,4288,2413,17,1,other,DSC_0820.JPG +31666,1609,106,17,1,other,DSC_0820.JPG +31667,5215,358,17,1,other,DSC_0820.JPG +3167,1600,463,16,1,other,DSC_0837.JPG +31674,4978,1222,15,1,other,DSC_0820.JPG +31678,5281,1816,17,1,other,DSC_0820.JPG +3168,2875,607,17,1,other,DSC_0837.JPG +31684,247,1522,16,1,other,DSC_0820.JPG +31686,5266,2212,17,1,other,DSC_0820.JPG +31687,3553,2254,17,1,other,DSC_0820.JPG +31688,361,2308,16,1,other,DSC_0820.JPG +31689,4711,2410,17,1,other,DSC_0820.JPG +31690,4147,2416,15,1,other,DSC_0820.JPG +31691,721,61,15,1,other,DSC_0820.JPG +31692,2557,172,15,1,other,DSC_0820.JPG +31694,1261,637,17,1,other,DSC_0820.JPG +31695,1189,643,17,1,other,DSC_0820.JPG +31704,5017,1885,16,1,other,DSC_0820.JPG +31705,2242,112,15,1,other,DSC_0820.JPG +31708,4111,1072,16,1,other,DSC_0820.JPG +31718,5209,1942,17,1,other,DSC_0820.JPG +31720,2869,7,17,1,other,DSC_0820.JPG +31721,1753,109,17,1,other,DSC_0820.JPG +31722,979,115,17,1,other,DSC_0820.JPG +31723,193,121,17,1,other,DSC_0820.JPG +31724,118,232,17,1,other,DSC_0820.JPG +31728,145,928,17,1,other,DSC_0820.JPG +3173,3973,1045,15,1,other,DSC_0837.JPG +31730,4789,1237,16,1,other,DSC_0820.JPG +31731,2923,1324,17,1,other,DSC_0820.JPG +31735,964,2389,15,1,other,DSC_0820.JPG +31737,478,7,15,1,other,DSC_0820.JPG +31738,652,61,15,1,other,DSC_0820.JPG +3174,1489,1147,16,1,other,DSC_0837.JPG +31745,5437,1441,15,1,other,DSC_0820.JPG +31746,502,1483,17,1,other,DSC_0820.JPG +31751,5233,2275,17,1,other,DSC_0820.JPG +31753,3553,2377,17,1,other,DSC_0820.JPG +31754,3823,28,16,1,other,DSC_0820.JPG +31759,5164,1765,17,1,other,DSC_0820.JPG +31761,3484,2377,17,1,other,DSC_0820.JPG +31762,3367,124,15,1,other,DSC_0820.JPG +31764,3265,715,16,1,other,DSC_0820.JPG +3177,3256,895,16,1,other,DSC_0837.JPG +31770,4495,2068,17,1,other,DSC_0820.JPG +31771,5152,2281,17,1,other,DSC_0820.JPG +31773,1834,2338,15,1,other,DSC_0820.JPG +31776,3052,328,15,5,other,DSC_0820.JPG +31783,5398,1867,15,1,other,DSC_0820.JPG +31789,2716,2395,15,1,other,DSC_0820.JPG +3179,4594,1276,16,1,other,DSC_0837.JPG +31790,5179,295,17,1,other,DSC_0820.JPG +31791,5251,421,17,1,other,DSC_0820.JPG +31793,4927,991,15,1,other,DSC_0820.JPG +3180,4840,1339,15,1,other,DSC_0837.JPG +31802,3274,2377,15,1,other,DSC_0820.JPG +31804,2071,37,16,1,other,DSC_0820.JPG +31809,76,799,15,1,other,DSC_0820.JPG +31812,5350,1324,17,1,other,DSC_0820.JPG +31815,4567,1960,15,5,other,DSC_0820.JPG +31817,5185,2224,15,1,other,DSC_0820.JPG +31818,214,2299,17,1,other,DSC_0820.JPG +31819,322,2365,15,1,other,DSC_0820.JPG +3182,3865,2239,15,1,other,DSC_0837.JPG +31820,1795,46,17,1,other,DSC_0820.JPG +31829,1549,1261,17,1,other,DSC_0820.JPG +31830,73,1447,17,1,other,DSC_0820.JPG +31832,5245,1873,17,1,other,DSC_0820.JPG +31836,685,2374,15,1,other,DSC_0820.JPG +31837,3745,31,15,1,other,DSC_0820.JPG +31838,220,181,17,1,other,DSC_0820.JPG +31839,3022,253,17,1,other,DSC_0820.JPG +31840,220,304,17,1,other,DSC_0820.JPG +31863,3763,1792,16,1,other,DSC_0820.JPG +31868,3829,1315,17,1,other,DSC_0820.JPG +31869,2818,1384,16,1,other,DSC_0820.JPG +3187,3052,1042,15,1,other,DSC_0837.JPG +31872,175,1513,17,1,other,DSC_0820.JPG +31879,829,2380,17,1,other,DSC_0820.JPG +31880,5362,91,17,1,other,DSC_0820.JPG +31881,5095,172,17,1,other,DSC_0820.JPG +31888,106,862,15,1,other,DSC_0820.JPG +31890,4864,1000,15,1,other,DSC_0820.JPG +31891,139,1057,15,1,other,DSC_0820.JPG +31892,2782,1204,17,1,other,DSC_0820.JPG +31894,2644,1435,16,1,other,DSC_0820.JPG +3190,4837,1696,16,1,other,DSC_0837.JPG +31901,5194,2341,17,1,other,DSC_0820.JPG +31902,5182,2455,15,1,other,DSC_0820.JPG +31903,511,61,15,1,other,DSC_0820.JPG +31904,1324,115,16,1,other,DSC_0820.JPG +31913,4603,1189,17,1,other,DSC_0820.JPG +31915,2743,1384,17,1,other,DSC_0820.JPG +31918,178,2239,15,1,other,DSC_0820.JPG +31919,400,2368,15,1,other,DSC_0820.JPG +31920,4078,2419,17,1,other,DSC_0820.JPG +31921,2314,112,17,1,other,DSC_0820.JPG +31927,5362,856,17,1,other,DSC_0820.JPG +31932,5422,1318,15,1,other,DSC_0820.JPG +31939,3133,1912,17,1,other,DSC_0820.JPG +3194,2098,343,16,5,other,DSC_0837.JPG +31940,1429,55,15,1,other,DSC_0820.JPG +31941,1357,58,15,1,other,DSC_0820.JPG +31944,5434,478,15,1,other,DSC_0820.JPG +3195,2026,598,17,1,other,DSC_0837.JPG +31952,4957,1288,17,1,other,DSC_0820.JPG +31957,67,1690,17,1,other,DSC_0820.JPG +3196,4801,616,17,5,other,DSC_0837.JPG +31961,1996,34,17,1,other,DSC_0820.JPG +31962,3508,250,17,1,other,DSC_0820.JPG +31977,5284,1330,15,1,other,DSC_0820.JPG +31991,5410,2137,15,1,other,DSC_0820.JPG +32,754,1867,16,1,other,DSC_0844.JPG +32000,4777,1114,17,1,other,DSC_0820.JPG +32010,469,2374,17,1,other,DSC_0820.JPG +32011,790,58,16,1,other,DSC_0820.JPG +32012,1960,115,15,1,other,DSC_0820.JPG +32022,4873,1234,15,1,other,DSC_0820.JPG +32033,5146,2401,16,1,other,DSC_0820.JPG +32034,3040,46,15,1,other,DSC_0820.JPG +32035,1855,61,15,1,other,DSC_0820.JPG +32036,3442,121,15,1,other,DSC_0820.JPG +32050,541,1783,17,1,other,DSC_0820.JPG +32054,3832,2371,17,1,other,DSC_0820.JPG +32055,415,7,15,1,other,DSC_0820.JPG +32056,3604,46,16,1,other,DSC_0820.JPG +32059,79,430,15,1,other,DSC_0820.JPG +3206,3232,610,16,5,other,DSC_0837.JPG +32061,82,673,15,1,other,DSC_0820.JPG +32068,310,1420,16,1,other,DSC_0820.JPG +32081,4012,1966,17,1,other,DSC_0820.JPG +32083,5005,2527,15,1,other,DSC_0820.JPG +32084,1924,34,17,1,other,DSC_0820.JPG +32097,5395,1387,17,1,other,DSC_0820.JPG +32101,1903,1501,17,1,other,DSC_0820.JPG +32107,757,2374,17,1,other,DSC_0820.JPG +32108,5140,226,15,1,other,DSC_0820.JPG +32134,508,1843,17,1,other,DSC_0820.JPG +32135,5320,1873,15,1,other,DSC_0820.JPG +32136,175,1879,17,1,other,DSC_0820.JPG +32138,67,2092,15,1,other,DSC_0820.JPG +32139,619,4,15,1,other,DSC_0820.JPG +3214,5386,1756,16,1,other,DSC_0837.JPG +32140,3664,46,15,1,other,DSC_0820.JPG +32141,4219,94,16,1,other,DSC_0820.JPG +32154,223,1453,15,1,other,DSC_0820.JPG +32157,5479,1621,17,1,other,DSC_0820.JPG +32161,145,2173,17,1,other,DSC_0820.JPG +32162,2524,97,17,1,other,DSC_0820.JPG +32163,5326,160,17,1,other,DSC_0820.JPG +32185,5431,1684,15,1,other,DSC_0820.JPG +32192,214,2179,15,1,other,DSC_0820.JPG +32193,3409,2371,15,1,other,DSC_0820.JPG +32194,1030,2386,15,1,other,DSC_0820.JPG +32201,46,730,17,1,other,DSC_0820.JPG +3221,121,868,16,1,other,DSC_0837.JPG +32224,3271,2026,17,1,other,DSC_0820.JPG +32227,163,58,15,1,other,DSC_0820.JPG +32228,2455,91,17,1,other,DSC_0820.JPG +3223,3232,1102,15,1,other,DSC_0837.JPG +32236,5002,1114,17,1,other,DSC_0820.JPG +32251,5281,2044,15,1,other,DSC_0820.JPG +32253,4753,31,15,1,other,DSC_0820.JPG +32254,5032,34,17,1,other,DSC_0820.JPG +32269,5224,1111,17,5,other,DSC_0820.JPG +3227,4525,1636,17,1,other,DSC_0837.JPG +32273,5101,1531,15,1,other,DSC_0820.JPG +3228,5353,1696,15,1,other,DSC_0837.JPG +32282,2293,37,17,1,other,DSC_0820.JPG +32286,5437,598,17,1,other,DSC_0820.JPG +32289,5173,685,17,1,other,DSC_0820.JPG +3229,5314,1759,15,1,other,DSC_0837.JPG +32296,5437,847,17,1,other,DSC_0820.JPG +32317,1720,37,16,1,other,DSC_0820.JPG +32321,5137,619,17,1,other,DSC_0820.JPG +32329,5188,1168,15,5,other,DSC_0820.JPG +32336,115,1519,15,1,other,DSC_0820.JPG +3234,3505,805,16,1,other,DSC_0837.JPG +32350,256,2362,15,1,other,DSC_0820.JPG +32351,3205,2380,15,1,other,DSC_0820.JPG +32352,1522,2392,17,1,other,DSC_0820.JPG +32353,4354,2410,17,1,other,DSC_0820.JPG +3236,3676,1045,15,1,other,DSC_0837.JPG +32374,715,1726,17,1,other,DSC_0820.JPG +32378,5401,157,17,1,other,DSC_0820.JPG +32379,5320,424,17,1,other,DSC_0820.JPG +32384,5470,658,15,1,other,DSC_0820.JPG +3239,4729,1756,17,1,other,DSC_0837.JPG +32411,3970,1669,16,1,other,DSC_0820.JPG +32418,3694,2377,17,1,other,DSC_0820.JPG +32419,4051,31,15,1,other,DSC_0820.JPG +3243,4909,1936,15,1,other,DSC_0837.JPG +32444,5026,1534,15,1,other,DSC_0820.JPG +32450,4006,2431,17,1,other,DSC_0820.JPG +32451,4006,97,15,1,other,DSC_0820.JPG +3246,2128,790,16,1,other,DSC_0837.JPG +3249,4999,1096,15,1,other,DSC_0837.JPG +32505,2536,1498,17,1,other,DSC_0820.JPG +3251,4561,1336,16,1,other,DSC_0837.JPG +32520,4675,31,15,1,other,DSC_0820.JPG +32521,5134,112,15,1,other,DSC_0820.JPG +32522,1261,127,15,1,other,DSC_0820.JPG +3254,3973,2179,15,1,other,DSC_0837.JPG +32551,4960,37,17,1,other,DSC_0820.JPG +32552,79,298,17,1,other,DSC_0820.JPG +3256,1420,1024,15,1,other,DSC_0837.JPG +32591,5389,1981,17,1,other,DSC_0820.JPG +32592,5206,235,17,1,other,DSC_0820.JPG +32593,151,304,17,1,other,DSC_0820.JPG +32594,103,364,17,1,other,DSC_0820.JPG +32596,5353,481,15,1,other,DSC_0820.JPG +3260,4291,2233,17,1,other,DSC_0837.JPG +3262,2560,421,16,5,other,DSC_0837.JPG +32626,5431,1801,17,1,other,DSC_0820.JPG +32632,2491,28,17,1,other,DSC_0820.JPG +32633,5287,94,15,1,other,DSC_0820.JPG +32669,3130,2386,17,1,other,DSC_0820.JPG +3267,1969,2113,15,1,other,DSC_0837.JPG +32670,2086,2395,15,1,other,DSC_0820.JPG +32671,820,4,17,1,other,DSC_0820.JPG +32672,5059,106,17,1,other,DSC_0820.JPG +32673,124,118,17,1,other,DSC_0820.JPG +32689,3688,1438,16,1,other,DSC_0820.JPG +3269,3097,355,17,1,other,DSC_0837.JPG +3270,1957,469,17,1,other,DSC_0837.JPG +32703,5233,2395,17,1,other,DSC_0820.JPG +32704,1735,2398,16,1,other,DSC_0820.JPG +32705,2704,40,15,1,other,DSC_0820.JPG +32708,5287,490,15,1,other,DSC_0820.JPG +3271,1633,526,16,1,other,DSC_0837.JPG +32742,190,2350,17,1,other,DSC_0820.JPG +32744,550,7,17,1,other,DSC_0820.JPG +32745,1642,34,16,1,other,DSC_0820.JPG +3276,1420,1144,15,1,other,DSC_0837.JPG +32778,2227,2398,17,1,other,DSC_0820.JPG +32779,757,7,15,1,other,DSC_0820.JPG +32780,4138,25,17,1,other,DSC_0820.JPG +32781,19,289,15,1,other,DSC_0820.JPG +32796,4822,1177,17,1,other,DSC_0820.JPG +328,1942,100,17,1,other,DSC_0844.JPG +3280,3781,1348,15,1,other,DSC_0837.JPG +3281,5059,1450,17,5,other,DSC_0837.JPG +32810,190,2110,17,1,other,DSC_0820.JPG +32811,2293,2395,15,1,other,DSC_0820.JPG +32813,5266,2455,17,1,other,DSC_0820.JPG +32814,1495,37,15,1,other,DSC_0820.JPG +32815,3196,40,15,1,other,DSC_0820.JPG +32847,1867,2398,17,1,other,DSC_0820.JPG +3285,4759,2281,15,1,other,DSC_0837.JPG +32852,5329,550,17,1,other,DSC_0820.JPG +32870,244,1378,17,1,other,DSC_0820.JPG +32887,118,2227,15,1,other,DSC_0820.JPG +32889,2860,2398,17,1,other,DSC_0820.JPG +32890,2947,7,15,1,other,DSC_0820.JPG +32891,2215,40,16,1,other,DSC_0820.JPG +329,3286,115,17,1,other,DSC_0844.JPG +3291,1411,1621,15,1,other,DSC_0837.JPG +32929,5428,1927,15,1,other,DSC_0820.JPG +32932,5359,2044,15,1,other,DSC_0820.JPG +32934,4567,2407,15,1,other,DSC_0820.JPG +32935,2404,31,16,1,other,DSC_0820.JPG +32936,1048,112,15,1,other,DSC_0820.JPG +3295,4051,1942,15,1,other,DSC_0837.JPG +32956,28,1744,15,1,other,DSC_0820.JPG +32961,652,2419,17,1,other,DSC_0820.JPG +32962,4432,2419,17,1,other,DSC_0820.JPG +32963,3118,34,16,1,other,DSC_0820.JPG +32964,3757,583,17,1,other,DSC_0820.JPG +3297,1741,592,17,1,other,DSC_0837.JPG +3298,3976,673,17,1,other,DSC_0837.JPG +32995,694,7,17,1,other,DSC_0820.JPG +32996,2140,40,17,1,other,DSC_0820.JPG +32998,5410,538,17,1,other,DSC_0820.JPG +3302,193,1225,17,1,other,DSC_0837.JPG +33029,175,2002,15,1,other,DSC_0820.JPG +3303,3676,1288,15,1,other,DSC_0837.JPG +33033,5281,2155,17,1,other,DSC_0820.JPG +33034,55,229,17,1,other,DSC_0820.JPG +33036,5236,304,15,1,other,DSC_0820.JPG +33037,187,490,17,1,other,DSC_0820.JPG +33064,4243,28,17,1,other,DSC_0820.JPG +33065,4534,37,15,1,other,DSC_0820.JPG +33066,3337,55,17,1,other,DSC_0820.JPG +33067,5170,175,17,1,other,DSC_0820.JPG +3309,4798,2338,15,1,other,DSC_0837.JPG +33094,5464,1864,17,1,other,DSC_0820.JPG +33100,5314,2266,17,1,other,DSC_0820.JPG +33102,2989,2392,17,1,other,DSC_0820.JPG +33103,5302,292,17,1,other,DSC_0820.JPG +33105,5371,346,15,1,other,DSC_0820.JPG +3311,3091,610,17,1,other,DSC_0837.JPG +33115,49,856,15,1,other,DSC_0820.JPG +33124,514,1609,15,1,other,DSC_0820.JPG +33133,271,7,15,1,other,DSC_0820.JPG +33134,4807,46,15,1,other,DSC_0820.JPG +33155,5392,2230,15,1,other,DSC_0820.JPG +33158,436,2422,15,1,other,DSC_0820.JPG +33169,205,1294,17,1,other,DSC_0820.JPG +33175,22,1612,15,1,other,DSC_0820.JPG +3318,1204,391,15,1,other,DSC_0837.JPG +33185,3967,22,17,1,other,DSC_0820.JPG +33186,85,166,17,1,other,DSC_0820.JPG +3319,1885,466,16,1,other,DSC_0837.JPG +33197,5401,913,17,1,other,DSC_0820.JPG +332,112,859,17,1,other,DSC_0844.JPG +3320,2947,604,17,1,other,DSC_0837.JPG +33206,13,1675,15,1,other,DSC_0820.JPG +33207,142,1816,17,1,other,DSC_0820.JPG +3321,4009,610,15,1,other,DSC_0837.JPG +33225,514,2431,17,1,other,DSC_0820.JPG +33226,5257,31,16,1,other,DSC_0820.JPG +33243,5341,2113,15,1,other,DSC_0820.JPG +33245,4636,2413,15,1,other,DSC_0820.JPG +33246,5218,2512,17,1,other,DSC_0820.JPG +33247,5221,97,17,1,other,DSC_0820.JPG +33248,5419,103,15,1,other,DSC_0820.JPG +3325,3010,1102,16,1,other,DSC_0837.JPG +33250,5452,337,17,1,other,DSC_0820.JPG +33256,85,1327,15,1,other,DSC_0820.JPG +33262,91,2158,17,1,other,DSC_0820.JPG +33265,1978,2458,15,1,other,DSC_0820.JPG +33266,88,58,15,1,other,DSC_0820.JPG +3327,4909,1456,17,1,other,DSC_0837.JPG +33287,226,2410,17,1,other,DSC_0820.JPG +33288,3538,55,17,1,other,DSC_0820.JPG +33291,5389,415,17,1,other,DSC_0820.JPG +33296,5470,1738,17,1,other,DSC_0820.JPG +33303,139,1939,15,1,other,DSC_0820.JPG +33307,337,7,15,1,other,DSC_0820.JPG +33309,5470,535,15,1,other,DSC_0820.JPG +33312,109,991,15,1,other,DSC_0820.JPG +3332,4123,1942,15,1,other,DSC_0837.JPG +33321,4501,2416,17,1,other,DSC_0820.JPG +33322,4858,2518,15,1,other,DSC_0820.JPG +33323,1285,64,15,1,other,DSC_0820.JPG +33325,16,535,17,1,other,DSC_0820.JPG +3333,4651,2113,15,1,other,DSC_0837.JPG +33335,40,358,15,1,other,DSC_0820.JPG +33346,5110,28,15,1,other,DSC_0820.JPG +33347,5251,163,17,1,other,DSC_0820.JPG +33348,5287,226,17,1,other,DSC_0820.JPG +3335,4471,2287,17,1,other,DSC_0837.JPG +33351,85,916,15,1,other,DSC_0820.JPG +33354,3298,1384,17,1,other,DSC_0820.JPG +33357,5356,2182,15,1,other,DSC_0820.JPG +33358,139,2296,17,1,other,DSC_0820.JPG +33359,583,2428,15,1,other,DSC_0820.JPG +33364,145,1450,17,1,other,DSC_0820.JPG +33371,5185,28,17,1,other,DSC_0820.JPG +33372,5338,28,15,1,other,DSC_0820.JPG +33375,13,799,17,1,other,DSC_0820.JPG +33378,4957,1057,17,1,other,DSC_0820.JPG +33385,5440,217,17,1,other,DSC_0820.JPG +33386,5404,286,17,1,other,DSC_0820.JPG +33398,121,1390,15,1,other,DSC_0820.JPG +33401,2050,2452,17,1,other,DSC_0820.JPG +33402,5377,220,17,1,other,DSC_0820.JPG +33406,3934,2425,15,1,other,DSC_0820.JPG +33407,1903,2455,17,1,other,DSC_0820.JPG +33408,5395,37,15,1,other,DSC_0820.JPG +33410,130,2095,15,1,other,DSC_0820.JPG +33412,3478,58,16,1,other,DSC_0820.JPG +33415,5476,775,17,1,other,DSC_0820.JPG +33419,5206,2164,15,1,other,DSC_0820.JPG +3342,2968,1279,16,1,other,DSC_0837.JPG +33420,5365,1102,15,1,other,DSC_0820.JPG +33421,487,1243,15,1,other,DSC_0820.JPG +33422,22,1507,17,1,other,DSC_0820.JPG +33425,25,2149,17,1,other,DSC_0820.JPG +33426,3406,61,15,1,other,DSC_0820.JPG +33428,5329,1045,17,1,other,DSC_0820.JPG +33430,5458,2026,17,1,other,DSC_0820.JPG +33431,5356,2311,15,1,other,DSC_0820.JPG +33432,52,607,17,1,other,DSC_0820.JPG +33435,5407,2071,17,1,other,DSC_0820.JPG +33437,367,2419,17,1,other,DSC_0820.JPG +33438,721,1258,15,1,other,DSC_0820.JPG +33441,5302,2386,15,1,other,DSC_0820.JPG +33442,2293,2494,15,1,other,DSC_0820.JPG +33443,5215,1219,15,1,other,DSC_0820.JPG +33444,118,1867,15,1,other,DSC_0820.JPG +33445,196,7,16,1,other,DSC_0820.JPG +33446,5287,367,15,1,other,DSC_0820.JPG +33447,5371,976,15,1,other,DSC_0820.JPG +33448,5248,1264,15,1,other,DSC_0820.JPG +33449,2011,2503,17,1,other,DSC_0820.JPG +33450,1381,4,15,1,other,DSC_0820.JPG +33452,3253,49,17,1,other,DSC_0820.JPG +33453,5362,724,15,1,other,DSC_0820.JPG +33454,5476,2185,15,1,other,DSC_0820.JPG +33456,292,2425,17,1,other,DSC_0820.JPG +33458,1183,118,17,1,other,DSC_0820.JPG +33459,25,658,17,1,other,DSC_0820.JPG +3346,4555,1696,17,1,other,DSC_0837.JPG +33461,55,2215,15,1,other,DSC_0820.JPG +33462,2353,55,15,1,other,DSC_0820.JPG +33463,5464,154,15,1,other,DSC_0820.JPG +33464,16,169,17,1,other,DSC_0820.JPG +33465,2404,2449,15,1,other,DSC_0820.JPG +33468,52,970,17,1,other,DSC_0820.JPG +33469,5473,280,15,1,other,DSC_0820.JPG +33470,22,919,17,1,other,DSC_0820.JPG +33471,5464,2098,15,1,other,DSC_0820.JPG +33472,46,115,15,1,other,DSC_0820.JPG +33474,25,1324,17,1,other,DSC_0820.JPG +33475,907,4,17,1,other,DSC_0820.JPG +33476,3088,118,15,1,other,DSC_0820.JPG +33477,5305,1105,17,1,other,DSC_0820.JPG +33479,5443,2284,15,1,other,DSC_0820.JPG +33480,5473,895,17,1,other,DSC_0820.JPG +33481,5272,1459,17,1,other,DSC_0820.JPG +33483,5476,397,15,1,other,DSC_0820.JPG +33484,2341,2455,15,1,other,DSC_0820.JPG +33485,13,427,17,1,other,DSC_0820.JPG +33487,139,4,15,1,other,DSC_0820.JPG +33488,4468,46,17,1,other,DSC_0820.JPG +33490,5476,1279,15,1,other,DSC_0820.JPG +33491,3187,598,17,1,other,DSC_0820.JPG +33492,5473,1378,15,1,other,DSC_0820.JPG +33493,5188,2560,15,1,other,DSC_0820.JPG +33494,463,640,15,1,other,DSC_0820.JPG +33495,5473,1510,17,1,other,DSC_0820.JPG +33496,4840,1351,17,1,other,DSC_0820.JPG +33497,1642,340,15,1,other,DSC_0820.JPG +33498,55,487,15,1,other,DSC_0820.JPG +33499,4336,37,15,1,other,DSC_0820.JPG +33501,196,1231,15,1,other,DSC_0820.JPG +33502,37,31,15,1,other,DSC_0820.JPG +33504,724,2419,17,1,other,DSC_0820.JPG +33505,4912,1090,15,1,other,DSC_0820.JPG +33507,4156,76,15,1,other,DSC_0841.JPG +33508,3931,73,16,1,other,DSC_0841.JPG +33512,4708,85,17,1,other,DSC_0841.JPG +33513,1264,106,16,1,other,DSC_0841.JPG +33514,3715,67,16,1,other,DSC_0841.JPG +33517,3331,127,16,1,other,DSC_0841.JPG +33518,3328,256,16,1,other,DSC_0841.JPG +33519,4108,400,16,1,other,DSC_0841.JPG +33521,3154,196,16,1,other,DSC_0841.JPG +33526,703,2032,16,1,other,DSC_0841.JPG +33527,1621,244,17,1,other,DSC_0841.JPG +33528,4858,85,17,1,other,DSC_0841.JPG +33531,2080,445,17,1,other,DSC_0841.JPG +33532,526,1861,16,1,other,DSC_0841.JPG +33533,1552,115,16,1,other,DSC_0841.JPG +33537,2473,112,16,1,other,DSC_0841.JPG +33539,4981,955,17,1,other,DSC_0841.JPG +33541,4924,2188,15,1,other,DSC_0841.JPG +33543,1939,568,17,5,other,DSC_0841.JPG +33545,2863,325,17,5,other,DSC_0841.JPG +33547,526,1972,16,1,other,DSC_0841.JPG +33548,631,2032,15,1,other,DSC_0841.JPG +33549,1696,109,16,1,other,DSC_0841.JPG +33553,3013,58,17,1,other,DSC_0841.JPG +33554,742,2092,17,1,other,DSC_0841.JPG +33559,880,805,16,5,other,DSC_0841.JPG +33560,3646,70,17,1,other,DSC_0841.JPG +33561,4999,334,16,1,other,DSC_0841.JPG +33568,229,1621,15,5,other,DSC_0841.JPG +33569,4501,79,16,1,other,DSC_0841.JPG +33570,2686,124,16,1,other,DSC_0841.JPG +33573,3472,133,16,1,other,DSC_0841.JPG +33576,2644,55,16,1,other,DSC_0841.JPG +33579,3436,196,17,1,other,DSC_0841.JPG +33581,289,2086,15,1,other,DSC_0841.JPG +33582,3259,127,17,1,other,DSC_0841.JPG +33583,2899,262,16,1,other,DSC_0841.JPG +33586,4822,151,16,1,other,DSC_0841.JPG +33587,2719,58,15,1,other,DSC_0841.JPG +33592,298,1855,15,1,other,DSC_0841.JPG +33593,1480,499,16,5,other,DSC_0841.JPG +33596,3682,139,15,1,other,DSC_0841.JPG +33597,2722,190,17,1,other,DSC_0841.JPG +33598,1156,172,17,1,other,DSC_0841.JPG +33603,2827,127,16,1,other,DSC_0841.JPG +33605,1018,2221,16,1,other,DSC_0841.JPG +33606,1585,49,15,1,other,DSC_0841.JPG +33611,4945,898,17,1,other,DSC_0841.JPG +33612,2545,127,16,1,other,DSC_0841.JPG +33614,526,2203,17,1,other,DSC_0841.JPG +33617,3754,133,16,1,other,DSC_0841.JPG +33619,1375,49,17,1,other,DSC_0841.JPG +33622,988,748,17,1,other,DSC_0841.JPG +33623,4960,2245,15,1,other,DSC_0841.JPG +33624,3787,70,16,1,other,DSC_0841.JPG +33627,592,2206,16,1,other,DSC_0841.JPG +33631,1483,751,16,5,other,DSC_0841.JPG +33633,967,109,17,1,other,DSC_0841.JPG +33636,4285,469,17,5,other,DSC_0841.JPG +33638,415,1801,16,5,other,DSC_0841.JPG +33639,5155,76,17,5,other,DSC_0841.JPG +3364,3595,1762,15,1,other,DSC_0837.JPG +33641,1372,181,17,1,other,DSC_0841.JPG +33642,2332,256,17,5,other,DSC_0841.JPG +33645,772,1213,16,1,other,DSC_0841.JPG +33646,4114,139,17,1,other,DSC_0841.JPG +33647,2011,316,17,1,other,DSC_0841.JPG +33648,4606,412,15,5,other,DSC_0841.JPG +33651,4318,406,17,1,other,DSC_0841.JPG +33655,3514,70,16,1,other,DSC_0841.JPG +33656,985,1102,16,1,other,DSC_0841.JPG +33657,1660,43,16,1,other,DSC_0841.JPG +33662,772,862,17,1,other,DSC_0841.JPG +33667,4888,2245,15,1,other,DSC_0841.JPG +33668,1762,244,17,1,other,DSC_0841.JPG +33670,337,1912,17,1,other,DSC_0841.JPG +33671,4288,2305,17,1,other,DSC_0841.JPG +33672,2398,118,17,1,other,DSC_0841.JPG +33673,796,301,17,5,other,DSC_0841.JPG +33676,4918,2305,15,1,other,DSC_0841.JPG +33678,826,238,16,5,other,DSC_0841.JPG +3368,4192,1942,16,1,other,DSC_0837.JPG +33683,3259,259,16,1,other,DSC_0841.JPG +33688,670,2332,17,1,other,DSC_0841.JPG +3369,631,1957,15,1,other,DSC_0837.JPG +33690,1336,106,15,1,other,DSC_0841.JPG +33696,952,805,16,1,other,DSC_0841.JPG +33697,4582,1609,17,1,other,DSC_0841.JPG +33698,5083,76,17,5,other,DSC_0841.JPG +3370,4117,2179,15,1,other,DSC_0837.JPG +33701,4924,469,16,1,other,DSC_0841.JPG +33702,2473,514,16,1,other,DSC_0841.JPG +33704,2149,1885,16,5,other,DSC_0841.JPG +33705,490,2143,17,1,other,DSC_0841.JPG +33706,595,2326,16,1,other,DSC_0841.JPG +33707,2083,46,15,1,other,DSC_0841.JPG +33713,1444,49,15,1,other,DSC_0841.JPG +33717,373,1972,15,1,other,DSC_0841.JPG +33718,2791,58,15,1,other,DSC_0841.JPG +33719,3292,193,16,1,other,DSC_0841.JPG +33723,1120,112,17,1,other,DSC_0841.JPG +33729,919,1807,17,1,other,DSC_0841.JPG +3373,2914,418,16,5,other,DSC_0837.JPG +33730,4888,2134,17,1,other,DSC_0841.JPG +33733,3007,328,17,1,other,DSC_0841.JPG +33736,1132,1702,17,1,other,DSC_0841.JPG +33738,448,2326,16,1,other,DSC_0841.JPG +3374,2455,481,16,5,other,DSC_0837.JPG +33740,2116,109,16,1,other,DSC_0841.JPG +33745,559,2143,15,1,other,DSC_0841.JPG +33746,2755,127,17,1,other,DSC_0841.JPG +33747,3544,136,17,5,other,DSC_0841.JPG +3375,4159,481,17,5,other,DSC_0837.JPG +33750,3112,397,17,1,other,DSC_0841.JPG +33751,2578,580,16,1,other,DSC_0841.JPG +33753,1042,109,17,1,other,DSC_0841.JPG +33754,1624,112,16,1,other,DSC_0841.JPG +33756,5266,274,16,5,other,DSC_0841.JPG +33757,4537,280,17,5,other,DSC_0841.JPG +33760,1834,1708,17,1,other,DSC_0841.JPG +33761,526,2086,17,1,other,DSC_0841.JPG +33762,3610,139,16,1,other,DSC_0841.JPG +33763,4429,340,16,1,other,DSC_0841.JPG +33764,331,2026,17,1,other,DSC_0841.JPG +33765,3151,64,16,1,other,DSC_0841.JPG +33766,1690,373,16,1,other,DSC_0841.JPG +33768,3667,1609,16,1,other,DSC_0841.JPG +33769,4537,2131,17,1,other,DSC_0841.JPG +3377,3784,985,15,1,other,DSC_0837.JPG +33770,2044,106,16,1,other,DSC_0841.JPG +33773,835,367,17,1,other,DSC_0841.JPG +33775,2791,586,17,1,other,DSC_0841.JPG +33776,2785,1663,16,1,other,DSC_0841.JPG +33777,4432,1840,17,1,other,DSC_0841.JPG +33778,5029,2245,15,1,other,DSC_0841.JPG +33779,4573,343,16,5,other,DSC_0841.JPG +33783,379,1744,16,1,other,DSC_0841.JPG +33785,292,2206,15,1,other,DSC_0841.JPG +33786,1738,43,17,1,other,DSC_0841.JPG +33790,664,913,17,1,other,DSC_0841.JPG +33791,301,1141,17,1,other,DSC_0841.JPG +33794,745,2335,17,1,other,DSC_0841.JPG +33796,3364,190,15,1,other,DSC_0841.JPG +33797,4075,208,17,1,other,DSC_0841.JPG +33809,634,1918,15,1,other,DSC_0841.JPG +3381,5311,1876,15,1,other,DSC_0837.JPG +33810,700,2152,17,1,other,DSC_0841.JPG +33812,3367,64,17,1,other,DSC_0841.JPG +33813,3079,199,17,1,other,DSC_0841.JPG +33814,3646,199,15,1,other,DSC_0841.JPG +33817,4534,409,17,5,other,DSC_0841.JPG +33819,4636,592,15,5,other,DSC_0841.JPG +3382,3829,2296,15,1,other,DSC_0837.JPG +33822,190,46,16,5,other,DSC_0841.JPG +33823,3859,70,16,1,other,DSC_0841.JPG +33825,2653,190,17,1,other,DSC_0841.JPG +33827,4396,277,16,5,other,DSC_0841.JPG +3383,5173,358,17,1,other,DSC_0837.JPG +33832,1009,172,17,1,other,DSC_0841.JPG +33837,3604,1012,17,1,other,DSC_0841.JPG +33838,127,172,15,5,other,DSC_0841.JPG +3384,1849,526,17,1,other,DSC_0837.JPG +33840,4588,1372,16,1,other,DSC_0841.JPG +33849,2536,1834,17,1,other,DSC_0841.JPG +33850,4858,1843,17,1,other,DSC_0841.JPG +33858,451,2086,15,1,other,DSC_0841.JPG +33859,3118,133,15,1,other,DSC_0841.JPG +33860,1228,172,17,1,other,DSC_0841.JPG +33864,4798,1492,16,1,other,DSC_0841.JPG +33865,487,2029,15,1,other,DSC_0841.JPG +33866,1768,109,16,1,other,DSC_0841.JPG +33869,847,2158,17,1,other,DSC_0841.JPG +33871,1657,178,17,1,other,DSC_0841.JPG +33872,2794,193,16,1,other,DSC_0841.JPG +33874,5074,334,17,1,other,DSC_0841.JPG +33875,874,559,17,1,other,DSC_0841.JPG +33879,1231,2098,17,5,other,DSC_0841.JPG +33880,5137,2182,15,1,other,DSC_0841.JPG +33881,5002,85,17,5,other,DSC_0841.JPG +33888,2935,58,16,1,other,DSC_0841.JPG +33890,2185,1597,16,1,other,DSC_0841.JPG +33892,5101,2242,15,1,other,DSC_0841.JPG +33893,2350,52,16,1,other,DSC_0841.JPG +33896,1312,430,15,1,other,DSC_0841.JPG +33897,4747,2131,16,1,other,DSC_0841.JPG +33898,2863,58,17,1,other,DSC_0841.JPG +33899,5305,85,16,1,other,DSC_0841.JPG +33901,5077,208,17,1,other,DSC_0841.JPG +33902,2404,388,17,1,other,DSC_0841.JPG +33903,4786,466,15,1,other,DSC_0841.JPG +33906,625,1330,16,1,other,DSC_0841.JPG +33907,3973,2248,17,1,other,DSC_0841.JPG +33908,4462,2365,15,1,other,DSC_0841.JPG +33909,2614,121,16,1,other,DSC_0841.JPG +3391,5353,1573,16,1,other,DSC_0837.JPG +33917,412,2146,16,1,other,DSC_0841.JPG +33918,4783,85,15,1,other,DSC_0841.JPG +33919,3898,139,17,1,other,DSC_0841.JPG +33921,904,238,17,1,other,DSC_0841.JPG +33927,4852,2188,17,1,other,DSC_0841.JPG +33928,5044,148,17,1,other,DSC_0841.JPG +33929,1588,178,16,1,other,DSC_0841.JPG +3393,3595,1642,15,1,other,DSC_0837.JPG +33931,3034,1006,17,1,other,DSC_0841.JPG +33933,490,1198,15,1,other,DSC_0841.JPG +33934,151,1501,15,1,other,DSC_0841.JPG +33939,5287,466,17,1,other,DSC_0841.JPG +33946,2263,127,17,1,other,DSC_0841.JPG +33947,5005,208,17,1,other,DSC_0841.JPG +33948,5038,271,17,1,other,DSC_0841.JPG +33950,1060,745,17,1,other,DSC_0841.JPG +33951,5107,2128,17,1,other,DSC_0841.JPG +33952,2326,121,17,1,other,DSC_0841.JPG +33956,2617,385,17,1,other,DSC_0841.JPG +33960,3214,1066,17,1,other,DSC_0841.JPG +33961,3103,1489,17,1,other,DSC_0841.JPG +33968,5122,1432,17,1,other,DSC_0841.JPG +33970,3082,64,15,1,other,DSC_0841.JPG +33975,4327,1897,16,1,other,DSC_0841.JPG +33976,4393,2365,17,1,other,DSC_0841.JPG +33979,4858,211,15,1,other,DSC_0841.JPG +3398,1921,529,16,1,other,DSC_0837.JPG +33981,4825,277,17,1,other,DSC_0841.JPG +33984,1306,1759,17,1,other,DSC_0841.JPG +33986,4576,214,17,1,other,DSC_0841.JPG +33990,2992,2008,17,1,other,DSC_0841.JPG +33991,3445,2185,16,1,other,DSC_0841.JPG +33993,3190,130,17,1,other,DSC_0841.JPG +33994,4504,214,17,1,other,DSC_0841.JPG +33999,3355,1189,17,1,other,DSC_0841.JPG +34003,4963,271,17,1,other,DSC_0841.JPG +34011,1729,1168,17,1,other,DSC_0841.JPG +34013,4375,1492,17,1,other,DSC_0841.JPG +34014,4789,1726,17,1,other,DSC_0841.JPG +34015,412,2029,16,1,other,DSC_0841.JPG +34017,1084,169,17,1,other,DSC_0841.JPG +3402,5101,1270,16,5,other,DSC_0837.JPG +34020,697,616,17,1,other,DSC_0841.JPG +34024,634,2389,17,1,other,DSC_0841.JPG +34026,4540,148,17,1,other,DSC_0841.JPG +34027,3931,205,17,1,other,DSC_0841.JPG +34028,4927,211,17,1,other,DSC_0841.JPG +34033,4225,1840,17,1,other,DSC_0841.JPG +34035,1219,37,17,5,other,DSC_0841.JPG +34036,4576,85,17,5,other,DSC_0841.JPG +34037,1192,106,17,1,other,DSC_0841.JPG +34043,4321,2248,17,1,other,DSC_0841.JPG +34044,1516,46,16,1,other,DSC_0841.JPG +34045,628,616,15,1,other,DSC_0841.JPG +34049,5179,2017,17,1,other,DSC_0841.JPG +34051,3178,883,17,1,other,DSC_0841.JPG +34052,2152,937,16,1,other,DSC_0841.JPG +34058,4468,142,17,1,other,DSC_0841.JPG +34060,1693,244,17,1,other,DSC_0841.JPG +34061,1366,304,15,1,other,DSC_0841.JPG +34072,5170,2236,15,1,other,DSC_0841.JPG +34076,4858,343,16,1,other,DSC_0841.JPG +34082,5140,2074,17,1,other,DSC_0841.JPG +34084,4081,76,16,1,other,DSC_0841.JPG +34085,4642,82,17,5,other,DSC_0841.JPG +34093,5353,826,17,1,other,DSC_0841.JPG +341,1408,280,17,1,other,DSC_0844.JPG +34107,4993,2305,15,1,other,DSC_0841.JPG +34111,5146,337,17,1,other,DSC_0841.JPG +34116,334,1324,16,1,other,DSC_0841.JPG +3412,5389,1873,16,1,other,DSC_0837.JPG +34121,1909,118,15,1,other,DSC_0841.JPG +34122,4147,205,17,1,other,DSC_0841.JPG +34123,4324,280,16,5,other,DSC_0841.JPG +34131,2431,52,17,1,other,DSC_0841.JPG +34132,2296,193,17,1,other,DSC_0841.JPG +34134,871,301,17,1,other,DSC_0841.JPG +34135,4786,346,15,1,other,DSC_0841.JPG +34137,2788,1186,17,1,other,DSC_0841.JPG +34142,3202,1897,17,1,other,DSC_0841.JPG +34146,1150,43,15,5,other,DSC_0841.JPG +34152,2917,2125,17,1,other,DSC_0841.JPG +34153,3220,61,16,1,other,DSC_0841.JPG +34154,4396,148,16,1,other,DSC_0841.JPG +34157,4714,214,16,1,other,DSC_0841.JPG +34159,3430,952,16,1,other,DSC_0841.JPG +34161,3109,1243,17,1,other,DSC_0841.JPG +3417,4402,2173,15,1,other,DSC_0837.JPG +34171,3898,400,17,1,other,DSC_0841.JPG +34174,2539,1117,17,1,other,DSC_0841.JPG +34178,5044,2437,17,1,other,DSC_0841.JPG +34179,4423,76,16,1,other,DSC_0841.JPG +3418,2386,91,16,1,other,DSC_0837.JPG +34185,3142,1309,16,1,other,DSC_0841.JPG +3419,4816,115,17,1,other,DSC_0837.JPG +34192,262,2266,15,1,other,DSC_0841.JPG +34194,3295,61,16,1,other,DSC_0841.JPG +34197,4189,142,16,1,other,DSC_0841.JPG +3420,4804,361,16,1,other,DSC_0837.JPG +3421,4489,418,17,1,other,DSC_0837.JPG +34210,4606,2371,15,1,other,DSC_0841.JPG +34211,4792,214,17,1,other,DSC_0841.JPG +34213,5251,406,15,1,other,DSC_0841.JPG +34214,874,430,16,1,other,DSC_0841.JPG +34218,3100,1606,17,1,other,DSC_0841.JPG +34220,5176,2128,15,1,other,DSC_0841.JPG +34224,4006,70,16,1,other,DSC_0841.JPG +34225,4681,280,17,1,other,DSC_0841.JPG +34227,1306,562,17,1,other,DSC_0841.JPG +3423,4228,610,15,1,other,DSC_0837.JPG +34236,1336,2278,17,1,other,DSC_0841.JPG +34237,1969,112,15,1,other,DSC_0841.JPG +34238,4645,214,17,1,other,DSC_0841.JPG +34239,4600,535,17,5,other,DSC_0841.JPG +34244,3319,1489,17,1,other,DSC_0841.JPG +34247,5212,2071,17,1,other,DSC_0841.JPG +34250,1840,109,15,1,other,DSC_0841.JPG +34251,160,112,16,5,other,DSC_0841.JPG +34258,3601,1249,15,1,other,DSC_0841.JPG +34261,559,2383,15,1,other,DSC_0841.JPG +34263,3796,193,15,1,other,DSC_0841.JPG +34273,4891,274,17,1,other,DSC_0841.JPG +34284,4828,1666,17,1,other,DSC_0841.JPG +3429,844,2080,15,1,other,DSC_0837.JPG +34290,934,175,17,1,other,DSC_0841.JPG +34305,2191,115,17,1,other,DSC_0841.JPG +34306,970,235,15,1,other,DSC_0841.JPG +3431,4957,238,16,1,other,DSC_0837.JPG +3432,4909,679,16,1,other,DSC_0837.JPG +34321,5107,1903,17,1,other,DSC_0841.JPG +34323,4852,1957,17,1,other,DSC_0841.JPG +34325,1939,187,15,1,other,DSC_0841.JPG +3433,1630,901,15,1,other,DSC_0837.JPG +34332,3211,1186,17,1,other,DSC_0841.JPG +34335,1813,43,17,1,other,DSC_0841.JPG +34344,2431,1774,17,1,other,DSC_0841.JPG +34346,40,43,17,1,other,DSC_0841.JPG +34347,1330,493,17,1,other,DSC_0841.JPG +3435,3676,1168,15,1,other,DSC_0837.JPG +34355,5188,1426,15,5,other,DSC_0841.JPG +34362,799,2401,16,1,other,DSC_0841.JPG +34365,4753,283,15,1,other,DSC_0841.JPG +34380,3232,2308,17,1,other,DSC_0841.JPG +34382,4291,214,17,1,other,DSC_0841.JPG +34398,4327,2371,17,1,other,DSC_0841.JPG +34400,4258,151,15,1,other,DSC_0841.JPG +34401,4432,211,17,1,other,DSC_0841.JPG +34403,103,463,17,1,other,DSC_0841.JPG +3441,1897,2113,17,1,other,DSC_0837.JPG +34414,4252,2248,16,1,other,DSC_0841.JPG +34416,5230,2434,17,1,other,DSC_0841.JPG +3442,4543,2173,17,1,other,DSC_0837.JPG +34438,4501,2431,17,1,other,DSC_0841.JPG +34439,4576,2434,17,1,other,DSC_0841.JPG +3444,952,331,16,5,other,DSC_0837.JPG +34443,172,349,17,5,other,DSC_0841.JPG +34445,904,502,17,1,other,DSC_0841.JPG +3445,3586,607,17,1,other,DSC_0837.JPG +34458,2587,187,16,1,other,DSC_0841.JPG +34459,1126,241,17,1,other,DSC_0841.JPG +3446,1420,649,17,1,other,DSC_0837.JPG +3447,4078,733,17,1,other,DSC_0837.JPG +34478,4849,2305,17,1,other,DSC_0841.JPG +34493,4810,2362,17,1,other,DSC_0841.JPG +34494,5143,2440,16,1,other,DSC_0841.JPG +34495,4435,2473,17,1,other,DSC_0841.JPG +34498,1270,628,17,1,other,DSC_0841.JPG +34509,5209,2182,17,1,other,DSC_0841.JPG +34511,5065,2305,17,1,other,DSC_0841.JPG +34522,3496,1306,17,1,other,DSC_0841.JPG +34529,871,2380,17,1,other,DSC_0841.JPG +3454,4681,1558,17,1,other,DSC_0837.JPG +34554,4216,211,17,1,other,DSC_0841.JPG +34555,946,562,15,1,other,DSC_0841.JPG +34557,4849,595,15,1,other,DSC_0841.JPG +34582,2074,2230,16,5,other,DSC_0841.JPG +34583,61,526,17,1,other,DSC_0841.JPG +3459,4225,1999,17,1,other,DSC_0837.JPG +3460,4084,2002,16,1,other,DSC_0837.JPG +34634,5110,274,17,1,other,DSC_0841.JPG +34635,5404,529,15,1,other,DSC_0841.JPG +3464,2767,544,17,1,other,DSC_0837.JPG +3465,3766,544,16,1,other,DSC_0837.JPG +34653,5341,1690,17,5,other,DSC_0841.JPG +3467,4045,670,16,1,other,DSC_0837.JPG +3469,4006,736,16,1,other,DSC_0837.JPG +34692,5398,766,15,1,other,DSC_0841.JPG +34715,2170,46,17,1,other,DSC_0841.JPG +34716,4363,214,16,1,other,DSC_0841.JPG +34718,5176,409,17,1,other,DSC_0841.JPG +3472,3193,1036,15,1,other,DSC_0837.JPG +34743,205,2014,15,1,other,DSC_0841.JPG +34747,61,418,15,1,other,DSC_0841.JPG +3476,1411,1504,15,1,other,DSC_0837.JPG +3477,4984,1576,15,1,other,DSC_0837.JPG +34771,814,2335,17,1,other,DSC_0841.JPG +34772,2272,55,16,1,other,DSC_0841.JPG +3481,1561,649,15,1,other,DSC_0837.JPG +34813,91,355,17,5,other,DSC_0841.JPG +3482,3052,670,17,1,other,DSC_0837.JPG +3483,3127,673,17,1,other,DSC_0837.JPG +3484,310,685,17,1,other,DSC_0837.JPG +34840,1858,2230,16,1,other,DSC_0841.JPG +34844,1372,433,15,1,other,DSC_0841.JPG +3485,3016,859,15,1,other,DSC_0837.JPG +3486,1522,1087,15,1,other,DSC_0837.JPG +34874,253,2143,15,1,other,DSC_0841.JPG +34876,5323,2278,17,1,other,DSC_0841.JPG +34877,376,2323,17,1,other,DSC_0841.JPG +3490,778,1486,15,5,other,DSC_0837.JPG +3491,1375,1564,15,1,other,DSC_0837.JPG +3492,4912,1696,15,1,other,DSC_0837.JPG +34945,3625,2368,16,1,other,DSC_0841.JPG +34946,493,2380,15,1,other,DSC_0841.JPG +34948,4327,151,16,1,other,DSC_0841.JPG +34951,1330,370,15,1,other,DSC_0841.JPG +34967,5311,1474,17,5,other,DSC_0841.JPG +34977,4780,2311,15,1,other,DSC_0841.JPG +34979,1039,2413,17,1,other,DSC_0841.JPG +34980,901,361,17,1,other,DSC_0841.JPG +3500,1204,520,17,5,other,DSC_0837.JPG +35000,5353,1552,16,5,other,DSC_0841.JPG +35005,2962,1837,17,1,other,DSC_0841.JPG +35008,4465,2014,17,1,other,DSC_0841.JPG +35012,5020,2362,15,1,other,DSC_0841.JPG +35014,658,685,17,1,other,DSC_0841.JPG +35035,217,1738,17,1,other,DSC_0841.JPG +3504,4216,1027,17,1,other,DSC_0837.JPG +35045,310,2326,17,1,other,DSC_0841.JPG +3505,3895,1045,15,1,other,DSC_0837.JPG +3506,1453,1084,15,1,other,DSC_0837.JPG +3507,3931,1108,15,1,other,DSC_0837.JPG +3508,5137,1210,15,5,other,DSC_0837.JPG +35085,4951,2371,17,1,other,DSC_0841.JPG +35106,400,1198,16,1,other,DSC_0841.JPG +3511,3631,1585,15,1,other,DSC_0837.JPG +35126,1297,2335,16,1,other,DSC_0841.JPG +35127,943,304,17,1,other,DSC_0841.JPG +3514,811,2020,15,1,other,DSC_0837.JPG +35150,127,1558,15,1,other,DSC_0841.JPG +3516,3973,925,17,1,other,DSC_0837.JPG +3517,1594,961,15,1,other,DSC_0837.JPG +35188,187,1678,15,1,other,DSC_0841.JPG +3519,5359,1207,16,1,other,DSC_0837.JPG +352,3424,253,17,1,other,DSC_0844.JPG +35202,241,2332,15,1,other,DSC_0841.JPG +35204,3829,2371,16,1,other,DSC_0841.JPG +35205,1066,346,15,1,other,DSC_0841.JPG +3521,4306,1639,17,1,other,DSC_0837.JPG +3523,5122,1816,15,1,other,DSC_0837.JPG +3524,4408,1819,16,1,other,DSC_0837.JPG +35246,2569,55,17,1,other,DSC_0841.JPG +35248,1276,382,16,1,other,DSC_0841.JPG +3527,5278,1936,15,1,other,DSC_0837.JPG +35277,220,1849,15,1,other,DSC_0841.JPG +35282,5245,2023,15,1,other,DSC_0841.JPG +35283,5254,2131,17,1,other,DSC_0841.JPG +35287,220,2200,15,1,other,DSC_0841.JPG +35289,1999,49,16,1,other,DSC_0841.JPG +353,1300,346,17,1,other,DSC_0844.JPG +3531,2143,2059,15,1,other,DSC_0837.JPG +35325,229,1963,17,1,other,DSC_0841.JPG +35335,5266,10,15,1,other,DSC_0841.JPG +35336,55,217,17,1,other,DSC_0841.JPG +3535,3448,481,17,1,other,DSC_0837.JPG +35361,70,1504,15,1,other,DSC_0841.JPG +35372,187,2134,15,1,other,DSC_0841.JPG +35378,58,292,17,1,other,DSC_0841.JPG +35388,5053,1315,16,1,other,DSC_0841.JPG +35409,4675,2374,17,1,other,DSC_0841.JPG +3541,3535,1168,15,5,other,DSC_0837.JPG +35410,4303,76,17,1,other,DSC_0841.JPG +35418,1165,694,17,1,other,DSC_0841.JPG +35458,5395,646,15,1,other,DSC_0841.JPG +3547,3022,481,16,1,other,DSC_0837.JPG +35478,61,1567,15,1,other,DSC_0841.JPG +3548,1774,652,17,1,other,DSC_0837.JPG +3549,5335,793,16,1,other,DSC_0837.JPG +35498,5275,2362,17,1,other,DSC_0841.JPG +35499,5314,2419,17,1,other,DSC_0841.JPG +35500,1156,295,15,1,other,DSC_0841.JPG +3554,5404,1387,17,1,other,DSC_0837.JPG +35540,5137,1840,17,1,other,DSC_0841.JPG +35554,5179,2368,17,1,other,DSC_0841.JPG +35556,2467,256,15,1,other,DSC_0841.JPG +3556,3526,1522,15,1,other,DSC_0837.JPG +35592,352,2395,17,1,other,DSC_0841.JPG +3561,2464,2239,15,1,other,DSC_0837.JPG +3563,5164,490,15,1,other,DSC_0837.JPG +35645,4822,529,17,5,other,DSC_0841.JPG +35651,5395,889,17,1,other,DSC_0841.JPG +35682,2581,2509,15,1,other,DSC_0841.JPG +35685,1075,493,17,1,other,DSC_0841.JPG +3571,3670,1525,15,1,other,DSC_0837.JPG +35722,5137,2299,17,1,other,DSC_0841.JPG +35724,709,2395,15,1,other,DSC_0841.JPG +35725,3718,205,16,1,other,DSC_0841.JPG +3573,1339,1618,15,1,other,DSC_0837.JPG +3574,670,1657,17,5,other,DSC_0837.JPG +35744,217,2086,17,1,other,DSC_0841.JPG +35747,1927,2344,17,1,other,DSC_0841.JPG +3575,3493,1702,15,1,other,DSC_0837.JPG +35818,4879,2362,15,1,other,DSC_0841.JPG +3582,952,82,15,1,other,DSC_0837.JPG +3583,2524,355,16,5,other,DSC_0837.JPG +35859,4741,2365,17,1,other,DSC_0841.JPG +3586,991,643,16,1,other,DSC_0837.JPG +3587,1168,706,17,1,other,DSC_0837.JPG +35899,5227,2272,15,1,other,DSC_0841.JPG +35903,4657,2431,15,1,other,DSC_0841.JPG +35904,2458,2494,17,1,other,DSC_0841.JPG +35906,1237,553,16,1,other,DSC_0841.JPG +35934,181,1903,17,1,other,DSC_0841.JPG +35935,5308,1972,16,1,other,DSC_0841.JPG +35938,5296,2200,17,1,other,DSC_0841.JPG +35944,2506,322,17,1,other,DSC_0841.JPG +35946,4816,652,15,1,other,DSC_0841.JPG +3595,3673,1408,15,1,other,DSC_0837.JPG +3596,5020,1633,15,1,other,DSC_0837.JPG +35976,283,2392,15,1,other,DSC_0841.JPG +35981,361,1267,15,1,other,DSC_0841.JPG +3601,4984,1933,15,1,other,DSC_0837.JPG +36010,5398,1234,17,1,other,DSC_0841.JPG +36015,5308,1870,17,1,other,DSC_0841.JPG +3602,4975,2167,15,1,other,DSC_0837.JPG +3603,2320,2239,15,1,other,DSC_0837.JPG +3604,1564,526,16,1,other,DSC_0837.JPG +36049,586,2440,17,1,other,DSC_0841.JPG +36060,523,1393,15,1,other,DSC_0841.JPG +36063,184,1789,17,1,other,DSC_0841.JPG +3608,3049,919,15,1,other,DSC_0837.JPG +3609,3784,1105,17,5,other,DSC_0837.JPG +36104,4132,2512,17,1,other,DSC_0841.JPG +36126,5032,16,15,1,other,DSC_0841.JPG +36128,1153,457,16,1,other,DSC_0841.JPG +3613,3457,1648,15,1,other,DSC_0837.JPG +36144,529,1261,15,1,other,DSC_0841.JPG +3616,1339,1738,15,1,other,DSC_0837.JPG +36161,2461,2419,17,1,other,DSC_0841.JPG +36169,1108,643,15,1,other,DSC_0841.JPG +3618,5236,1756,17,1,other,DSC_0837.JPG +36193,1684,2401,17,1,other,DSC_0841.JPG +36202,5362,2143,15,1,other,DSC_0841.JPG +36208,3091,2515,15,1,other,DSC_0841.JPG +36211,985,622,17,1,other,DSC_0841.JPG +36229,5353,1384,17,1,other,DSC_0841.JPG +3623,1621,2215,15,1,other,DSC_0837.JPG +36239,4159,2437,17,1,other,DSC_0841.JPG +3624,2965,91,17,1,other,DSC_0837.JPG +36242,4969,13,17,1,other,DSC_0841.JPG +3625,1420,142,15,1,other,DSC_0837.JPG +36264,4780,2413,15,1,other,DSC_0841.JPG +36266,3739,2509,15,1,other,DSC_0841.JPG +36275,664,2455,16,1,other,DSC_0841.JPG +36277,5179,2503,15,1,other,DSC_0841.JPG +36279,2743,2521,15,1,other,DSC_0841.JPG +3628,5245,358,17,1,other,DSC_0837.JPG +36285,3493,1186,15,1,other,DSC_0841.JPG +3629,5029,361,17,1,other,DSC_0837.JPG +36306,2314,2428,15,1,other,DSC_0841.JPG +36307,4222,82,17,1,other,DSC_0841.JPG +36312,5344,1306,15,1,other,DSC_0841.JPG +36318,418,2389,15,1,other,DSC_0841.JPG +36320,1108,2455,15,1,other,DSC_0841.JPG +36322,820,2479,17,1,other,DSC_0841.JPG +36323,1918,37,16,1,other,DSC_0841.JPG +36324,3835,268,17,1,other,DSC_0841.JPG +36325,424,1369,15,1,other,DSC_0841.JPG +36338,5422,706,17,1,other,DSC_0841.JPG +3634,4816,1162,15,1,other,DSC_0837.JPG +36340,5251,1825,15,1,other,DSC_0841.JPG +36346,5353,1918,17,1,other,DSC_0841.JPG +36353,1552,2512,15,1,other,DSC_0841.JPG +36355,3712,343,15,1,other,DSC_0841.JPG +3636,4915,1336,15,5,other,DSC_0837.JPG +3637,3814,1408,15,1,other,DSC_0837.JPG +36372,4852,2416,17,1,other,DSC_0841.JPG +36373,4948,2431,15,1,other,DSC_0841.JPG +36374,1306,307,15,1,other,DSC_0841.JPG +36376,2434,565,15,1,other,DSC_0841.JPG +36391,5395,1993,17,1,other,DSC_0841.JPG +36393,4336,2506,16,1,other,DSC_0841.JPG +36394,3976,2521,15,1,other,DSC_0841.JPG +36395,4348,340,15,5,other,DSC_0841.JPG +36396,1171,526,17,1,other,DSC_0841.JPG +36397,5407,988,15,1,other,DSC_0841.JPG +36399,5449,1384,17,1,other,DSC_0841.JPG +36404,3007,2506,17,1,other,DSC_0841.JPG +36408,5347,1747,15,1,other,DSC_0841.JPG +36410,4897,16,16,1,other,DSC_0841.JPG +36420,3895,2509,15,1,other,DSC_0841.JPG +36421,5083,2509,17,1,other,DSC_0841.JPG +36422,4042,2524,15,1,other,DSC_0841.JPG +36427,4747,646,15,1,other,DSC_0841.JPG +36430,166,1957,17,1,other,DSC_0841.JPG +36432,3796,337,17,1,other,DSC_0841.JPG +36433,445,1240,17,1,other,DSC_0841.JPG +36434,5443,1648,15,1,other,DSC_0841.JPG +36435,2497,52,15,1,other,DSC_0841.JPG +36436,2551,280,15,1,other,DSC_0841.JPG +36439,259,2458,17,1,other,DSC_0841.JPG +3644,5236,1990,17,1,other,DSC_0837.JPG +36442,73,1945,15,1,other,DSC_0841.JPG +36444,757,2461,15,1,other,DSC_0841.JPG +36449,85,1627,15,1,other,DSC_0841.JPG +3645,2320,2119,15,1,other,DSC_0837.JPG +36450,5395,1825,15,1,other,DSC_0841.JPG +36451,5410,1879,15,1,other,DSC_0841.JPG +36452,457,2443,17,1,other,DSC_0841.JPG +36455,5413,823,15,1,other,DSC_0841.JPG +36457,5422,1558,15,1,other,DSC_0841.JPG +36459,199,2272,17,1,other,DSC_0841.JPG +3646,4471,2173,15,1,other,DSC_0837.JPG +36460,5368,2350,17,1,other,DSC_0841.JPG +36461,5422,460,17,1,other,DSC_0841.JPG +36463,451,1300,15,1,other,DSC_0841.JPG +36467,3805,2497,17,1,other,DSC_0841.JPG +36469,5458,1042,17,1,other,DSC_0841.JPG +3647,3937,2239,16,1,other,DSC_0837.JPG +36471,1621,1363,17,1,other,DSC_0841.JPG +36472,5413,1765,15,1,other,DSC_0841.JPG +36473,3640,2500,15,1,other,DSC_0841.JPG +36478,5434,577,15,1,other,DSC_0841.JPG +36479,5446,928,17,1,other,DSC_0841.JPG +3648,3580,103,17,1,other,DSC_0837.JPG +36481,1015,313,15,1,other,DSC_0841.JPG +36484,877,2458,15,1,other,DSC_0841.JPG +36485,3049,136,17,1,other,DSC_0841.JPG +36486,3565,1192,17,1,other,DSC_0841.JPG +36488,4489,2491,17,1,other,DSC_0841.JPG +3649,109,127,15,1,other,DSC_0837.JPG +36491,208,2383,17,1,other,DSC_0841.JPG +36493,3175,2503,15,1,other,DSC_0841.JPG +36494,4216,2428,15,1,other,DSC_0841.JPG +36495,3523,1237,17,1,other,DSC_0841.JPG +36496,5404,1705,15,1,other,DSC_0841.JPG +36498,1618,2536,17,1,other,DSC_0841.JPG +36499,5455,67,17,1,other,DSC_0841.JPG +36502,5458,1465,15,1,other,DSC_0841.JPG +36503,1024,523,17,1,other,DSC_0841.JPG +36504,5458,649,15,1,other,DSC_0841.JPG +36505,5392,1423,17,1,other,DSC_0841.JPG +36508,5320,1798,17,1,other,DSC_0841.JPG +36509,61,2014,17,1,other,DSC_0841.JPG +36510,4441,2416,15,1,other,DSC_0841.JPG +36513,5356,2233,15,1,other,DSC_0841.JPG +36514,601,667,17,1,other,DSC_0841.JPG +36516,4987,2473,15,1,other,DSC_0841.JPG +36518,2284,685,17,1,other,DSC_0841.JPG +36519,871,2323,15,1,other,DSC_0841.JPG +36521,4780,598,15,1,other,DSC_0841.JPG +36523,2752,4,17,1,other,DSC_0841.JPG +36524,5206,4,15,1,other,DSC_0841.JPG +36525,2968,115,17,1,other,DSC_0841.JPG +36528,3508,2512,15,1,other,DSC_0841.JPG +36530,5458,1165,17,1,other,DSC_0841.JPG +36535,262,2038,16,1,other,DSC_0841.JPG +36537,478,1354,17,1,other,DSC_0841.JPG +36538,2059,2488,17,1,other,DSC_0841.JPG +36539,5392,1345,17,1,other,DSC_0841.JPG +36540,5200,1849,17,1,other,DSC_0841.JPG +36542,3367,2494,15,1,other,DSC_0841.JPG +36543,3781,253,17,1,other,DSC_0841.JPG +36544,1042,628,17,1,other,DSC_0841.JPG +36545,142,2032,15,1,other,DSC_0841.JPG +36547,2929,2494,15,1,other,DSC_0841.JPG +36548,3232,2512,15,1,other,DSC_0841.JPG +36549,5458,514,17,1,other,DSC_0841.JPG +3655,1387,586,17,1,other,DSC_0837.JPG +36551,3259,1066,17,1,other,DSC_0838.JPG +36552,2782,166,16,1,other,DSC_0838.JPG +36553,4123,1858,17,5,other,DSC_0838.JPG +36554,2854,169,17,1,other,DSC_0838.JPG +36555,2905,1429,15,1,other,DSC_0838.JPG +36556,2560,811,16,1,other,DSC_0838.JPG +36557,2464,229,16,1,other,DSC_0838.JPG +36559,3028,100,17,1,other,DSC_0838.JPG +36560,3472,1069,17,1,other,DSC_0838.JPG +36562,3319,1792,16,1,other,DSC_0838.JPG +36563,3259,1192,16,1,other,DSC_0838.JPG +36567,3571,1495,17,1,other,DSC_0838.JPG +36568,3736,1912,15,1,other,DSC_0838.JPG +36569,2320,223,17,1,other,DSC_0838.JPG +36570,3499,1615,16,1,other,DSC_0838.JPG +36571,2533,229,17,1,other,DSC_0838.JPG +36572,3595,2029,15,1,other,DSC_0838.JPG +36573,2710,169,17,1,other,DSC_0838.JPG +36574,3562,1969,16,1,other,DSC_0838.JPG +36575,2533,91,16,1,other,DSC_0838.JPG +36577,3604,1555,17,1,other,DSC_0838.JPG +36578,3949,1678,15,1,other,DSC_0838.JPG +36580,3352,1969,16,1,other,DSC_0838.JPG +36581,2674,100,16,1,other,DSC_0838.JPG +36582,2863,1729,16,1,other,DSC_0838.JPG +36583,2965,2026,16,1,other,DSC_0838.JPG +36584,3211,1849,15,1,other,DSC_0838.JPG +36585,2890,100,17,1,other,DSC_0838.JPG +36586,3574,1255,17,1,other,DSC_0838.JPG +36587,3421,2083,15,1,other,DSC_0838.JPG +36588,3034,2143,15,5,other,DSC_0838.JPG +36589,2770,1063,16,1,other,DSC_0838.JPG +36591,3034,1909,17,1,other,DSC_0838.JPG +36592,3172,2026,15,1,other,DSC_0838.JPG +36593,3730,97,17,1,other,DSC_0838.JPG +36594,2896,2026,15,1,other,DSC_0838.JPG +36596,2866,1609,16,1,other,DSC_0838.JPG +36597,2497,295,16,1,other,DSC_0838.JPG +36599,3073,1849,15,1,other,DSC_0838.JPG +366,4102,2182,16,1,other,DSC_0844.JPG +3660,2896,1279,15,1,other,DSC_0837.JPG +36600,2734,1123,16,1,other,DSC_0838.JPG +36602,2761,1669,15,1,other,DSC_0838.JPG +36603,3877,1798,15,1,other,DSC_0838.JPG +36604,3034,2023,16,1,other,DSC_0838.JPG +36605,2047,82,17,1,other,DSC_0838.JPG +36606,484,190,15,1,other,DSC_0838.JPG +36607,2110,217,17,1,other,DSC_0838.JPG +36608,3295,1009,17,1,other,DSC_0838.JPG +36609,2932,1609,17,1,other,DSC_0838.JPG +36610,1978,79,15,1,other,DSC_0838.JPG +36613,2977,1066,17,1,other,DSC_0838.JPG +36614,4015,1795,16,1,other,DSC_0838.JPG +36615,3247,1912,17,1,other,DSC_0838.JPG +36616,2392,226,17,1,other,DSC_0838.JPG +36617,3439,886,16,1,other,DSC_0838.JPG +36618,2962,97,17,1,other,DSC_0838.JPG +36619,2041,220,15,1,other,DSC_0838.JPG +36621,2812,754,17,1,other,DSC_0838.JPG +36622,3385,2026,16,1,other,DSC_0838.JPG +36623,3400,946,16,1,other,DSC_0838.JPG +36624,3637,1618,15,1,other,DSC_0838.JPG +36625,2500,163,17,1,other,DSC_0838.JPG +36627,2674,238,16,1,other,DSC_0838.JPG +36628,2878,880,16,1,other,DSC_0838.JPG +36629,3121,1066,17,1,other,DSC_0838.JPG +36630,2893,2140,17,1,other,DSC_0838.JPG +36631,2284,151,15,1,other,DSC_0838.JPG +36632,2881,754,16,1,other,DSC_0838.JPG +36633,2878,1000,17,1,other,DSC_0838.JPG +36634,3817,1441,17,1,other,DSC_0838.JPG +36635,3004,1612,17,1,other,DSC_0838.JPG +36636,2791,1849,15,1,other,DSC_0838.JPG +36638,658,136,17,1,other,DSC_0838.JPG +36639,202,187,16,1,other,DSC_0838.JPG +36640,4666,952,17,1,other,DSC_0838.JPG +36641,3283,1732,17,1,other,DSC_0838.JPG +36642,3172,2143,15,1,other,DSC_0838.JPG +36644,3193,691,17,1,other,DSC_0838.JPG +36647,3223,1129,16,1,other,DSC_0838.JPG +36648,2836,1309,15,1,other,DSC_0838.JPG +36649,3706,1735,15,1,other,DSC_0838.JPG +3665,3739,1645,15,1,other,DSC_0837.JPG +36651,3100,97,15,5,other,DSC_0838.JPG +36652,2776,691,16,1,other,DSC_0838.JPG +36653,3139,1966,15,1,other,DSC_0838.JPG +36654,3628,172,16,1,other,DSC_0838.JPG +36656,1402,79,16,1,other,DSC_0838.JPG +36657,415,1069,17,1,other,DSC_0838.JPG +36658,2725,1726,15,1,other,DSC_0838.JPG +36659,3283,1852,15,5,other,DSC_0838.JPG +36660,3496,1855,17,1,other,DSC_0838.JPG +36661,3631,1855,17,1,other,DSC_0838.JPG +36662,3805,1915,17,1,other,DSC_0838.JPG +36663,2605,91,17,1,other,DSC_0838.JPG +36664,1513,145,16,1,other,DSC_0838.JPG +36665,2572,163,17,1,other,DSC_0838.JPG +36667,3217,1612,16,1,other,DSC_0838.JPG +36668,3073,1966,17,1,other,DSC_0838.JPG +36669,2380,1114,16,1,other,DSC_0838.JPG +36670,2803,1126,17,1,other,DSC_0838.JPG +36671,3007,1489,16,1,other,DSC_0838.JPG +36672,4024,1558,17,1,other,DSC_0838.JPG +36673,3532,1792,15,1,other,DSC_0838.JPG +36674,3562,1855,17,1,other,DSC_0838.JPG +36675,3598,1912,15,1,other,DSC_0838.JPG +36676,3244,2026,15,1,other,DSC_0838.JPG +36677,3748,1198,16,1,other,DSC_0838.JPG +36678,2803,1246,17,1,other,DSC_0838.JPG +36679,3010,1366,17,1,other,DSC_0838.JPG +36680,3700,175,17,1,other,DSC_0838.JPG +36683,2833,1549,16,1,other,DSC_0838.JPG +36684,3160,757,17,1,other,DSC_0838.JPG +36685,3538,1318,17,1,other,DSC_0838.JPG +36686,2935,1489,17,1,other,DSC_0838.JPG +36687,3775,1618,15,1,other,DSC_0838.JPG +36688,1369,145,17,1,other,DSC_0838.JPG +36689,3460,1675,17,1,other,DSC_0838.JPG +3669,1831,2224,15,1,other,DSC_0837.JPG +36690,3001,1849,15,1,other,DSC_0838.JPG +36691,2176,88,15,1,other,DSC_0838.JPG +36693,2695,1549,16,1,other,DSC_0838.JPG +36694,3463,1555,16,1,other,DSC_0838.JPG +36695,2746,97,17,1,other,DSC_0838.JPG +36697,412,190,17,1,other,DSC_0838.JPG +36698,2353,289,17,1,other,DSC_0838.JPG +36699,154,499,15,1,other,DSC_0838.JPG +367,1870,229,15,1,other,DSC_0844.JPG +3670,4798,2224,15,1,other,DSC_0837.JPG +36701,2947,1006,17,1,other,DSC_0838.JPG +36705,3610,1075,17,1,other,DSC_0838.JPG +36707,3853,1381,17,1,other,DSC_0838.JPG +36708,868,142,17,1,other,DSC_0838.JPG +3671,2704,166,17,1,other,DSC_0837.JPG +36710,2629,940,17,1,other,DSC_0838.JPG +36713,3574,1135,17,1,other,DSC_0838.JPG +36714,2590,1240,16,1,other,DSC_0838.JPG +36716,3166,238,17,1,other,DSC_0838.JPG +36717,3235,238,16,1,other,DSC_0838.JPG +36718,2710,691,17,1,other,DSC_0838.JPG +36721,3856,1258,16,1,other,DSC_0838.JPG +36723,3922,1381,17,1,other,DSC_0838.JPG +36724,3886,1441,17,1,other,DSC_0838.JPG +36728,3502,1375,16,1,other,DSC_0838.JPG +36729,2797,1609,15,1,other,DSC_0838.JPG +3673,4300,481,17,1,other,DSC_0837.JPG +36732,3181,1429,17,1,other,DSC_0838.JPG +36734,2320,85,16,1,other,DSC_0838.JPG +36735,307,124,15,1,other,DSC_0838.JPG +36736,343,184,17,1,other,DSC_0838.JPG +36737,2776,811,17,1,other,DSC_0838.JPG +36739,2701,1060,17,1,other,DSC_0838.JPG +36741,2146,157,16,1,other,DSC_0838.JPG +36742,2143,286,17,1,other,DSC_0838.JPG +36745,3397,1435,16,1,other,DSC_0838.JPG +36746,3985,1738,17,1,other,DSC_0838.JPG +36747,382,127,17,1,other,DSC_0838.JPG +36748,271,187,17,1,other,DSC_0838.JPG +36749,3160,628,16,1,other,DSC_0838.JPG +3675,1954,592,17,1,other,DSC_0837.JPG +36750,3472,949,17,1,other,DSC_0838.JPG +36751,3775,1738,17,1,other,DSC_0838.JPG +36752,3424,1852,15,1,other,DSC_0838.JPG +36753,2788,2200,17,1,other,DSC_0838.JPG +36754,2986,565,15,1,other,DSC_0838.JPG +36755,2416,931,17,1,other,DSC_0838.JPG +36756,2911,943,17,1,other,DSC_0838.JPG +36757,2698,1183,16,1,other,DSC_0838.JPG +36759,3427,1615,16,1,other,DSC_0838.JPG +36760,3070,2083,16,1,other,DSC_0838.JPG +36761,4303,118,17,1,other,DSC_0838.JPG +36764,3229,634,17,1,other,DSC_0838.JPG +36765,3055,691,16,1,other,DSC_0838.JPG +36766,2911,1066,17,1,other,DSC_0838.JPG +36768,3397,1309,17,1,other,DSC_0838.JPG +36770,3538,1435,16,1,other,DSC_0838.JPG +36771,3919,1498,17,1,other,DSC_0838.JPG +36772,2722,1966,15,1,other,DSC_0838.JPG +36774,1330,73,17,1,other,DSC_0838.JPG +36775,3979,181,17,1,other,DSC_0838.JPG +36776,4333,184,17,1,other,DSC_0838.JPG +36777,4012,250,17,1,other,DSC_0838.JPG +36778,2881,625,16,1,other,DSC_0838.JPG +3678,1489,1024,15,1,other,DSC_0837.JPG +36780,3433,1132,16,1,other,DSC_0838.JPG +36781,3082,1246,17,1,other,DSC_0838.JPG +36782,3676,1435,17,1,other,DSC_0838.JPG +36783,3568,1618,16,1,other,DSC_0838.JPG +36784,3253,1675,17,1,other,DSC_0838.JPG +36786,3523,97,16,1,other,DSC_0838.JPG +36788,4960,316,17,1,other,DSC_0838.JPG +36790,4954,571,17,1,other,DSC_0838.JPG +36791,2953,628,17,1,other,DSC_0838.JPG +36792,2986,814,17,1,other,DSC_0838.JPG +36793,2842,940,16,1,other,DSC_0838.JPG +36795,2938,1366,17,1,other,DSC_0838.JPG +36796,3496,1735,17,1,other,DSC_0838.JPG +36797,2368,2317,17,1,other,DSC_0838.JPG +36798,2575,2317,15,1,other,DSC_0838.JPG +36799,901,199,17,1,other,DSC_0838.JPG +368,2434,241,16,1,other,DSC_0844.JPG +3680,4669,1156,17,1,other,DSC_0837.JPG +36800,4396,316,17,1,other,DSC_0838.JPG +36801,3784,1141,17,1,other,DSC_0838.JPG +36802,3151,1369,17,1,other,DSC_0838.JPG +36804,3421,1969,15,1,other,DSC_0838.JPG +36805,2893,2257,17,1,other,DSC_0838.JPG +36806,730,133,15,1,other,DSC_0838.JPG +36809,3508,886,16,1,other,DSC_0838.JPG +36810,2449,991,16,1,other,DSC_0838.JPG +36812,2872,1246,17,1,other,DSC_0838.JPG +36813,2764,1546,17,1,other,DSC_0838.JPG +36814,3076,1609,17,1,other,DSC_0838.JPG +36815,3742,1678,17,1,other,DSC_0838.JPG +36816,3844,1735,17,1,other,DSC_0838.JPG +36817,3175,1909,15,1,other,DSC_0838.JPG +36819,4087,244,15,1,other,DSC_0838.JPG +3682,4531,1399,16,1,other,DSC_0837.JPG +36820,235,250,17,1,other,DSC_0838.JPG +36821,514,256,17,1,other,DSC_0838.JPG +36823,3049,1189,17,1,other,DSC_0838.JPG +36824,2410,1540,17,1,other,DSC_0838.JPG +36825,3283,1612,17,1,other,DSC_0838.JPG +36826,3214,1729,17,1,other,DSC_0838.JPG +36827,3670,1795,17,1,other,DSC_0838.JPG +36829,2215,157,15,1,other,DSC_0838.JPG +3683,3778,1468,15,1,other,DSC_0837.JPG +36830,4291,511,17,1,other,DSC_0838.JPG +36834,2809,877,15,1,other,DSC_0838.JPG +36836,3577,1012,16,1,other,DSC_0838.JPG +36837,3676,1558,15,1,other,DSC_0838.JPG +36839,3670,1675,15,1,other,DSC_0838.JPG +36840,3352,1732,17,1,other,DSC_0838.JPG +36841,3106,1909,15,1,other,DSC_0838.JPG +36842,2788,2317,16,1,other,DSC_0838.JPG +36844,2251,220,17,1,other,DSC_0838.JPG +36846,4954,445,16,1,other,DSC_0838.JPG +36847,3259,820,17,1,other,DSC_0838.JPG +36848,2836,1186,17,1,other,DSC_0838.JPG +3685,1375,1681,15,1,other,DSC_0837.JPG +36850,2689,1666,16,1,other,DSC_0838.JPG +36851,3667,1912,16,1,other,DSC_0838.JPG +36852,487,67,15,1,other,DSC_0838.JPG +36853,2392,94,16,1,other,DSC_0838.JPG +36854,3340,163,17,1,other,DSC_0838.JPG +36858,2344,1174,16,1,other,DSC_0838.JPG +36859,3472,1192,17,1,other,DSC_0838.JPG +3686,4765,1816,16,1,other,DSC_0837.JPG +36860,2515,1600,15,1,other,DSC_0838.JPG +36862,3769,1969,15,1,other,DSC_0838.JPG +36863,277,64,16,1,other,DSC_0838.JPG +36865,2815,97,17,1,other,DSC_0838.JPG +36866,4018,118,15,1,other,DSC_0838.JPG +36867,2641,169,16,1,other,DSC_0838.JPG +36869,3787,1012,17,1,other,DSC_0838.JPG +36870,3184,1312,17,1,other,DSC_0838.JPG +36871,3250,1549,17,1,other,DSC_0838.JPG +36872,2758,1789,16,1,other,DSC_0838.JPG +36874,160,376,15,1,other,DSC_0838.JPG +36875,2950,877,17,1,other,DSC_0838.JPG +36876,2626,1306,17,1,other,DSC_0838.JPG +36877,3679,1318,16,1,other,DSC_0838.JPG +36878,3886,1321,17,1,other,DSC_0838.JPG +36879,2902,1549,17,1,other,DSC_0838.JPG +36880,3388,1912,16,1,other,DSC_0838.JPG +36881,2857,2080,17,1,other,DSC_0838.JPG +36882,3280,2203,15,1,other,DSC_0838.JPG +36883,589,130,16,1,other,DSC_0838.JPG +36885,3091,625,17,1,other,DSC_0838.JPG +36887,2869,1489,17,1,other,DSC_0838.JPG +36888,3181,1552,15,1,other,DSC_0838.JPG +36889,3631,1966,16,1,other,DSC_0838.JPG +36895,3751,1075,16,1,other,DSC_0838.JPG +36897,2764,1309,15,1,other,DSC_0838.JPG +3690,4546,1936,17,1,other,DSC_0837.JPG +36900,3502,1495,15,1,other,DSC_0838.JPG +36901,2560,22,16,1,other,DSC_0838.JPG +36903,1651,148,17,1,other,DSC_0838.JPG +36904,2995,172,15,1,other,DSC_0838.JPG +36905,2746,235,16,1,other,DSC_0838.JPG +36906,4504,253,17,1,other,DSC_0838.JPG +36908,4924,382,17,1,other,DSC_0838.JPG +36909,4984,757,17,1,other,DSC_0838.JPG +3691,4300,1999,15,1,other,DSC_0837.JPG +36910,3187,1186,15,1,other,DSC_0838.JPG +36911,3715,1255,17,1,other,DSC_0838.JPG +36912,3607,1435,17,1,other,DSC_0838.JPG +36916,2965,1909,15,1,other,DSC_0838.JPG +36917,1528,2299,17,1,other,DSC_0838.JPG +36919,3331,949,17,1,other,DSC_0838.JPG +36921,3049,1063,17,1,other,DSC_0838.JPG +36922,2311,1234,17,1,other,DSC_0838.JPG +36923,3436,1252,17,1,other,DSC_0838.JPG +36924,2656,1489,17,1,other,DSC_0838.JPG +36925,3781,1501,17,1,other,DSC_0838.JPG +36926,3880,1678,15,1,other,DSC_0838.JPG +36928,2683,2137,17,1,other,DSC_0838.JPG +36929,1228,142,17,1,other,DSC_0838.JPG +3693,2356,2179,15,1,other,DSC_0837.JPG +36930,1582,145,17,1,other,DSC_0838.JPG +36931,1756,211,17,1,other,DSC_0838.JPG +36932,2818,238,17,1,other,DSC_0838.JPG +36933,2566,298,17,1,other,DSC_0838.JPG +36934,2560,937,17,1,other,DSC_0838.JPG +36935,3508,1012,16,1,other,DSC_0838.JPG +36936,3142,1852,16,1,other,DSC_0838.JPG +36937,3841,1855,16,1,other,DSC_0838.JPG +36938,3280,1966,17,1,other,DSC_0838.JPG +36939,3313,2029,17,1,other,DSC_0838.JPG +3694,2344,151,17,1,other,DSC_0837.JPG +36940,1549,82,17,1,other,DSC_0838.JPG +36941,3310,94,17,1,other,DSC_0838.JPG +36943,124,436,17,1,other,DSC_0838.JPG +36945,3646,1012,16,1,other,DSC_0838.JPG +36947,3355,1615,17,1,other,DSC_0838.JPG +36949,3460,1792,17,1,other,DSC_0838.JPG +36950,2929,1966,17,1,other,DSC_0838.JPG +36951,2926,28,17,1,other,DSC_0838.JPG +36952,1903,79,17,1,other,DSC_0838.JPG +36953,1438,145,17,1,other,DSC_0838.JPG +36954,4888,316,16,1,other,DSC_0838.JPG +36955,4783,508,17,1,other,DSC_0838.JPG +36956,2245,865,17,1,other,DSC_0838.JPG +36957,2557,1057,16,1,other,DSC_0838.JPG +36958,3811,1555,17,1,other,DSC_0838.JPG +36959,2932,1729,15,1,other,DSC_0838.JPG +36960,2689,1786,15,1,other,DSC_0838.JPG +36962,190,436,17,1,other,DSC_0838.JPG +36966,2722,1846,17,1,other,DSC_0838.JPG +36967,5008,2131,17,1,other,DSC_0838.JPG +36972,3019,880,16,1,other,DSC_0838.JPG +36974,3505,1255,17,1,other,DSC_0838.JPG +36975,3784,1378,15,1,other,DSC_0838.JPG +36976,3598,1792,15,1,other,DSC_0838.JPG +36977,3736,1795,17,1,other,DSC_0838.JPG +36978,3349,2086,15,1,other,DSC_0838.JPG +36979,1285,2230,17,1,other,DSC_0838.JPG +36980,517,130,16,1,other,DSC_0838.JPG +36981,1936,145,16,1,other,DSC_0838.JPG +36982,2923,169,17,1,other,DSC_0838.JPG +36983,2986,688,17,1,other,DSC_0838.JPG +36984,2488,808,17,1,other,DSC_0838.JPG +36986,3685,952,17,1,other,DSC_0838.JPG +36987,3463,1312,17,1,other,DSC_0838.JPG +36988,2971,1429,15,1,other,DSC_0838.JPG +3699,1600,589,16,1,other,DSC_0837.JPG +36991,3634,1735,15,1,other,DSC_0838.JPG +36992,3208,2083,16,1,other,DSC_0838.JPG +36993,4825,2185,17,1,other,DSC_0838.JPG +36994,2851,31,16,1,other,DSC_0838.JPG +36995,3808,100,17,1,other,DSC_0838.JPG +36998,2806,1000,16,1,other,DSC_0838.JPG +36999,2941,1246,17,1,other,DSC_0838.JPG +370,943,472,17,1,other,DSC_0844.JPG +37001,4861,2242,15,1,other,DSC_0838.JPG +37004,3715,1015,17,1,other,DSC_0838.JPG +37005,3325,1432,16,1,other,DSC_0838.JPG +37006,3850,1501,17,1,other,DSC_0838.JPG +37009,406,2116,15,1,other,DSC_0838.JPG +37010,3766,2323,15,1,other,DSC_0838.JPG +37012,3124,817,17,1,other,DSC_0838.JPG +37013,2485,1177,15,1,other,DSC_0838.JPG +37014,3046,1306,17,1,other,DSC_0838.JPG +37016,4372,118,17,1,other,DSC_0838.JPG +37018,3376,235,17,1,other,DSC_0838.JPG +37019,2905,1186,17,1,other,DSC_0838.JPG +37020,2731,1246,17,1,other,DSC_0838.JPG +37021,3079,1489,17,1,other,DSC_0838.JPG +37022,3148,1609,17,1,other,DSC_0838.JPG +37023,3808,1678,15,1,other,DSC_0838.JPG +37024,3001,1966,15,1,other,DSC_0838.JPG +37025,3490,1969,17,1,other,DSC_0838.JPG +37026,796,136,17,1,other,DSC_0838.JPG +37028,3022,631,17,1,other,DSC_0838.JPG +37030,2593,874,17,1,other,DSC_0838.JPG +37032,3010,1249,17,1,other,DSC_0838.JPG +37033,2905,1309,17,1,other,DSC_0838.JPG +37034,3844,1618,17,1,other,DSC_0838.JPG +37035,2899,1669,16,1,other,DSC_0838.JPG +37036,3355,1855,17,5,other,DSC_0838.JPG +37037,3526,1909,15,1,other,DSC_0838.JPG +37038,2860,1966,16,1,other,DSC_0838.JPG +37039,3103,2026,15,1,other,DSC_0838.JPG +37040,3133,25,16,1,other,DSC_0838.JPG +37041,622,70,17,1,other,DSC_0838.JPG +37044,4468,445,17,1,other,DSC_0838.JPG +37045,2740,877,17,1,other,DSC_0838.JPG +37047,2488,928,17,1,other,DSC_0838.JPG +37049,3784,1261,17,1,other,DSC_0838.JPG +3705,4732,1435,17,1,other,DSC_0837.JPG +37050,2971,1309,17,1,other,DSC_0838.JPG +37051,2968,1549,17,1,other,DSC_0838.JPG +37053,655,259,17,1,other,DSC_0838.JPG +37059,3073,1732,16,1,other,DSC_0838.JPG +37062,3457,1912,15,1,other,DSC_0838.JPG +37063,2356,154,17,1,other,DSC_0838.JPG +37064,1969,217,17,1,other,DSC_0838.JPG +37065,2524,871,17,1,other,DSC_0838.JPG +37067,2839,1066,17,1,other,DSC_0838.JPG +37068,3712,1138,17,1,other,DSC_0838.JPG +37069,3916,1618,15,1,other,DSC_0838.JPG +37070,3109,1792,17,1,other,DSC_0838.JPG +37071,3769,1852,17,1,other,DSC_0838.JPG +37072,3838,1972,15,1,other,DSC_0838.JPG +37073,3664,2029,15,1,other,DSC_0838.JPG +37074,4960,2401,15,1,other,DSC_0838.JPG +37075,3304,232,17,1,other,DSC_0838.JPG +37076,4294,247,17,1,other,DSC_0838.JPG +37078,4921,505,17,1,other,DSC_0838.JPG +37079,2950,754,16,1,other,DSC_0838.JPG +3708,5236,1876,15,1,other,DSC_0837.JPG +37081,2377,1357,17,1,other,DSC_0838.JPG +37082,4234,1678,16,5,other,DSC_0838.JPG +37083,4048,2320,17,1,other,DSC_0838.JPG +37084,376,256,16,1,other,DSC_0838.JPG +37086,5242,562,15,1,other,DSC_0838.JPG +37088,2746,751,15,1,other,DSC_0838.JPG +37089,2974,1189,15,1,other,DSC_0838.JPG +37090,3748,1321,17,1,other,DSC_0838.JPG +37091,3745,1558,15,1,other,DSC_0838.JPG +37092,3910,1972,15,1,other,DSC_0838.JPG +37093,1474,76,17,1,other,DSC_0838.JPG +37094,2179,217,17,1,other,DSC_0838.JPG +37096,2704,811,17,1,other,DSC_0838.JPG +37097,3472,823,17,1,other,DSC_0838.JPG +37098,2590,994,17,1,other,DSC_0838.JPG +37099,3328,1069,17,1,other,DSC_0838.JPG +3710,5197,1933,15,1,other,DSC_0837.JPG +37100,2875,1126,15,1,other,DSC_0838.JPG +37101,3154,1246,17,1,other,DSC_0838.JPG +37102,3466,1435,16,1,other,DSC_0838.JPG +37103,2377,1477,17,1,other,DSC_0838.JPG +37104,3178,1792,15,1,other,DSC_0838.JPG +37105,2482,22,17,1,other,DSC_0838.JPG +37106,4162,109,16,1,other,DSC_0838.JPG +37109,94,496,17,1,other,DSC_0838.JPG +37110,3295,883,17,1,other,DSC_0838.JPG +37111,2773,937,16,1,other,DSC_0838.JPG +37112,3136,2083,15,1,other,DSC_0838.JPG +37113,3484,172,15,1,other,DSC_0838.JPG +37114,4402,184,17,1,other,DSC_0838.JPG +37115,3661,241,17,1,other,DSC_0838.JPG +3712,4012,2005,17,1,other,DSC_0837.JPG +37123,2932,1849,15,1,other,DSC_0838.JPG +37125,898,2266,17,1,other,DSC_0838.JPG +37127,586,259,17,1,other,DSC_0838.JPG +37128,1933,280,16,1,other,DSC_0838.JPG +37129,4642,382,17,1,other,DSC_0838.JPG +3713,2572,2179,15,1,other,DSC_0837.JPG +37131,3331,823,16,1,other,DSC_0838.JPG +37134,3817,1321,17,1,other,DSC_0838.JPG +37135,2698,1426,17,1,other,DSC_0838.JPG +37136,2518,1483,15,1,other,DSC_0838.JPG +37138,514,2182,17,1,other,DSC_0838.JPG +37139,3382,2377,17,1,other,DSC_0838.JPG +37140,2461,91,15,1,other,DSC_0838.JPG +37141,448,130,17,1,other,DSC_0838.JPG +37142,586,391,17,1,other,DSC_0838.JPG +37143,3439,760,16,1,other,DSC_0838.JPG +37145,3820,1198,17,1,other,DSC_0838.JPG +37146,3388,1675,15,1,other,DSC_0838.JPG +37147,2827,1792,17,1,other,DSC_0838.JPG +37149,5041,2182,17,1,other,DSC_0838.JPG +3715,5206,295,17,1,other,DSC_0837.JPG +37150,1621,76,17,1,other,DSC_0838.JPG +37156,2104,982,17,1,other,DSC_0838.JPG +37157,3853,1015,17,1,other,DSC_0838.JPG +37158,3679,1072,16,1,other,DSC_0838.JPG +3716,2275,412,16,1,other,DSC_0837.JPG +37160,2770,1183,17,1,other,DSC_0838.JPG +37162,2872,1366,15,1,other,DSC_0838.JPG +37163,1921,1888,17,1,other,DSC_0838.JPG +37164,517,2299,17,1,other,DSC_0838.JPG +37165,343,67,17,1,other,DSC_0838.JPG +37166,697,73,17,1,other,DSC_0838.JPG +37168,4153,250,15,1,other,DSC_0838.JPG +37169,199,313,17,1,other,DSC_0838.JPG +3717,2134,535,16,1,other,DSC_0837.JPG +37170,3403,820,17,1,other,DSC_0838.JPG +37171,3112,1672,17,1,other,DSC_0838.JPG +37173,691,2254,17,1,other,DSC_0838.JPG +37174,3733,2263,17,1,other,DSC_0838.JPG +37175,3196,817,17,1,other,DSC_0838.JPG +37176,3988,1498,16,1,other,DSC_0838.JPG +37178,2716,2200,16,1,other,DSC_0838.JPG +37179,1321,2290,15,1,other,DSC_0838.JPG +37180,2077,157,15,1,other,DSC_0838.JPG +37186,3016,751,17,1,other,DSC_0838.JPG +37187,2350,925,17,1,other,DSC_0838.JPG +37189,5230,1165,15,1,other,DSC_0838.JPG +37190,3952,1561,17,1,other,DSC_0838.JPG +37193,3454,2026,15,1,other,DSC_0838.JPG +37194,4648,2371,17,1,other,DSC_0838.JPG +37195,1156,142,16,1,other,DSC_0838.JPG +37196,1120,208,17,1,other,DSC_0838.JPG +37197,3943,247,17,1,other,DSC_0838.JPG +37202,3715,1381,17,1,other,DSC_0838.JPG +37203,2653,1726,15,1,other,DSC_0838.JPG +37206,4930,2236,15,1,other,DSC_0838.JPG +37207,5068,247,17,1,other,DSC_0838.JPG +37208,4993,376,17,1,other,DSC_0838.JPG +37209,3880,1558,15,1,other,DSC_0838.JPG +37210,4714,124,17,1,other,DSC_0838.JPG +37211,4609,187,17,1,other,DSC_0838.JPG +37213,4921,253,17,1,other,DSC_0838.JPG +37214,88,373,17,1,other,DSC_0838.JPG +37216,2671,751,16,1,other,DSC_0838.JPG +37217,3181,1672,17,1,other,DSC_0838.JPG +37219,3103,2260,16,1,other,DSC_0838.JPG +37222,3334,694,17,1,other,DSC_0838.JPG +37225,2929,2083,15,1,other,DSC_0838.JPG +37227,4231,103,16,1,other,DSC_0838.JPG +37228,1723,151,15,1,other,DSC_0838.JPG +37229,691,199,17,1,other,DSC_0838.JPG +37230,3517,238,16,1,other,DSC_0838.JPG +37231,3088,880,16,1,other,DSC_0838.JPG +37234,2587,1360,17,1,other,DSC_0838.JPG +37235,3574,1375,17,1,other,DSC_0838.JPG +37236,3937,2380,17,1,other,DSC_0838.JPG +37237,763,73,17,1,other,DSC_0838.JPG +37238,4993,247,17,1,other,DSC_0838.JPG +37239,2836,1429,17,1,other,DSC_0838.JPG +37242,4786,2359,15,1,other,DSC_0838.JPG +37249,3322,1675,15,1,other,DSC_0838.JPG +37250,2794,1726,17,1,other,DSC_0838.JPG +37252,2335,2374,17,1,other,DSC_0838.JPG +37253,4051,181,17,1,other,DSC_0838.JPG +37254,3160,880,17,1,other,DSC_0838.JPG +37256,2755,1909,17,1,other,DSC_0838.JPG +37257,4276,40,16,1,other,DSC_0838.JPG +37258,4192,184,15,1,other,DSC_0838.JPG +37259,3433,1012,17,1,other,DSC_0838.JPG +37260,3085,1126,16,1,other,DSC_0838.JPG +37263,2248,88,15,1,other,DSC_0838.JPG +37264,4471,187,17,1,other,DSC_0838.JPG +37266,2668,874,17,1,other,DSC_0838.JPG +37269,586,2302,15,1,other,DSC_0838.JPG +37270,3592,109,15,1,other,DSC_0838.JPG +37271,4861,130,15,1,other,DSC_0838.JPG +37272,832,199,17,1,other,DSC_0838.JPG +37276,5266,1342,17,1,other,DSC_0838.JPG +37277,2689,1903,17,1,other,DSC_0838.JPG +37278,1285,2347,15,1,other,DSC_0838.JPG +37279,3211,28,17,1,other,DSC_0838.JPG +3728,5278,2164,16,1,other,DSC_0837.JPG +37287,2800,1366,15,1,other,DSC_0838.JPG +3729,4690,2170,15,1,other,DSC_0837.JPG +37290,826,2152,17,1,other,DSC_0838.JPG +37291,1684,82,17,1,other,DSC_0838.JPG +37292,97,247,17,1,other,DSC_0838.JPG +37296,5194,1108,17,1,other,DSC_0838.JPG +373,514,712,17,1,other,DSC_0844.JPG +37300,2797,1486,17,1,other,DSC_0838.JPG +37301,3568,1735,15,1,other,DSC_0838.JPG +37302,649,2083,17,1,other,DSC_0838.JPG +37303,3490,2086,17,1,other,DSC_0838.JPG +37305,5170,2182,17,1,other,DSC_0838.JPG +37306,4831,73,17,1,other,DSC_0838.JPG +3731,1351,520,17,1,other,DSC_0837.JPG +37310,835,67,15,1,other,DSC_0838.JPG +37311,2206,1048,17,1,other,DSC_0838.JPG +37315,1636,2119,17,1,other,DSC_0838.JPG +37316,4408,43,17,1,other,DSC_0838.JPG +37317,418,70,17,1,other,DSC_0838.JPG +37319,5023,184,17,1,other,DSC_0838.JPG +37320,127,313,15,1,other,DSC_0838.JPG +37325,2269,1654,15,1,other,DSC_0838.JPG +37326,3808,1798,17,1,other,DSC_0838.JPG +37327,3316,1912,17,1,other,DSC_0838.JPG +37332,2005,283,17,1,other,DSC_0838.JPG +37334,4189,313,17,1,other,DSC_0838.JPG +37336,5239,442,15,1,other,DSC_0838.JPG +37339,4885,571,16,1,other,DSC_0838.JPG +3734,3091,859,15,1,other,DSC_0837.JPG +37340,2914,817,16,1,other,DSC_0838.JPG +37342,5329,1333,17,1,other,DSC_0838.JPG +37343,3394,1552,17,1,other,DSC_0838.JPG +37346,3931,37,17,1,other,DSC_0838.JPG +37347,4483,43,16,1,other,DSC_0838.JPG +37348,556,64,17,1,other,DSC_0838.JPG +37350,448,256,17,1,other,DSC_0838.JPG +37352,5272,628,17,1,other,DSC_0838.JPG +37353,5191,1225,17,1,other,DSC_0838.JPG +37356,3535,1558,17,1,other,DSC_0838.JPG +37358,5077,2128,17,1,other,DSC_0838.JPG +37359,826,2266,17,1,other,DSC_0838.JPG +37360,793,2323,17,1,other,DSC_0838.JPG +37361,3313,2386,16,1,other,DSC_0838.JPG +37362,3448,2386,17,1,other,DSC_0838.JPG +37363,1858,13,17,1,other,DSC_0838.JPG +37368,3361,1498,17,1,other,DSC_0838.JPG +37370,3415,169,17,1,other,DSC_0838.JPG +37371,1048,208,17,1,other,DSC_0838.JPG +37372,5089,817,15,5,other,DSC_0838.JPG +37373,2518,994,17,1,other,DSC_0838.JPG +37374,3277,2086,15,1,other,DSC_0838.JPG +37375,1249,2287,17,1,other,DSC_0838.JPG +37376,4825,2299,16,1,other,DSC_0838.JPG +37377,862,2326,17,1,other,DSC_0838.JPG +37379,5074,376,17,1,other,DSC_0838.JPG +37382,4858,2353,15,1,other,DSC_0838.JPG +37383,1912,2368,17,1,other,DSC_0838.JPG +37384,2638,22,17,1,other,DSC_0838.JPG +37385,5140,253,17,1,other,DSC_0838.JPG +37386,871,526,16,1,other,DSC_0838.JPG +37388,5311,562,17,1,other,DSC_0838.JPG +37392,271,2098,15,1,other,DSC_0838.JPG +37393,1144,2341,17,1,other,DSC_0838.JPG +37394,4126,178,17,1,other,DSC_0838.JPG +37395,4894,190,17,1,other,DSC_0838.JPG +37396,61,307,15,1,other,DSC_0838.JPG +3740,5365,1324,17,1,other,DSC_0837.JPG +37400,3367,757,17,1,other,DSC_0838.JPG +37404,2542,2380,17,1,other,DSC_0838.JPG +37405,3802,2383,17,1,other,DSC_0838.JPG +37406,1903,217,15,1,other,DSC_0838.JPG +37408,5170,442,17,1,other,DSC_0838.JPG +3741,4759,1570,16,1,other,DSC_0837.JPG +37412,5095,2392,17,1,other,DSC_0838.JPG +37413,1936,16,16,1,other,DSC_0838.JPG +37414,1297,142,17,1,other,DSC_0838.JPG +37415,118,559,15,1,other,DSC_0838.JPG +37421,760,199,15,1,other,DSC_0838.JPG +37434,1444,13,15,1,other,DSC_0838.JPG +37435,5173,79,17,1,other,DSC_0838.JPG +3744,4198,1822,15,1,other,DSC_0837.JPG +37444,5263,1222,17,1,other,DSC_0838.JPG +37448,4900,2293,17,1,other,DSC_0838.JPG +37449,727,2317,17,1,other,DSC_0838.JPG +37450,4993,2338,17,1,other,DSC_0838.JPG +37451,4930,2347,17,1,other,DSC_0838.JPG +37452,1756,76,17,1,other,DSC_0838.JPG +37453,238,124,17,1,other,DSC_0838.JPG +37456,5161,1168,17,1,other,DSC_0838.JPG +3746,5200,2053,17,1,other,DSC_0837.JPG +37460,5083,2014,15,1,other,DSC_0838.JPG +37463,4576,130,17,1,other,DSC_0838.JPG +37464,4540,319,17,1,other,DSC_0838.JPG +37469,5104,307,15,1,other,DSC_0838.JPG +3747,2110,2119,15,1,other,DSC_0837.JPG +37471,121,1180,15,1,other,DSC_0838.JPG +37479,4717,2365,16,1,other,DSC_0838.JPG +37480,166,244,15,1,other,DSC_0838.JPG +37482,5173,313,17,1,other,DSC_0838.JPG +37487,3640,1381,17,1,other,DSC_0838.JPG +37489,310,2155,17,1,other,DSC_0838.JPG +37490,4963,2287,15,1,other,DSC_0838.JPG +37491,652,2311,15,1,other,DSC_0838.JPG +37492,2194,2374,15,1,other,DSC_0838.JPG +37493,1588,10,16,1,other,DSC_0838.JPG +375,76,1042,15,1,other,DSC_0844.JPG +3750,1780,403,17,5,other,DSC_0837.JPG +37502,133,2083,15,1,other,DSC_0838.JPG +37503,4753,2305,15,1,other,DSC_0838.JPG +37504,2824,2386,17,1,other,DSC_0838.JPG +37505,3871,2386,17,1,other,DSC_0838.JPG +37506,211,64,15,1,other,DSC_0838.JPG +37508,5209,376,17,1,other,DSC_0838.JPG +3751,2026,469,17,1,other,DSC_0837.JPG +37510,2983,940,17,1,other,DSC_0838.JPG +37514,5209,2122,15,1,other,DSC_0838.JPG +37517,4540,187,17,1,other,DSC_0838.JPG +37531,400,1891,17,1,other,DSC_0838.JPG +37533,5116,1957,17,1,other,DSC_0838.JPG +37535,475,2125,17,1,other,DSC_0838.JPG +37536,2857,2200,17,1,other,DSC_0838.JPG +37537,310,2275,17,1,other,DSC_0838.JPG +37538,1984,2365,17,1,other,DSC_0838.JPG +37539,4342,58,15,1,other,DSC_0838.JPG +3754,1843,655,16,1,other,DSC_0837.JPG +37540,4261,184,17,1,other,DSC_0838.JPG +37544,4573,640,17,1,other,DSC_0838.JPG +37554,373,2164,15,1,other,DSC_0838.JPG +37556,1219,2341,17,1,other,DSC_0838.JPG +37557,5053,118,17,1,other,DSC_0838.JPG +37558,5131,124,17,1,other,DSC_0838.JPG +37565,5128,1111,17,1,other,DSC_0838.JPG +37567,3331,1192,15,1,other,DSC_0838.JPG +37572,5029,2398,17,1,other,DSC_0838.JPG +37573,4960,187,17,1,other,DSC_0838.JPG +37574,5173,190,17,1,other,DSC_0838.JPG +37584,3880,1912,17,1,other,DSC_0838.JPG +37585,5107,2185,15,1,other,DSC_0838.JPG +37586,583,2191,17,1,other,DSC_0838.JPG +37587,139,2194,17,1,other,DSC_0838.JPG +37589,4192,40,17,1,other,DSC_0838.JPG +37591,4432,376,15,1,other,DSC_0838.JPG +3760,3349,1216,15,1,other,DSC_0837.JPG +37603,133,1864,15,1,other,DSC_0838.JPG +37605,1003,2332,17,1,other,DSC_0838.JPG +37606,4363,2380,15,1,other,DSC_0838.JPG +37607,4222,247,17,1,other,DSC_0838.JPG +37614,5116,2071,17,1,other,DSC_0838.JPG +37616,448,2293,17,1,other,DSC_0838.JPG +37618,1015,4,15,1,other,DSC_0838.JPG +3763,4873,1396,17,1,other,DSC_0837.JPG +37630,5239,2179,17,1,other,DSC_0838.JPG +37644,4999,2236,15,1,other,DSC_0838.JPG +37646,4114,40,16,1,other,DSC_0838.JPG +37657,5152,2011,17,1,other,DSC_0838.JPG +3766,634,1600,15,1,other,DSC_0837.JPG +37660,1516,16,15,1,other,DSC_0838.JPG +37663,2251,352,17,1,other,DSC_0838.JPG +3767,5392,1636,17,1,other,DSC_0837.JPG +37681,136,2320,17,1,other,DSC_0838.JPG +37682,487,2350,17,1,other,DSC_0838.JPG +37683,4897,67,17,1,other,DSC_0838.JPG +37684,2815,370,17,1,other,DSC_0838.JPG +37702,3880,103,17,1,other,DSC_0838.JPG +37703,133,187,17,1,other,DSC_0838.JPG +37704,1828,214,17,1,other,DSC_0838.JPG +37706,5272,502,17,1,other,DSC_0838.JPG +3771,2077,2056,15,1,other,DSC_0837.JPG +37712,3580,763,17,1,other,DSC_0838.JPG +3772,4402,2056,15,1,other,DSC_0837.JPG +37722,1111,2284,15,1,other,DSC_0838.JPG +37723,3850,31,17,1,other,DSC_0838.JPG +3773,3655,106,17,1,other,DSC_0837.JPG +37734,547,2245,17,1,other,DSC_0838.JPG +37737,3868,241,15,1,other,DSC_0838.JPG +37738,5032,313,17,1,other,DSC_0838.JPG +37749,184,1765,17,1,other,DSC_0838.JPG +3775,1924,403,17,1,other,DSC_0837.JPG +37753,199,2089,15,1,other,DSC_0838.JPG +37756,622,2251,17,1,other,DSC_0838.JPG +37758,4888,2404,17,1,other,DSC_0838.JPG +37759,4759,73,15,1,other,DSC_0838.JPG +3776,3277,415,17,1,other,DSC_0837.JPG +37760,2116,91,17,1,other,DSC_0838.JPG +37761,3952,112,15,1,other,DSC_0838.JPG +37766,5299,1399,17,1,other,DSC_0838.JPG +37771,439,2065,17,1,other,DSC_0838.JPG +37775,2779,25,17,1,other,DSC_0838.JPG +3778,2095,469,15,1,other,DSC_0837.JPG +37781,5263,1465,17,1,other,DSC_0838.JPG +37788,3730,2380,15,1,other,DSC_0838.JPG +37789,2887,2386,17,1,other,DSC_0838.JPG +3779,3757,673,17,1,other,DSC_0837.JPG +37790,4441,115,17,1,other,DSC_0838.JPG +37791,4792,130,17,1,other,DSC_0838.JPG +37792,4153,379,17,1,other,DSC_0838.JPG +37810,5092,2251,17,1,other,DSC_0838.JPG +37811,5125,2314,15,1,other,DSC_0838.JPG +37812,178,124,17,1,other,DSC_0838.JPG +37813,5212,133,17,1,other,DSC_0838.JPG +37821,187,1651,17,1,other,DSC_0838.JPG +37829,3592,2380,17,1,other,DSC_0838.JPG +37830,4987,124,17,1,other,DSC_0838.JPG +37848,5218,2002,17,1,other,DSC_0838.JPG +37851,340,2107,17,1,other,DSC_0838.JPG +37856,5230,2245,17,1,other,DSC_0838.JPG +37857,5167,2248,17,1,other,DSC_0838.JPG +37859,244,2269,17,1,other,DSC_0838.JPG +3786,5272,1819,17,1,other,DSC_0837.JPG +37861,967,2389,15,1,other,DSC_0838.JPG +37863,55,433,15,1,other,DSC_0838.JPG +37874,5236,1408,15,1,other,DSC_0838.JPG +37879,103,1804,17,1,other,DSC_0838.JPG +37880,5221,1888,17,1,other,DSC_0838.JPG +37883,208,2203,17,1,other,DSC_0838.JPG +37884,970,2278,17,1,other,DSC_0838.JPG +37886,2017,16,15,1,other,DSC_0838.JPG +37887,31,244,16,1,other,DSC_0838.JPG +37909,235,2038,17,1,other,DSC_0838.JPG +3791,3199,544,17,5,other,DSC_0837.JPG +37910,5248,2056,15,1,other,DSC_0838.JPG +37911,172,2137,17,1,other,DSC_0838.JPG +37913,445,2176,15,1,other,DSC_0838.JPG +37914,4966,2185,15,1,other,DSC_0838.JPG +37915,4510,115,17,1,other,DSC_0838.JPG +3792,2098,595,17,1,other,DSC_0837.JPG +37923,5335,868,15,1,other,DSC_0838.JPG +3794,1348,772,16,1,other,DSC_0837.JPG +37940,226,1936,17,1,other,DSC_0838.JPG +37943,5242,310,17,1,other,DSC_0838.JPG +3796,3298,1090,15,1,other,DSC_0837.JPG +37962,5095,181,17,1,other,DSC_0838.JPG +3798,3853,1231,16,1,other,DSC_0837.JPG +37985,5179,2059,15,1,other,DSC_0838.JPG +37994,205,2326,17,1,other,DSC_0838.JPG +3801,5167,1636,17,1,other,DSC_0837.JPG +38014,244,2149,17,1,other,DSC_0838.JPG +38018,826,2380,17,1,other,DSC_0838.JPG +38019,5164,2392,15,1,other,DSC_0838.JPG +3802,160,1648,16,1,other,DSC_0837.JPG +38020,526,7,15,1,other,DSC_0838.JPG +38021,3004,28,15,1,other,DSC_0838.JPG +38022,5320,310,17,1,other,DSC_0838.JPG +3803,667,1900,15,1,other,DSC_0837.JPG +3805,4408,1939,17,1,other,DSC_0837.JPG +38051,100,2128,17,1,other,DSC_0838.JPG +38053,4894,2182,17,1,other,DSC_0838.JPG +38054,349,2221,17,1,other,DSC_0838.JPG +3806,271,1957,17,1,other,DSC_0837.JPG +38060,1294,10,15,1,other,DSC_0838.JPG +38062,25,367,15,1,other,DSC_0838.JPG +38070,40,679,17,1,other,DSC_0838.JPG +3808,4726,2227,15,1,other,DSC_0837.JPG +38082,5182,1948,15,1,other,DSC_0838.JPG +38084,127,1978,17,1,other,DSC_0838.JPG +38087,73,2074,15,1,other,DSC_0838.JPG +3809,2422,2302,17,1,other,DSC_0837.JPG +38090,280,2212,17,1,other,DSC_0838.JPG +38091,169,2257,17,1,other,DSC_0838.JPG +38093,4750,2419,15,1,other,DSC_0838.JPG +38094,3670,31,17,1,other,DSC_0838.JPG +38095,5287,247,15,1,other,DSC_0838.JPG +38104,79,994,17,1,other,DSC_0838.JPG +3811,1708,277,16,1,other,DSC_0837.JPG +3812,520,316,16,5,other,DSC_0837.JPG +38127,2611,2380,15,1,other,DSC_0838.JPG +38129,2677,2386,17,1,other,DSC_0838.JPG +38130,460,7,17,1,other,DSC_0838.JPG +38131,1792,16,15,1,other,DSC_0838.JPG +3814,4087,610,17,1,other,DSC_0837.JPG +38159,163,1921,17,1,other,DSC_0838.JPG +38167,4822,2413,17,1,other,DSC_0838.JPG +38168,1363,13,17,1,other,DSC_0838.JPG +38169,3577,31,17,1,other,DSC_0838.JPG +38170,5242,76,17,1,other,DSC_0838.JPG +38194,934,2329,16,1,other,DSC_0838.JPG +38195,592,13,17,1,other,DSC_0838.JPG +3821,4774,1219,15,1,other,DSC_0837.JPG +3822,4639,1336,17,1,other,DSC_0837.JPG +38224,658,2191,15,1,other,DSC_0838.JPG +38229,2020,2413,15,1,other,DSC_0838.JPG +3823,883,1432,15,1,other,DSC_0837.JPG +38230,3760,28,17,1,other,DSC_0838.JPG +38257,91,1573,17,1,other,DSC_0838.JPG +38259,5218,1648,17,1,other,DSC_0838.JPG +38266,547,2128,17,1,other,DSC_0838.JPG +38268,415,2224,17,1,other,DSC_0838.JPG +3827,3313,2002,15,1,other,DSC_0837.JPG +38298,5254,1822,17,1,other,DSC_0838.JPG +383,4243,2182,17,5,other,DSC_0844.JPG +38306,1039,2395,15,1,other,DSC_0838.JPG +38307,3490,25,17,1,other,DSC_0838.JPG +38326,5233,1282,15,1,other,DSC_0838.JPG +38333,76,2191,15,1,other,DSC_0838.JPG +38337,4603,2419,17,1,other,DSC_0838.JPG +38338,664,10,15,1,other,DSC_0838.JPG +3835,2551,1519,17,1,other,DSC_0837.JPG +38371,295,1936,17,1,other,DSC_0838.JPG +38377,5197,2311,15,1,other,DSC_0838.JPG +38378,895,2377,17,1,other,DSC_0838.JPG +38379,2710,34,17,1,other,DSC_0838.JPG +3839,4876,1756,17,1,other,DSC_0837.JPG +3840,4945,1759,15,1,other,DSC_0837.JPG +38402,5284,1759,17,1,other,DSC_0838.JPG +38412,622,2365,15,1,other,DSC_0838.JPG +38414,1180,2398,15,1,other,DSC_0838.JPG +3842,4693,2053,16,1,other,DSC_0837.JPG +38436,127,1750,17,1,other,DSC_0838.JPG +3844,1762,2218,15,1,other,DSC_0837.JPG +38449,481,2236,17,1,other,DSC_0838.JPG +38452,1252,2401,17,1,other,DSC_0838.JPG +38453,4678,2419,15,1,other,DSC_0838.JPG +38454,379,7,17,1,other,DSC_0838.JPG +38468,5323,1450,15,1,other,DSC_0838.JPG +3847,2344,538,17,5,other,DSC_0837.JPG +3848,2308,601,17,5,other,DSC_0837.JPG +385,4135,124,17,1,other,DSC_0844.JPG +38500,85,1231,15,1,other,DSC_0838.JPG +38528,691,2374,17,1,other,DSC_0838.JPG +38529,4924,130,15,1,other,DSC_0838.JPG +3854,3040,1285,17,1,other,DSC_0837.JPG +3855,1738,1453,15,1,other,DSC_0837.JPG +3858,4984,1696,15,1,other,DSC_0837.JPG +38595,5323,1210,17,1,other,DSC_0838.JPG +386,3316,319,16,1,other,DSC_0844.JPG +38619,5248,1942,17,1,other,DSC_0838.JPG +3862,4801,1996,16,1,other,DSC_0837.JPG +38625,3901,2437,17,1,other,DSC_0838.JPG +38626,3289,22,17,1,other,DSC_0838.JPG +38627,3379,25,17,1,other,DSC_0838.JPG +3863,739,2140,17,1,other,DSC_0837.JPG +3864,1969,2230,15,1,other,DSC_0837.JPG +3866,631,136,17,1,other,DSC_0837.JPG +38668,5260,2320,15,1,other,DSC_0838.JPG +38670,757,2374,17,1,other,DSC_0838.JPG +38671,3829,2431,17,1,other,DSC_0838.JPG +38672,2281,19,17,1,other,DSC_0838.JPG +38673,5212,250,17,1,other,DSC_0838.JPG +3870,2839,547,16,1,other,DSC_0837.JPG +38719,1390,2410,15,1,other,DSC_0838.JPG +3872,49,619,16,1,other,DSC_0837.JPG +38720,3058,2425,15,1,other,DSC_0838.JPG +38737,5293,1279,17,1,other,DSC_0838.JPG +3875,4795,859,16,1,other,DSC_0837.JPG +38750,169,2032,17,1,other,DSC_0838.JPG +38756,5065,2329,15,1,other,DSC_0838.JPG +38758,169,2380,17,1,other,DSC_0838.JPG +38759,3133,2431,17,1,other,DSC_0838.JPG +38760,730,19,15,1,other,DSC_0838.JPG +38761,4015,34,16,1,other,DSC_0838.JPG +38762,4645,124,15,1,other,DSC_0838.JPG +38766,5341,625,15,1,other,DSC_0838.JPG +38803,376,2278,15,1,other,DSC_0838.JPG +3882,5239,2107,15,1,other,DSC_0837.JPG +3883,4729,2113,15,1,other,DSC_0837.JPG +3884,2002,2176,15,1,other,DSC_0837.JPG +38842,1111,2392,15,1,other,DSC_0838.JPG +38843,4597,58,15,1,other,DSC_0838.JPG +3885,4057,46,17,1,other,DSC_0837.JPG +3887,4051,421,16,1,other,DSC_0837.JPG +3888,1132,643,16,1,other,DSC_0837.JPG +38883,244,2389,17,1,other,DSC_0838.JPG +38884,313,2398,17,1,other,DSC_0838.JPG +38885,2230,2422,15,1,other,DSC_0838.JPG +38886,4534,2428,15,1,other,DSC_0838.JPG +38887,1213,7,17,1,other,DSC_0838.JPG +38888,5311,184,17,1,other,DSC_0838.JPG +38889,5245,193,17,1,other,DSC_0838.JPG +38928,268,1987,15,1,other,DSC_0838.JPG +3893,49,1576,17,1,other,DSC_0837.JPG +38937,2086,2413,17,1,other,DSC_0838.JPG +38938,3970,2431,17,1,other,DSC_0838.JPG +38958,5281,1645,17,1,other,DSC_0838.JPG +3896,1162,2146,15,5,other,DSC_0837.JPG +38960,151,1699,17,1,other,DSC_0838.JPG +38966,5281,2119,15,1,other,DSC_0838.JPG +3897,5152,2218,15,1,other,DSC_0837.JPG +3898,4660,490,17,1,other,DSC_0837.JPG +38991,145,1588,15,1,other,DSC_0838.JPG +3900,3979,547,16,1,other,DSC_0837.JPG +39004,2179,16,15,1,other,DSC_0838.JPG +39016,37,802,17,1,other,DSC_0838.JPG +3902,3199,676,16,5,other,DSC_0837.JPG +3903,1384,709,16,1,other,DSC_0837.JPG +3904,1279,775,17,1,other,DSC_0837.JPG +39040,4687,43,17,1,other,DSC_0838.JPG +39041,5284,118,15,1,other,DSC_0838.JPG +39045,5314,442,15,1,other,DSC_0838.JPG +39046,5347,496,17,1,other,DSC_0838.JPG +3906,4483,973,17,1,other,DSC_0837.JPG +3907,3091,979,15,1,other,DSC_0837.JPG +39075,382,2398,17,1,other,DSC_0838.JPG +39076,4321,2434,15,1,other,DSC_0838.JPG +39094,115,1639,17,1,other,DSC_0838.JPG +39107,5230,2380,15,1,other,DSC_0838.JPG +39109,1318,2401,17,1,other,DSC_0838.JPG +39117,52,1171,17,1,other,DSC_0838.JPG +3913,4588,1759,15,1,other,DSC_0837.JPG +39132,109,2254,17,1,other,DSC_0838.JPG +39134,1459,2410,15,1,other,DSC_0838.JPG +39135,1669,2413,15,1,other,DSC_0838.JPG +39136,4117,2431,17,1,other,DSC_0838.JPG +3915,4693,1813,17,1,other,DSC_0837.JPG +39160,5260,1585,17,1,other,DSC_0838.JPG +3917,4729,1876,16,1,other,DSC_0837.JPG +39174,274,2335,17,1,other,DSC_0838.JPG +39175,799,4,17,1,other,DSC_0838.JPG +39176,244,7,15,1,other,DSC_0838.JPG +3918,493,1957,15,1,other,DSC_0837.JPG +3919,5086,1993,15,1,other,DSC_0837.JPG +3920,5047,2050,15,1,other,DSC_0837.JPG +39205,3691,2431,15,1,other,DSC_0838.JPG +39207,5275,373,15,1,other,DSC_0838.JPG +39217,52,1279,15,1,other,DSC_0838.JPG +3922,3025,2236,15,1,other,DSC_0837.JPG +39228,1735,2407,17,1,other,DSC_0838.JPG +39229,2440,2428,15,1,other,DSC_0838.JPG +3923,4009,2239,15,1,other,DSC_0837.JPG +39230,1138,13,15,1,other,DSC_0838.JPG +3924,1018,2260,15,1,other,DSC_0837.JPG +3925,1030,79,17,1,other,DSC_0837.JPG +39255,550,2356,17,1,other,DSC_0838.JPG +39258,4987,49,17,1,other,DSC_0838.JPG +3926,2887,91,17,1,other,DSC_0837.JPG +39268,76,1345,17,1,other,DSC_0838.JPG +39276,133,67,15,1,other,DSC_0838.JPG +3929,2734,484,16,5,other,DSC_0837.JPG +39310,1954,2419,17,1,other,DSC_0838.JPG +39311,3763,2437,15,1,other,DSC_0838.JPG +3932,3163,610,16,5,other,DSC_0837.JPG +39325,5293,1516,15,1,other,DSC_0838.JPG +39329,5314,1819,15,1,other,DSC_0838.JPG +39330,5275,1876,15,1,other,DSC_0838.JPG +39334,346,2341,17,1,other,DSC_0838.JPG +39335,2302,2425,15,1,other,DSC_0838.JPG +39356,520,2413,17,1,other,DSC_0838.JPG +39357,4039,2437,17,1,other,DSC_0838.JPG +39372,61,1966,15,1,other,DSC_0838.JPG +39374,424,2344,15,1,other,DSC_0838.JPG +39376,448,2407,15,1,other,DSC_0838.JPG +39390,2365,2434,17,1,other,DSC_0838.JPG +39391,5110,34,17,1,other,DSC_0838.JPG +39392,67,187,17,1,other,DSC_0838.JPG +39406,5332,742,17,1,other,DSC_0838.JPG +39415,94,1912,15,1,other,DSC_0838.JPG +39416,2086,22,15,1,other,DSC_0838.JPG +3943,4840,1816,15,1,other,DSC_0837.JPG +39430,103,2371,15,1,other,DSC_0838.JPG +39431,3556,2425,15,1,other,DSC_0838.JPG +39432,4255,2440,15,1,other,DSC_0838.JPG +39433,3274,2446,17,1,other,DSC_0838.JPG +39437,40,1405,17,1,other,DSC_0838.JPG +39444,1534,2407,17,1,other,DSC_0838.JPG +39445,3202,2431,17,1,other,DSC_0838.JPG +39446,106,127,15,1,other,DSC_0838.JPG +39448,43,556,17,1,other,DSC_0838.JPG +3945,4945,1879,15,1,other,DSC_0837.JPG +39451,61,928,17,1,other,DSC_0838.JPG +39452,5335,985,15,1,other,DSC_0838.JPG +39457,4795,16,17,1,other,DSC_0838.JPG +3946,310,1897,15,1,other,DSC_0837.JPG +39460,5320,1699,15,1,other,DSC_0838.JPG +39462,3622,2431,17,1,other,DSC_0838.JPG +39463,5125,2455,17,1,other,DSC_0838.JPG +39466,70,1510,15,1,other,DSC_0838.JPG +39467,2824,2026,17,1,other,DSC_0838.JPG +39468,3484,2437,15,1,other,DSC_0838.JPG +39471,3064,25,15,1,other,DSC_0838.JPG +39476,2578,2434,16,1,other,DSC_0838.JPG +39477,310,10,15,1,other,DSC_0838.JPG +3948,4264,2062,17,1,other,DSC_0837.JPG +39481,79,1696,17,1,other,DSC_0838.JPG +39483,2161,2434,17,1,other,DSC_0838.JPG +39484,5062,2458,17,1,other,DSC_0838.JPG +39485,1699,10,17,1,other,DSC_0838.JPG +39489,5350,1753,15,1,other,DSC_0838.JPG +3949,4582,2113,15,1,other,DSC_0837.JPG +39491,4180,2437,17,1,other,DSC_0838.JPG +39494,5356,1396,17,1,other,DSC_0838.JPG +39497,5275,2002,15,1,other,DSC_0838.JPG +39498,70,2314,17,1,other,DSC_0838.JPG +39499,4915,2461,17,1,other,DSC_0838.JPG +3950,4045,2179,16,1,other,DSC_0837.JPG +39500,4981,2461,17,1,other,DSC_0838.JPG +39501,2380,28,15,1,other,DSC_0838.JPG +39502,3886,1207,17,1,other,DSC_0838.JPG +39503,5317,1567,15,1,other,DSC_0838.JPG +39507,4465,2431,15,1,other,DSC_0838.JPG +39508,2644,2434,16,1,other,DSC_0838.JPG +39509,2995,2440,15,1,other,DSC_0838.JPG +3951,2239,88,15,5,other,DSC_0837.JPG +39511,13,1234,17,1,other,DSC_0838.JPG +39513,655,2425,17,1,other,DSC_0838.JPG +39514,1882,2425,15,1,other,DSC_0838.JPG +39515,2716,2425,15,1,other,DSC_0838.JPG +39516,4396,2431,17,1,other,DSC_0838.JPG +39518,865,2440,17,1,other,DSC_0838.JPG +39519,5206,25,15,1,other,DSC_0838.JPG +39521,2785,2434,15,1,other,DSC_0838.JPG +39522,3346,2443,15,1,other,DSC_0838.JPG +39525,2512,2437,17,1,other,DSC_0838.JPG +39526,5275,13,15,1,other,DSC_0838.JPG +39528,304,2047,15,1,other,DSC_0838.JPG +39529,5035,2278,15,1,other,DSC_0838.JPG +3953,952,580,16,5,other,DSC_0837.JPG +39530,5266,2455,17,1,other,DSC_0838.JPG +39531,916,4,15,1,other,DSC_0838.JPG +39535,5356,1633,17,1,other,DSC_0838.JPG +39536,5302,2398,15,1,other,DSC_0838.JPG +39538,5359,1264,17,1,other,DSC_0838.JPG +39539,5359,1507,17,1,other,DSC_0838.JPG +39541,721,2425,17,1,other,DSC_0838.JPG +39542,5356,379,17,1,other,DSC_0838.JPG +39543,19,1330,17,1,other,DSC_0838.JPG +39544,67,1753,17,1,other,DSC_0838.JPG +39545,3415,2437,17,1,other,DSC_0838.JPG +39546,5206,2443,17,1,other,DSC_0838.JPG +39548,10,1105,17,1,other,DSC_0838.JPG +39549,3031,1555,15,1,other,DSC_0838.JPG +39550,169,7,15,1,other,DSC_0838.JPG +39552,4867,16,17,1,other,DSC_0838.JPG +39554,5041,25,16,1,other,DSC_0838.JPG +39555,2920,2440,15,1,other,DSC_0838.JPG +39556,364,2050,17,1,other,DSC_0838.JPG +39557,16,739,15,1,other,DSC_0838.JPG +39559,2860,2437,17,1,other,DSC_0838.JPG +3956,3121,1039,15,1,other,DSC_0837.JPG +39560,4849,2464,15,1,other,DSC_0838.JPG +39561,5353,253,17,1,other,DSC_0838.JPG +39562,2374,862,15,1,other,DSC_0838.JPG +39564,3442,244,17,1,other,DSC_0838.JPG +39567,1075,7,17,1,other,DSC_0838.JPG +39568,859,4,17,1,other,DSC_0838.JPG +39569,3586,253,15,1,other,DSC_0838.JPG +3957,235,1168,15,1,other,DSC_0837.JPG +39570,3718,1507,15,1,other,DSC_0838.JPG +39572,4513,2368,15,1,other,DSC_0838.JPG +3958,3817,1288,15,1,other,DSC_0837.JPG +3963,4477,1936,15,1,other,DSC_0837.JPG +3964,4657,1993,17,1,other,DSC_0837.JPG +3965,3088,1999,17,1,other,DSC_0837.JPG +3967,4225,2116,15,1,other,DSC_0837.JPG +3971,2956,223,17,1,other,DSC_0837.JPG +3976,3496,1228,15,1,other,DSC_0837.JPG +3977,3886,1291,16,5,other,DSC_0837.JPG +3981,4582,1996,15,1,other,DSC_0837.JPG +3982,5281,2050,16,1,other,DSC_0837.JPG +3984,1240,454,15,5,other,DSC_0837.JPG +3990,2827,1276,15,1,other,DSC_0837.JPG +3995,4378,1639,16,1,other,DSC_0837.JPG +3997,457,1897,15,1,other,DSC_0837.JPG +4000,4621,1933,17,1,other,DSC_0837.JPG +4001,4336,1942,16,1,other,DSC_0837.JPG +4003,4618,2053,15,1,other,DSC_0837.JPG +4005,4540,2290,17,1,other,DSC_0837.JPG +4006,4492,58,17,1,other,DSC_0837.JPG +4007,4237,358,17,1,other,DSC_0837.JPG +4008,2422,418,17,1,other,DSC_0837.JPG +4009,2989,418,16,1,other,DSC_0837.JPG +401,763,532,16,1,other,DSC_0844.JPG +4012,3904,547,15,1,other,DSC_0837.JPG +4013,3442,610,16,1,other,DSC_0837.JPG +4016,4186,799,17,1,other,DSC_0837.JPG +4019,4519,1153,16,1,other,DSC_0837.JPG +4026,4837,1450,17,1,other,DSC_0837.JPG +4028,4729,1630,17,1,other,DSC_0837.JPG +4032,4297,2116,15,1,other,DSC_0837.JPG +4033,3868,2122,17,1,other,DSC_0837.JPG +4034,4615,2290,15,1,other,DSC_0837.JPG +4035,1600,85,17,1,other,DSC_0837.JPG +4038,625,385,17,5,other,DSC_0837.JPG +4041,3340,547,16,1,other,DSC_0837.JPG +4042,1528,586,16,1,other,DSC_0837.JPG +4043,1312,712,17,1,other,DSC_0837.JPG +4045,4048,1042,15,1,other,DSC_0837.JPG +4046,4810,1279,17,1,other,DSC_0837.JPG +4049,4912,1573,15,1,other,DSC_0837.JPG +4054,4732,1993,15,1,other,DSC_0837.JPG +4057,1093,2260,15,1,other,DSC_0837.JPG +4058,3268,2302,17,1,other,DSC_0837.JPG +4059,3019,607,16,1,other,DSC_0837.JPG +4062,2449,730,17,1,other,DSC_0837.JPG +4068,3709,1228,15,1,other,DSC_0837.JPG +4069,2794,1336,16,1,other,DSC_0837.JPG +4071,4339,1696,17,1,other,DSC_0837.JPG +4072,4660,1756,17,1,other,DSC_0837.JPG +4073,4336,1819,17,1,other,DSC_0837.JPG +4074,124,1825,17,1,other,DSC_0837.JPG +4076,4156,2002,15,1,other,DSC_0837.JPG +4077,1585,2158,15,1,other,DSC_0837.JPG +4078,2077,2176,17,1,other,DSC_0837.JPG +4079,3376,2242,15,1,other,DSC_0837.JPG +4080,3343,2305,16,1,other,DSC_0837.JPG +4082,1528,337,17,1,other,DSC_0837.JPG +4084,4708,1357,17,1,other,DSC_0837.JPG +4087,4873,1636,17,1,other,DSC_0837.JPG +4088,4768,1693,17,1,other,DSC_0837.JPG +4089,5056,1696,15,1,other,DSC_0837.JPG +409,4762,1453,15,1,other,DSC_0844.JPG +4092,4801,1876,16,1,other,DSC_0837.JPG +4094,1795,2050,15,1,other,DSC_0837.JPG +4095,736,2251,17,1,other,DSC_0837.JPG +4096,1444,2266,15,1,other,DSC_0837.JPG +4097,2653,2284,17,1,other,DSC_0837.JPG +4098,4423,52,15,1,other,DSC_0837.JPG +4104,4006,862,16,1,other,DSC_0837.JPG +4105,4789,982,15,1,other,DSC_0837.JPG +4106,3085,1099,15,1,other,DSC_0837.JPG +4108,1384,1204,15,1,other,DSC_0837.JPG +4111,4873,1510,17,1,other,DSC_0837.JPG +4112,2251,1618,17,1,other,DSC_0837.JPG +4114,4414,1696,15,1,other,DSC_0837.JPG +4123,4477,2053,17,1,other,DSC_0837.JPG +4124,4546,2056,17,1,other,DSC_0837.JPG +4126,2677,2110,15,1,other,DSC_0837.JPG +4127,3379,2125,17,5,other,DSC_0837.JPG +4129,2665,484,16,1,other,DSC_0837.JPG +4130,2419,544,15,5,other,DSC_0837.JPG +4133,4078,862,16,1,other,DSC_0837.JPG +4136,4552,1093,17,1,other,DSC_0837.JPG +4138,3709,1348,15,1,other,DSC_0837.JPG +4143,4264,1822,16,1,other,DSC_0837.JPG +4146,700,1960,15,5,other,DSC_0837.JPG +4150,1702,655,17,1,other,DSC_0837.JPG +4155,5359,1450,15,1,other,DSC_0837.JPG +4156,703,1486,15,5,other,DSC_0837.JPG +4160,4372,1879,15,1,other,DSC_0837.JPG +4165,4366,2116,17,1,other,DSC_0837.JPG +4166,4903,2167,15,1,other,DSC_0837.JPG +4171,4534,1513,17,1,other,DSC_0837.JPG +4173,706,1837,17,5,other,DSC_0837.JPG +4176,346,1957,16,1,other,DSC_0837.JPG +4178,4684,2287,15,1,other,DSC_0837.JPG +4179,3553,2299,16,1,other,DSC_0837.JPG +418,4813,202,17,5,other,DSC_0844.JPG +4180,3271,151,16,1,other,DSC_0837.JPG +4182,1816,469,15,1,other,DSC_0837.JPG +4183,2203,538,17,1,other,DSC_0837.JPG +4184,4264,670,16,1,other,DSC_0837.JPG +4185,2308,730,15,1,other,DSC_0837.JPG +4187,85,928,17,1,other,DSC_0837.JPG +4188,2758,1279,17,1,other,DSC_0837.JPG +4189,3742,1408,15,1,other,DSC_0837.JPG +4192,4261,1942,15,1,other,DSC_0837.JPG +4193,4369,1996,17,1,other,DSC_0837.JPG +4195,4117,2062,15,1,other,DSC_0837.JPG +4197,2392,2242,15,1,other,DSC_0837.JPG +4198,2920,2296,17,1,other,DSC_0837.JPG +4199,3913,46,15,1,other,DSC_0837.JPG +4200,3412,151,15,1,other,DSC_0837.JPG +4201,2995,154,17,1,other,DSC_0837.JPG +4203,5380,226,17,1,other,DSC_0837.JPG +4205,2347,415,16,1,other,DSC_0837.JPG +4211,1096,829,17,5,other,DSC_0837.JPG +4215,5395,1147,15,1,other,DSC_0837.JPG +4216,3784,1228,15,1,other,DSC_0837.JPG +4218,1591,1447,15,1,other,DSC_0837.JPG +4221,4561,1579,16,1,other,DSC_0837.JPG +4223,667,1780,16,1,other,DSC_0837.JPG +4224,4477,1819,15,1,other,DSC_0837.JPG +4225,634,1840,15,1,other,DSC_0837.JPG +4226,1723,2050,16,1,other,DSC_0837.JPG +4227,808,2140,17,1,other,DSC_0837.JPG +4228,1864,2164,15,1,other,DSC_0837.JPG +4229,4762,2167,15,1,other,DSC_0837.JPG +4231,2884,2230,15,1,other,DSC_0837.JPG +4232,2041,2233,15,1,other,DSC_0837.JPG +4233,4720,2341,15,1,other,DSC_0837.JPG +4234,4762,2395,15,1,other,DSC_0837.JPG +4236,2632,421,16,1,other,DSC_0837.JPG +4238,985,517,17,1,other,DSC_0837.JPG +4239,2341,793,15,1,other,DSC_0837.JPG +4240,4117,796,16,1,other,DSC_0837.JPG +4241,877,826,17,1,other,DSC_0837.JPG +4242,1165,835,17,5,other,DSC_0837.JPG +4243,3328,880,16,1,other,DSC_0837.JPG +4244,1129,895,17,5,other,DSC_0837.JPG +4249,5212,1450,15,1,other,DSC_0837.JPG +4252,5242,1636,15,1,other,DSC_0837.JPG +4254,598,1660,17,1,other,DSC_0837.JPG +4255,127,1702,17,1,other,DSC_0837.JPG +4258,235,1894,17,1,other,DSC_0837.JPG +4259,4693,1936,16,1,other,DSC_0837.JPG +4262,5158,2107,15,1,other,DSC_0837.JPG +4263,3901,2179,17,1,other,DSC_0837.JPG +4265,4045,2296,16,1,other,DSC_0837.JPG +4267,5239,487,17,1,other,DSC_0837.JPG +4268,5095,490,17,1,other,DSC_0837.JPG +4270,3511,607,17,1,other,DSC_0837.JPG +4271,3658,610,17,1,other,DSC_0837.JPG +4275,199,1108,15,1,other,DSC_0837.JPG +4279,5056,1576,15,5,other,DSC_0837.JPG +4282,4768,1936,15,1,other,DSC_0837.JPG +4283,3121,1948,17,1,other,DSC_0837.JPG +4285,4831,2281,15,1,other,DSC_0837.JPG +4286,3847,43,17,1,other,DSC_0837.JPG +4289,5065,298,17,1,other,DSC_0837.JPG +4293,76,430,16,1,other,DSC_0837.JPG +4295,3127,547,17,5,other,DSC_0837.JPG +4297,1021,709,16,1,other,DSC_0837.JPG +4300,1387,838,17,1,other,DSC_0837.JPG +4308,667,1426,15,5,other,DSC_0837.JPG +4309,4798,1510,16,1,other,DSC_0837.JPG +4310,562,1717,15,1,other,DSC_0837.JPG +4312,271,1831,15,1,other,DSC_0837.JPG +4313,4150,2119,15,1,other,DSC_0837.JPG +4315,4507,2233,17,1,other,DSC_0837.JPG +4316,3760,2290,17,1,other,DSC_0837.JPG +4317,5005,2338,16,1,other,DSC_0837.JPG +4318,4222,2353,15,1,other,DSC_0837.JPG +4319,4294,2353,15,1,other,DSC_0837.JPG +432,4492,124,17,1,other,DSC_0844.JPG +4320,3373,94,15,1,other,DSC_0837.JPG +4321,2881,352,17,5,other,DSC_0837.JPG +4323,2386,478,17,1,other,DSC_0837.JPG +4324,4117,670,17,1,other,DSC_0837.JPG +4326,769,886,17,1,other,DSC_0837.JPG +4332,4792,1402,15,1,other,DSC_0837.JPG +4334,4657,1630,17,1,other,DSC_0837.JPG +4335,4594,1636,17,1,other,DSC_0837.JPG +4336,4516,1879,17,1,other,DSC_0837.JPG +4338,2758,2020,15,1,other,DSC_0837.JPG +4339,1831,2107,15,1,other,DSC_0837.JPG +4340,1198,2206,17,1,other,DSC_0837.JPG +4341,3094,2245,16,1,other,DSC_0837.JPG +4342,3901,2299,15,1,other,DSC_0837.JPG +4343,1168,331,15,1,other,DSC_0837.JPG +4344,3808,352,17,1,other,DSC_0837.JPG +4346,1132,523,17,1,other,DSC_0837.JPG +4348,3871,604,15,1,other,DSC_0837.JPG +4349,1354,646,17,1,other,DSC_0837.JPG +4352,4408,1084,17,1,other,DSC_0837.JPG +4359,4483,1699,17,1,other,DSC_0837.JPG +4360,5020,1759,17,1,other,DSC_0837.JPG +4361,4657,1873,17,1,other,DSC_0837.JPG +4363,700,2077,17,1,other,DSC_0837.JPG +4364,1303,2149,15,5,other,DSC_0837.JPG +4366,4873,2227,17,1,other,DSC_0837.JPG +4367,3301,91,15,1,other,DSC_0837.JPG +4368,3316,346,17,1,other,DSC_0837.JPG +4369,2167,472,16,1,other,DSC_0837.JPG +437,4741,919,16,1,other,DSC_0844.JPG +4371,3373,610,16,1,other,DSC_0837.JPG +4372,2485,670,15,1,other,DSC_0837.JPG +4373,1528,709,17,1,other,DSC_0837.JPG +4377,4561,976,17,1,other,DSC_0837.JPG +4380,5173,1513,16,5,other,DSC_0837.JPG +4384,4444,1879,15,1,other,DSC_0837.JPG +4386,3163,2245,15,1,other,DSC_0837.JPG +4387,1798,2278,17,1,other,DSC_0837.JPG +4388,3091,2389,17,1,other,DSC_0837.JPG +4389,1672,337,17,1,other,DSC_0837.JPG +4390,2773,421,16,5,other,DSC_0837.JPG +4391,4225,736,15,1,other,DSC_0837.JPG +4395,4696,1690,16,1,other,DSC_0837.JPG +4398,4624,1819,15,1,other,DSC_0837.JPG +4399,5017,1876,15,1,other,DSC_0837.JPG +4400,4840,1936,15,1,other,DSC_0837.JPG +4402,3973,2062,16,5,other,DSC_0837.JPG +4403,988,2083,15,5,other,DSC_0837.JPG +4404,4438,2116,15,1,other,DSC_0837.JPG +4406,772,2197,15,1,other,DSC_0837.JPG +4407,2665,103,17,1,other,DSC_0837.JPG +4408,3031,223,15,1,other,DSC_0837.JPG +4410,2845,418,16,1,other,DSC_0837.JPG +4411,5275,427,17,1,other,DSC_0837.JPG +4412,1315,583,15,1,other,DSC_0837.JPG +4413,3619,670,16,1,other,DSC_0837.JPG +4415,49,1108,17,1,other,DSC_0837.JPG +4416,1309,1204,15,1,other,DSC_0837.JPG +4419,3358,1285,17,1,other,DSC_0837.JPG +4420,700,1369,16,5,other,DSC_0837.JPG +4421,3634,1468,15,1,other,DSC_0837.JPG +4423,3493,1591,15,1,other,DSC_0837.JPG +4426,4585,1879,15,1,other,DSC_0837.JPG +4429,5119,2158,15,1,other,DSC_0837.JPG +4430,4615,2170,15,1,other,DSC_0837.JPG +4432,808,82,15,1,other,DSC_0837.JPG +4433,2635,163,16,1,other,DSC_0837.JPG +4434,3100,217,16,1,other,DSC_0837.JPG +4439,949,829,17,1,other,DSC_0837.JPG +4441,4897,922,15,1,other,DSC_0837.JPG +4443,4522,1273,17,1,other,DSC_0837.JPG +4445,1702,1393,15,1,other,DSC_0837.JPG +4451,4441,1996,15,1,other,DSC_0837.JPG +4454,916,2080,15,1,other,DSC_0837.JPG +4456,2953,2233,15,1,other,DSC_0837.JPG +4457,4219,2233,15,1,other,DSC_0837.JPG +4458,4186,2293,16,1,other,DSC_0837.JPG +4459,4360,2350,17,1,other,DSC_0837.JPG +4460,841,28,16,1,other,DSC_0837.JPG +4461,1390,82,15,1,other,DSC_0837.JPG +4462,1678,88,17,1,other,DSC_0837.JPG +4465,3550,547,17,1,other,DSC_0837.JPG +4466,4156,733,16,1,other,DSC_0837.JPG +4474,5353,1819,15,1,other,DSC_0837.JPG +4475,1933,2170,15,1,other,DSC_0837.JPG +4476,3130,2182,15,1,other,DSC_0837.JPG +4477,5227,2212,15,1,other,DSC_0837.JPG +4478,1900,2227,15,1,other,DSC_0837.JPG +4479,4351,55,17,1,other,DSC_0837.JPG +4480,1213,136,17,1,other,DSC_0837.JPG +4483,3688,673,16,1,other,DSC_0837.JPG +4487,88,808,15,1,other,DSC_0837.JPG +4489,3121,919,15,1,other,DSC_0837.JPG +4490,4120,922,16,1,other,DSC_0837.JPG +4491,5362,1090,16,1,other,DSC_0837.JPG +4495,916,1372,17,1,other,DSC_0837.JPG +4496,4582,1456,17,1,other,DSC_0837.JPG +4498,3559,1585,16,1,other,DSC_0837.JPG +4499,778,1600,17,1,other,DSC_0837.JPG +4501,3445,1873,15,1,other,DSC_0837.JPG +4502,4873,1876,17,1,other,DSC_0837.JPG +4505,2908,2035,15,1,other,DSC_0837.JPG +4506,5080,2110,15,1,other,DSC_0837.JPG +4508,2608,2230,15,1,other,DSC_0837.JPG +4509,4903,2281,15,1,other,DSC_0837.JPG +4510,3622,2296,17,1,other,DSC_0837.JPG +4511,3478,154,16,1,other,DSC_0837.JPG +4514,1021,454,16,1,other,DSC_0837.JPG +4515,4297,733,17,1,other,DSC_0837.JPG +4516,3790,736,16,1,other,DSC_0837.JPG +4517,163,928,17,1,other,DSC_0837.JPG +452,823,2116,16,1,other,DSC_0844.JPG +4525,4444,1759,16,1,other,DSC_0837.JPG +4526,598,1777,16,1,other,DSC_0837.JPG +4527,5056,1819,15,1,other,DSC_0837.JPG +4528,844,1960,17,1,other,DSC_0837.JPG +4530,1858,148,17,1,other,DSC_0837.JPG +4531,5239,238,17,1,other,DSC_0837.JPG +4536,46,745,15,1,other,DSC_0837.JPG +4538,2941,982,15,1,other,DSC_0837.JPG +4539,3892,1168,15,1,other,DSC_0837.JPG +4541,3091,1402,15,1,other,DSC_0837.JPG +4546,2428,2182,15,1,other,DSC_0837.JPG +4548,2272,538,16,1,other,DSC_0837.JPG +4551,4453,913,17,1,other,DSC_0837.JPG +4556,4612,1531,16,1,other,DSC_0837.JPG +4562,3343,2065,15,1,other,DSC_0837.JPG +4563,4048,2065,17,1,other,DSC_0837.JPG +4564,3271,2185,15,1,other,DSC_0837.JPG +4565,1864,2284,15,1,other,DSC_0837.JPG +4566,4255,2290,15,1,other,DSC_0837.JPG +4567,2848,157,17,1,other,DSC_0837.JPG +4574,2593,487,17,1,other,DSC_0837.JPG +4575,1672,592,17,1,other,DSC_0837.JPG +4576,3970,799,16,1,other,DSC_0837.JPG +4581,2863,1219,15,5,other,DSC_0837.JPG +4582,4663,1411,17,1,other,DSC_0837.JPG +4585,526,1657,15,1,other,DSC_0837.JPG +4586,739,1897,17,1,other,DSC_0837.JPG +4587,4513,1993,15,1,other,DSC_0837.JPG +4590,4078,2239,17,1,other,DSC_0837.JPG +4591,1459,88,17,1,other,DSC_0837.JPG +4592,2311,91,15,1,other,DSC_0837.JPG +4593,3616,163,17,1,other,DSC_0837.JPG +4595,3379,211,15,1,other,DSC_0837.JPG +4597,4999,301,17,1,other,DSC_0837.JPG +4601,232,808,17,1,other,DSC_0837.JPG +4603,121,1582,17,1,other,DSC_0837.JPG +4605,703,1600,15,1,other,DSC_0837.JPG +4609,631,1717,17,1,other,DSC_0837.JPG +4611,163,1891,17,1,other,DSC_0837.JPG +4613,4192,2059,15,1,other,DSC_0837.JPG +4614,4333,2059,15,1,other,DSC_0837.JPG +4615,3904,2062,16,1,other,DSC_0837.JPG +4618,4942,2107,17,1,other,DSC_0837.JPG +4619,2713,2164,15,1,other,DSC_0837.JPG +4620,1690,2218,15,1,other,DSC_0837.JPG +4621,4147,2236,17,1,other,DSC_0837.JPG +4622,3202,154,16,1,other,DSC_0837.JPG +4624,5203,424,17,1,other,DSC_0837.JPG +4625,2911,544,17,1,other,DSC_0837.JPG +4627,1810,589,16,1,other,DSC_0837.JPG +4629,4156,859,15,1,other,DSC_0837.JPG +4630,4525,916,17,1,other,DSC_0837.JPG +4633,880,1078,17,5,other,DSC_0837.JPG +4634,919,1258,15,1,other,DSC_0837.JPG +4635,4774,1336,15,1,other,DSC_0837.JPG +4638,562,1837,16,5,other,DSC_0837.JPG +4639,2932,1846,16,1,other,DSC_0837.JPG +4640,952,2023,15,1,other,DSC_0837.JPG +4641,4834,2053,15,1,other,DSC_0837.JPG +4642,4432,2230,15,1,other,DSC_0837.JPG +4643,3520,2236,16,1,other,DSC_0837.JPG +4644,3238,2242,17,1,other,DSC_0837.JPG +4645,1654,2275,17,1,other,DSC_0837.JPG +4646,1723,2275,15,1,other,DSC_0837.JPG +4647,2128,142,15,1,other,DSC_0837.JPG +4649,2560,547,17,1,other,DSC_0837.JPG +4650,2170,598,17,1,other,DSC_0837.JPG +4652,1129,769,16,1,other,DSC_0837.JPG +4655,2704,1156,17,1,other,DSC_0837.JPG +4656,5434,1207,15,1,other,DSC_0837.JPG +4659,847,1372,16,1,other,DSC_0837.JPG +466,5146,1870,17,1,other,DSC_0844.JPG +4662,5161,1876,15,1,other,DSC_0837.JPG +4663,4327,2290,16,1,other,DSC_0837.JPG +4664,1600,340,15,1,other,DSC_0837.JPG +4665,3481,544,17,1,other,DSC_0837.JPG +4667,2236,598,16,5,other,DSC_0837.JPG +4669,880,700,15,1,other,DSC_0837.JPG +467,5032,1939,17,1,other,DSC_0844.JPG +4671,805,823,17,1,other,DSC_0837.JPG +4673,2794,1219,15,1,other,DSC_0837.JPG +4674,4849,1219,16,1,other,DSC_0837.JPG +4675,4600,1393,15,1,other,DSC_0837.JPG +4676,121,1459,17,1,other,DSC_0837.JPG +4678,3940,2002,15,1,other,DSC_0837.JPG +468,823,1993,15,1,other,DSC_0844.JPG +4681,3235,2122,17,1,other,DSC_0837.JPG +4682,3163,2125,15,1,other,DSC_0837.JPG +4683,952,2137,17,1,other,DSC_0837.JPG +4684,1654,2161,15,1,other,DSC_0837.JPG +4685,913,2197,15,1,other,DSC_0837.JPG +4686,988,2197,17,1,other,DSC_0837.JPG +4687,1057,2203,16,1,other,DSC_0837.JPG +4688,4582,2227,17,1,other,DSC_0837.JPG +4690,3310,214,17,1,other,DSC_0837.JPG +4693,3727,613,17,1,other,DSC_0837.JPG +4694,2830,925,15,1,other,DSC_0837.JPG +4696,4639,979,17,1,other,DSC_0837.JPG +4700,4630,1693,15,1,other,DSC_0837.JPG +4701,5197,1693,17,1,other,DSC_0837.JPG +4703,4519,1756,17,1,other,DSC_0837.JPG +4705,526,1894,17,1,other,DSC_0837.JPG +4706,3343,1933,16,1,other,DSC_0837.JPG +4708,667,2020,16,1,other,DSC_0837.JPG +4710,4507,2113,15,1,other,DSC_0837.JPG +4711,4258,2176,15,1,other,DSC_0837.JPG +4713,2500,2185,17,1,other,DSC_0837.JPG +4714,2248,2239,15,1,other,DSC_0837.JPG +4715,1936,2287,15,1,other,DSC_0837.JPG +4716,4918,58,17,1,other,DSC_0837.JPG +4719,1351,397,16,1,other,DSC_0837.JPG +4720,4369,733,16,1,other,DSC_0837.JPG +4723,4594,1153,17,1,other,DSC_0837.JPG +4733,1477,2212,15,1,other,DSC_0837.JPG +4734,1372,2266,16,1,other,DSC_0837.JPG +4735,3070,154,16,1,other,DSC_0837.JPG +4739,1990,529,16,1,other,DSC_0837.JPG +4740,1243,712,16,1,other,DSC_0837.JPG +4741,3898,799,16,1,other,DSC_0837.JPG +4742,163,811,15,1,other,DSC_0837.JPG +4743,2653,970,17,1,other,DSC_0837.JPG +4747,160,1768,17,1,other,DSC_0837.JPG +4748,880,2020,15,1,other,DSC_0837.JPG +4749,4906,2053,15,1,other,DSC_0837.JPG +4751,631,2194,15,1,other,DSC_0837.JPG +4752,2110,2236,15,1,other,DSC_0837.JPG +4753,949,2257,15,1,other,DSC_0837.JPG +4754,1159,2260,15,1,other,DSC_0837.JPG +4755,2497,2299,17,1,other,DSC_0837.JPG +4762,5197,1816,17,1,other,DSC_0837.JPG +4763,2953,1918,17,1,other,DSC_0837.JPG +4764,5014,1993,15,1,other,DSC_0837.JPG +4765,775,2080,15,1,other,DSC_0837.JPG +4766,2287,2179,15,1,other,DSC_0837.JPG +4767,5116,2275,15,1,other,DSC_0837.JPG +4768,4576,2350,15,1,other,DSC_0837.JPG +4770,4846,178,16,1,other,DSC_0837.JPG +4771,3418,412,17,5,other,DSC_0837.JPG +4773,1708,529,17,1,other,DSC_0837.JPG +4779,4438,1021,16,1,other,DSC_0837.JPG +4783,5119,2053,15,1,other,DSC_0837.JPG +4785,2038,2119,17,1,other,DSC_0837.JPG +4786,2746,2218,15,1,other,DSC_0837.JPG +4787,5281,2248,17,1,other,DSC_0837.JPG +4788,5041,2275,15,1,other,DSC_0837.JPG +4789,4117,2293,17,1,other,DSC_0837.JPG +4790,2959,2362,17,1,other,DSC_0837.JPG +4791,4879,118,16,1,other,DSC_0837.JPG +4792,4924,178,16,1,other,DSC_0837.JPG +4794,3622,547,17,5,other,DSC_0837.JPG +4795,3799,610,16,1,other,DSC_0837.JPG +4796,2929,1225,17,1,other,DSC_0837.JPG +48,2578,106,15,1,other,DSC_0844.JPG +4800,4798,1633,16,1,other,DSC_0837.JPG +4802,595,2017,16,1,other,DSC_0837.JPG +4803,5005,2224,15,1,other,DSC_0837.JPG +4804,5200,2272,15,1,other,DSC_0837.JPG +4805,298,82,17,1,other,DSC_0837.JPG +4806,1957,205,17,1,other,DSC_0837.JPG +4811,3172,1408,17,1,other,DSC_0837.JPG +4814,418,1954,17,1,other,DSC_0837.JPG +4818,1339,2209,17,1,other,DSC_0837.JPG +4820,1234,2263,17,1,other,DSC_0837.JPG +4821,2431,34,17,1,other,DSC_0837.JPG +4823,2524,484,16,1,other,DSC_0837.JPG +4824,1279,649,17,1,other,DSC_0837.JPG +4827,2794,1102,15,1,other,DSC_0837.JPG +483,5047,1450,17,1,other,DSC_0844.JPG +4834,199,1828,17,1,other,DSC_0837.JPG +4836,2536,2122,15,1,other,DSC_0837.JPG +4838,5080,2215,15,1,other,DSC_0837.JPG +4839,3688,2293,17,1,other,DSC_0837.JPG +4840,5113,2389,15,1,other,DSC_0837.JPG +4841,337,22,16,1,other,DSC_0837.JPG +4844,5137,421,17,1,other,DSC_0837.JPG +4847,4012,985,17,1,other,DSC_0837.JPG +4850,4480,1087,16,1,other,DSC_0837.JPG +4852,5434,1573,17,1,other,DSC_0837.JPG +4855,2359,1585,16,1,other,DSC_0837.JPG +4857,346,1711,17,1,other,DSC_0837.JPG +4861,4762,2050,15,1,other,DSC_0837.JPG +4862,4798,2110,15,1,other,DSC_0837.JPG +4863,1090,2143,17,5,other,DSC_0837.JPG +4864,1723,2164,15,1,other,DSC_0837.JPG +4865,1405,2209,15,1,other,DSC_0837.JPG +4867,4651,2227,16,1,other,DSC_0837.JPG +4868,1057,2320,15,1,other,DSC_0837.JPG +4869,1642,25,17,1,other,DSC_0837.JPG +4870,2347,31,17,1,other,DSC_0837.JPG +4871,3772,46,17,1,other,DSC_0837.JPG +4872,1354,139,15,1,other,DSC_0837.JPG +4875,625,883,16,1,other,DSC_0837.JPG +4877,772,1012,17,5,other,DSC_0837.JPG +4881,3598,1411,15,1,other,DSC_0837.JPG +4882,5089,1759,16,1,other,DSC_0837.JPG +4884,4975,2050,17,1,other,DSC_0837.JPG +4885,4972,2278,15,1,other,DSC_0837.JPG +4886,3985,46,17,1,other,DSC_0837.JPG +4887,3508,100,17,1,other,DSC_0837.JPG +4888,3340,154,15,1,other,DSC_0837.JPG +4889,3268,547,17,1,other,DSC_0837.JPG +4890,4549,673,16,1,other,DSC_0837.JPG +4891,3934,736,17,1,other,DSC_0837.JPG +4894,2764,1156,15,1,other,DSC_0837.JPG +4895,2974,1159,17,1,other,DSC_0837.JPG +4899,982,1966,17,1,other,DSC_0837.JPG +4900,3241,2014,15,1,other,DSC_0837.JPG +4902,2179,2236,15,1,other,DSC_0837.JPG +4903,667,2254,15,1,other,DSC_0837.JPG +4904,3061,2302,15,1,other,DSC_0837.JPG +4905,5305,64,17,1,other,DSC_0837.JPG +4906,2026,205,15,1,other,DSC_0837.JPG +4909,2701,424,17,1,other,DSC_0837.JPG +4910,3517,481,16,1,other,DSC_0837.JPG +4911,3697,547,17,1,other,DSC_0837.JPG +4913,1096,583,16,5,other,DSC_0837.JPG +4914,5440,733,17,1,other,DSC_0837.JPG +4915,2626,1030,17,1,other,DSC_0837.JPG +4917,2638,1150,17,1,other,DSC_0837.JPG +492,3265,2296,17,1,other,DSC_0844.JPG +4920,4735,1282,16,1,other,DSC_0837.JPG +4921,2731,1333,15,1,other,DSC_0837.JPG +4923,160,1528,17,1,other,DSC_0837.JPG +4924,628,2080,15,1,other,DSC_0837.JPG +4925,526,2137,17,1,other,DSC_0837.JPG +4926,376,2251,15,1,other,DSC_0837.JPG +4927,3796,2353,15,1,other,DSC_0837.JPG +493,880,79,16,1,other,DSC_0844.JPG +4930,124,745,17,1,other,DSC_0837.JPG +4931,841,763,17,1,other,DSC_0837.JPG +4934,157,1279,17,1,other,DSC_0837.JPG +4935,5449,1450,15,1,other,DSC_0837.JPG +4936,5320,1990,15,1,other,DSC_0837.JPG +4937,3163,2008,17,1,other,DSC_0837.JPG +4939,4081,2119,17,1,other,DSC_0837.JPG +4940,5194,2161,15,1,other,DSC_0837.JPG +4941,1516,2269,15,1,other,DSC_0837.JPG +4942,2281,2299,15,1,other,DSC_0837.JPG +4943,1564,403,17,1,other,DSC_0837.JPG +4949,127,1336,15,1,other,DSC_0837.JPG +495,3172,313,17,5,other,DSC_0844.JPG +4950,5425,1693,15,1,other,DSC_0837.JPG +4951,526,1774,15,1,other,DSC_0837.JPG +4954,913,1960,15,1,other,DSC_0837.JPG +4955,5077,2329,15,1,other,DSC_0837.JPG +4956,5293,178,15,1,other,DSC_0837.JPG +4958,2698,544,17,1,other,DSC_0837.JPG +4959,1636,649,17,1,other,DSC_0837.JPG +4960,4333,673,17,1,other,DSC_0837.JPG +4961,3829,799,16,1,other,DSC_0837.JPG +4962,1168,958,16,5,other,DSC_0837.JPG +4963,4294,1015,17,1,other,DSC_0837.JPG +4965,5446,1324,16,1,other,DSC_0837.JPG +4969,3010,1717,17,1,other,DSC_0837.JPG +4970,5158,1756,15,1,other,DSC_0837.JPG +4972,385,1894,15,1,other,DSC_0837.JPG +4973,877,2137,17,1,other,DSC_0837.JPG +4975,808,2254,17,1,other,DSC_0837.JPG +4976,673,82,15,1,other,DSC_0837.JPG +4977,2809,88,15,1,other,DSC_0837.JPG +4978,3547,163,17,1,other,DSC_0837.JPG +4980,4324,949,16,1,other,DSC_0837.JPG +4983,160,1162,17,1,other,DSC_0837.JPG +4985,556,1480,15,1,other,DSC_0837.JPG +4987,3421,1711,16,1,other,DSC_0837.JPG +4989,457,2017,15,1,other,DSC_0837.JPG +4990,3661,2122,15,1,other,DSC_0837.JPG +4991,3592,2239,17,1,other,DSC_0837.JPG +4992,4435,2350,15,1,other,DSC_0837.JPG +4993,1315,79,15,1,other,DSC_0837.JPG +4994,1990,145,17,1,other,DSC_0837.JPG +4997,1207,775,15,1,other,DSC_0837.JPG +4998,4258,799,15,1,other,DSC_0837.JPG +4999,1240,832,16,5,other,DSC_0837.JPG +5,2086,103,16,1,other,DSC_0844.JPG +5004,3022,1399,17,1,other,DSC_0837.JPG +5005,4663,1480,17,1,other,DSC_0837.JPG +5006,4726,1507,16,1,other,DSC_0837.JPG +5009,4942,1996,15,1,other,DSC_0837.JPG +5010,2608,2119,15,1,other,DSC_0837.JPG +5011,631,2308,15,1,other,DSC_0837.JPG +5012,1789,148,15,1,other,DSC_0837.JPG +5013,3445,214,17,1,other,DSC_0837.JPG +5020,808,1312,16,5,other,DSC_0837.JPG +5023,703,2194,17,1,other,DSC_0837.JPG +5024,3448,2239,15,1,other,DSC_0837.JPG +5025,415,2308,15,1,other,DSC_0837.JPG +5026,1549,2326,15,1,other,DSC_0837.JPG +5027,178,25,17,1,other,DSC_0837.JPG +5029,337,382,17,1,other,DSC_0837.JPG +503,4807,1042,16,1,other,DSC_0844.JPG +5030,1633,403,17,1,other,DSC_0837.JPG +5031,2491,421,17,5,other,DSC_0837.JPG +5036,2836,2437,15,1,other,DSC_0837.JPG +5037,646,16,17,1,other,DSC_0837.JPG +5038,2845,28,17,1,other,DSC_0837.JPG +5039,73,310,16,1,other,DSC_0837.JPG +5041,3412,547,17,1,other,DSC_0837.JPG +5042,4222,859,17,1,other,DSC_0837.JPG +5043,2614,916,17,1,other,DSC_0837.JPG +5050,1234,2149,15,5,other,DSC_0837.JPG +5051,4834,2164,17,1,other,DSC_0837.JPG +5052,4396,2293,17,1,other,DSC_0837.JPG +5053,3973,2299,15,1,other,DSC_0837.JPG +5054,5155,2329,15,1,other,DSC_0837.JPG +5055,1492,28,17,1,other,DSC_0837.JPG +5056,994,139,15,1,other,DSC_0837.JPG +5057,1927,142,15,1,other,DSC_0837.JPG +506,5272,1432,17,1,other,DSC_0844.JPG +5060,1096,709,15,1,other,DSC_0837.JPG +5062,2731,1219,15,1,other,DSC_0837.JPG +5063,3130,1348,15,1,other,DSC_0837.JPG +5067,5356,1933,15,1,other,DSC_0837.JPG +5068,736,2020,15,1,other,DSC_0837.JPG +5069,565,2077,17,1,other,DSC_0837.JPG +5071,1021,2143,15,1,other,DSC_0837.JPG +5072,664,445,16,5,other,DSC_0837.JPG +5077,4663,1276,17,1,other,DSC_0837.JPG +5080,487,1720,17,1,other,DSC_0837.JPG +5081,2641,2065,15,1,other,DSC_0837.JPG +5082,2989,2296,17,1,other,DSC_0837.JPG +5083,2734,94,17,1,other,DSC_0837.JPG +5085,1201,646,15,1,other,DSC_0837.JPG +5089,2695,1393,15,1,other,DSC_0837.JPG +509,331,1840,17,1,other,DSC_0844.JPG +5090,5425,1816,15,1,other,DSC_0837.JPG +5093,4330,2173,15,1,other,DSC_0837.JPG +5094,844,2200,17,1,other,DSC_0837.JPG +5095,448,2248,17,1,other,DSC_0837.JPG +5096,256,22,16,1,other,DSC_0837.JPG +5097,601,79,17,1,other,DSC_0837.JPG +5098,4591,490,15,1,other,DSC_0837.JPG +5099,1777,529,17,1,other,DSC_0837.JPG +510,5143,1993,15,1,other,DSC_0844.JPG +5100,4522,1033,15,1,other,DSC_0837.JPG +5101,88,1042,17,1,other,DSC_0837.JPG +5105,562,1960,15,1,other,DSC_0837.JPG +5106,523,2014,15,1,other,DSC_0837.JPG +5107,3124,2062,17,1,other,DSC_0837.JPG +5108,208,2293,17,1,other,DSC_0837.JPG +5109,2161,88,15,1,other,DSC_0837.JPG +511,787,2053,15,1,other,DSC_0844.JPG +5112,1423,523,16,1,other,DSC_0837.JPG +5116,3025,1942,17,1,other,DSC_0837.JPG +5117,5011,2110,15,1,other,DSC_0837.JPG +5118,412,2194,15,1,other,DSC_0837.JPG +5119,3412,2296,17,1,other,DSC_0837.JPG +5120,1528,85,16,1,other,DSC_0837.JPG +5121,706,136,17,1,other,DSC_0837.JPG +5123,1240,334,15,5,other,DSC_0837.JPG +5124,4471,796,16,1,other,DSC_0837.JPG +5126,2383,973,17,1,other,DSC_0837.JPG +5130,4873,1996,15,1,other,DSC_0837.JPG +5132,490,2074,15,1,other,DSC_0837.JPG +5134,340,2194,17,1,other,DSC_0837.JPG +5135,3484,2296,15,1,other,DSC_0837.JPG +5136,3136,154,15,1,other,DSC_0837.JPG +5137,1171,205,16,5,other,DSC_0837.JPG +5139,1240,583,17,1,other,DSC_0837.JPG +514,1339,148,15,1,other,DSC_0844.JPG +5141,2932,1339,17,1,other,DSC_0837.JPG +5145,202,2071,17,1,other,DSC_0837.JPG +5146,595,2140,17,1,other,DSC_0837.JPG +5147,3622,40,17,1,other,DSC_0837.JPG +5148,1066,142,17,1,other,DSC_0837.JPG +5149,3550,667,15,1,other,DSC_0837.JPG +515,586,196,15,1,other,DSC_0844.JPG +5153,2449,856,15,1,other,DSC_0837.JPG +5154,1201,895,17,5,other,DSC_0837.JPG +5156,2734,1093,15,1,other,DSC_0837.JPG +5159,3379,1873,17,1,other,DSC_0837.JPG +5160,5260,127,17,1,other,DSC_0837.JPG +5161,2275,148,15,5,other,DSC_0837.JPG +5164,2665,1087,17,1,other,DSC_0837.JPG +5165,346,2077,15,1,other,DSC_0837.JPG +5167,4159,358,17,1,other,DSC_0837.JPG +5168,2515,859,15,1,other,DSC_0837.JPG +5170,43,976,16,1,other,DSC_0837.JPG +5171,3382,991,15,1,other,DSC_0837.JPG +5172,3331,1033,15,1,other,DSC_0837.JPG +5175,202,1957,17,1,other,DSC_0837.JPG +5176,1303,2266,15,1,other,DSC_0837.JPG +5178,4399,796,17,1,other,DSC_0837.JPG +5179,4291,874,16,1,other,DSC_0837.JPG +5182,235,2131,15,1,other,DSC_0837.JPG +5183,2353,2299,15,1,other,DSC_0837.JPG +5184,988,2314,17,1,other,DSC_0837.JPG +5185,1126,2320,15,1,other,DSC_0837.JPG +5186,4150,2353,15,1,other,DSC_0837.JPG +5188,2551,796,17,1,other,DSC_0837.JPG +5192,4870,2110,15,1,other,DSC_0837.JPG +5193,880,2254,17,1,other,DSC_0837.JPG +5194,1288,133,17,1,other,DSC_0837.JPG +5196,343,997,17,1,other,DSC_0837.JPG +5197,3301,1165,16,1,other,DSC_0837.JPG +5198,199,1468,17,1,other,DSC_0837.JPG +52,3319,55,16,1,other,DSC_0844.JPG +5201,1336,2323,15,1,other,DSC_0837.JPG +5203,841,889,17,5,other,DSC_0837.JPG +5204,2584,973,17,1,other,DSC_0837.JPG +5206,3205,2293,15,1,other,DSC_0837.JPG +5207,775,2311,17,1,other,DSC_0837.JPG +5208,2206,409,15,1,other,DSC_0837.JPG +5210,4426,859,15,1,other,DSC_0837.JPG +5215,3424,1330,17,1,other,DSC_0837.JPG +5220,3418,1810,15,1,other,DSC_0837.JPG +5221,274,2188,15,1,other,DSC_0837.JPG +5222,3940,2359,17,1,other,DSC_0837.JPG +5223,1720,28,16,1,other,DSC_0837.JPG +5224,3169,91,17,1,other,DSC_0837.JPG +5226,1096,331,16,5,other,DSC_0837.JPG +5229,127,991,15,1,other,DSC_0837.JPG +5230,2998,1345,15,1,other,DSC_0837.JPG +5233,5317,2107,15,1,other,DSC_0837.JPG +5234,592,2248,17,1,other,DSC_0837.JPG +5235,1582,2269,17,1,other,DSC_0837.JPG +5236,1828,2335,17,1,other,DSC_0837.JPG +5237,2179,2344,17,1,other,DSC_0837.JPG +5238,4867,2344,17,1,other,DSC_0837.JPG +5239,5308,2374,15,1,other,DSC_0837.JPG +5242,556,2191,17,1,other,DSC_0837.JPG +5243,2539,2239,15,1,other,DSC_0837.JPG +5244,2002,2290,17,1,other,DSC_0837.JPG +5245,2848,2293,17,1,other,DSC_0837.JPG +5246,913,2314,15,1,other,DSC_0837.JPG +5247,3301,2374,17,1,other,DSC_0837.JPG +5248,3541,46,17,1,other,DSC_0837.JPG +5249,1825,85,15,1,other,DSC_0837.JPG +525,4975,1453,17,1,other,DSC_0844.JPG +5250,3208,283,17,1,other,DSC_0837.JPG +5258,310,2017,15,1,other,DSC_0837.JPG +5259,3385,2362,17,1,other,DSC_0837.JPG +5262,4501,859,17,1,other,DSC_0837.JPG +5266,3016,2008,15,1,other,DSC_0837.JPG +5267,415,2074,15,1,other,DSC_0837.JPG +5268,4939,2224,15,1,other,DSC_0837.JPG +5269,2575,2293,17,1,other,DSC_0837.JPG +5270,4933,2341,15,1,other,DSC_0837.JPG +5271,4504,2350,15,1,other,DSC_0837.JPG +5272,1108,76,17,1,other,DSC_0837.JPG +5273,1141,142,17,1,other,DSC_0837.JPG +5276,3196,805,16,1,other,DSC_0837.JPG +5277,4249,958,15,1,other,DSC_0837.JPG +5278,121,1105,15,1,other,DSC_0837.JPG +5281,232,1537,16,1,other,DSC_0837.JPG +5282,1759,88,15,1,other,DSC_0837.JPG +5283,5200,181,17,1,other,DSC_0837.JPG +5288,2893,1900,15,1,other,DSC_0837.JPG +5289,2092,82,17,1,other,DSC_0837.JPG +5294,307,1648,17,1,other,DSC_0837.JPG +5296,127,1948,15,1,other,DSC_0837.JPG +5297,382,2131,17,1,other,DSC_0837.JPG +5298,667,2140,17,1,other,DSC_0837.JPG +5299,2275,31,15,1,other,DSC_0837.JPG +530,856,2056,15,1,other,DSC_0844.JPG +5300,2236,199,17,1,other,DSC_0837.JPG +5305,160,1399,15,1,other,DSC_0837.JPG +5306,2662,1450,15,1,other,DSC_0837.JPG +5309,193,1342,17,1,other,DSC_0837.JPG +531,1450,85,17,1,other,DSC_0844.JPG +5311,91,1645,15,1,other,DSC_0837.JPG +5312,310,2248,17,1,other,DSC_0837.JPG +5313,1420,28,15,1,other,DSC_0837.JPG +5315,2722,982,15,1,other,DSC_0837.JPG +5316,2692,1033,15,1,other,DSC_0837.JPG +532,622,130,17,1,other,DSC_0844.JPG +5320,271,1591,17,1,other,DSC_0837.JPG +5321,238,2236,15,1,other,DSC_0837.JPG +5322,1198,2317,17,1,other,DSC_0837.JPG +5323,745,82,17,1,other,DSC_0837.JPG +5324,109,367,15,5,other,DSC_0837.JPG +533,1726,223,16,1,other,DSC_0844.JPG +5330,3079,1891,15,1,other,DSC_0837.JPG +5332,2830,2029,17,1,other,DSC_0837.JPG +5333,520,2248,17,1,other,DSC_0837.JPG +5334,1618,2329,15,1,other,DSC_0837.JPG +5335,1690,2332,15,1,other,DSC_0837.JPG +5336,3397,37,15,1,other,DSC_0837.JPG +5337,4852,58,17,1,other,DSC_0837.JPG +5344,3466,1282,17,1,other,DSC_0837.JPG +5345,415,1711,17,1,other,DSC_0837.JPG +5346,91,1765,16,1,other,DSC_0837.JPG +5347,3640,2185,15,1,other,DSC_0837.JPG +5348,4009,2359,15,1,other,DSC_0837.JPG +5349,2665,2428,16,1,other,DSC_0837.JPG +5350,5221,2455,16,1,other,DSC_0837.JPG +5351,2056,136,15,1,other,DSC_0837.JPG +5352,94,1159,17,1,other,DSC_0837.JPG +5354,2203,1546,16,1,other,DSC_0837.JPG +5355,3196,1951,17,1,other,DSC_0837.JPG +5356,1267,2317,16,1,other,DSC_0837.JPG +5357,2374,2362,17,1,other,DSC_0837.JPG +5358,3442,91,16,1,other,DSC_0837.JPG +5360,49,493,15,1,other,DSC_0837.JPG +5361,3385,1057,15,1,other,DSC_0837.JPG +5362,94,1396,15,1,other,DSC_0837.JPG +5363,3349,1705,17,1,other,DSC_0837.JPG +5364,5044,2164,17,1,other,DSC_0837.JPG +5365,1126,2206,17,5,other,DSC_0837.JPG +5366,1477,2326,15,1,other,DSC_0837.JPG +5367,1132,262,15,5,other,DSC_0837.JPG +5368,2806,358,15,5,other,DSC_0837.JPG +5373,3121,1474,18,1,other,DSC_0837.JPG +5376,3025,2353,15,1,other,DSC_0837.JPG +5377,3103,94,17,1,other,DSC_0837.JPG +538,4978,1333,17,1,other,DSC_0844.JPG +5380,127,1219,17,1,other,DSC_0837.JPG +5381,226,1285,15,1,other,DSC_0837.JPG +5382,2143,2293,15,1,other,DSC_0837.JPG +5383,2767,31,16,1,other,DSC_0837.JPG +5386,3004,1870,17,1,other,DSC_0837.JPG +5387,2959,1981,16,1,other,DSC_0837.JPG +5388,2074,2287,17,1,other,DSC_0837.JPG +5389,487,2311,15,1,other,DSC_0837.JPG +5390,2602,70,17,1,other,DSC_0837.JPG +5391,2665,1219,17,1,other,DSC_0837.JPG +5393,232,2014,15,1,other,DSC_0837.JPG +5394,5257,2317,17,1,other,DSC_0837.JPG +5396,3223,2362,17,1,other,DSC_0837.JPG +5397,5416,280,17,1,other,DSC_0837.JPG +5398,4327,799,17,1,other,DSC_0837.JPG +5400,3397,1651,17,1,other,DSC_0837.JPG +5401,4399,2413,15,1,other,DSC_0837.JPG +5402,2752,2431,17,1,other,DSC_0837.JPG +5403,3004,31,15,1,other,DSC_0837.JPG +5406,2539,919,17,1,other,DSC_0837.JPG +5409,2143,1672,17,1,other,DSC_0837.JPG +541,2644,238,15,1,other,DSC_0844.JPG +5411,3517,2350,17,1,other,DSC_0837.JPG +5412,4081,2353,17,1,other,DSC_0837.JPG +5413,451,571,17,5,other,DSC_0837.JPG +5414,841,1012,17,5,other,DSC_0837.JPG +5415,163,1045,17,1,other,DSC_0837.JPG +5417,2032,85,15,1,other,DSC_0837.JPG +5418,3037,88,15,1,other,DSC_0837.JPG +542,2293,241,17,1,other,DSC_0844.JPG +5421,1561,25,17,1,other,DSC_0837.JPG +5422,2197,34,15,1,other,DSC_0837.JPG +5423,1891,202,15,1,other,DSC_0837.JPG +5425,2632,1282,17,1,other,DSC_0837.JPG +5426,2635,1384,15,1,other,DSC_0837.JPG +5427,343,2311,15,1,other,DSC_0837.JPG +5428,3868,2356,17,1,other,DSC_0837.JPG +5429,2935,2428,17,1,other,DSC_0837.JPG +5430,2668,1327,17,1,other,DSC_0837.JPG +5432,3448,2353,17,1,other,DSC_0837.JPG +5434,160,691,17,1,other,DSC_0837.JPG +5436,3421,820,16,1,other,DSC_0837.JPG +5440,31,1507,17,1,other,DSC_0837.JPG +5442,163,2008,16,1,other,DSC_0837.JPG +5443,1408,2323,17,1,other,DSC_0837.JPG +5444,2629,2359,16,1,other,DSC_0837.JPG +5445,3418,2419,15,1,other,DSC_0837.JPG +5446,2923,28,16,1,other,DSC_0837.JPG +5447,37,865,17,1,other,DSC_0837.JPG +5448,2476,904,15,1,other,DSC_0837.JPG +5449,3316,1840,17,1,other,DSC_0837.JPG +5450,268,2077,15,1,other,DSC_0837.JPG +5451,4468,2404,17,1,other,DSC_0837.JPG +5452,2398,2425,17,1,other,DSC_0837.JPG +5453,22,181,17,1,other,DSC_0837.JPG +5454,3073,1342,17,1,other,DSC_0837.JPG +5455,61,2170,17,1,other,DSC_0837.JPG +5456,3724,2353,15,1,other,DSC_0837.JPG +5457,1267,22,15,1,other,DSC_0837.JPG +5460,85,1519,17,1,other,DSC_0837.JPG +5461,166,2116,15,1,other,DSC_0837.JPG +5462,3019,2425,17,1,other,DSC_0837.JPG +5463,3475,886,16,1,other,DSC_0837.JPG +5466,52,1699,16,1,other,DSC_0837.JPG +5468,487,2194,15,1,other,DSC_0837.JPG +5469,112,2329,17,1,other,DSC_0837.JPG +5470,250,2347,15,1,other,DSC_0837.JPG +5471,5200,2383,17,1,other,DSC_0837.JPG +5472,2074,2398,17,1,other,DSC_0837.JPG +5473,4825,2401,17,1,other,DSC_0837.JPG +5475,2422,1033,15,1,other,DSC_0837.JPG +5478,454,2131,15,1,other,DSC_0837.JPG +5479,4966,2404,15,1,other,DSC_0837.JPG +5480,772,28,15,1,other,DSC_0837.JPG +5484,304,2134,17,1,other,DSC_0837.JPG +5486,844,2314,15,1,other,DSC_0837.JPG +5487,34,253,15,1,other,DSC_0837.JPG +5489,5356,2053,15,1,other,DSC_0837.JPG +5490,2677,2224,15,1,other,DSC_0837.JPG +5491,271,2296,15,1,other,DSC_0837.JPG +5492,3655,2350,15,1,other,DSC_0837.JPG +5493,3553,2398,15,1,other,DSC_0837.JPG +5494,991,16,16,5,other,DSC_0837.JPG +5496,2461,964,17,1,other,DSC_0837.JPG +5497,2767,1399,17,1,other,DSC_0837.JPG +5498,3001,1558,17,1,other,DSC_0837.JPG +5500,106,2227,17,1,other,DSC_0837.JPG +5501,175,2230,15,1,other,DSC_0837.JPG +5502,2542,2371,17,1,other,DSC_0837.JPG +5503,3199,25,17,1,other,DSC_0837.JPG +5504,3388,916,16,1,other,DSC_0837.JPG +5506,91,1999,15,1,other,DSC_0837.JPG +5507,2887,2374,15,1,other,DSC_0837.JPG +5508,40,34,17,1,other,DSC_0837.JPG +5509,97,1885,15,1,other,DSC_0837.JPG +5510,559,2302,17,1,other,DSC_0837.JPG +5511,1900,2341,17,1,other,DSC_0837.JPG +5512,4648,2356,15,1,other,DSC_0837.JPG +5513,3169,2422,15,1,other,DSC_0837.JPG +5514,5449,208,15,1,other,DSC_0837.JPG +5519,64,2275,15,1,other,DSC_0837.JPG +5520,2107,2347,15,1,other,DSC_0837.JPG +5521,3295,25,17,1,other,DSC_0837.JPG +5522,268,1351,17,1,other,DSC_0837.JPG +5524,3046,1459,17,1,other,DSC_0837.JPG +5525,2179,1612,15,1,other,DSC_0837.JPG +5526,4900,2404,16,1,other,DSC_0837.JPG +5527,4249,2410,17,1,other,DSC_0837.JPG +5528,4540,2410,17,1,other,DSC_0837.JPG +5529,4117,2416,17,1,other,DSC_0837.JPG +5530,2590,2437,15,1,other,DSC_0837.JPG +5534,2698,1276,15,1,other,DSC_0837.JPG +5537,1759,2332,15,1,other,DSC_0837.JPG +5538,5035,2389,17,1,other,DSC_0837.JPG +5539,709,19,15,1,other,DSC_0837.JPG +5540,2371,1129,16,1,other,DSC_0837.JPG +5542,3589,2347,15,1,other,DSC_0837.JPG +5543,574,25,15,1,other,DSC_0837.JPG +5544,2866,985,15,1,other,DSC_0837.JPG +5545,2791,2365,16,1,other,DSC_0837.JPG +5546,1795,2383,15,1,other,DSC_0837.JPG +5549,3070,1546,16,1,other,DSC_0837.JPG +5550,5455,1750,17,1,other,DSC_0837.JPG +5551,2248,2353,17,1,other,DSC_0837.JPG +5552,742,2356,15,1,other,DSC_0837.JPG +5553,385,2362,15,1,other,DSC_0837.JPG +5556,40,1423,17,1,other,DSC_0837.JPG +5557,2968,1489,15,1,other,DSC_0837.JPG +5558,3424,1588,16,1,other,DSC_0837.JPG +5559,5395,1996,17,1,other,DSC_0837.JPG +5560,2317,2407,15,1,other,DSC_0837.JPG +5563,2890,1477,15,1,other,DSC_0837.JPG +5566,211,2398,15,1,other,DSC_0837.JPG +5569,3475,973,17,1,other,DSC_0837.JPG +5570,3523,1036,17,1,other,DSC_0837.JPG +5573,5464,1630,15,1,other,DSC_0837.JPG +5574,55,1825,15,1,other,DSC_0837.JPG +5575,5461,1879,17,1,other,DSC_0837.JPG +5576,49,1933,17,1,other,DSC_0837.JPG +5577,523,2356,17,1,other,DSC_0837.JPG +5578,31,103,16,1,other,DSC_0837.JPG +5581,2821,1480,17,1,other,DSC_0837.JPG +5582,2287,1555,15,1,other,DSC_0837.JPG +5584,2038,2344,15,1,other,DSC_0837.JPG +5585,451,2365,17,1,other,DSC_0837.JPG +5586,2449,2365,17,1,other,DSC_0837.JPG +5587,1252,82,15,1,other,DSC_0837.JPG +5591,2593,1207,15,1,other,DSC_0837.JPG +5592,2956,1408,15,1,other,DSC_0837.JPG +5593,3292,1759,17,1,other,DSC_0837.JPG +5594,3361,1786,17,1,other,DSC_0837.JPG +5595,3343,2425,17,1,other,DSC_0837.JPG +5596,3244,2434,15,1,other,DSC_0837.JPG +5597,2488,2443,17,1,other,DSC_0837.JPG +5598,1174,67,17,1,other,DSC_0837.JPG +5602,2515,1033,16,1,other,DSC_0837.JPG +5605,706,2305,15,1,other,DSC_0837.JPG +5608,19,1042,15,1,other,DSC_0837.JPG +5609,88,1279,15,1,other,DSC_0837.JPG +5611,4330,2419,17,1,other,DSC_0837.JPG +5616,3085,28,16,1,other,DSC_0837.JPG +5617,2524,31,17,1,other,DSC_0837.JPG +562,4765,2221,15,1,other,DSC_0844.JPG +5623,5431,1933,17,1,other,DSC_0837.JPG +5624,3277,1945,15,1,other,DSC_0837.JPG +5625,1342,16,16,1,other,DSC_0837.JPG +5626,3235,94,17,1,other,DSC_0837.JPG +5627,5326,115,15,1,other,DSC_0837.JPG +563,2470,46,15,1,other,DSC_0844.JPG +5631,595,2365,15,1,other,DSC_0837.JPG +5632,286,2407,15,1,other,DSC_0837.JPG +5633,1060,19,15,5,other,DSC_0837.JPG +5634,3466,37,15,1,other,DSC_0837.JPG +5635,5359,166,15,1,other,DSC_0837.JPG +5638,2713,2350,17,1,other,DSC_0837.JPG +5639,1654,2377,15,1,other,DSC_0837.JPG +564,1804,94,16,1,other,DSC_0844.JPG +5640,2005,2392,15,1,other,DSC_0837.JPG +5641,5134,2446,15,1,other,DSC_0837.JPG +5642,2122,28,15,1,other,DSC_0837.JPG +5647,196,2179,17,1,other,DSC_0837.JPG +5648,583,1306,17,1,other,DSC_0837.JPG +5653,97,2113,15,1,other,DSC_0837.JPG +5654,130,2170,15,1,other,DSC_0837.JPG +5658,49,1339,17,1,other,DSC_0837.JPG +5659,4051,2419,15,1,other,DSC_0837.JPG +5660,2680,34,17,1,other,DSC_0837.JPG +5663,61,1219,15,1,other,DSC_0837.JPG +5666,5464,1516,15,1,other,DSC_0837.JPG +5667,3157,1867,17,1,other,DSC_0837.JPG +5668,127,2059,15,1,other,DSC_0837.JPG +5671,2317,2350,15,1,other,DSC_0837.JPG +5672,1798,19,15,1,other,DSC_0837.JPG +5677,139,2278,17,1,other,DSC_0837.JPG +5678,1966,2341,17,1,other,DSC_0837.JPG +5679,952,2365,15,1,other,DSC_0837.JPG +568,4120,535,16,1,other,DSC_0844.JPG +5682,13,811,17,1,other,DSC_0837.JPG +5684,19,331,15,1,other,DSC_0837.JPG +5695,55,2062,17,1,other,DSC_0837.JPG +5696,5338,2299,15,1,other,DSC_0837.JPG +5697,49,2341,17,1,other,DSC_0837.JPG +5698,1021,2365,15,1,other,DSC_0837.JPG +5699,1090,2377,15,1,other,DSC_0837.JPG +5702,814,2368,15,1,other,DSC_0837.JPG +5703,151,2392,15,1,other,DSC_0837.JPG +5710,37,1753,17,1,other,DSC_0837.JPG +5711,3898,2410,15,1,other,DSC_0837.JPG +5712,121,2440,17,1,other,DSC_0837.JPG +5714,670,2359,17,1,other,DSC_0837.JPG +5715,1933,2386,15,1,other,DSC_0837.JPG +5716,3970,2410,15,1,other,DSC_0837.JPG +5718,1396,334,17,1,other,DSC_0837.JPG +5719,34,1171,15,1,other,DSC_0837.JPG +5720,1855,2386,17,1,other,DSC_0837.JPG +5723,4276,415,17,1,other,DSC_0837.JPG +5725,2221,2407,17,1,other,DSC_0837.JPG +5735,3688,2401,15,1,other,DSC_0837.JPG +5736,2140,2404,17,1,other,DSC_0837.JPG +5751,7,685,17,1,other,DSC_0837.JPG +5752,3271,1687,17,1,other,DSC_0837.JPG +5759,4441,1636,15,1,other,DSC_0837.JPG +5760,874,2374,17,1,other,DSC_0837.JPG +5761,3628,2401,17,1,other,DSC_0837.JPG +5762,3757,2401,15,1,other,DSC_0837.JPG +5777,2845,1405,16,1,other,DSC_0837.JPG +5778,178,2344,17,1,other,DSC_0837.JPG +5779,3484,2407,15,1,other,DSC_0837.JPG +578,2404,1624,16,1,other,DSC_0844.JPG +5787,5335,2200,15,1,other,DSC_0837.JPG +5788,1585,2377,15,1,other,DSC_0837.JPG +5796,1720,2392,15,1,other,DSC_0837.JPG +5802,16,1996,17,1,other,DSC_0837.JPG +581,649,2044,17,1,other,DSC_0844.JPG +5810,1225,2377,15,1,other,DSC_0837.JPG +5816,424,2416,17,1,other,DSC_0837.JPG +5822,5374,2146,17,1,other,DSC_0837.JPG +5823,5329,2446,17,1,other,DSC_0837.JPG +5826,1165,2371,17,1,other,DSC_0837.JPG +5834,1504,2386,17,1,other,DSC_0837.JPG +5837,4798,250,17,1,other,DSC_0837.JPG +584,4801,2278,17,1,other,DSC_0844.JPG +5843,178,2455,17,1,other,DSC_0837.JPG +5847,1375,2368,15,1,other,DSC_0837.JPG +585,4126,400,17,1,other,DSC_0844.JPG +5850,4189,2401,17,1,other,DSC_0837.JPG +5854,2716,2272,17,1,other,DSC_0837.JPG +586,4195,535,17,1,other,DSC_0844.JPG +5863,1297,2371,15,1,other,DSC_0837.JPG +5864,3829,2407,15,1,other,DSC_0837.JPG +5867,1444,2380,17,1,other,DSC_0837.JPG +5868,247,2449,17,1,other,DSC_0837.JPG +5880,5404,2089,17,1,other,DSC_0837.JPG +5882,4372,2224,15,1,other,DSC_0837.JPG +5883,4693,2398,15,1,other,DSC_0837.JPG +589,4675,793,17,1,other,DSC_0844.JPG +5897,2569,1396,15,1,other,DSC_0837.JPG +5898,5275,2422,15,1,other,DSC_0837.JPG +5901,3895,682,17,1,other,DSC_0837.JPG +5903,3736,1171,17,1,other,DSC_0837.JPG +5906,13,1630,15,1,other,DSC_0837.JPG +5914,46,2407,16,1,other,DSC_0837.JPG +5917,28,2110,15,1,other,DSC_0837.JPG +5918,79,2479,17,1,other,DSC_0837.JPG +5919,3142,34,15,1,other,DSC_0837.JPG +5923,4150,1042,17,1,other,DSC_0837.JPG +5927,82,190,15,1,other,DSC_0837.JPG +5929,2905,2161,17,1,other,DSC_0837.JPG +5930,5461,1264,15,1,other,DSC_0837.JPG +5932,2563,1282,15,1,other,DSC_0837.JPG +5933,1498,634,17,1,other,DSC_0837.JPG +5934,7,1855,17,1,other,DSC_0837.JPG +5937,2476,985,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5938,1675,1048,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5939,4198,559,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5940,4762,352,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5941,2623,565,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5942,3484,916,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5943,3367,844,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5944,4846,1018,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5945,3709,214,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5946,2470,292,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5947,1870,154,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5948,3451,568,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5949,4162,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5950,1030,1096,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5951,4318,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5952,3334,631,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5953,4045,1117,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5954,4813,691,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5955,1183,1234,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5956,3484,214,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5957,2731,916,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5958,2773,1378,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5959,2584,919,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5960,3181,229,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5961,3328,778,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5962,3784,85,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5963,3859,1444,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5964,4648,148,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5965,3667,283,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5966,5041,949,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5967,1951,988,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5968,2854,1120,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5969,4009,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5970,3667,424,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5971,3790,916,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5972,3256,913,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5973,3004,1114,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5974,2281,88,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5975,3670,988,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5976,3889,283,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5977,3223,838,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5978,4048,706,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5979,3400,778,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5981,3226,973,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5982,1600,1048,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5983,3709,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5984,835,613,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5985,4882,691,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5986,4468,1303,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5987,4648,283,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5988,3817,283,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5989,2023,988,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5990,2959,1849,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5991,2809,499,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5992,3076,1111,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5993,1786,1639,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5994,364,142,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5995,4576,148,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5996,1075,211,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5997,3448,703,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5998,3373,1117,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +5999,3484,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6000,2470,433,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6001,4771,1015,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6002,1522,217,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6003,811,964,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6004,1870,1126,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6005,2284,1186,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6006,3256,358,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6007,3301,703,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6008,3664,1504,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6009,1789,151,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6010,4354,973,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6011,2179,988,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6012,1147,211,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6013,4009,637,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6014,883,1228,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6015,3706,1837,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6016,1291,1960,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6017,3565,1708,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6018,4732,1747,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6019,4801,286,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6020,5074,613,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6021,3559,1312,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6022,2659,1846,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6023,3376,571,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6024,4054,838,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6025,4660,1096,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6026,4471,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6027,1411,145,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6028,988,343,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6029,2506,502,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6030,3595,985,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6031,4168,901,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6032,2059,1051,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6033,997,1162,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6034,2170,1381,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6035,3565,1969,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6036,4408,2098,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6037,4279,1375,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6038,4771,1558,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6039,5140,487,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6040,766,754,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6041,3478,1180,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6042,4732,2011,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6043,3928,352,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6044,2509,1051,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6045,4948,19,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6046,1672,1315,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6047,2167,2053,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6048,1753,85,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6049,994,214,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6050,3262,499,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6051,1255,1240,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6052,4399,1567,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6053,4552,1822,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6054,4624,1822,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6055,3334,85,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6056,4357,1369,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6057,1483,1375,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6058,2434,1447,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6059,2353,1582,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6061,958,1099,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6062,3670,1243,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6063,3523,1636,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6064,2545,1909,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6065,2134,88,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6066,2584,217,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6067,1789,1120,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6068,958,277,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6069,3490,1705,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6070,3232,2044,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6071,4549,2209,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6072,5386,145,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6073,2506,361,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6074,5323,682,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6075,1558,1117,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6076,1069,1165,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6077,3298,1372,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6078,1672,1444,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6079,3526,1780,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6080,4810,1870,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6081,4840,211,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6082,2698,979,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6083,3109,1435,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6084,3190,1984,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6085,4552,2332,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6086,3034,2374,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6087,3259,82,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6088,775,349,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6089,949,409,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6091,1984,1054,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6092,1717,1120,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6093,3412,1570,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6094,1252,1627,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6095,1075,85,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6096,4042,154,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6097,4468,1036,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6098,2578,1048,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6099,3817,1240,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6100,3478,1309,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6101,3967,1378,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6102,3004,1498,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6103,4135,1633,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6104,3814,1645,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6105,3565,1840,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6106,3379,2167,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6107,4402,2218,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6108,1678,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6109,511,550,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6110,4129,976,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6111,4390,1306,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6112,2782,1642,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6113,2767,1912,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6114,4585,2149,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6115,3001,2182,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6116,3448,148,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6117,5209,349,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6118,3928,637,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6119,3736,1375,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +612,259,1477,17,1,other,DSC_0844.JPG +6120,4000,1489,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6121,4282,1507,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6122,3676,1639,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6123,2542,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6124,1831,82,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6125,4087,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6126,3856,85,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6127,619,613,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6128,3898,841,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6129,2095,1513,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6130,5146,1534,17,5,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6131,4888,1870,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6132,4138,2170,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6133,4249,2353,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6134,3412,85,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6135,1489,154,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6136,3742,979,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6137,4396,1171,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6138,4243,1312,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6139,4405,1696,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6140,2923,1777,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6141,2167,1906,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6142,5509,2644,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6143,3259,223,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6144,5104,415,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6145,2848,433,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6146,1711,1252,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6147,2740,1441,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6148,4438,1504,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6149,4624,1561,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6150,4588,1630,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6151,1597,1699,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6152,3523,2035,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6153,3523,2164,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6154,4048,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6155,766,619,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6156,3295,979,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6157,1411,1240,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6158,2131,1324,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6159,4360,1504,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6160,2134,1576,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6161,4363,1630,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6162,2251,1645,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6163,1630,1765,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6164,4255,1834,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6165,2992,1912,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6166,3373,2044,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6167,4219,2164,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6168,3412,499,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6169,3409,640,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6170,5395,673,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6171,205,679,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6172,1708,1384,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6173,2545,1513,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6174,1444,1570,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6175,3346,1846,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6176,3274,1852,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6177,3382,1909,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6178,2701,1915,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6179,3415,2104,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +618,3880,193,15,1,other,DSC_0844.JPG +6180,1642,157,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6181,5581,742,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6182,2023,1258,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6183,3937,1441,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6184,3592,1501,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6185,3934,1570,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6186,4447,1900,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6187,1141,2356,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6188,5737,2629,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6189,1228,82,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6190,5278,211,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6191,5203,214,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6192,202,409,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6193,2548,988,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6194,4777,1681,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6195,4624,1690,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6196,4729,1879,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6197,3490,1975,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6198,2851,2041,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6199,3076,2176,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +62,1087,208,16,1,other,DSC_0844.JPG +620,2998,247,16,1,other,DSC_0844.JPG +6200,4138,2296,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6201,2995,2437,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6202,3295,151,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6203,4987,211,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6204,5275,343,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6205,4924,1018,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6206,4318,1174,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6207,3517,1246,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6208,727,1363,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6209,3445,1378,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6210,1780,1381,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6211,4693,1558,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6212,4171,1702,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6213,3901,1771,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6214,4333,2098,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6215,1408,2161,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6216,3451,2293,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6217,2350,2383,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6218,2167,22,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6219,1603,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6220,3517,151,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6221,4162,1045,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6222,3628,1048,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6223,3232,1246,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6224,2170,1255,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6225,4996,1285,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6226,1939,1513,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6227,3712,1567,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6228,2089,1645,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6229,4591,1753,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6230,3160,1918,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6231,4588,2011,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6232,4441,2278,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6233,3523,2296,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6234,2848,2554,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6235,5773,2560,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6236,3223,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6237,5131,76,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6238,1036,148,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6239,547,343,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6240,3520,976,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6241,1825,1315,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6242,2092,1384,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6243,2812,1441,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6244,4516,2023,18,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6245,4693,2077,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6246,1858,2185,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6247,5839,2422,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6248,2923,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6249,2059,88,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6250,5311,145,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6251,2098,1120,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6252,2245,1378,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6253,2020,1387,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6254,2395,1513,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6255,2170,1645,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6256,3640,1699,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6257,2506,1711,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6258,1291,1825,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6259,4585,2269,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6260,4180,2353,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6261,4543,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6262,1189,148,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6263,5185,952,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6265,2287,1060,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6266,3970,1111,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6267,3517,1501,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6268,4018,1561,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6269,1480,2026,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6270,3298,2047,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6271,670,2347,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6272,778,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6273,2701,148,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6274,3739,283,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6275,508,415,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6276,5038,550,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6277,508,817,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6278,112,1333,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6279,652,1348,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6280,4396,1429,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6281,1669,1702,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6282,913,1816,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6283,1066,1825,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6284,3676,1903,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6285,3601,1906,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6286,2350,2119,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6287,5857,2215,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6288,1288,2359,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6289,3190,2365,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6290,5071,484,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6291,805,817,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6292,4423,829,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6293,157,883,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6294,2470,1123,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6295,1948,1126,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6296,4354,1240,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6297,4318,1306,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6298,1525,1312,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6299,3037,1438,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6300,2176,1513,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6301,4657,1747,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6302,1705,1768,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6303,4555,2080,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6304,784,2419,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6305,1276,2635,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6306,5017,19,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6307,559,79,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6308,5500,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6309,1378,82,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6310,997,85,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6311,1450,85,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6312,5023,145,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6313,3073,286,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6314,4996,343,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6315,3289,427,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6316,5113,949,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6317,1408,1378,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6318,2584,1453,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6319,3454,1780,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6320,1213,1951,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6321,4369,2155,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6322,1102,2284,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6323,5764,2284,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6324,3862,2368,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6325,322,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6326,1531,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6327,5239,145,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6328,1252,148,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6329,880,823,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +633,331,1717,17,1,other,DSC_0844.JPG +6330,4201,979,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6331,1597,1444,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6332,5110,1474,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6333,1261,1492,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6334,2626,1507,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6335,2476,1513,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6336,5071,1543,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6337,3559,1567,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6338,1597,1570,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6339,3781,1573,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6340,4174,1834,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6341,2626,1909,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6342,2848,1909,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6343,2923,1915,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6344,2581,2383,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6345,742,280,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6346,5002,481,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6347,541,616,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6348,3259,628,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6349,4282,976,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6350,3634,1183,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6351,4507,1237,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6352,5068,1411,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6353,3706,1441,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6354,3247,1453,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6355,4549,1564,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6356,1672,1573,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6357,2617,1774,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6358,4696,1813,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6359,2881,1846,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6360,2020,1906,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6361,2659,1972,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6362,3304,2299,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6363,259,2401,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6364,4687,76,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6365,250,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6366,1297,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6367,892,148,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6368,169,340,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6369,922,346,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +637,508,1912,17,1,other,DSC_0844.JPG +6370,355,406,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6371,877,556,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6372,430,685,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6373,4087,1177,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6374,3862,1180,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6375,145,1267,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6376,4093,1309,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6377,2812,1318,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6378,2320,1381,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6379,2887,1444,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6380,4804,1621,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6381,2131,1705,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6382,4138,1762,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6383,4849,1807,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6384,3418,1849,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6385,4771,1933,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6386,4549,1957,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6387,3634,1969,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6388,2515,1978,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6389,3487,2098,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +639,5110,1936,17,1,other,DSC_0844.JPG +6390,4444,2155,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6391,1633,2179,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6392,2467,2443,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6393,3748,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6394,4837,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6395,1153,82,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6396,3364,427,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6397,583,685,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6398,3820,982,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6399,1639,1117,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +640,4888,1939,17,1,other,DSC_0844.JPG +6400,841,1159,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6401,1105,1231,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6402,3817,1372,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6403,1867,1381,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6404,3223,1381,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6405,838,1558,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6406,4555,1693,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6407,4102,1705,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6408,3313,1786,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6409,1516,1960,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +641,4639,1999,16,1,other,DSC_0844.JPG +6410,2428,2380,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6411,3826,2428,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6412,5200,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6413,3934,85,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6414,1984,91,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6415,664,277,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6416,5095,286,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6417,844,349,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6418,2545,436,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6419,3292,841,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6420,4015,904,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6421,5335,1081,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6422,2776,1123,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6423,3562,1438,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6424,1783,1912,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6425,2956,1981,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6426,871,2290,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6427,1888,2476,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6428,3295,13,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6429,130,406,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6430,2926,430,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6431,5395,544,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6432,583,817,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6433,2554,1255,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6434,3334,1312,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6435,2056,1318,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6436,4432,1363,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6437,1627,1375,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6438,1066,1687,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6439,1291,1693,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6440,1480,1762,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6441,1027,1885,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6442,4411,1957,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6443,1594,1969,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6444,1783,2038,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6445,3190,2107,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6446,2920,2176,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6447,2962,2245,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6448,4096,2362,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6449,3784,2365,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +645,535,2314,17,1,other,DSC_0844.JPG +6450,2011,2557,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6451,1714,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6452,3601,22,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6453,4720,142,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6454,3370,151,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6455,925,217,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6456,3304,568,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6457,430,817,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6458,2653,922,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6459,2251,1123,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +646,4315,61,16,1,other,DSC_0844.JPG +6460,5185,1219,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6461,3709,1309,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6462,1447,1435,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6463,3379,1786,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6464,991,1822,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6465,2053,1849,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6466,3076,2050,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6467,4477,2215,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6468,4366,2281,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6469,4288,2284,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +647,733,73,16,1,other,DSC_0844.JPG +6470,4444,2398,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6471,331,2404,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6472,862,2416,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6473,3226,2425,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6474,1663,2644,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6475,3970,22,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6476,4393,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6477,4984,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6478,3853,361,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6479,3745,430,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6480,4084,496,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6481,2623,1117,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6482,3343,1186,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6483,2965,1189,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6484,613,1288,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6485,5032,1351,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6486,145,1402,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6487,2962,1441,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6488,3895,1507,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6489,79,1525,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6490,2743,1570,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6491,2395,1642,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6492,2470,1642,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6493,1213,1687,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6494,4807,1744,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6495,4441,1762,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6496,3529,1906,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6497,2434,1972,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6498,2812,1975,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6499,4180,2230,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6500,2356,2257,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6501,5803,2353,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6502,3334,2365,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6503,3301,2431,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6504,3565,2488,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6505,4618,76,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6506,3556,1042,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6507,4237,1042,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6508,4579,1234,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6509,1591,1312,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6510,1219,1432,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6511,4165,1438,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6512,2203,1444,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6513,838,1687,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6515,4294,1906,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6516,1555,2164,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6517,4666,2269,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6518,4597,2401,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6519,1018,2422,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6520,5770,2422,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6521,1948,13,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6522,5572,208,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6523,4915,211,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6524,1903,1183,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6525,1978,1321,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6526,1258,1378,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6527,1474,1504,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6528,3826,1510,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6529,3484,1570,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +653,799,598,17,1,other,DSC_0844.JPG +6530,4432,1627,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6531,1249,1891,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6532,3709,1975,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6533,2584,1984,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6534,4624,2077,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6535,1369,2101,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6536,3265,2110,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6537,1975,2119,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6538,1258,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6539,3295,292,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6540,3703,358,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6541,586,415,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6542,658,553,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6543,2731,1054,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6544,3898,1249,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6545,3931,1309,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6546,4006,1312,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6547,2284,1321,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6548,3079,1372,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6549,2845,1381,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +655,34,850,16,1,other,DSC_0844.JPG +6550,2509,1447,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6551,805,1489,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6552,3088,1495,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6553,4213,1507,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6554,1141,1561,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6555,4843,1687,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6556,4015,1699,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6557,3850,1705,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6558,4591,1885,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6559,523,2065,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6560,1675,2107,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6561,3148,2176,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6562,3151,2296,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6563,3670,2296,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6564,3559,2362,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6565,3949,2362,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6566,3112,2365,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6567,3982,2428,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6568,3607,2557,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6569,5659,2635,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6570,445,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6571,1561,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6572,2353,217,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6573,3334,223,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6574,658,409,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6575,5362,604,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6576,697,619,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6577,3706,1186,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6578,2209,1189,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6579,1222,1306,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6580,5185,1342,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6581,3436,1498,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6582,2209,1579,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6583,5074,1672,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6584,1024,1753,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6585,4663,1876,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6586,2086,1912,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6587,3310,1918,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6588,3268,1978,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6589,2131,1984,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +659,4879,1042,15,1,other,DSC_0844.JPG +6590,4444,2026,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6591,3037,2113,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6592,3265,2233,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6593,4069,2293,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6594,2923,2317,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6595,3454,2422,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6596,2395,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6597,4909,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6598,1906,85,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6599,5314,280,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6600,805,412,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6601,3484,1051,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6602,4732,1096,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6603,2812,1189,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6604,919,1291,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6605,763,1294,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6606,3778,1306,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6607,4168,1312,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6608,3184,1315,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6609,2440,1318,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6610,4882,1360,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6611,1108,1369,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6612,2701,1387,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6613,766,1417,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6614,3403,1438,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6615,1747,1447,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6616,1408,1504,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6617,994,1555,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6618,4513,1627,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6619,1750,1702,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6620,1828,1705,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6621,2020,1780,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6622,2464,1906,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6623,2056,1972,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6624,2809,2110,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6625,3448,2164,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6626,3187,2233,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6627,1864,2323,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6628,5401,2326,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6629,3637,2365,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6630,3523,2422,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6631,1036,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6632,3673,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6633,3025,214,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6634,5500,340,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6635,5320,412,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6636,3448,430,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6637,4051,430,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6638,2653,505,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6640,2623,982,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6641,82,997,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6642,991,1036,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6643,3784,1180,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6644,4765,1300,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6645,1375,1306,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6646,1750,1318,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6647,3259,1321,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6648,1336,1369,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6649,1936,1381,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6650,1864,1912,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6651,835,1948,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6652,4513,2149,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6653,3337,2233,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6654,3109,2242,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6655,3370,2296,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6656,3415,2362,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6657,1516,2365,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6658,4213,2413,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6659,2770,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6660,856,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6661,5272,82,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6662,5422,211,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6663,2659,217,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6664,436,412,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6665,739,415,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6666,397,478,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6667,469,478,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6668,3856,502,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6669,583,550,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6670,5254,682,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6671,2323,994,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6672,2704,1117,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6673,3934,1183,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6674,3970,1243,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6675,4042,1246,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6676,76,1393,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6677,3484,1444,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6678,4657,1495,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6679,2053,1582,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6680,5335,1591,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6681,1480,1630,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6682,3970,1639,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6683,3001,1642,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6684,5146,1666,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6685,2959,1720,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6686,1405,1762,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6687,4516,1762,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6688,2242,1918,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6689,1072,1948,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6690,1519,2101,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6691,3709,2104,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6692,2434,2251,18,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6693,4741,2398,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6694,2041,2476,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6695,5734,2497,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6696,598,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6697,3148,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6698,847,217,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6699,814,280,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +670,967,2122,16,1,other,DSC_0844.JPG +6700,5350,349,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6701,802,553,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6702,502,676,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6703,4051,976,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6704,109,1066,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6705,4207,1108,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6706,1750,1183,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6707,2503,1183,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6708,3556,1186,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6709,4429,1246,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +671,1618,154,17,1,other,DSC_0844.JPG +6710,2398,1255,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6711,1300,1306,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6712,2737,1315,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6713,2470,1384,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6714,2359,1453,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6715,4582,1498,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6716,5185,1588,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6717,796,1750,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6718,2206,1837,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6719,2356,1846,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +672,2611,175,16,1,other,DSC_0844.JPG +6720,1180,1888,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6721,3457,1906,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6722,1633,2041,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6723,3148,2047,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6724,3823,2305,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6725,5692,2428,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6726,3268,2491,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6727,2620,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6728,328,208,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6729,2884,358,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +673,3244,316,16,1,other,DSC_0844.JPG +6730,2929,562,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6731,463,610,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6732,5101,685,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6733,2614,853,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6734,2437,1048,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6735,2356,1189,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6736,1036,1234,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6737,4204,1246,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6738,544,1282,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6739,841,1300,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6740,2890,1309,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6741,2356,1324,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6742,4210,1372,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6743,4465,1432,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6744,1519,1444,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6745,952,1498,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6746,1216,1561,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6747,4660,1624,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6748,955,1753,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6749,3823,1768,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6750,3748,1774,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6751,2995,1783,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6752,1594,1828,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6753,4480,1831,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6754,1903,1840,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6755,3037,1858,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6756,3235,1915,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6757,4693,1948,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6758,4144,2038,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6759,3634,2101,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6760,5701,2173,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6761,3634,2227,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6762,1060,2353,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6763,4516,2398,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6764,4663,2398,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6765,3754,2428,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6766,2545,2440,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6767,2395,2446,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6768,3037,2494,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6769,1819,2641,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6770,2887,2641,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6771,1639,22,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6772,5422,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6773,589,139,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6774,739,145,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6775,5026,280,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6776,700,346,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6777,5110,544,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6778,4168,628,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6779,5215,745,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6780,694,895,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6781,505,943,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6782,469,1015,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6783,2656,1054,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6784,1630,1252,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6785,5599,1381,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6786,4540,1429,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6788,4477,1558,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6789,4099,1570,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6790,4288,1633,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6791,1708,1636,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6792,4957,1741,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6793,1099,1753,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6794,2578,1849,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6795,3121,1858,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6796,790,1885,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6797,3454,2041,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6798,4918,2065,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6799,2584,2110,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6800,2206,2113,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6801,4255,2227,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6802,2128,2254,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6803,4696,2332,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6804,829,2359,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6805,3262,2365,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6806,2818,2473,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6807,2422,2506,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6808,1873,19,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6809,5644,202,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6810,244,205,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6811,2617,295,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6812,3976,559,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6813,166,601,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6814,5434,736,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6815,913,898,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6816,3778,1051,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6817,4810,1090,18,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6818,3445,1120,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6819,2059,1195,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6820,1987,1198,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6821,1555,1372,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6822,4054,1378,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6823,1147,1432,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6824,1819,1447,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6825,2668,1447,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6826,3853,1570,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6827,3595,1636,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6828,3031,1714,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6829,1555,1768,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6830,4297,1774,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6831,4414,1834,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6832,2284,1849,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6833,565,2002,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6834,4066,2032,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6835,2476,2041,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6836,1900,2104,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6837,2887,2119,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6838,3751,2170,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6839,3913,2302,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6840,3076,2428,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6841,1777,2452,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6842,3682,2554,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6843,3385,2569,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6844,1045,2632,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6845,2506,226,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6846,2695,286,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6847,5134,349,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6849,4081,637,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +685,4573,1759,15,1,other,DSC_0844.JPG +6850,355,808,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6851,4093,910,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6852,2173,1129,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6853,1678,1183,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6854,3406,1183,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6855,466,1285,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6856,1897,1321,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6857,4729,1369,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6858,1294,1432,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6859,3742,1504,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6860,4063,1510,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6861,4321,1564,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6862,2542,1639,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6863,4699,1684,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6864,1909,1705,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6865,3637,1840,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6866,2734,1843,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6867,2809,1849,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6868,1630,1897,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6869,2887,1984,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6870,1033,2011,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6871,1441,2107,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6872,2053,2242,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6873,3001,2302,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6874,1216,2359,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6875,3151,2431,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6876,3940,2491,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6877,5164,2581,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6878,2812,2644,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6879,2092,25,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +688,5182,1930,17,1,other,DSC_0844.JPG +6880,703,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6881,2617,436,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6882,4138,700,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6883,5146,754,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6884,5323,814,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6885,5809,991,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6886,388,1012,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6887,3706,1051,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6888,2104,1252,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6889,2251,1255,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6890,2206,1315,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6891,4132,1375,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6892,3772,1444,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6893,4507,1501,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6894,1558,1504,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6895,1858,1639,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6896,2620,1648,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6897,4921,1678,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6898,985,1693,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6899,4252,1699,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6900,2434,1705,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6901,3424,1711,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6902,3676,1765,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6903,1141,1822,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6904,1519,1825,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6905,3790,1837,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6906,718,1882,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6907,1558,1891,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6908,3349,1978,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6909,2203,1984,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +691,3511,2119,17,1,other,DSC_0844.JPG +6910,2053,2116,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6911,3301,2167,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6912,3862,2236,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6913,3982,2302,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6914,2473,2317,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6915,2842,2320,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6916,2875,2392,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6917,4633,2461,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6918,3343,2635,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6919,3442,13,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6920,4582,19,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6921,2026,22,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6922,928,85,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6923,817,142,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6924,5128,214,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6925,5065,349,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6926,5542,397,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6927,4045,562,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6928,391,607,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6929,5146,610,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +693,4804,2164,15,1,other,DSC_0844.JPG +6930,463,745,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6931,5257,811,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6932,5176,817,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6933,5140,883,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6934,3259,1051,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6935,886,1096,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6936,4351,1108,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6937,3517,1114,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6938,3895,1114,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6939,5299,1150,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6940,3451,1246,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6941,2854,1249,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6942,4696,1294,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6943,4735,1624,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6944,1549,1636,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6945,2395,1771,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6947,4966,1867,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6948,3070,1915,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6949,4921,1933,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +695,3250,181,17,1,other,DSC_0844.JPG +6950,1138,1948,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6951,2770,2044,18,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6952,2320,2047,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6953,2998,2050,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6954,2473,2173,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6955,1144,2230,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6956,262,2272,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6957,4402,2335,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6958,3862,2491,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6959,3457,2566,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +696,3742,190,15,1,other,DSC_0844.JPG +6960,1798,16,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6961,409,79,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6962,5536,274,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6963,5647,331,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6964,325,343,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6965,3934,919,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6966,430,952,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6967,43,1054,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6968,2212,1063,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6969,1603,1183,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +697,3985,397,17,1,other,DSC_0844.JPG +6970,2890,1195,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6971,2578,1324,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6972,964,1366,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6973,3892,1378,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6974,4249,1441,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6975,2023,1513,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6976,3634,1576,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6977,3379,1633,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6978,2509,1843,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6979,868,1885,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6980,3820,1897,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6981,1747,1972,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6982,3112,1978,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6983,2731,1981,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6984,3040,1981,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6985,3742,2026,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6986,2545,2044,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6987,2548,2188,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6988,4621,2206,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6989,1624,2311,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6990,1939,2323,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6991,4330,2347,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6992,4060,2419,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6993,3343,2500,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6994,1588,2506,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6995,811,2620,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6996,637,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6997,1336,145,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6998,5170,277,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +6999,280,409,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7000,2689,424,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7001,2578,493,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7002,619,883,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7003,2362,1057,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7004,5185,1078,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7005,3820,1117,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7006,3598,1120,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7007,115,1204,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7008,5110,1216,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7009,1330,1246,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7010,1183,1366,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7011,3595,1372,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7012,5455,1390,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7013,5146,1411,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7014,4918,1417,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7015,4324,1444,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7016,4807,1492,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7017,1036,1498,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7018,1066,1558,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7019,1903,1579,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7020,2656,1585,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7021,5824,1642,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7022,5794,1714,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7023,2770,1786,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7024,5074,1798,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7025,3493,1840,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7026,4627,1945,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7027,3415,1984,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7028,3595,2029,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7029,2095,2053,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7030,1741,2098,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7031,4180,2107,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7032,3115,2110,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7033,4660,2143,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7034,2395,2188,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7035,2698,2188,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7036,1369,2239,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7037,2203,2260,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7038,298,2344,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7039,1357,2494,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7040,3724,2494,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7041,5659,2500,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7042,4216,2545,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7043,3760,2557,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7044,5344,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7045,5056,205,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7046,5383,277,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7047,3775,346,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7048,3964,421,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7049,727,544,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7050,5110,820,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7051,3742,1117,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7052,1516,1180,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7053,4276,1243,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7054,73,1261,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7055,5149,1282,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7056,1075,1300,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7057,4654,1372,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7058,2281,1447,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7059,2776,1510,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7060,1708,1513,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7061,1177,1630,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7062,3457,1648,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7063,2212,1711,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7064,1330,1756,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7065,1780,1765,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7066,3604,1768,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7067,4516,1894,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7068,4336,1969,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7069,2356,1978,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7070,4663,2008,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7071,2281,2116,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7072,2851,2182,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7073,3748,2293,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7074,1402,2305,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7075,3487,2359,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7076,4135,2425,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7077,1627,2443,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7078,1960,2479,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7079,1234,2563,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7080,3421,2632,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7081,1423,2635,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7082,3367,10,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7083,5086,13,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7084,964,25,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7085,286,139,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7086,5536,142,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7087,517,145,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7088,5095,145,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7089,5497,202,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7090,2584,364,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7091,5038,412,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7093,5176,550,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7094,316,610,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7095,5182,682,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7096,5356,745,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7097,769,898,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7098,844,898,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7099,5257,946,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +71,439,58,15,1,other,DSC_0844.JPG +7100,3439,976,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7101,850,1030,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7102,922,1036,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7103,4387,1042,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7104,2023,1123,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7105,1861,1252,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7106,805,1366,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7107,1288,1564,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7108,1819,1573,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7109,2815,1573,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +711,3346,1696,15,1,other,DSC_0844.JPG +7110,4252,1573,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7111,958,1624,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7112,4210,1642,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7113,1519,1702,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7114,4330,1702,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7115,757,1939,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7116,1408,2038,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7117,1294,2101,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7118,4327,2218,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7119,1972,2260,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7120,787,2281,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7121,4369,2404,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7122,853,2557,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7123,3232,2560,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7124,328,2650,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7125,2467,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7126,4930,343,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7127,547,481,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7128,3598,859,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7129,5365,883,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +713,685,1987,17,1,other,DSC_0844.JPG +7130,151,1006,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7131,4501,1099,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7132,1555,1246,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7133,2776,1255,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7134,3634,1306,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7135,4768,1423,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7136,3166,1468,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7137,5035,1483,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7138,2326,1510,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7139,5224,1528,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7140,1105,1621,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7141,2851,1642,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7142,2314,1648,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7143,2287,1708,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7144,3274,1720,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7145,4213,1765,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7146,4366,1765,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7147,2128,1837,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7148,1474,1891,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7149,409,1999,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7150,2623,2047,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7151,2665,2110,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7152,5629,2185,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7153,5830,2281,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7154,2314,2317,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7155,4849,2344,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7156,4021,2362,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7157,3796,2494,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7158,4180,2620,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7159,5164,13,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7160,4873,16,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7161,5539,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7162,4123,19,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7163,5608,145,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7164,1114,148,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7165,1222,208,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7166,3403,220,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7167,283,277,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7168,5242,280,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7169,3370,286,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7170,622,349,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7171,5572,466,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7172,916,478,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7173,3970,850,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7174,3331,913,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7175,4162,1183,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7176,5332,1210,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7177,1489,1249,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7178,3154,1252,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7179,3850,1306,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +718,3787,2248,17,1,other,DSC_0844.JPG +7180,2059,1441,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7181,1333,1495,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7182,3364,1501,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7183,916,1564,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7185,3040,1582,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7186,1402,1627,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7187,1867,1765,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7188,2323,1777,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +719,2545,46,15,1,other,DSC_0844.JPG +7190,1324,1894,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7191,997,1945,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7192,4372,2029,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7193,2392,2050,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7194,3670,2161,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7195,2320,2179,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7196,3556,2227,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7197,3601,2302,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7198,634,2422,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7199,3907,2422,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +72,1198,145,16,1,other,DSC_0844.JPG +7200,1897,2623,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7201,1741,2644,18,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7202,373,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7203,1111,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7204,1339,25,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7205,3442,292,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7206,877,412,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7207,472,883,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7208,3373,973,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7209,619,1027,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +721,3211,247,17,1,other,DSC_0844.JPG +7210,4540,1039,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7211,4285,1108,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7212,4003,1183,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7213,1792,1246,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7214,4924,1297,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7215,4588,1366,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7216,3664,1372,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7217,3517,1378,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7218,2389,1384,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7219,4846,1420,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +722,1336,277,15,1,other,DSC_0844.JPG +7220,919,1426,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7221,178,1465,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7222,4123,1504,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7223,1525,1573,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7224,5005,1672,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7225,5047,1732,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7226,2095,1765,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7227,2239,1768,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7228,1366,1831,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7229,1669,1843,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7230,1936,1903,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7231,3667,2029,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7232,2248,2047,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7233,4885,2134,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7234,4771,2200,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7235,1441,2227,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7236,4777,2338,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7237,5314,2338,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7238,5569,2365,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7239,4816,2395,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +724,1900,295,16,1,other,DSC_0844.JPG +7240,481,2413,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7241,2116,2479,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7242,4024,2491,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7243,4102,2623,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7244,253,2650,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7245,5233,13,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7246,4654,16,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7247,745,19,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7248,4360,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7249,5608,265,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7250,466,346,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7251,952,961,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7253,775,1027,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7254,2134,1048,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7255,3226,1108,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7256,3667,1123,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7257,961,1231,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7258,2704,1246,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7259,3370,1249,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7260,2320,1258,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7261,226,1273,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7262,997,1297,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7263,4540,1303,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7264,4510,1372,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7265,3628,1441,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7266,1108,1501,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7267,2857,1507,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7268,2509,1576,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7269,2020,1648,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +727,4612,667,16,1,other,DSC_0844.JPG +7270,142,1792,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7271,4999,1801,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7272,1102,1885,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7273,913,1942,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7274,4489,1957,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7275,1903,1978,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7276,4480,2086,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7277,3556,2101,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7278,4099,2101,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7279,1591,2110,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7280,1705,2167,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7281,2014,2188,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7282,3481,2227,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7283,1177,2293,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7284,1333,2302,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7285,1783,2320,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7286,514,2347,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7287,3715,2362,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7288,3379,2422,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7289,937,2428,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7290,5158,2458,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7291,1465,2569,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7292,4411,2608,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7293,3724,2626,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7294,2317,25,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7295,484,79,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7296,4945,148,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7297,4957,274,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7298,5806,865,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7299,1150,913,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7300,187,949,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7301,4996,1021,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7302,4537,1174,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7303,4237,1177,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7304,1822,1186,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7305,5638,1315,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7306,4993,1414,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7307,1981,1453,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7309,145,1663,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7310,1984,1711,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7311,1177,1759,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7312,3859,1840,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7313,1813,1969,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7314,1669,1972,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7315,4963,2002,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7316,790,2005,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7317,877,2011,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7318,4216,2041,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7319,4255,2104,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7320,1597,2242,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7321,4516,2269,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7322,2089,2320,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7323,1090,2428,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7324,442,2467,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7325,4375,2536,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7326,3988,2554,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7327,442,142,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7328,4882,283,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7329,5392,412,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7330,5284,475,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7331,844,478,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7332,202,535,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7333,388,748,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7334,5776,931,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7335,3970,970,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7336,4465,1171,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7337,5815,1495,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7338,1636,1510,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7339,1750,1576,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7340,2581,1585,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7341,2734,1717,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7342,673,1939,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7343,3940,1963,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7344,3790,1969,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7345,1864,2038,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7346,2923,2044,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7347,1216,2086,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7348,3595,2164,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7349,2170,2185,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7350,3787,2233,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7351,1477,2308,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7352,5869,2350,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7353,2893,2473,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7354,2161,2560,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7355,1120,2632,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7356,5389,13,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7357,4726,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7359,211,139,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7360,4792,151,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7361,4750,214,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7362,5458,277,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7363,5248,409,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7364,5464,409,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7365,2248,424,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7366,5542,538,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7367,4117,565,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7368,3853,1054,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7369,808,1099,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7370,2392,1120,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7371,4921,1162,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7372,2584,1180,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7373,2434,1186,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7374,991,1429,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7375,1369,1441,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7376,4081,1444,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7377,5041,1600,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7378,1636,1639,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7379,3154,1654,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7380,2359,1717,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7381,4891,1738,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7382,4054,1762,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7383,4777,1810,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7384,3190,1858,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7385,1708,1900,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7386,3862,1960,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7387,1261,2017,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7388,2017,2047,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7389,3337,2098,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7390,4735,2137,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7391,1261,2164,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7392,442,2218,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7393,3040,2245,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7394,2281,2260,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7395,4471,2338,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7396,5242,2338,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7397,589,2353,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7398,751,2353,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7399,2734,2398,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7400,1171,2428,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7401,4102,2491,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7402,3115,2494,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7403,970,2626,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7404,589,268,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7405,5248,550,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7407,544,1024,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7408,4093,1039,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7409,3337,1051,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7410,577,1225,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7411,2464,1255,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7412,181,1333,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7413,2698,1507,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7414,4168,1573,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7415,874,1624,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7416,2056,1711,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7417,4921,1801,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7418,1972,1846,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7419,1105,2011,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7420,4291,2038,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7421,148,2200,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7422,4102,2236,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7423,4213,2287,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7424,1252,2296,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7425,3070,2302,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7426,5731,2362,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7427,1669,2380,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7428,1504,2512,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7429,5092,2581,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7430,2503,2644,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7431,814,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7433,553,205,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7434,5215,484,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7435,658,685,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7436,3373,706,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7437,661,946,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7438,4885,1081,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7439,5113,1081,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +744,4651,1513,17,1,other,DSC_0844.JPG +7440,4429,1102,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7441,4120,1111,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7442,5374,1150,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7443,925,1159,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7444,5257,1207,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7445,5032,1219,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7446,3409,1312,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7447,4621,1435,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7448,1909,1453,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7449,796,1627,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +745,3952,1519,16,1,other,DSC_0844.JPG +7450,2803,1714,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7451,1213,1825,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7452,4330,1834,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7453,2395,1906,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7454,4882,1996,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7455,1186,2023,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7456,3985,2029,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7457,1702,2038,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7458,370,2203,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7459,4024,2239,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +746,3877,1639,15,1,other,DSC_0844.JPG +7460,2503,2383,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7461,2050,2386,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7462,1393,2572,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7463,2737,2641,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7464,5359,2653,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7465,1411,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7467,697,208,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7468,3334,505,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7469,580,955,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7470,2542,1120,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7472,151,1150,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7473,772,1162,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7474,4615,1168,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7475,733,1216,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7476,3145,1375,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7477,1441,1693,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7478,4219,1900,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7479,4366,1900,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7480,1819,2101,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7481,2434,2113,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7482,3415,2227,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7483,2662,2245,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7484,1360,2359,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7485,5311,2449,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7486,2659,2470,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7487,775,2554,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7488,1858,2569,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7489,3955,2623,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7490,3817,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7491,5458,139,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7492,355,277,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7493,5356,475,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7494,430,535,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7495,241,607,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7496,5395,811,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7497,5326,943,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7498,430,1084,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7499,661,1219,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +75,4027,190,17,1,other,DSC_0844.JPG +750,4711,1879,15,1,other,DSC_0844.JPG +7500,2998,1255,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7501,4840,1297,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7502,2509,1321,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7503,883,1357,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7505,4693,1429,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7506,5707,1438,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7507,2242,1519,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7508,2968,1561,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7509,3313,1630,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7510,4051,1639,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7511,3346,1705,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7512,3103,1717,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7513,871,1756,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7514,1939,1771,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7515,3070,1795,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7516,1738,1834,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7517,946,1885,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7518,4843,1930,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7519,4993,1933,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +752,4912,2215,17,1,other,DSC_0844.JPG +7520,2278,1984,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7521,1558,2038,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7522,4762,2065,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7523,2959,2113,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7524,1480,2173,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7525,298,2197,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7526,2548,2311,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7527,1738,2383,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7528,409,2413,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7529,3079,2560,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7530,736,2614,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7531,3496,2623,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7532,3874,2629,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7533,5437,2644,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7534,5050,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7535,208,268,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7536,2548,283,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7537,724,682,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7538,688,748,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7539,3859,907,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7540,5224,1009,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7541,4321,1036,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7542,496,1081,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7543,469,1147,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7544,4810,1222,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7545,4735,1237,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7546,3298,1255,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7547,5743,1366,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7548,877,1498,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7549,2284,1582,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7550,5113,1600,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7551,1330,1627,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7552,3742,1630,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7553,2167,1768,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7554,4798,2002,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7555,3232,2296,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7556,226,2338,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7557,1474,2443,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7558,3190,2491,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7559,1084,2563,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7560,2467,2569,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7561,4441,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7562,4276,19,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7563,4762,82,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7564,2725,364,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7565,616,484,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7566,802,679,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7567,700,1018,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7568,5290,1018,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7569,2815,1060,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7570,4960,1078,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7571,586,1084,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7572,2320,1117,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7573,2137,1183,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7574,2662,1192,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7575,1942,1249,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7576,379,1282,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7577,694,1282,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7578,3376,1378,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7579,2926,1381,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7580,1066,1432,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7581,100,1453,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7582,3196,1714,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7583,715,1750,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7584,3988,1768,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7585,3154,1789,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7586,685,1816,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7587,994,2080,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7588,2128,2122,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7589,3223,2173,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7590,1291,2236,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7591,3943,2239,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7592,2395,2314,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7593,556,2419,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7594,3598,2428,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7595,4141,2548,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7596,4063,2551,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7597,934,2563,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7598,1627,2575,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7599,3649,2626,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7600,4798,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7601,1483,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7602,670,145,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7603,4966,415,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7604,3895,433,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7605,1111,706,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7607,3895,976,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7608,187,1075,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7609,4582,1102,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7610,3268,1183,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7611,2629,1255,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7612,5530,1261,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7613,5845,1297,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7614,2998,1375,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7615,685,1417,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7616,760,1552,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7617,2437,1576,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7618,913,1684,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7619,1357,1693,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7620,1138,1696,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7621,838,1819,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7622,5110,1864,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7623,4138,1903,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7624,2317,1906,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7625,2512,2110,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7626,1333,2170,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7627,2092,2179,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7628,910,2227,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7629,1900,2248,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7630,2701,2560,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7631,3799,2626,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7632,5053,2656,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7633,400,202,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7634,3478,364,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7635,97,472,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7636,241,472,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7637,694,472,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7638,2992,559,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7640,547,877,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7641,5215,886,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7642,3310,1120,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7643,625,1150,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7644,2740,1183,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7645,5641,1198,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7646,256,1210,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7647,1942,1639,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7648,3886,1639,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7649,5230,1654,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7650,3931,1699,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7651,3721,1702,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7652,5185,1726,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7653,1816,1843,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7654,3754,1897,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7655,4105,1978,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7656,640,2002,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7657,4297,2158,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7658,1750,2242,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7659,139,2338,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7660,4291,2413,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7661,715,2422,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7662,5614,2428,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7663,589,2479,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7664,1933,2554,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7665,2269,2626,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7666,2959,2638,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7667,2281,217,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7668,514,271,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7669,2920,286,17,5,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7670,766,484,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7673,3934,496,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7674,130,538,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7675,238,748,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7677,5149,1015,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7678,5365,1015,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7679,3157,1114,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +768,3859,2242,15,1,other,DSC_0844.JPG +7680,3736,1243,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7681,256,1351,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7682,3316,1447,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7683,3076,1648,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7684,2689,1783,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7685,5188,1861,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7686,643,1879,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7687,1441,1969,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7688,2623,2176,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7689,1552,2311,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +769,1975,166,15,1,other,DSC_0844.JPG +7690,1585,2365,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7691,5137,2398,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7692,3679,2431,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7693,5806,2485,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7694,3643,2491,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7695,3535,2560,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7696,2044,2638,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7697,625,205,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +770,517,190,16,1,other,DSC_0844.JPG +7700,319,739,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7701,4798,832,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7702,5677,1258,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7703,2665,1312,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7704,2632,1387,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7705,5314,1402,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7706,5305,1657,18,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7707,1402,1900,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7708,3826,2035,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7709,679,2074,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +771,1867,361,15,1,other,DSC_0844.JPG +7710,478,2131,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7711,1783,2170,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7712,2239,2179,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7713,5008,2338,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7714,2965,2500,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7715,3835,2548,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7716,2623,2572,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7717,3574,2629,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7718,3268,2638,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7719,5161,142,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +772,3631,391,16,1,other,DSC_0844.JPG +7720,4873,145,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7722,5686,391,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7726,5470,811,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7727,199,817,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7728,4837,886,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7729,3931,1057,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7730,502,1213,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7731,415,1225,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7732,4123,1246,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7733,3037,1318,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7734,4729,1495,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7735,4852,1549,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7736,5647,1711,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7737,2884,1714,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7738,5110,1726,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7739,1366,1969,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7740,1063,2074,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7741,1930,2185,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7742,1216,2233,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7743,5353,2272,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7744,1399,2443,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7745,736,2485,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7746,1129,2491,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7747,1009,2557,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7748,4636,2605,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7749,4024,2623,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +775,5083,595,17,1,other,DSC_0844.JPG +7750,1585,2644,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7751,892,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7752,484,208,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7753,784,208,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7754,4012,226,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7755,2962,502,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7759,5290,874,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7761,3409,1054,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7762,5401,1072,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7763,5482,1084,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7764,700,1153,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7765,4654,1234,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7766,1180,1495,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7767,178,1603,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7768,3898,1903,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7769,4807,2131,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7770,5086,2203,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7771,1321,2437,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7772,370,2470,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7773,2194,2482,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7774,1432,2497,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7775,178,2515,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7776,2923,2560,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7777,1195,2632,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7778,2839,145,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7779,2848,301,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7780,241,334,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7781,5431,472,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7782,5503,472,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7784,283,541,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7785,5320,547,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7788,5254,1078,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7789,5719,1192,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7790,1858,1510,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7791,289,1672,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7792,109,1861,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7793,5038,1861,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7794,526,1933,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7795,4261,1972,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7796,4024,1978,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7797,718,2011,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7798,4015,2104,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7799,2737,2107,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +780,4315,916,17,1,other,DSC_0844.JPG +7800,331,2272,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7801,5077,2332,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7802,1435,2371,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7803,973,2488,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7804,3493,2491,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7805,1210,2494,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7806,1822,2512,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7807,5695,2557,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7808,3187,2632,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7809,2731,220,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7812,5473,538,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7814,538,754,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7816,2650,781,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7818,1027,955,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7819,79,1141,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7820,4618,1294,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7821,5521,1513,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7822,1366,1558,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7823,1984,1576,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7824,2653,1708,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7825,4021,1825,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7826,178,1858,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7827,2509,2254,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7828,2014,2326,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7829,4891,2404,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +783,4690,1453,16,1,other,DSC_0844.JPG +7830,1282,2494,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7831,5050,2527,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7832,703,2548,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7833,364,2590,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7834,661,2611,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7835,1969,2638,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7836,5581,2644,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7839,886,280,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7840,100,328,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7841,2662,358,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7842,5173,406,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7843,5212,616,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7845,349,673,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7846,5293,745,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7847,1081,766,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7849,733,811,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7851,4882,1228,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7852,5224,1273,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7853,3109,1318,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7854,5560,1324,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7855,3232,1792,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7856,1447,1831,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7857,4093,1837,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7858,910,2071,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7859,5803,2101,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7860,553,2134,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7861,5734,2230,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7862,187,2284,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7863,1906,2386,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7864,3301,2557,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7865,4258,2614,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7866,892,2623,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7867,2431,2647,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7868,5311,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7869,2242,19,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7870,3070,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7873,5434,607,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7875,1105,835,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7876,220,1144,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7878,805,1222,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7879,616,1417,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +788,2473,1864,17,1,other,DSC_0844.JPG +7880,1786,1510,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7881,5371,1528,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7882,2587,1708,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7883,640,1750,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7884,5299,1792,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7885,4060,1894,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7886,1966,1975,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7887,751,2068,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7888,3784,2089,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7889,4063,2167,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7890,4702,2206,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7891,3715,2236,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7892,1021,2296,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7893,364,2344,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7894,2956,2377,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7895,2131,2401,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7896,2776,2557,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7897,3154,2566,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7898,5392,2575,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7899,5611,16,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7900,2698,19,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7901,5464,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7902,169,466,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7903,355,541,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7905,277,670,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7911,343,949,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7913,388,1150,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7914,5755,1651,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7915,3946,1837,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7916,5077,1924,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7917,5233,1927,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7918,958,2014,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7919,1339,2029,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7920,5356,2131,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7921,5122,2137,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7922,1516,2242,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7923,1702,2308,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7924,5497,2368,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7925,3421,2491,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7926,1738,2512,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7927,250,2521,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7928,442,2599,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7929,4870,2599,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +793,3073,112,17,1,other,DSC_0844.JPG +7930,4789,2608,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7931,3523,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7933,3331,349,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7935,4015,496,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7936,5614,667,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7937,622,745,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7939,3001,829,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +794,3916,259,17,1,other,DSC_0844.JPG +7942,5737,874,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7943,733,949,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7945,5071,1012,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7946,4012,1045,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7947,661,1090,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7948,4993,1150,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7949,4771,1165,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7950,4846,1165,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7951,4954,1222,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7952,3598,1249,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7953,2965,1318,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7954,2548,1387,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7955,844,1423,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7956,3205,1540,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7957,4885,1612,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7958,1255,1750,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7959,2545,1786,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7960,3979,1897,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7961,607,1939,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7962,475,2002,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7963,1930,2041,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7964,5002,2062,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7965,1141,2080,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7966,3949,2092,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7967,4966,2149,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7968,1108,2152,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7969,988,2218,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7970,2737,2245,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7971,2770,2320,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7972,5656,2368,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7973,1249,2428,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7974,814,2488,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7975,5200,2521,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7976,1549,2566,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7977,1156,2569,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7978,5017,2590,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7979,3112,2632,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7980,670,19,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7985,5698,796,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7986,5536,808,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7989,5488,1204,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7990,5563,1204,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7991,2935,1252,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7992,1042,1366,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7994,2890,1576,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7995,5413,1588,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7996,4966,1609,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7997,1033,1621,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7998,2698,2050,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +7999,607,2068,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8000,754,2221,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8001,832,2224,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8002,2242,2326,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8003,2164,2329,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8004,439,2347,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8005,985,2353,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8006,2287,2383,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8007,1819,2386,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8008,5470,2434,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8009,4486,2461,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8010,2740,2476,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8011,5275,2512,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8012,5134,2518,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8013,400,2533,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8014,5236,2581,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8015,4828,2671,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8016,523,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8017,4204,22,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8019,964,148,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +802,256,1243,17,1,other,DSC_0844.JPG +8021,2821,217,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8023,400,337,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8029,5806,715,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +803,1990,1492,16,1,other,DSC_0844.JPG +8034,5521,1141,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8035,4690,1168,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8036,5527,1393,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8037,5779,1420,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8038,4882,1492,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8039,1822,2242,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8040,2806,2377,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8041,4969,2389,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8042,2230,2560,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8043,1351,2632,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8044,406,2656,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8045,214,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8046,1186,22,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8052,313,466,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8053,5653,745,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8056,121,940,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8061,313,1018,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8062,5680,1132,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8063,31,1201,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8064,5077,1279,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8065,223,1408,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8066,5002,1552,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8067,5560,1582,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8068,3106,1585,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8069,5254,1591,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8070,751,1693,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8071,5830,1774,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8072,205,1792,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8073,5764,1792,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8074,5152,1795,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8075,214,1918,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8076,5041,2134,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8077,1063,2215,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8078,664,2221,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8079,634,2278,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +808,610,2101,16,1,other,DSC_0844.JPG +8080,5386,2440,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8081,1705,2578,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8082,586,2605,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8083,4567,2608,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8084,5578,340,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8089,166,736,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8092,277,814,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8094,5380,1276,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8095,37,1321,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8096,5191,1468,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8097,256,1480,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8098,721,1624,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8099,2932,1636,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +810,952,82,17,1,other,DSC_0844.JPG +8100,2695,1639,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8102,5476,2197,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8103,5659,2239,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8104,715,2290,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8105,2620,2323,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8106,4927,2335,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8107,904,2356,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8108,5356,2386,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8109,5038,2389,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +811,2365,103,17,1,other,DSC_0844.JPG +8110,628,2545,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8111,4336,2608,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8117,25,466,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +812,2647,109,16,1,other,DSC_0844.JPG +8122,5665,865,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8123,394,883,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8124,5626,937,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8125,5563,1447,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8126,4957,1486,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8127,1180,2164,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8128,5239,2209,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8129,5512,2254,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +813,4276,127,15,1,other,DSC_0844.JPG +8130,5695,2287,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8131,2698,2323,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8132,1978,2386,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8133,4555,2464,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8134,2269,2476,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8135,892,2494,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8136,2119,2641,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8137,5125,2653,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8138,1435,202,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8139,1294,211,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +814,3031,316,17,1,other,DSC_0844.JPG +8141,3406,349,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8148,5284,616,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8153,5614,802,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8154,649,826,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8158,5149,1141,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8159,3043,1180,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8160,5749,1507,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8161,253,1606,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8162,442,1936,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8163,439,2059,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8164,5080,2065,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8165,175,2401,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8166,5086,2461,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8167,5200,2653,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8168,553,2659,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8169,4510,16,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8170,5569,76,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8173,5680,274,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8175,2767,298,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8178,58,403,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +818,226,436,15,1,other,DSC_0844.JPG +8185,5512,733,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8186,4405,766,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8187,343,1087,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8188,733,1096,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8189,5416,1330,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8190,4807,1366,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8191,139,1525,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8192,4477,1699,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8193,5335,1717,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8194,4189,1966,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8195,5431,1987,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8196,871,2155,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8197,3979,2170,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8198,4810,2269,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8199,5437,2269,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +820,4117,661,17,1,other,DSC_0844.JPG +8200,5125,2284,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8201,5629,2299,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8202,1543,2440,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8203,5239,2452,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8204,217,2461,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8205,4333,2470,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8206,4177,2482,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8207,2509,2497,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8208,5506,2500,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8209,2386,2569,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8210,289,2581,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8211,289,19,18,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8219,5425,343,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8225,2722,502,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8234,190,1204,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8235,5296,1528,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8236,5113,1999,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8237,715,2134,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8238,3817,2164,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8239,1669,2236,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +824,4849,979,16,1,other,DSC_0844.JPG +8240,1702,2437,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8241,1060,2491,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8242,3043,2632,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8243,5281,2656,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8244,3892,10,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8249,2764,427,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8260,5542,664,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8261,5467,676,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8270,238,877,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8271,3079,970,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8273,5077,1147,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8274,250,1735,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8275,331,1999,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8276,5287,2269,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8277,478,2275,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8278,5173,2341,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8279,5545,2440,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +828,5164,1381,17,1,other,DSC_0844.JPG +8280,4783,2470,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8281,5428,2506,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8282,4975,2524,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8283,4528,2539,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8284,5548,2572,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8285,1777,2581,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8287,1354,202,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8288,5347,202,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +829,4798,1393,15,1,other,DSC_0844.JPG +8301,2908,700,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +831,4579,1636,15,1,other,DSC_0844.JPG +8313,265,2131,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8314,223,2197,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8315,5161,2209,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8316,1312,2572,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +834,4999,1876,15,1,other,DSC_0844.JPG +8342,5743,1000,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8346,5227,1138,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8347,5674,1381,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8348,5221,1405,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8349,5263,1471,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +835,580,2038,17,1,other,DSC_0844.JPG +8350,295,2062,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8351,223,2065,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8352,784,2155,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8353,949,2158,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8354,517,2203,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8355,5587,2245,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8356,2656,2395,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8357,1513,2635,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +836,3457,55,16,1,other,DSC_0844.JPG +8362,2809,367,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8365,5650,457,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8368,5509,601,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +837,1690,154,15,1,other,DSC_0844.JPG +8370,5767,658,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8373,5731,733,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +838,1762,292,16,1,other,DSC_0844.JPG +8380,5404,943,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8381,1183,964,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8383,5038,1084,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8384,5602,1135,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8385,328,1348,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8386,5110,1348,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8387,5638,1435,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8388,730,1489,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +839,3526,322,16,1,other,DSC_0844.JPG +8390,5614,1783,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8391,5227,1789,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8392,5737,1990,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8393,5311,2062,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8394,5440,2131,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8395,559,2290,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8396,4630,2335,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8397,2206,2386,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8398,5425,2386,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8399,5008,2467,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +84,5182,1807,17,1,other,DSC_0844.JPG +8400,4600,2542,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8401,5620,2575,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8402,5317,2581,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8403,2659,2632,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8418,5608,529,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8429,2929,1114,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8430,5446,1138,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8431,5410,1213,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8432,3181,1600,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8433,5767,1918,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8434,2773,2176,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8435,4408,2464,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8436,4933,2467,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8437,214,2590,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8438,2344,2638,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8439,2584,2650,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8457,5440,1015,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8460,13,1111,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8461,3079,1246,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8462,5269,1339,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8463,289,1414,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8464,5491,1453,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8466,451,1801,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8467,5803,1978,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8468,5194,1993,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8469,637,2137,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8470,3907,2167,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8471,5392,2203,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8472,5794,2218,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8473,4939,2596,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8474,2197,2644,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8475,4459,2680,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8476,2854,19,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8482,5746,364,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8491,316,874,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8494,1213,916,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8496,5842,928,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8499,5596,1510,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +85,1270,145,16,1,other,DSC_0844.JPG +8500,5485,1582,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8501,331,1606,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8502,214,1666,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8503,5719,1711,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8504,178,1726,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8505,5377,1783,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8506,4840,2059,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8507,403,2143,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8508,2809,2251,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8509,943,2284,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8510,670,2488,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8511,2584,2494,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8513,139,268,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8514,430,283,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8522,5884,853,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8526,5596,1261,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8527,304,1276,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8528,1438,1309,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8529,325,1483,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8530,5788,1573,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8531,433,1597,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8532,5374,1651,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8533,5260,1726,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8534,820,2080,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8535,2890,2242,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8536,5047,2272,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8537,136,2446,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +854,3343,1816,16,1,other,DSC_0844.JPG +855,469,1849,15,1,other,DSC_0844.JPG +8555,5830,781,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8558,5437,883,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8563,541,1147,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8565,5674,1501,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8566,5305,1927,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8567,334,2140,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8568,4888,2272,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8569,4966,2281,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8570,5206,2401,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8571,295,2464,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8572,2335,2491,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8573,1660,2506,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8576,5851,334,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8588,2986,697,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8599,277,946,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8601,220,1009,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8602,331,1216,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8603,5809,1237,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8604,5350,1333,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8605,502,1612,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8606,3910,2023,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8607,370,2062,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8608,511,2473,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8609,5581,2506,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8610,550,2542,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8611,4459,2545,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +862,4666,2170,15,1,other,DSC_0844.JPG +8632,5767,805,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8635,4771,892,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8638,1141,1300,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8639,619,1537,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +864,976,406,17,1,other,DSC_0844.JPG +8640,49,1585,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8641,5605,1645,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8642,364,1930,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8643,4999,2206,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8644,4924,2209,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8645,5290,2395,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8646,475,2533,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8647,3904,2554,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8648,631,2671,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8649,4678,2677,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8655,3901,559,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8656,2968,634,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8663,3061,838,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8666,424,1348,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8667,292,1543,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8668,5032,1996,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8669,3859,2110,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8670,175,2641,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8671,2998,25,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8688,283,1795,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8689,475,1858,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8690,5266,1858,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8691,5347,1993,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8692,5239,2062,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8693,5350,2512,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8694,481,2656,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8713,3196,1192,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8714,5491,1330,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8715,577,1345,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8716,5452,1657,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8717,5572,1723,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8718,517,1804,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8719,1030,2146,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8720,5554,2191,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8721,406,2287,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8722,4252,2479,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8723,4828,2536,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8724,5650,76,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8735,5830,649,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8743,5701,940,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8747,5890,1498,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8748,5800,1849,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8749,5512,2125,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8750,5590,2128,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8751,592,2224,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8752,5200,2278,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8753,328,2527,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8754,4906,2527,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8766,91,877,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8767,5548,949,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8768,22,961,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8769,5707,1066,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8771,5746,1123,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8772,106,1591,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8773,568,1612,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8774,406,1867,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8775,5161,1921,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8776,184,2125,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8777,5281,2131,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8778,5896,2278,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8779,4747,2536,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8780,2308,2557,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8787,136,673,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8794,454,1420,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8795,523,1546,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8796,133,2569,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8797,2542,2572,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8798,4600,2674,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8800,5692,529,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8803,2698,844,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8805,532,1414,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8806,5845,1432,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8807,646,1612,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8808,5413,1720,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8809,565,1873,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8810,5473,2068,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8811,5731,2116,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8812,5317,2209,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8813,4714,2470,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8814,2998,2554,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8821,3037,901,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8823,5554,1069,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8824,5632,1072,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8825,5299,1270,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8826,4924,1546,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8827,142,1924,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8828,5551,2068,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8829,4294,2545,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8833,5578,610,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8837,5590,1003,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8839,490,1351,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8840,5533,1651,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8841,247,1855,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8842,145,2059,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8843,5776,2164,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8844,4984,2662,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8845,703,2674,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8846,3106,211,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8856,5389,1396,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8857,5686,1651,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8858,457,1669,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8859,322,1738,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8860,5662,1990,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8861,5395,2074,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8862,5467,2572,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8868,5692,658,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8870,13,1405,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8871,598,1684,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8872,5869,2098,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8873,5203,2131,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8874,4849,2218,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8875,4729,2269,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8876,514,2596,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8877,4489,2611,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8878,4714,2611,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +888,4603,2059,17,5,other,DSC_0844.JPG +8883,5725,586,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8888,5581,874,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8890,214,1543,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8891,691,1555,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8892,5638,1588,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8893,5455,1786,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8894,5269,1993,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8895,4672,2536,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8896,850,2677,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8901,5476,952,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8903,5707,1312,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8904,5455,1522,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8905,5860,1714,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8906,5344,1864,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8907,5701,2056,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8908,769,2680,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8909,925,2686,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +891,3649,2242,15,1,other,DSC_0844.JPG +8915,5653,601,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8917,265,1087,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8918,3127,1186,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8919,481,1483,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +892,2188,37,17,1,other,DSC_0844.JPG +8920,5860,1564,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8921,5461,2323,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8922,5680,145,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8925,5782,424,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8929,5743,1243,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +893,2539,304,17,1,other,DSC_0844.JPG +8930,5452,1267,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8931,412,1477,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8932,604,1810,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8933,295,1924,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8934,2086,2548,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8941,553,1738,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8942,5380,1924,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8943,5665,2122,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8944,100,2392,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8945,4867,2473,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +895,265,382,17,1,other,DSC_0844.JPG +8950,4012,1429,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8951,454,1540,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8952,376,1672,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8953,748,1825,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8954,5590,1987,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8955,4381,2671,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8957,172,196,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +896,4057,400,17,1,other,DSC_0844.JPG +8963,637,1477,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8964,112,1714,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8965,5422,1858,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8966,256,1984,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8967,2593,2248,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8968,4903,2662,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8970,5722,463,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8974,5518,1015,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8975,5692,1798,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8976,5728,1867,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8977,5833,2161,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8978,5548,2314,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8982,5890,754,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8983,3016,772,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8985,5509,1987,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8986,184,1990,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8987,5893,2149,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8995,5881,1351,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8996,577,1480,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8997,379,1540,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8998,5584,1855,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +8999,5455,1918,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +90,661,70,15,1,other,DSC_0844.JPG +9002,127,814,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9003,5668,1000,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9005,5776,1060,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9006,5710,1570,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9007,115,2263,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9010,5419,1462,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9011,5335,1471,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9012,682,1690,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9013,5623,1918,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9014,5827,2035,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9015,2212,97,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9016,5755,532,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9017,5512,868,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9019,514,1678,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9020,5812,2620,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9024,5875,1225,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9025,5161,2059,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9027,5860,256,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9029,379,1399,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9030,361,1801,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9031,103,1990,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9033,2782,991,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9034,3286,1513,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9035,4756,2677,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9037,34,799,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9038,43,331,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9039,5611,385,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9041,5656,1861,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9042,5620,2074,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9044,400,1735,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9045,5533,1789,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9046,1009,2686,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9052,5803,364,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9054,5803,1366,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9055,5494,1714,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9056,499,1750,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9058,106,2119,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9059,4243,94,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +906,4381,1042,17,1,other,DSC_0844.JPG +9060,5788,583,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9062,1048,712,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9065,331,1864,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9066,5779,1303,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9067,3145,1525,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9068,5503,1864,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9069,85,2191,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9070,5908,2410,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9073,5872,991,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9074,5542,1918,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9075,5761,2056,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9077,5695,1918,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9078,2605,2443,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9079,5686,7,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9081,37,262,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9085,5776,1177,16,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9086,2314,2434,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9087,4537,2659,15,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9090,5908,196,17,1,other,BEE_HOPE GIMONDE 2016_03_23 BL1_G FILE0634.JPG +9093,3121,202,17,1,other,DSC_0848.JPG +9095,4708,154,16,1,other,DSC_0848.JPG +9096,3370,265,17,1,other,DSC_0848.JPG +9097,1933,682,17,1,other,DSC_0848.JPG +9098,2839,325,16,1,other,DSC_0848.JPG +9099,1684,124,16,1,other,DSC_0848.JPG +91,1591,91,15,1,other,DSC_0844.JPG +9100,2527,385,15,1,other,DSC_0848.JPG +9101,1162,676,17,1,other,DSC_0848.JPG +9102,2038,622,17,1,other,DSC_0848.JPG +9103,3997,1006,15,1,other,DSC_0848.JPG +9104,1720,187,16,1,other,DSC_0848.JPG +9105,2281,73,16,1,other,DSC_0848.JPG +9106,3829,328,15,1,other,DSC_0848.JPG +9107,1372,925,15,1,other,DSC_0848.JPG +9108,4279,766,15,1,other,DSC_0848.JPG +9109,3721,763,17,1,other,DSC_0848.JPG +9111,2983,202,16,1,other,DSC_0848.JPG +9113,2005,67,16,1,other,DSC_0848.JPG +9114,2146,562,15,1,other,DSC_0848.JPG +9115,3511,142,17,1,other,DSC_0848.JPG +9116,2389,1819,15,1,other,DSC_0848.JPG +9117,2179,376,17,1,other,DSC_0848.JPG +9119,2980,937,15,1,other,DSC_0848.JPG +9120,2314,2056,16,5,other,DSC_0848.JPG +9121,2320,619,17,1,other,DSC_0848.JPG +9123,2491,196,17,1,other,DSC_0848.JPG +9125,1792,439,17,1,other,DSC_0848.JPG +9126,4096,1423,17,1,other,DSC_0848.JPG +9128,3688,331,17,1,other,DSC_0848.JPG +9129,2041,745,17,1,other,DSC_0848.JPG +9130,1162,922,16,1,other,DSC_0848.JPG +9131,2449,2173,16,1,other,DSC_0848.JPG +9132,1684,250,16,1,other,DSC_0848.JPG +9133,1861,685,17,1,other,DSC_0848.JPG +9134,2770,325,16,1,other,DSC_0848.JPG +9135,1234,922,17,1,other,DSC_0848.JPG +9136,2626,1999,15,1,other,DSC_0848.JPG +9137,4390,91,17,1,other,DSC_0848.JPG +9138,4603,214,17,1,other,DSC_0848.JPG +9139,3160,265,17,1,other,DSC_0848.JPG +9140,2074,682,17,1,other,DSC_0848.JPG +9141,1408,1924,15,1,other,DSC_0848.JPG +9142,1126,244,17,1,other,DSC_0848.JPG +9143,2041,499,17,1,other,DSC_0848.JPG +9144,2032,1939,15,1,other,DSC_0848.JPG +9145,2911,202,16,1,other,DSC_0848.JPG +9146,2176,745,17,1,other,DSC_0848.JPG +9147,2284,562,17,1,other,DSC_0848.JPG +9149,4240,1303,16,1,other,DSC_0848.JPG +9150,3706,1714,15,1,other,DSC_0848.JPG +9152,2287,439,15,1,other,DSC_0848.JPG +9154,3184,1417,15,1,other,DSC_0848.JPG +9156,4537,2293,16,1,other,DSC_0848.JPG +9157,2074,67,17,1,other,DSC_0848.JPG +9158,4324,91,17,1,other,DSC_0848.JPG +9159,3619,703,17,1,other,DSC_0848.JPG +9160,1474,124,16,1,other,DSC_0848.JPG +9161,1405,244,17,1,other,DSC_0848.JPG +9162,4003,643,17,1,other,DSC_0848.JPG +9163,2002,682,17,1,other,DSC_0848.JPG +9164,4297,2125,15,1,other,DSC_0848.JPG +9165,3265,73,17,1,other,DSC_0848.JPG +9166,3265,451,15,1,other,DSC_0848.JPG +9167,1336,1573,15,1,other,DSC_0848.JPG +9168,3403,79,15,1,other,DSC_0848.JPG +9169,1543,247,17,1,other,DSC_0848.JPG +9171,2452,2056,15,1,other,DSC_0848.JPG +9172,4426,151,16,1,other,DSC_0848.JPG +9173,2248,256,16,1,other,DSC_0848.JPG +9174,2875,637,17,1,other,DSC_0848.JPG +9177,4369,2125,15,1,other,DSC_0848.JPG +9178,916,118,15,1,other,DSC_0848.JPG +9179,634,367,15,1,other,DSC_0848.JPG +9180,2665,628,16,1,other,DSC_0848.JPG +9181,2803,754,17,1,other,DSC_0848.JPG +9184,1336,1690,15,1,other,DSC_0848.JPG +9185,2320,376,17,1,other,DSC_0848.JPG +9186,2392,499,17,1,other,DSC_0848.JPG +9187,2212,562,17,1,other,DSC_0848.JPG +9188,1405,616,15,1,other,DSC_0848.JPG +9189,2596,628,15,1,other,DSC_0848.JPG +9191,670,178,17,1,other,DSC_0848.JPG +9192,2767,202,15,1,other,DSC_0848.JPG +9193,4183,214,15,1,other,DSC_0848.JPG +9194,3265,322,17,1,other,DSC_0848.JPG +9195,1651,928,15,1,other,DSC_0848.JPG +9196,1786,1405,15,1,other,DSC_0848.JPG +9198,2038,127,17,1,other,DSC_0848.JPG +9199,3229,262,17,1,other,DSC_0848.JPG +92,1876,97,15,1,other,DSC_0844.JPG +9200,3652,268,17,1,other,DSC_0848.JPG +9201,3547,325,15,1,other,DSC_0848.JPG +9202,2701,688,15,1,other,DSC_0848.JPG +9205,1228,184,17,1,other,DSC_0848.JPG +9206,3940,271,16,1,other,DSC_0848.JPG +9207,2701,445,17,1,other,DSC_0848.JPG +9209,1126,859,17,1,other,DSC_0848.JPG +9210,2245,868,17,1,other,DSC_0848.JPG +9212,1441,1042,15,1,other,DSC_0848.JPG +9214,4435,2125,17,1,other,DSC_0848.JPG +9215,2107,127,17,1,other,DSC_0848.JPG +9216,1195,244,16,1,other,DSC_0848.JPG +9217,808,304,17,1,other,DSC_0848.JPG +9218,4039,334,15,1,other,DSC_0848.JPG +9219,2599,385,15,1,other,DSC_0848.JPG +9220,3052,574,16,1,other,DSC_0848.JPG +9221,3901,577,15,1,other,DSC_0848.JPG +9223,1963,1111,17,5,other,DSC_0848.JPG +9224,3811,1777,17,1,other,DSC_0848.JPG +9225,4195,2071,15,1,other,DSC_0848.JPG +9226,3982,2074,15,1,other,DSC_0848.JPG +9227,4183,85,17,1,other,DSC_0848.JPG +9228,3724,145,16,1,other,DSC_0848.JPG +9229,3406,199,17,1,other,DSC_0848.JPG +9230,2359,562,15,1,other,DSC_0848.JPG +9232,3256,1063,17,1,other,DSC_0848.JPG +9234,4414,1360,17,1,other,DSC_0848.JPG +9235,3145,1834,17,1,other,DSC_0848.JPG +9236,2242,1939,16,1,other,DSC_0848.JPG +9237,1303,61,15,1,other,DSC_0848.JPG +9238,1933,64,17,1,other,DSC_0848.JPG +9239,3619,79,17,1,other,DSC_0848.JPG +9240,2071,190,16,1,other,DSC_0848.JPG +9241,2140,190,15,1,other,DSC_0848.JPG +9242,3016,391,17,1,other,DSC_0848.JPG +9243,1267,859,15,1,other,DSC_0848.JPG +9246,1894,2053,15,1,other,DSC_0848.JPG +9247,2563,73,17,1,other,DSC_0848.JPG +9248,3055,202,17,1,other,DSC_0848.JPG +9249,3085,391,15,1,other,DSC_0848.JPG +9250,2179,502,17,1,other,DSC_0848.JPG +9251,2110,742,17,1,other,DSC_0848.JPG +9252,2005,805,17,1,other,DSC_0848.JPG +9253,4315,829,16,1,other,DSC_0848.JPG +9254,1372,1042,15,1,other,DSC_0848.JPG +9256,3856,1126,17,1,other,DSC_0848.JPG +9258,3496,1480,15,1,other,DSC_0848.JPG +9259,772,118,17,1,other,DSC_0848.JPG +9260,3763,202,17,1,other,DSC_0848.JPG +9261,2356,439,17,1,other,DSC_0848.JPG +9262,2461,622,17,1,other,DSC_0848.JPG +9263,1339,982,15,1,other,DSC_0848.JPG +9265,4114,85,17,1,other,DSC_0848.JPG +9266,1441,310,15,1,other,DSC_0848.JPG +9267,4321,337,16,1,other,DSC_0848.JPG +9268,1933,559,17,1,other,DSC_0848.JPG +9269,1966,745,17,1,other,DSC_0848.JPG +9271,670,1033,17,1,other,DSC_0848.JPG +9272,4309,1303,15,1,other,DSC_0848.JPG +9273,2737,388,17,1,other,DSC_0848.JPG +9274,3301,388,17,1,other,DSC_0848.JPG +9275,3724,388,15,1,other,DSC_0848.JPG +9276,3655,517,17,1,other,DSC_0848.JPG +9277,3826,826,16,1,other,DSC_0848.JPG +9280,1651,1165,17,1,other,DSC_0848.JPG +9282,3457,1777,15,1,other,DSC_0848.JPG +9283,2521,2056,16,1,other,DSC_0848.JPG +9284,811,58,15,1,other,DSC_0848.JPG +9285,1336,124,17,1,other,DSC_0848.JPG +9286,4744,214,17,1,other,DSC_0848.JPG +9287,3439,262,15,1,other,DSC_0848.JPG +9288,3157,634,17,1,other,DSC_0848.JPG +9289,3889,1186,17,1,other,DSC_0848.JPG +9290,1615,1225,17,1,other,DSC_0848.JPG +9291,1750,1582,17,1,other,DSC_0848.JPG +9292,3148,1594,15,1,other,DSC_0848.JPG +9293,1546,1924,15,1,other,DSC_0848.JPG +9294,3352,1957,17,1,other,DSC_0848.JPG +9295,2212,193,15,1,other,DSC_0848.JPG +9296,3409,328,17,1,other,DSC_0848.JPG +9297,1021,673,17,1,other,DSC_0848.JPG +9298,1195,859,15,1,other,DSC_0848.JPG +9299,3016,877,17,1,other,DSC_0848.JPG +93,2221,103,16,1,other,DSC_0844.JPG +9300,1477,985,17,1,other,DSC_0848.JPG +9301,1441,1165,16,1,other,DSC_0848.JPG +9302,2944,1354,15,1,other,DSC_0848.JPG +9303,1165,1630,15,1,other,DSC_0848.JPG +9305,4822,1948,15,1,other,DSC_0848.JPG +9306,4009,148,16,1,other,DSC_0848.JPG +9307,1159,181,17,1,other,DSC_0848.JPG +9308,3970,331,15,1,other,DSC_0848.JPG +9309,2071,439,15,1,other,DSC_0848.JPG +9310,1897,622,17,1,other,DSC_0848.JPG +9311,1969,622,17,1,other,DSC_0848.JPG +9313,3604,1423,17,1,other,DSC_0848.JPG +9315,4966,1477,17,1,other,DSC_0848.JPG +9316,3466,1537,17,1,other,DSC_0848.JPG +9317,1339,1807,15,1,other,DSC_0848.JPG +9318,1684,1930,15,1,other,DSC_0848.JPG +9319,3547,79,16,1,other,DSC_0848.JPG +9320,1264,124,17,1,other,DSC_0848.JPG +9321,3583,268,17,1,other,DSC_0848.JPG +9322,2632,445,16,1,other,DSC_0848.JPG +9323,2563,685,17,1,other,DSC_0848.JPG +9324,4243,829,17,1,other,DSC_0848.JPG +9325,3577,886,15,1,other,DSC_0848.JPG +9329,4333,2068,15,1,other,DSC_0848.JPG +9330,4216,277,17,1,other,DSC_0848.JPG +9331,3229,388,16,1,other,DSC_0848.JPG +9332,2629,565,17,1,other,DSC_0848.JPG +9333,1126,736,17,1,other,DSC_0848.JPG +9334,4423,766,17,1,other,DSC_0848.JPG +9335,1930,928,17,1,other,DSC_0848.JPG +9336,1648,1288,15,1,other,DSC_0848.JPG +9337,3427,1480,15,1,other,DSC_0848.JPG +9338,4690,1480,17,1,other,DSC_0848.JPG +9339,1165,1747,17,1,other,DSC_0848.JPG +9340,1303,1747,15,1,other,DSC_0848.JPG +9341,3106,2128,15,1,other,DSC_0848.JPG +9342,1162,61,17,1,other,DSC_0848.JPG +9343,2353,199,17,1,other,DSC_0848.JPG +9344,2803,508,15,1,other,DSC_0848.JPG +9345,3439,514,17,1,other,DSC_0848.JPG +9347,1477,1105,17,1,other,DSC_0848.JPG +9349,3496,1837,16,1,other,DSC_0848.JPG +9351,3475,82,17,1,other,DSC_0848.JPG +9352,3691,454,16,1,other,DSC_0848.JPG +9353,1789,562,17,1,other,DSC_0848.JPG +9355,3190,823,16,1,other,DSC_0848.JPG +9356,2176,865,16,1,other,DSC_0848.JPG +9357,4933,1189,15,1,other,DSC_0848.JPG +9359,3745,1303,17,1,other,DSC_0848.JPG +936,4513,1399,15,1,other,DSC_0844.JPG +9360,5041,1363,17,1,other,DSC_0848.JPG +9361,3427,1597,17,1,other,DSC_0848.JPG +9362,2866,1948,16,1,other,DSC_0848.JPG +9363,4192,2302,15,1,other,DSC_0848.JPG +9364,3655,145,15,1,other,DSC_0848.JPG +9365,1789,187,17,1,other,DSC_0848.JPG +9366,3688,205,17,1,other,DSC_0848.JPG +9367,2425,439,17,1,other,DSC_0848.JPG +9368,3724,517,16,1,other,DSC_0848.JPG +9369,1093,796,15,1,other,DSC_0848.JPG +9370,1579,925,17,1,other,DSC_0848.JPG +9371,4942,955,17,1,other,DSC_0848.JPG +9372,1549,985,15,1,other,DSC_0848.JPG +9373,4102,1069,16,1,other,DSC_0848.JPG +9374,1336,1105,16,1,other,DSC_0848.JPG +9375,1855,1405,15,1,other,DSC_0848.JPG +9376,2494,1873,17,1,other,DSC_0848.JPG +9377,2590,2173,15,1,other,DSC_0848.JPG +9378,844,118,17,1,other,DSC_0848.JPG +9379,3265,196,15,1,other,DSC_0848.JPG +9380,3547,205,16,1,other,DSC_0848.JPG +9381,913,244,17,1,other,DSC_0848.JPG +9382,1474,742,17,1,other,DSC_0848.JPG +9384,3370,760,15,1,other,DSC_0848.JPG +9385,1855,1048,17,1,other,DSC_0848.JPG +9386,1930,1051,16,1,other,DSC_0848.JPG +9389,3496,1714,17,1,other,DSC_0848.JPG +9390,3604,1774,17,1,other,DSC_0848.JPG +9391,2560,1999,17,1,other,DSC_0848.JPG +9392,2626,2116,15,1,other,DSC_0848.JPG +9393,2842,202,15,1,other,DSC_0848.JPG +9394,4045,208,16,1,other,DSC_0848.JPG +9395,769,244,17,1,other,DSC_0848.JPG +9396,1231,430,17,1,other,DSC_0848.JPG +9397,4459,460,17,1,other,DSC_0848.JPG +9398,1297,553,15,1,other,DSC_0848.JPG +9399,3829,577,17,1,other,DSC_0848.JPG +94,3601,184,15,1,other,DSC_0844.JPG +9400,1684,622,17,1,other,DSC_0848.JPG +9401,1159,799,17,1,other,DSC_0848.JPG +9402,2212,802,17,1,other,DSC_0848.JPG +9403,4981,895,16,1,other,DSC_0848.JPG +9404,1684,1108,15,1,other,DSC_0848.JPG +9406,1579,1753,15,1,other,DSC_0848.JPG +9407,4216,151,17,1,other,DSC_0848.JPG +9408,2701,199,17,1,other,DSC_0848.JPG +9409,3616,205,15,1,other,DSC_0848.JPG +9410,3298,763,17,1,other,DSC_0848.JPG +9411,1930,808,15,1,other,DSC_0848.JPG +9414,2944,877,17,1,other,DSC_0848.JPG +9415,1060,982,15,1,other,DSC_0848.JPG +942,4495,2116,15,1,other,DSC_0844.JPG +9420,2455,1816,17,1,other,DSC_0848.JPG +9421,2419,1879,15,1,other,DSC_0848.JPG +9422,4582,1891,15,1,other,DSC_0848.JPG +9423,3442,142,16,1,other,DSC_0848.JPG +9424,2002,190,16,1,other,DSC_0848.JPG +9426,4846,649,17,1,other,DSC_0848.JPG +9427,1681,745,17,1,other,DSC_0848.JPG +9429,1438,1402,15,1,other,DSC_0848.JPG +9430,991,1684,16,1,other,DSC_0848.JPG +9431,1477,1693,15,1,other,DSC_0848.JPG +9432,1228,61,17,1,other,DSC_0848.JPG +9433,1438,187,17,1,other,DSC_0848.JPG +9434,4393,214,16,1,other,DSC_0848.JPG +9435,3259,577,17,1,other,DSC_0848.JPG +9436,1198,616,17,1,other,DSC_0848.JPG +9437,1546,862,17,1,other,DSC_0848.JPG +9440,3994,1129,17,1,other,DSC_0848.JPG +9441,3568,1363,17,1,other,DSC_0848.JPG +9442,1096,1513,15,1,other,DSC_0848.JPG +9444,3814,1537,17,1,other,DSC_0848.JPG +9445,1888,1579,15,1,other,DSC_0848.JPG +9446,3529,1657,15,1,other,DSC_0848.JPG +9447,2845,76,17,1,other,DSC_0848.JPG +9448,1192,124,15,1,other,DSC_0848.JPG +9449,1615,127,16,1,other,DSC_0848.JPG +9450,4777,154,15,1,other,DSC_0848.JPG +9451,3193,202,17,1,other,DSC_0848.JPG +9452,3478,202,16,1,other,DSC_0848.JPG +9453,1021,307,16,1,other,DSC_0848.JPG +9454,772,370,17,1,other,DSC_0848.JPG +9455,4147,400,15,1,other,DSC_0848.JPG +9456,2323,499,17,1,other,DSC_0848.JPG +9457,2947,511,15,1,other,DSC_0848.JPG +9458,985,613,17,1,other,DSC_0848.JPG +9459,2110,625,17,1,other,DSC_0848.JPG +9460,1372,676,17,1,other,DSC_0848.JPG +9461,2215,682,15,1,other,DSC_0848.JPG +9462,3331,700,17,1,other,DSC_0848.JPG +9463,1054,733,17,1,other,DSC_0848.JPG +9465,4420,889,17,1,other,DSC_0848.JPG +9466,3505,1003,17,1,other,DSC_0848.JPG +9468,3850,1366,17,1,other,DSC_0848.JPG +9469,1303,1513,15,1,other,DSC_0848.JPG +9470,3145,1714,16,1,other,DSC_0848.JPG +9471,1510,1750,15,1,other,DSC_0848.JPG +9473,4162,1894,15,1,other,DSC_0848.JPG +9474,3772,1957,15,1,other,DSC_0848.JPG +9475,1270,2035,15,1,other,DSC_0848.JPG +9476,1339,2038,15,1,other,DSC_0848.JPG +9477,2380,2170,15,1,other,DSC_0848.JPG +9478,1588,2332,15,1,other,DSC_0848.JPG +9479,4846,151,17,1,other,DSC_0848.JPG +9480,3511,262,15,1,other,DSC_0848.JPG +9481,3865,394,17,1,other,DSC_0848.JPG +9482,2005,442,17,1,other,DSC_0848.JPG +9483,2734,508,17,1,other,DSC_0848.JPG +9484,4876,829,15,1,other,DSC_0848.JPG +9485,1615,865,15,1,other,DSC_0848.JPG +9486,3787,886,17,1,other,DSC_0848.JPG +9487,4627,1009,17,1,other,DSC_0848.JPG +9488,1858,1168,15,1,other,DSC_0848.JPG +9490,955,1507,17,1,other,DSC_0848.JPG +9491,3985,1717,17,1,other,DSC_0848.JPG +9492,3565,1834,17,1,other,DSC_0848.JPG +9493,1651,2104,15,1,other,DSC_0848.JPG +9495,3619,328,16,1,other,DSC_0848.JPG +9496,4180,337,17,1,other,DSC_0848.JPG +9497,562,364,17,1,other,DSC_0848.JPG +9498,2212,442,17,1,other,DSC_0848.JPG +9499,2596,508,17,1,other,DSC_0848.JPG +9501,3256,1186,17,1,other,DSC_0848.JPG +9502,1198,1339,17,1,other,DSC_0848.JPG +9503,4690,1360,16,1,other,DSC_0848.JPG +9504,1405,1573,15,1,other,DSC_0848.JPG +9505,1918,1639,15,1,other,DSC_0848.JPG +9506,3040,1771,15,1,other,DSC_0848.JPG +9508,3688,85,17,1,other,DSC_0848.JPG +9509,1231,307,16,1,other,DSC_0848.JPG +9510,3337,325,16,1,other,DSC_0848.JPG +9511,703,367,17,1,other,DSC_0848.JPG +9512,2107,379,16,1,other,DSC_0848.JPG +9513,4288,400,15,1,other,DSC_0848.JPG +9514,3970,457,17,1,other,DSC_0848.JPG +9515,1405,496,17,1,other,DSC_0848.JPG +9516,2668,508,17,1,other,DSC_0848.JPG +9517,3298,514,16,1,other,DSC_0848.JPG +9518,4597,709,17,1,other,DSC_0848.JPG +9519,1444,802,15,1,other,DSC_0848.JPG +9520,1966,868,16,1,other,DSC_0848.JPG +9522,1510,1045,16,1,other,DSC_0848.JPG +9523,4522,1069,15,1,other,DSC_0848.JPG +9525,3466,1303,16,1,other,DSC_0848.JPG +9526,4339,1837,15,1,other,DSC_0848.JPG +9529,4888,2062,15,1,other,DSC_0848.JPG +9530,3841,2071,17,1,other,DSC_0848.JPG +9531,4567,154,16,1,other,DSC_0848.JPG +9532,1579,187,16,1,other,DSC_0848.JPG +9533,3019,265,16,1,other,DSC_0848.JPG +9534,739,307,15,1,other,DSC_0848.JPG +9535,2038,379,16,1,other,DSC_0848.JPG +9536,3511,391,17,1,other,DSC_0848.JPG +9537,1510,433,15,1,other,DSC_0848.JPG +9538,3403,451,16,1,other,DSC_0848.JPG +9539,2494,565,16,1,other,DSC_0848.JPG +9540,2248,622,17,1,other,DSC_0848.JPG +9541,4636,649,15,1,other,DSC_0848.JPG +9542,3049,817,16,1,other,DSC_0848.JPG +9543,1684,868,15,1,other,DSC_0848.JPG +9544,4558,1009,15,1,other,DSC_0848.JPG +9545,1546,1105,17,1,other,DSC_0848.JPG +9546,3571,1246,16,1,other,DSC_0848.JPG +9548,4417,1477,17,1,other,DSC_0848.JPG +9549,4450,1540,16,1,other,DSC_0848.JPG +9550,1963,2053,15,1,other,DSC_0848.JPG +9551,2488,2113,15,1,other,DSC_0848.JPG +9552,3229,139,17,1,other,DSC_0848.JPG +9553,808,424,17,1,other,DSC_0848.JPG +9554,1441,556,17,1,other,DSC_0848.JPG +9555,2392,625,17,1,other,DSC_0848.JPG +9556,2632,688,17,1,other,DSC_0848.JPG +9557,3760,706,17,1,other,DSC_0848.JPG +9558,3934,763,17,1,other,DSC_0848.JPG +9559,4597,835,17,1,other,DSC_0848.JPG +9562,3748,1066,16,1,other,DSC_0848.JPG +9563,1369,1168,17,1,other,DSC_0848.JPG +9564,4897,1360,15,1,other,DSC_0848.JPG +9565,4756,1597,15,1,other,DSC_0848.JPG +9566,1855,1756,15,1,other,DSC_0848.JPG +9567,1612,1810,15,1,other,DSC_0848.JPG +9568,2731,1825,16,1,other,DSC_0848.JPG +9569,3007,1831,15,1,other,DSC_0848.JPG +9570,4648,2005,17,1,other,DSC_0848.JPG +9571,1477,2044,17,1,other,DSC_0848.JPG +9572,3877,2137,17,1,other,DSC_0848.JPG +9573,4645,2233,15,1,other,DSC_0848.JPG +9574,4744,94,16,1,other,DSC_0848.JPG +9575,1897,256,17,1,other,DSC_0848.JPG +9576,4528,586,17,1,other,DSC_0848.JPG +9577,1264,616,17,1,other,DSC_0848.JPG +9578,1582,682,16,1,other,DSC_0848.JPG +9580,4384,829,15,1,other,DSC_0848.JPG +9582,3082,1000,15,1,other,DSC_0848.JPG +9583,3928,1009,15,1,other,DSC_0848.JPG +9584,4552,1129,17,1,other,DSC_0848.JPG +9586,3256,1303,16,1,other,DSC_0848.JPG +9587,4759,1360,16,1,other,DSC_0848.JPG +9588,4828,1360,16,1,other,DSC_0848.JPG +9589,3637,1363,16,1,other,DSC_0848.JPG +9590,3994,1363,16,1,other,DSC_0848.JPG +9591,3568,1480,17,1,other,DSC_0848.JPG +9592,1789,1990,15,1,other,DSC_0848.JPG +9593,565,115,17,1,other,DSC_0848.JPG +9594,1858,187,17,1,other,DSC_0848.JPG +9595,2629,202,17,1,other,DSC_0848.JPG +9596,4249,340,17,1,other,DSC_0848.JPG +9597,1477,370,17,1,other,DSC_0848.JPG +9598,1651,436,16,1,other,DSC_0848.JPG +9599,3295,637,16,1,other,DSC_0848.JPG +9600,3721,640,15,1,other,DSC_0848.JPG +9601,4594,952,16,1,other,DSC_0848.JPG +9602,1684,985,15,1,other,DSC_0848.JPG +9604,4240,1069,15,1,other,DSC_0848.JPG +9605,1510,1168,15,1,other,DSC_0848.JPG +9606,4381,1183,17,1,other,DSC_0848.JPG +9607,1789,1288,15,1,other,DSC_0848.JPG +9608,1648,1402,17,1,other,DSC_0848.JPG +9609,4657,1537,16,1,other,DSC_0848.JPG +9610,3886,1540,17,1,other,DSC_0848.JPG +9611,4552,1597,15,1,other,DSC_0848.JPG +9612,1408,1690,15,1,other,DSC_0848.JPG +9613,3424,1714,17,1,other,DSC_0848.JPG +9614,1372,1750,17,1,other,DSC_0848.JPG +9616,3565,1957,17,1,other,DSC_0848.JPG +9617,1441,1981,15,1,other,DSC_0848.JPG +9618,1996,1996,15,1,other,DSC_0848.JPG +9619,2209,1999,16,1,other,DSC_0848.JPG +9620,2347,2113,15,1,other,DSC_0848.JPG +9621,1339,2269,15,1,other,DSC_0848.JPG +9622,1126,121,16,1,other,DSC_0848.JPG +9623,1474,247,16,1,other,DSC_0848.JPG +9624,4006,271,16,1,other,DSC_0848.JPG +9625,529,298,17,1,other,DSC_0848.JPG +9626,1510,307,17,1,other,DSC_0848.JPG +9627,1651,310,17,1,other,DSC_0848.JPG +9628,3334,448,17,1,other,DSC_0848.JPG +9629,3196,451,15,1,other,DSC_0848.JPG +963,4960,1939,16,1,other,DSC_0844.JPG +9630,526,547,15,1,other,DSC_0848.JPG +9632,4876,709,17,1,other,DSC_0848.JPG +9634,3787,1006,17,1,other,DSC_0848.JPG +9635,4135,1009,15,1,other,DSC_0848.JPG +9637,4348,1129,15,1,other,DSC_0848.JPG +9638,3706,1363,17,1,other,DSC_0848.JPG +9639,1165,1513,15,1,other,DSC_0848.JPG +964,400,1963,17,1,other,DSC_0844.JPG +9640,4519,1537,17,1,other,DSC_0848.JPG +9641,4792,1537,16,1,other,DSC_0848.JPG +9643,3076,1594,15,1,other,DSC_0848.JPG +9644,2101,1939,16,1,other,DSC_0848.JPG +9645,4681,2065,15,1,other,DSC_0848.JPG +9646,3124,76,15,1,other,DSC_0848.JPG +9647,2701,79,15,1,other,DSC_0848.JPG +9648,2665,262,16,1,other,DSC_0848.JPG +9649,667,301,17,1,other,DSC_0848.JPG +9650,598,304,17,1,other,DSC_0848.JPG +9651,2629,322,15,1,other,DSC_0848.JPG +9653,1300,427,17,1,other,DSC_0848.JPG +9654,3619,457,17,1,other,DSC_0848.JPG +9655,2839,568,17,1,other,DSC_0848.JPG +9656,2806,634,17,1,other,DSC_0848.JPG +9657,1441,682,16,1,other,DSC_0848.JPG +9658,2386,865,17,1,other,DSC_0848.JPG +9659,2665,874,15,5,other,DSC_0848.JPG +966,508,2035,16,1,other,DSC_0844.JPG +9660,1720,928,15,1,other,DSC_0848.JPG +9663,1408,1105,16,1,other,DSC_0848.JPG +9664,1822,1111,15,1,other,DSC_0848.JPG +9666,1234,1162,15,1,other,DSC_0848.JPG +9667,3952,1540,17,1,other,DSC_0848.JPG +9668,3877,1894,17,1,other,DSC_0848.JPG +9670,1858,1993,15,1,other,DSC_0848.JPG +9671,3373,136,17,1,other,DSC_0848.JPG +9672,3868,145,16,1,other,DSC_0848.JPG +9673,1825,496,17,1,other,DSC_0848.JPG +9674,2110,499,17,1,other,DSC_0848.JPG +9675,1615,622,16,1,other,DSC_0848.JPG +9676,2179,622,17,1,other,DSC_0848.JPG +9677,3016,637,15,1,other,DSC_0848.JPG +9678,2143,685,15,1,other,DSC_0848.JPG +9679,1267,1102,15,1,other,DSC_0848.JPG +968,5101,2053,15,1,other,DSC_0844.JPG +9680,3115,1414,17,1,other,DSC_0848.JPG +9681,3283,1714,15,1,other,DSC_0848.JPG +9682,4414,1717,17,1,other,DSC_0848.JPG +9684,1930,2110,15,1,other,DSC_0848.JPG +9685,3805,2248,15,1,other,DSC_0848.JPG +9686,2944,388,16,1,other,DSC_0848.JPG +9687,3760,451,16,1,other,DSC_0848.JPG +9688,4249,460,17,1,other,DSC_0848.JPG +9689,3796,517,17,1,other,DSC_0848.JPG +9690,4177,583,16,1,other,DSC_0848.JPG +9691,3865,763,17,1,other,DSC_0848.JPG +9692,1792,808,15,1,other,DSC_0848.JPG +9693,1825,871,17,1,other,DSC_0848.JPG +9694,2977,1294,17,1,other,DSC_0848.JPG +9695,5110,1363,17,1,other,DSC_0848.JPG +9697,3391,1774,17,1,other,DSC_0848.JPG +9698,4717,2005,15,1,other,DSC_0848.JPG +97,2506,106,16,1,other,DSC_0844.JPG +970,1312,85,17,1,other,DSC_0844.JPG +9700,3631,2074,15,1,other,DSC_0848.JPG +9701,1444,2098,17,1,other,DSC_0848.JPG +9702,2695,2119,15,1,other,DSC_0848.JPG +9703,4264,2185,15,1,other,DSC_0848.JPG +9704,1582,2218,15,1,other,DSC_0848.JPG +9705,4018,2248,15,1,other,DSC_0848.JPG +9706,1090,55,17,1,other,DSC_0848.JPG +9707,4324,214,17,1,other,DSC_0848.JPG +9708,3865,268,15,1,other,DSC_0848.JPG +9709,1933,436,17,1,other,DSC_0848.JPG +971,475,124,17,1,other,DSC_0844.JPG +9710,1723,439,15,1,other,DSC_0848.JPG +9711,2563,445,16,1,other,DSC_0848.JPG +9712,4390,583,17,1,other,DSC_0848.JPG +9713,4882,583,17,1,other,DSC_0848.JPG +9714,2947,634,16,1,other,DSC_0848.JPG +9715,3262,700,16,1,other,DSC_0848.JPG +9716,4669,712,17,1,other,DSC_0848.JPG +9717,1543,742,15,1,other,DSC_0848.JPG +9718,3439,883,17,1,other,DSC_0848.JPG +9719,2908,940,17,1,other,DSC_0848.JPG +972,2119,169,17,1,other,DSC_0844.JPG +9720,4207,1009,15,1,other,DSC_0848.JPG +9722,1162,1279,16,1,other,DSC_0848.JPG +9723,4453,1300,17,1,other,DSC_0848.JPG +9724,4687,1597,15,1,other,DSC_0848.JPG +9725,3601,1657,16,1,other,DSC_0848.JPG +9726,1372,1864,15,1,other,DSC_0848.JPG +9727,2833,1888,16,1,other,DSC_0848.JPG +9728,4720,1891,16,1,other,DSC_0848.JPG +9730,4918,2122,15,1,other,DSC_0848.JPG +9731,3946,2248,15,1,other,DSC_0848.JPG +9732,4084,2362,16,1,other,DSC_0848.JPG +9733,2914,73,15,1,other,DSC_0848.JPG +9734,634,115,16,1,other,DSC_0848.JPG +9735,4150,148,17,1,other,DSC_0848.JPG +9736,1789,313,16,1,other,DSC_0848.JPG +9737,3475,325,15,1,other,DSC_0848.JPG +9738,4111,334,16,1,other,DSC_0848.JPG +9739,4039,457,17,1,other,DSC_0848.JPG +9740,1645,805,15,1,other,DSC_0848.JPG +9742,1753,868,17,1,other,DSC_0848.JPG +9744,1510,922,17,1,other,DSC_0848.JPG +9746,4243,949,15,1,other,DSC_0848.JPG +9747,1891,991,15,1,other,DSC_0848.JPG +9748,3787,1126,17,1,other,DSC_0848.JPG +9749,3328,1186,17,1,other,DSC_0848.JPG +9751,4171,1543,17,1,other,DSC_0848.JPG +9752,4093,1654,16,1,other,DSC_0848.JPG +9753,1822,1813,15,1,other,DSC_0848.JPG +9755,4126,1951,17,1,other,DSC_0848.JPG +9756,1372,1981,15,1,other,DSC_0848.JPG +9757,1408,2038,15,1,other,DSC_0848.JPG +9758,3073,2071,17,1,other,DSC_0848.JPG +9759,1447,2215,15,1,other,DSC_0848.JPG +9760,3940,145,16,1,other,DSC_0848.JPG +9761,2353,316,15,1,other,DSC_0848.JPG +9762,3193,322,15,1,other,DSC_0848.JPG +9763,217,358,17,1,other,DSC_0848.JPG +9764,3901,451,17,1,other,DSC_0848.JPG +9765,703,613,17,1,other,DSC_0848.JPG +9766,3652,637,17,1,other,DSC_0848.JPG +9767,4705,649,17,1,other,DSC_0848.JPG +9768,3085,760,17,1,other,DSC_0848.JPG +9769,4141,766,16,1,other,DSC_0848.JPG +9770,2908,817,16,1,other,DSC_0848.JPG +9771,844,856,15,1,other,DSC_0848.JPG +9772,4876,955,17,1,other,DSC_0848.JPG +9773,880,1033,17,1,other,DSC_0848.JPG +9774,1300,1045,15,1,other,DSC_0848.JPG +9776,1372,1285,15,1,other,DSC_0848.JPG +9778,4384,1303,17,1,other,DSC_0848.JPG +9779,4588,1537,15,1,other,DSC_0848.JPG +9780,4726,1537,15,1,other,DSC_0848.JPG +9782,1645,1639,17,1,other,DSC_0848.JPG +9783,1786,1753,15,1,other,DSC_0848.JPG +9784,4513,1894,15,1,other,DSC_0848.JPG +9786,5026,1951,17,1,other,DSC_0848.JPG +9787,1825,124,17,1,other,DSC_0848.JPG +9788,3829,205,15,1,other,DSC_0848.JPG +9789,2035,253,17,1,other,DSC_0848.JPG +9790,2950,262,17,1,other,DSC_0848.JPG +9791,2878,265,17,1,other,DSC_0848.JPG +9792,3724,271,17,1,other,DSC_0848.JPG +9793,4147,271,15,1,other,DSC_0848.JPG +9794,1723,313,17,1,other,DSC_0848.JPG +9795,2212,316,17,1,other,DSC_0848.JPG +9796,3652,391,17,1,other,DSC_0848.JPG +9797,490,484,17,1,other,DSC_0848.JPG +9798,4423,523,16,1,other,DSC_0848.JPG +9799,3580,643,17,1,other,DSC_0848.JPG +9800,4036,706,15,1,other,DSC_0848.JPG +9801,4207,766,15,1,other,DSC_0848.JPG +9802,2560,805,15,1,other,DSC_0848.JPG +9804,4729,1189,17,1,other,DSC_0848.JPG +9805,1753,1345,15,1,other,DSC_0848.JPG +9806,4309,1537,15,1,other,DSC_0848.JPG +9807,1267,1573,15,1,other,DSC_0848.JPG +9808,4927,1657,15,1,other,DSC_0848.JPG +9809,1615,1693,17,1,other,DSC_0848.JPG +9810,1822,1933,16,1,other,DSC_0848.JPG +9812,2137,1999,16,1,other,DSC_0848.JPG +9813,4510,2008,15,1,other,DSC_0848.JPG +9814,3805,2014,15,1,other,DSC_0848.JPG +9815,4018,2014,16,1,other,DSC_0848.JPG +9816,2242,2170,15,1,other,DSC_0848.JPG +9817,2491,76,15,1,other,DSC_0848.JPG +9818,3334,76,17,1,other,DSC_0848.JPG +9819,2599,139,17,1,other,DSC_0848.JPG +9820,4114,211,16,1,other,DSC_0848.JPG +9821,562,244,17,1,other,DSC_0848.JPG +9822,1825,253,16,1,other,DSC_0848.JPG +9823,3796,268,16,1,other,DSC_0848.JPG +9824,2140,316,17,1,other,DSC_0848.JPG +9825,2980,448,17,1,other,DSC_0848.JPG +9826,3478,454,15,1,other,DSC_0848.JPG +9827,2770,571,16,1,other,DSC_0848.JPG +9828,1195,736,17,1,other,DSC_0848.JPG +9829,4492,769,15,1,other,DSC_0848.JPG +9830,3406,826,15,1,other,DSC_0848.JPG +9831,4840,892,17,1,other,DSC_0848.JPG +9832,1615,988,17,1,other,DSC_0848.JPG +9834,5083,1069,17,1,other,DSC_0848.JPG +9836,3925,1246,17,1,other,DSC_0848.JPG +9838,2977,1411,16,1,other,DSC_0848.JPG +9839,3742,1540,17,1,other,DSC_0848.JPG +9840,4858,1540,15,1,other,DSC_0848.JPG +9841,4894,1717,16,1,other,DSC_0848.JPG +9842,1957,1819,15,1,other,DSC_0848.JPG +9843,1510,1867,15,1,other,DSC_0848.JPG +9844,2068,1876,17,1,other,DSC_0848.JPG +9845,4270,1954,16,1,other,DSC_0848.JPG +9846,3703,1957,17,1,other,DSC_0848.JPG +9847,1507,1981,15,1,other,DSC_0848.JPG +9848,2554,2113,15,1,other,DSC_0848.JPG +9849,2773,76,16,1,other,DSC_0848.JPG +9850,3052,79,15,1,other,DSC_0848.JPG +9851,1969,127,17,1,other,DSC_0848.JPG +9852,2878,139,17,1,other,DSC_0848.JPG +9853,2950,139,16,1,other,DSC_0848.JPG +9854,3796,148,17,1,other,DSC_0848.JPG +9855,4078,148,17,1,other,DSC_0848.JPG +9856,4252,211,16,1,other,DSC_0848.JPG +9857,1333,244,15,1,other,DSC_0848.JPG +9858,2245,379,15,1,other,DSC_0848.JPG +9859,4711,400,17,1,other,DSC_0848.JPG +9860,490,604,15,1,other,DSC_0848.JPG +9861,2734,628,17,1,other,DSC_0848.JPG +9862,2839,694,17,1,other,DSC_0848.JPG +9863,2386,745,16,1,other,DSC_0848.JPG +9864,1231,796,17,1,other,DSC_0848.JPG +9865,3334,823,15,1,other,DSC_0848.JPG +9866,949,916,15,1,other,DSC_0848.JPG +9867,3472,949,17,1,other,DSC_0848.JPG +9868,3958,1186,16,1,other,DSC_0848.JPG +9869,1441,1516,15,1,other,DSC_0848.JPG +9870,1579,1519,15,1,other,DSC_0848.JPG +9871,1576,1636,15,1,other,DSC_0848.JPG +9872,4789,1777,17,1,other,DSC_0848.JPG +9873,1270,1804,15,1,other,DSC_0848.JPG +9874,2278,1999,15,1,other,DSC_0848.JPG +9875,3916,2074,15,1,other,DSC_0848.JPG +9876,3490,2191,15,1,other,DSC_0848.JPG +9877,4399,2296,15,1,other,DSC_0848.JPG +9878,3700,2308,15,1,other,DSC_0848.JPG +9879,4291,2359,15,1,other,DSC_0848.JPG +9880,1723,61,15,1,other,DSC_0848.JPG +9881,3091,142,17,1,other,DSC_0848.JPG +9882,1087,181,16,1,other,DSC_0848.JPG +9883,4426,274,17,1,other,DSC_0848.JPG +9884,1861,313,17,1,other,DSC_0848.JPG +9885,598,424,17,1,other,DSC_0848.JPG +9886,2251,502,17,1,other,DSC_0848.JPG +9887,2530,505,16,1,other,DSC_0848.JPG +9888,3760,577,17,1,other,DSC_0848.JPG +9889,3226,637,16,1,other,DSC_0848.JPG +9890,1645,685,17,1,other,DSC_0848.JPG +9891,2425,688,17,1,other,DSC_0848.JPG +9892,4108,703,15,1,other,DSC_0848.JPG +9893,5329,763,17,1,other,DSC_0848.JPG +9894,3223,883,15,1,other,DSC_0848.JPG +9895,4630,892,15,1,other,DSC_0848.JPG +9896,1300,919,17,1,other,DSC_0848.JPG +9897,2875,997,15,1,other,DSC_0848.JPG +9898,3571,1126,17,1,other,DSC_0848.JPG +9899,4138,1126,17,1,other,DSC_0848.JPG +9900,1891,1225,17,5,other,DSC_0848.JPG +9901,4897,1243,15,1,other,DSC_0848.JPG +9902,1510,1285,15,1,other,DSC_0848.JPG +9903,4174,1303,15,1,other,DSC_0848.JPG +9904,1024,1393,15,1,other,DSC_0848.JPG +9905,1507,1402,15,1,other,DSC_0848.JPG +9907,991,1447,17,1,other,DSC_0848.JPG +9908,3922,1483,17,1,other,DSC_0848.JPG +9909,4897,1597,15,1,other,DSC_0848.JPG +9910,4792,1654,17,1,other,DSC_0848.JPG +9911,3637,1837,17,1,other,DSC_0848.JPG +9912,2173,2056,15,1,other,DSC_0848.JPG +9913,3493,2074,15,1,other,DSC_0848.JPG +9914,4576,2119,17,1,other,DSC_0848.JPG +9915,1897,127,16,1,other,DSC_0848.JPG +9916,1651,187,16,1,other,DSC_0848.JPG +9917,4813,214,17,1,other,DSC_0848.JPG +9918,2389,256,16,1,other,DSC_0848.JPG +9919,3052,325,17,1,other,DSC_0848.JPG +9920,1825,376,17,1,other,DSC_0848.JPG +9921,4495,400,17,1,other,DSC_0848.JPG +9922,4216,403,15,1,other,DSC_0848.JPG +9923,634,487,17,1,other,DSC_0848.JPG +9924,2563,568,17,1,other,DSC_0848.JPG +9925,3328,577,17,1,other,DSC_0848.JPG +9926,1825,619,15,1,other,DSC_0848.JPG +9927,4702,772,15,1,other,DSC_0848.JPG +9928,4210,892,17,1,other,DSC_0848.JPG +9930,3259,943,17,1,other,DSC_0848.JPG +9932,1891,1108,17,1,other,DSC_0848.JPG +9933,4276,1126,17,1,other,DSC_0848.JPG +9934,4555,1483,17,1,other,DSC_0848.JPG +9935,3568,1597,17,1,other,DSC_0848.JPG +9936,1954,1699,15,1,other,DSC_0848.JPG +9937,5029,1831,15,1,other,DSC_0848.JPG +9938,4411,1834,15,1,other,DSC_0848.JPG +9939,4786,2005,15,1,other,DSC_0848.JPG +9940,3700,2074,15,1,other,DSC_0848.JPG +9941,3352,2191,15,1,other,DSC_0848.JPG +9942,1543,121,17,1,other,DSC_0848.JPG +9943,421,241,17,1,other,DSC_0848.JPG +9944,4462,340,17,1,other,DSC_0848.JPG +9945,1090,427,17,1,other,DSC_0848.JPG +9946,1966,499,15,1,other,DSC_0848.JPG +9947,2875,511,16,1,other,DSC_0848.JPG +9948,4495,649,17,1,other,DSC_0848.JPG +9949,3649,763,15,1,other,DSC_0848.JPG +9950,4351,769,16,1,other,DSC_0848.JPG +9951,1303,799,15,1,other,DSC_0848.JPG +9952,3751,826,16,1,other,DSC_0848.JPG +9953,3715,886,17,1,other,DSC_0848.JPG +9954,4069,886,15,1,other,DSC_0848.JPG +9955,3682,943,15,1,other,DSC_0848.JPG +9958,3961,1066,17,1,other,DSC_0848.JPG +9960,3679,1183,17,1,other,DSC_0848.JPG +9961,988,1336,17,1,other,DSC_0848.JPG +9962,3109,1654,16,1,other,DSC_0848.JPG +9963,4822,1717,17,1,other,DSC_0848.JPG +9964,3250,1894,15,1,other,DSC_0848.JPG +9965,3670,1897,17,1,other,DSC_0848.JPG +9967,3916,1957,17,1,other,DSC_0848.JPG +9968,1546,2038,17,1,other,DSC_0848.JPG +9969,4783,2230,15,1,other,DSC_0848.JPG +997,4174,2059,16,1,other,DSC_0844.JPG +9970,1510,187,15,1,other,DSC_0848.JPG +9971,3088,262,16,1,other,DSC_0848.JPG +9972,349,358,17,1,other,DSC_0848.JPG +9973,3829,454,17,1,other,DSC_0848.JPG +9974,4603,460,17,1,other,DSC_0848.JPG +9975,2905,571,15,1,other,DSC_0848.JPG +9976,4915,646,17,1,other,DSC_0848.JPG +9977,1720,805,15,1,other,DSC_0848.JPG +9978,3361,1006,15,1,other,DSC_0848.JPG +9980,4171,1183,17,1,other,DSC_0848.JPG +9981,4066,1246,17,1,other,DSC_0848.JPG +9982,4693,1246,17,1,other,DSC_0848.JPG +9983,3289,1360,16,1,other,DSC_0848.JPG +9984,5068,1537,17,1,other,DSC_0848.JPG +9986,1819,1699,16,1,other,DSC_0848.JPG +9987,1027,1852,15,1,other,DSC_0848.JPG +9988,3952,1897,17,1,other,DSC_0848.JPG +9989,3736,2017,17,1,other,DSC_0848.JPG +999,679,2107,17,1,other,DSC_0844.JPG +9990,3037,2128,15,1,other,DSC_0848.JPG +9991,1828,2167,15,1,other,DSC_0848.JPG +9992,3874,2362,15,1,other,DSC_0848.JPG +9993,2665,139,16,1,other,DSC_0848.JPG +9994,913,364,17,1,other,DSC_0848.JPG +9995,4780,403,17,1,other,DSC_0848.JPG +9996,2494,445,15,1,other,DSC_0848.JPG +9997,3229,511,16,1,other,DSC_0848.JPG +9998,2071,562,16,1,other,DSC_0848.JPG +9999,4315,706,15,1,other,DSC_0848.JPG +1025,3739,1636,15,6,pollen,DSC_0844.JPG +1036,2953,2350,17,6,pollen,DSC_0844.JPG +1038,4795,469,17,6,pollen,DSC_0844.JPG +10498,4288,274,17,6,pollen,DSC_0848.JPG +1059,2881,2350,16,6,pollen,DSC_0844.JPG +1075,2359,2281,17,6,pollen,DSC_0844.JPG +1099,1699,2209,15,6,pollen,DSC_0844.JPG +1131,3232,2239,17,6,pollen,DSC_0844.JPG +11596,4945,706,17,6,pollen,DSC_0848.JPG +1180,4420,127,17,6,pollen,DSC_0844.JPG +1181,4774,136,17,6,pollen,DSC_0844.JPG +1190,2203,1258,16,6,pollen,DSC_0844.JPG +1207,4657,334,17,6,pollen,DSC_0844.JPG +1232,4768,271,17,6,pollen,DSC_0844.JPG +1244,2272,1255,17,6,pollen,DSC_0844.JPG +1249,3775,1576,16,6,pollen,DSC_0844.JPG +12606,2656,2281,17,6,pollen,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1266,3883,1516,15,6,pollen,DSC_0844.JPG +1271,4708,1999,15,6,pollen,DSC_0844.JPG +12747,1741,2605,15,6,pollen,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1323,2221,2158,15,6,pollen,DSC_0844.JPG +1331,4936,595,17,6,pollen,DSC_0844.JPG +13426,1111,2464,17,6,pollen,BEE_HOPE GIMONDE 2016_07_28 BL1_G DSC_3153.JPG +1360,5008,595,17,6,pollen,DSC_0844.JPG +1376,3133,1936,15,6,pollen,DSC_0844.JPG +1427,4387,61,15,6,pollen,DSC_0844.JPG +1451,4348,121,17,6,pollen,DSC_0844.JPG +1459,5017,466,17,6,pollen,DSC_0844.JPG +1489,4945,469,17,6,pollen,DSC_0844.JPG +1502,1888,1552,15,6,pollen,DSC_0844.JPG +1503,1990,1615,15,6,pollen,DSC_0844.JPG +1511,4732,337,17,6,pollen,DSC_0844.JPG +1534,2920,2290,17,6,pollen,DSC_0844.JPG +1540,3106,181,17,6,pollen,DSC_0844.JPG +1542,4978,532,17,6,pollen,DSC_0844.JPG +1553,3916,1579,17,6,pollen,DSC_0844.JPG +1558,5071,1876,17,6,pollen,DSC_0844.JPG +1564,2464,2344,17,6,pollen,DSC_0844.JPG +1565,2185,166,17,6,pollen,DSC_0844.JPG +1625,2746,2110,15,6,pollen,DSC_0844.JPG +1627,2254,2218,17,6,pollen,DSC_0844.JPG +1640,2137,1255,17,6,pollen,DSC_0844.JPG +1653,4528,2059,17,6,pollen,DSC_0844.JPG +1660,1729,94,16,6,pollen,DSC_0844.JPG +1679,4318,2059,17,6,pollen,DSC_0844.JPG +1680,4462,2059,17,6,pollen,DSC_0844.JPG +1688,4804,337,17,6,pollen,DSC_0844.JPG +1694,5350,1429,15,6,pollen,DSC_0844.JPG +1722,4426,1996,17,6,pollen,DSC_0844.JPG +1723,4780,1999,15,6,pollen,DSC_0844.JPG +1768,3808,1639,17,6,pollen,DSC_0844.JPG +1786,3439,2236,17,6,pollen,DSC_0844.JPG +1816,4903,532,17,6,pollen,DSC_0844.JPG +18524,1615,1984,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18526,1258,2350,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18527,1978,1987,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18528,2155,2053,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18530,2473,2725,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18532,2482,1876,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18537,3574,1390,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18540,2152,2536,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18548,1435,2650,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18551,3631,2485,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18554,1654,2047,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18556,1438,2287,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18557,3547,826,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18559,1291,1684,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18561,3418,2122,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18566,2083,2050,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18570,2335,2353,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18574,3382,2302,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18575,3232,2419,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18577,2266,1870,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18578,3166,2179,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18579,2593,1570,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18583,2269,1504,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18584,1438,2167,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18585,2530,685,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18587,4375,1273,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18588,2047,2350,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18591,1213,805,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18593,2734,2176,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18594,3484,2737,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18596,1831,2227,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18597,1045,2347,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18599,2737,1201,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18601,2800,2665,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18602,4384,2425,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18604,1723,1438,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18606,2479,2356,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18612,3058,2236,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18619,2263,2473,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18622,1582,1801,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18623,2623,2119,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18625,3304,2422,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18626,2692,2476,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18627,2437,2659,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18631,3520,2674,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18633,2995,1513,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18637,1903,2473,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18638,3196,2482,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18642,2956,1570,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18643,2161,1687,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18644,2122,1870,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18645,1795,2167,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18647,2332,2473,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18650,3433,1387,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18651,859,1795,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18652,2158,1810,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18653,2623,2236,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18656,2050,880,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1866,2743,2350,16,6,pollen,DSC_0844.JPG +18660,3319,1699,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18664,1219,1438,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18669,3757,1579,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18673,2692,2356,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18676,2743,946,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18679,2416,1381,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18681,1510,1801,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18682,4747,2434,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18689,2335,2113,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18690,3745,2182,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18695,2812,1693,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18696,751,1852,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18698,3643,1882,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18699,2662,1936,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18700,2446,2056,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18702,3271,2359,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18704,3016,2671,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18706,2851,1135,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18707,2488,1507,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18709,2446,1813,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18712,1579,2047,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18713,1471,2227,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18723,2377,1690,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18724,1831,1747,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18727,2371,2053,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18728,3025,2056,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18729,3169,2059,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18731,3559,2362,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18732,2521,1444,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18733,1147,1558,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18734,1186,1621,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18738,1150,2041,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18741,4531,2431,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18745,1579,808,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18746,3721,1390,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18747,2269,1630,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18749,1186,1861,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18750,3280,1879,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18754,1504,2656,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18760,1903,1747,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18761,3139,1759,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18763,2302,2053,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18764,3448,2674,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18766,2221,2788,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18769,2812,1573,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18771,2632,1633,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18772,2302,1690,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18782,1690,2107,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18783,3346,2122,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18784,4492,2494,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18790,2629,1507,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18796,1543,2230,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1880,2887,2113,17,6,pollen,DSC_0844.JPG +18804,3358,1513,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18805,2776,1636,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18806,2884,1696,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18807,1870,1807,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18808,3064,1879,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18809,2227,2053,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18810,3853,2122,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18827,2821,688,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18830,2086,1321,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18833,3718,1516,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18834,4738,1528,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18836,2845,1633,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18837,3460,1699,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18839,2809,1939,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18840,3241,1942,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18841,1186,1981,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18842,1471,1984,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18848,4156,1399,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18851,1906,1987,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18852,4036,2065,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18853,2155,2173,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18854,3526,2182,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18856,1615,2470,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18858,2908,2602,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18859,1153,2650,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18860,1717,2656,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18862,2977,2731,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18863,1936,2782,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18865,2488,1009,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18871,2050,1870,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18873,1798,2047,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18874,2806,2056,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18875,3310,2062,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18877,2191,2230,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18878,2440,2788,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18879,2884,1573,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18881,376,1600,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18882,1147,1678,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18884,2158,1933,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18885,1903,2227,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18888,1900,2593,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18889,3268,2611,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18890,1009,2647,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18895,1654,1315,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18897,2377,1441,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18898,1978,1504,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18904,2890,946,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18907,2197,1135,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18910,3976,1456,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18912,3067,1513,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18913,1435,1681,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18915,2701,2116,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18916,3781,2122,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18919,1366,2290,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18920,1939,2410,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18925,2197,1630,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18926,2920,1636,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18930,2989,1999,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18931,3640,2002,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18932,1939,2287,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18933,2080,2410,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18934,2767,2479,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18935,4318,2551,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18936,1363,2650,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18943,3826,1456,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18944,2881,1816,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18945,3715,1882,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18946,1507,1924,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18947,2230,1933,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18949,1618,2107,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18950,2551,2113,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18952,2767,2116,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18954,3127,2236,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18957,3739,2425,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18959,2512,2659,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18969,1906,2107,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18971,3196,2359,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18972,3451,2548,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18973,1114,2587,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18974,1294,2650,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18982,4555,1339,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18983,2704,1384,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18984,4297,1399,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18985,1288,1435,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18986,3502,1639,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18987,4660,1648,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18988,2125,1747,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18989,4006,1765,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18990,4147,1888,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18992,2554,1996,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18993,3343,2359,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +18994,2836,2479,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19001,3253,1075,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19002,3286,1264,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19005,3244,1699,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19006,1108,1738,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19007,3676,1822,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19008,4003,1888,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19010,2227,2173,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19012,3922,2245,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19013,2116,2350,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19015,3160,2419,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19016,901,2464,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19017,3124,2608,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19022,3178,1447,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19027,967,1741,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19028,2992,1756,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19030,3025,1939,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19031,3058,1999,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19033,1474,2350,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19035,1576,2533,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19041,1687,1747,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19046,1330,2104,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19048,1651,2290,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19049,1828,2470,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19052,3037,1201,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19054,3469,1327,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19057,2737,1570,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19059,2812,1816,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1906,2185,2218,17,6,pollen,DSC_0844.JPG +19060,3604,1942,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19061,1258,2104,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19063,3595,2302,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19066,3523,2545,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19068,2821,814,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19072,2782,1009,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19073,3790,1516,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19074,1759,1621,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19075,3610,1696,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19077,3427,1762,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19079,1867,2050,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19083,2008,2413,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19087,3553,700,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19089,2932,754,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19090,3217,760,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19091,4096,760,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19092,2749,817,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19098,1435,1312,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19099,3208,1756,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19102,3967,1948,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19104,3352,2002,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19105,2047,2110,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19110,3304,2548,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19111,3592,2677,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19114,2749,685,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19119,2125,1132,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19123,1942,1441,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19126,3568,1882,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19127,2881,2056,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19128,1510,2164,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19129,3451,2182,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19131,4426,2488,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19132,937,2524,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19133,1972,2845,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19136,3430,1141,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19137,2923,1258,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19138,2344,1381,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19139,3790,1639,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1914,4693,403,17,6,pollen,DSC_0844.JPG +19140,2590,1816,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19142,3277,1996,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19147,2224,2413,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19148,3556,2485,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19156,1582,1561,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19159,3100,1816,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19161,2842,1876,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19162,2050,1987,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19163,1225,2041,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19164,1543,2104,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19166,2554,2236,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19167,2767,2236,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19169,3271,2239,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19170,3850,2242,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19171,1543,2347,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19175,4174,2674,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19176,1360,808,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19185,1756,1744,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19187,2230,1813,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19189,1903,1867,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19192,3817,2185,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19193,976,2221,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19198,3148,757,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19206,2455,1321,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19208,4624,1462,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19209,1723,1561,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19210,1723,1681,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19211,3970,1822,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19213,2443,2296,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19220,2452,1447,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19224,3172,1936,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19227,4687,2068,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19228,3061,2116,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19230,3448,2422,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19241,3211,1633,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19242,1795,1927,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19244,898,1972,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19246,3238,2059,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19251,2512,2413,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19258,4120,1456,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19259,892,1495,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19260,2449,1690,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19262,2485,1756,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19264,3025,1816,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19266,2119,2110,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19267,3637,2122,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19268,3601,2182,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19269,2044,2227,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19270,1222,2293,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19271,3019,2293,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19273,3409,2485,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19274,904,2584,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19275,1045,2587,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19285,1366,1684,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19287,1294,2044,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19288,4108,2065,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19289,3961,2305,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19290,1903,2347,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19292,3556,2614,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19294,3037,820,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19299,3682,1699,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19303,2587,2293,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19304,3451,2302,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19306,1720,2410,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19307,3088,2416,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19311,2857,754,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19318,1798,1441,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19321,4588,1648,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19323,1867,1927,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19324,1690,1984,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19326,3529,2065,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19328,3088,2176,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19331,1504,2290,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19332,2407,2353,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19333,2404,2476,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19335,1612,745,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19341,4552,1462,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19342,3139,1513,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19343,3211,1516,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19345,4006,1639,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19346,2557,1756,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19347,4042,1825,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19348,2266,1993,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19349,1438,2410,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19350,1258,2587,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19354,2893,817,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19360,3358,1264,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19361,2524,1321,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19362,2884,1324,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19363,3178,1324,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19369,3751,1822,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19370,1075,1921,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19371,1582,1927,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19372,3529,1942,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19373,3208,1999,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19374,2518,2056,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19375,4762,2068,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19376,2584,2176,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19377,3343,2242,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19381,1186,2590,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19384,3619,826,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19388,2776,1264,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19391,2338,1630,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19392,3391,1696,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19393,1255,1741,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19394,3463,1822,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19395,2410,1990,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19397,1297,2167,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19398,2803,2176,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19399,2335,2233,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19400,3706,2245,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19401,2728,2296,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19403,1972,2350,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19406,3196,2605,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19407,1684,2719,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19408,4132,826,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19410,2230,1195,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19412,2017,1318,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19413,3754,1456,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19415,3826,1579,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19416,4081,1639,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19417,3604,1822,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19418,1006,1918,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19419,2518,1936,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1942,3241,1753,17,6,pollen,DSC_0844.JPG +19420,679,1966,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19422,1615,2350,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19428,3181,817,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19433,2488,1261,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19434,2308,1318,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19435,961,1372,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19439,3427,1639,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19440,340,1660,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19441,4996,1711,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19442,1402,1747,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19443,1402,1864,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19446,2014,1930,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19448,1762,1984,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19450,3310,2185,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19452,1294,2287,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19457,2113,2596,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1946,4459,2176,15,6,pollen,DSC_0844.JPG +19464,3247,1576,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19465,2122,1624,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19466,3064,1759,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19470,3097,2056,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19471,1009,2287,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19472,1153,2290,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19473,3094,2293,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19481,2344,1132,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19486,4012,1396,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19487,2158,1441,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19488,3247,1450,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19489,1798,1561,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19491,2668,1570,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19492,3571,1639,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19493,2191,1993,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19494,1828,2353,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19495,2443,2410,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19499,3904,1453,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19504,2011,2047,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19505,2302,2170,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19519,2488,1378,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19521,2305,1444,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19524,4516,1522,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19530,2374,1930,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19532,2914,1999,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19534,3961,2065,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19538,1720,2533,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19539,2404,2725,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19547,2668,1198,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19550,4084,1270,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19552,3322,1327,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19556,3283,1633,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19558,1039,1738,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19564,1792,2653,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19568,2635,880,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19575,4453,1150,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19577,2014,1561,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19581,1363,1801,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19584,2953,1939,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19585,1759,2107,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19586,2482,2113,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19587,3562,2125,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19589,1402,2350,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19590,3271,2485,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19594,4096,2803,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19597,1249,868,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19605,4552,1582,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19606,1258,1621,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19607,2707,1633,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19611,2665,1693,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19612,3355,1759,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19614,3172,1819,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19615,2518,2173,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19616,3523,2302,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19618,3523,2422,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19620,1258,2473,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19622,4387,2551,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19624,2677,811,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19625,2779,1135,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19627,3250,1327,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19630,2158,1567,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19635,1975,2227,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19637,2620,2356,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19644,4231,1024,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19652,3283,1756,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19655,2587,2056,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1966,3307,1759,17,6,pollen,DSC_0844.JPG +19673,637,1672,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19676,3562,2242,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19678,3484,2608,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19680,3730,760,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19688,2410,1630,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19689,3646,1636,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19690,1654,1804,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19692,1978,1867,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19694,2338,1990,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19695,1618,2227,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19696,4606,2311,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19697,4351,2617,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19698,1045,2710,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1970,3304,2233,17,6,pollen,DSC_0844.JPG +19702,2782,880,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19705,1909,1129,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19706,3793,1270,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19707,2593,1447,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19709,631,1546,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19711,1330,1738,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19713,3424,1876,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19716,1726,2050,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19717,2659,2296,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19718,1651,2410,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19719,2800,2539,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19720,3265,2860,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19721,3256,823,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19726,3397,1450,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19728,1654,1684,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19729,2593,1690,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1973,2674,2347,15,6,pollen,DSC_0844.JPG +19732,3778,2245,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19733,1081,2287,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19744,1834,1129,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19749,2053,1501,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19754,1294,2530,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19763,3286,1387,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19769,4699,1588,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19770,1690,1621,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19772,1798,1804,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19777,3985,2866,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19778,3472,826,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19779,4090,892,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19786,3100,1573,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19788,3754,1699,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19791,3247,1819,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19794,3385,1942,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19796,3277,2119,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19797,4975,2293,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19798,2188,2353,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19799,3379,2545,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19805,3358,1144,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19808,2269,1258,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19810,736,1366,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19811,2050,1384,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19812,2776,1384,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19815,3862,1519,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19818,3820,1942,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19820,1468,2470,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19822,1396,2593,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19830,2014,1441,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19832,3322,1450,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19834,2992,1636,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19836,3571,1759,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19840,3232,2542,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19841,1261,2710,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19842,3304,2797,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19852,1255,1249,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19854,4486,1336,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19859,1543,1741,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19860,1726,1804,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19862,3997,2125,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19864,1759,2350,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19865,3706,2362,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19871,1540,874,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19874,1834,1255,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19875,3463,1576,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19878,3499,1759,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19879,2665,1816,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1988,4447,199,15,6,pollen,DSC_0844.JPG +19883,3019,2176,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19884,3160,2299,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19886,1681,2470,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19889,2044,2848,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19894,1723,1066,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19898,4444,1273,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19903,4696,1708,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19906,2626,1876,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19907,3565,2002,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19910,2950,2176,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19912,2836,2356,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19916,3589,2803,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19925,2632,1135,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19929,3031,1447,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19930,2341,1504,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19931,2524,1567,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19932,3391,1576,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19933,2485,1630,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19934,4366,1651,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19935,2341,1870,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19937,754,1969,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19939,1942,2044,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19940,4723,2125,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19941,1366,2164,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19944,1684,2596,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19949,3076,757,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19950,3985,952,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19959,3937,1642,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19960,4117,1702,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19961,2920,1756,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19968,3820,2065,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +1997,3271,1816,17,6,pollen,DSC_0844.JPG +19973,973,2587,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19976,3193,2857,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19978,3505,1141,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19983,3541,1453,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19986,4732,1648,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19988,493,1789,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19990,1075,1798,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19991,4252,1828,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19992,4996,1834,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19994,2734,2059,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19997,3301,2668,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +19999,3553,2740,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20000,1864,2782,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20003,3007,751,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20014,2080,2293,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20016,4900,2302,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20017,4570,2371,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20019,4135,2614,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2002,3058,2173,17,6,pollen,DSC_0844.JPG +20020,1756,2719,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20031,5032,1771,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20033,2191,2110,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20037,3667,2302,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2004,4558,2233,15,6,pollen,DSC_0844.JPG +20043,3142,1138,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20045,1618,1744,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20047,2377,1810,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2005,4273,2239,15,6,pollen,DSC_0844.JPG +20050,2119,1993,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20052,1186,2104,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20054,4678,2308,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20056,3052,2731,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20059,925,1054,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20063,4339,1210,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20068,3970,1702,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20071,3463,1942,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20072,1114,1978,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20074,2914,2356,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20081,4018,1021,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20086,2962,1447,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20087,3286,1510,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20088,5035,1522,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20089,3973,1576,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20090,1906,1621,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20092,2698,1879,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20093,3352,1879,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20104,2851,1264,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20107,3322,1573,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20108,3067,1636,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20116,4735,2680,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20117,1828,2716,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20122,3940,1393,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20123,4483,1462,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20124,1222,1681,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20125,2410,1753,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20126,2626,1756,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20127,2848,1756,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20128,2992,1879,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20129,4612,2071,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20130,4609,2185,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20133,3394,1330,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20135,2086,1564,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20136,1834,1624,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20137,4657,1768,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20138,3787,1885,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20141,1402,2104,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20144,4639,2371,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20145,778,2407,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20146,1756,2470,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20147,4669,2554,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20152,2668,1321,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20153,928,1678,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20154,1504,1684,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20155,4183,1705,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20157,3604,2062,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20159,3415,2359,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2016,2884,2230,17,6,pollen,DSC_0844.JPG +20161,3232,2797,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20169,3031,1570,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20171,3103,1696,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20173,1330,1864,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20176,3928,2122,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20189,4624,1588,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20191,4039,1945,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20192,3493,2002,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20193,1438,2047,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20194,1510,2047,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20201,1255,1498,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20203,1000,1678,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20205,3496,1879,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20206,1654,1927,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20207,2305,1930,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20208,1327,1984,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20209,3931,2005,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20211,1369,2047,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20212,2878,2176,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20213,4315,2677,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20218,4195,958,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20221,4486,1213,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20222,4411,1336,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20225,700,1426,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20226,3649,1516,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20228,3532,1699,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20230,4441,1885,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20232,3484,2362,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20243,2560,1507,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20244,1042,1858,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20245,1828,1864,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20246,2449,1933,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20249,2011,2167,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2025,5335,1135,15,6,pollen,DSC_0844.JPG +20252,796,2518,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20258,4588,1525,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20259,3031,1696,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20267,4594,2680,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20268,1945,451,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20274,4588,1402,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20281,1978,2110,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20282,3493,2119,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20283,1114,2230,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20284,1330,2713,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20287,1789,2779,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20301,2629,1993,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20302,3745,2062,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20303,1189,2350,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20304,2803,2416,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20308,3943,1144,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20309,2017,1195,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20310,3610,1456,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20313,4651,2008,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20314,1078,2647,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20319,1942,1684,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20320,2518,1693,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20322,4621,1708,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20329,3619,2866,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2033,2818,2110,17,6,pollen,DSC_0844.JPG +20330,2581,2914,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20338,4732,1774,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2034,4627,2224,17,6,pollen,DSC_0844.JPG +20341,4183,1945,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20342,4249,1948,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20348,4024,892,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20350,3685,1327,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20353,3898,1576,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20354,1003,1801,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20355,2776,1873,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20356,1549,1984,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20367,3256,1201,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20369,3613,1330,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2037,3856,2359,17,6,pollen,DSC_0844.JPG +20376,3595,2422,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20380,3589,634,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20388,4519,1399,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20389,3895,1699,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20390,2590,1936,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20397,4408,1213,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20399,1582,1681,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20400,1399,1984,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20402,3160,2545,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20403,4420,2614,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20404,4705,2617,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20407,2296,2908,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20413,2593,1321,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20417,4600,2428,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20428,2194,1375,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20429,5068,1459,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20431,4849,1834,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20438,3946,2926,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20444,3979,1330,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20446,532,1843,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20448,3661,2674,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20449,4801,2686,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20455,3580,766,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20456,3694,823,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20460,4048,1330,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20477,4492,2617,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2048,4381,2176,17,6,pollen,DSC_0844.JPG +20480,4129,2860,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20481,3841,829,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20482,3436,886,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20485,2377,1318,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20491,4567,2497,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20497,4153,1642,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20506,4459,2431,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20507,730,2479,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20508,1468,2590,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20511,1540,745,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20513,4126,952,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20517,493,1900,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20519,4168,2800,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20521,2080,2908,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20525,1945,814,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20526,2710,880,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20528,2557,1633,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20529,1723,1927,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20531,4672,2428,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20534,1543,2596,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20535,4525,2677,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20538,3229,2920,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20546,4633,2497,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20548,3433,1264,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20549,4153,1273,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20551,2953,1819,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20557,2911,2236,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20558,4354,2485,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20559,3841,2857,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20580,5032,1396,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20583,2920,1876,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20584,2980,2236,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20587,4453,2674,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20591,2005,2911,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20599,1000,1555,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20618,2296,2662,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20619,4414,2737,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20620,4207,2740,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20627,2986,2122,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20630,3691,2869,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20634,4120,1336,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20638,367,2233,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20640,4564,2743,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20650,4525,2554,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20657,4486,2860,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20660,1255,1984,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20661,4930,2362,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20662,4837,2752,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2067,4705,2113,15,6,pollen,DSC_0844.JPG +20676,301,1720,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20678,1117,1861,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2068,4171,2182,16,6,pollen,DSC_0844.JPG +20682,3964,2188,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20683,1504,2533,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20684,4627,2614,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20689,4771,2611,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20691,3298,2923,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20695,2842,2236,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20697,4627,2743,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20711,4600,2554,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20712,4738,2557,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20713,4834,2623,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20715,4246,2677,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20716,4528,2806,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20722,3469,1450,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20723,4687,1840,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20728,4108,2557,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20730,4387,2680,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20739,4774,2494,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20740,4810,2557,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20751,2803,2296,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20761,3655,2803,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20768,4666,2683,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2078,3022,2113,16,6,pollen,DSC_0844.JPG +20787,2092,1927,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20805,4999,1951,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20808,1432,2530,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20817,3709,2125,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2082,3196,2293,17,6,pollen,DSC_0844.JPG +20835,4594,2800,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20836,4552,2863,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20841,4081,1519,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20846,5059,1825,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20849,4912,2482,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20852,3385,2185,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2086,805,205,15,6,pollen,DSC_0844.JPG +20865,4270,2740,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2087,4624,265,17,6,pollen,DSC_0844.JPG +20876,4342,2743,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20877,4483,2746,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20882,1837,1495,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20888,4327,1831,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20896,4567,2617,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20897,4372,2794,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20900,2776,1510,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20932,4858,2242,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2094,2710,2167,17,6,pollen,DSC_0844.JPG +20942,4453,2797,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +20949,4852,2488,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2095,2743,2227,16,6,pollen,DSC_0844.JPG +21007,3238,2179,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21009,4309,2809,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2101,2602,2347,17,6,pollen,DSC_0844.JPG +2102,3019,2350,17,6,pollen,DSC_0844.JPG +21058,4873,2548,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2106,4837,400,17,6,pollen,DSC_0844.JPG +2113,4735,2278,15,6,pollen,DSC_0844.JPG +2114,4660,2281,15,6,pollen,DSC_0844.JPG +21227,670,1486,16,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21308,4450,2560,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21321,3946,1525,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2135,2152,2158,15,6,pollen,DSC_0844.JPG +21397,2770,1744,15,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2148,1141,2185,17,6,pollen,DSC_0844.JPG +21620,1630,1624,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +21645,1459,1732,17,6,pollen,BEE_HOPE GIMONDE 2016_06_30 BL4_G DSC_2995.JPG +2168,2323,2341,17,6,pollen,DSC_0844.JPG +2177,3313,1633,17,6,pollen,DSC_0844.JPG +2179,2290,2278,16,6,pollen,DSC_0844.JPG +2183,4735,199,17,6,pollen,DSC_0844.JPG +2193,1663,2152,16,6,pollen,DSC_0844.JPG +2200,37,973,17,6,pollen,DSC_0844.JPG +2202,5332,1255,15,6,pollen,DSC_0844.JPG +2206,3172,1756,17,6,pollen,DSC_0844.JPG +2208,2920,2173,17,6,pollen,DSC_0844.JPG +2212,5050,532,17,6,pollen,DSC_0844.JPG +2220,4423,2119,16,6,pollen,DSC_0844.JPG +2221,1627,2206,15,6,pollen,DSC_0844.JPG +2250,895,1996,17,6,pollen,DSC_0844.JPG +2252,3157,2233,17,6,pollen,DSC_0844.JPG +2256,4450,2293,15,6,pollen,DSC_0844.JPG +2262,2782,2050,17,6,pollen,DSC_0844.JPG +2264,3091,2230,17,6,pollen,DSC_0844.JPG +2273,3838,1696,16,6,pollen,DSC_0844.JPG +2277,4876,334,17,6,pollen,DSC_0844.JPG +2284,2530,2347,17,6,pollen,DSC_0844.JPG +2293,2773,2290,15,6,pollen,DSC_0844.JPG +2301,4495,1999,15,6,pollen,DSC_0844.JPG +2304,4594,2404,17,6,pollen,DSC_0844.JPG +2312,4645,1753,17,6,pollen,DSC_0844.JPG +2314,3127,2173,17,6,pollen,DSC_0844.JPG +2317,3142,112,16,6,pollen,DSC_0844.JPG +2326,4492,2233,15,6,pollen,DSC_0844.JPG +2329,3106,55,15,6,pollen,DSC_0844.JPG +2335,3766,1699,15,6,pollen,DSC_0844.JPG +2337,4417,2236,15,6,pollen,DSC_0844.JPG +2338,2428,2281,17,6,pollen,DSC_0844.JPG +2343,1552,154,17,6,pollen,DSC_0844.JPG +2349,5191,1681,16,6,pollen,DSC_0844.JPG +2351,4393,1939,16,6,pollen,DSC_0844.JPG +2353,4768,2335,17,6,pollen,DSC_0844.JPG +2362,4588,2284,15,6,pollen,DSC_0844.JPG +2372,2950,2230,17,6,pollen,DSC_0844.JPG +2373,2845,2290,16,6,pollen,DSC_0844.JPG +2376,4378,196,15,6,pollen,DSC_0844.JPG +2393,2746,439,17,6,pollen,DSC_0844.JPG +2401,5296,961,15,6,pollen,DSC_0844.JPG +2408,2890,1993,17,6,pollen,DSC_0844.JPG +2410,4636,2113,15,6,pollen,DSC_0844.JPG +2423,5290,1198,17,6,pollen,DSC_0844.JPG +24440,3649,1228,15,6,pollen,DSC_0819.JPG +2445,1036,2128,17,6,pollen,DSC_0844.JPG +24500,1750,244,17,6,pollen,DSC_0819.JPG +2455,4207,2242,15,6,pollen,DSC_0844.JPG +2460,5224,1738,17,6,pollen,DSC_0844.JPG +2462,4390,2059,16,6,pollen,DSC_0844.JPG +2466,2851,2050,17,6,pollen,DSC_0844.JPG +2485,3136,376,15,6,pollen,DSC_0844.JPG +24974,3406,1171,17,6,pollen,DSC_0819.JPG +24993,1888,121,17,6,pollen,DSC_0819.JPG +24994,3553,181,15,6,pollen,DSC_0819.JPG +25024,3451,253,17,6,pollen,DSC_0819.JPG +2511,3106,310,15,6,pollen,DSC_0844.JPG +2513,4597,2170,17,6,pollen,DSC_0844.JPG +25151,1330,241,17,6,pollen,DSC_0819.JPG +25186,3757,1045,17,6,pollen,DSC_0819.JPG +2522,4621,2452,15,6,pollen,DSC_0844.JPG +25255,4543,565,17,6,pollen,DSC_0819.JPG +2538,1864,1501,15,6,pollen,DSC_0844.JPG +2540,4816,2056,17,6,pollen,DSC_0844.JPG +25453,3790,1351,17,6,pollen,DSC_0819.JPG +25538,3763,568,17,6,pollen,DSC_0819.JPG +2555,2221,238,16,6,pollen,DSC_0844.JPG +2558,5359,1312,15,6,pollen,DSC_0844.JPG +2560,4534,1942,15,6,pollen,DSC_0844.JPG +2562,4417,2353,15,6,pollen,DSC_0844.JPG +2567,4693,2338,17,6,pollen,DSC_0844.JPG +25735,3724,1348,17,6,pollen,DSC_0819.JPG +25791,1786,178,17,6,pollen,DSC_0819.JPG +2589,2044,304,17,6,pollen,DSC_0844.JPG +25925,2743,247,17,6,pollen,DSC_0819.JPG +2626,4564,2122,15,6,pollen,DSC_0844.JPG +26385,3445,988,17,6,pollen,DSC_0819.JPG +26692,298,301,16,6,pollen,DSC_0819.JPG +2682,4924,1879,17,6,pollen,DSC_0844.JPG +26843,3304,1114,17,6,pollen,DSC_0819.JPG +2693,4678,1933,17,6,pollen,DSC_0844.JPG +2724,865,1933,15,6,pollen,DSC_0844.JPG +27498,5287,1237,15,6,pollen,DSC_0840.JPG +27531,3568,61,15,6,pollen,DSC_0840.JPG +27533,2017,1678,17,6,pollen,DSC_0840.JPG +27552,5077,1882,16,6,pollen,DSC_0840.JPG +27553,2701,289,16,6,pollen,DSC_0840.JPG +27556,1852,160,16,6,pollen,DSC_0840.JPG +27560,1777,40,15,6,pollen,DSC_0840.JPG +27564,2839,793,17,6,pollen,DSC_0840.JPG +27571,3346,178,16,6,pollen,DSC_0840.JPG +27576,1747,223,15,6,pollen,DSC_0840.JPG +27578,1354,277,15,6,pollen,DSC_0840.JPG +27581,3274,58,15,6,pollen,DSC_0840.JPG +27582,1504,157,15,6,pollen,DSC_0840.JPG +27592,3007,1099,16,6,pollen,DSC_0840.JPG +27601,1921,286,16,6,pollen,DSC_0840.JPG +27602,3199,301,16,6,pollen,DSC_0840.JPG +27613,4618,442,17,6,pollen,DSC_0840.JPG +27629,2308,724,17,6,pollen,DSC_0840.JPG +27634,5137,880,15,6,pollen,DSC_0840.JPG +27645,5110,2182,16,6,pollen,DSC_0840.JPG +27658,1912,1264,16,6,pollen,DSC_0840.JPG +27666,1288,40,17,6,pollen,DSC_0840.JPG +27673,4576,505,16,6,pollen,DSC_0840.JPG +27679,1675,220,17,6,pollen,DSC_0840.JPG +27687,2698,418,17,6,pollen,DSC_0840.JPG +27688,4759,442,17,6,pollen,DSC_0840.JPG +27696,3343,301,16,6,pollen,DSC_0840.JPG +27699,5251,946,15,6,pollen,DSC_0840.JPG +27701,3637,181,16,6,pollen,DSC_0840.JPG +27702,394,205,17,6,pollen,DSC_0840.JPG +27704,3235,364,15,6,pollen,DSC_0840.JPG +27707,5173,946,17,6,pollen,DSC_0840.JPG +27721,2656,1690,16,6,pollen,DSC_0840.JPG +27723,3703,301,15,6,pollen,DSC_0840.JPG +27744,2707,163,17,6,pollen,DSC_0840.JPG +27748,3286,1573,17,6,pollen,DSC_0840.JPG +27749,1630,1735,15,6,pollen,DSC_0840.JPG +27750,2728,1933,17,6,pollen,DSC_0840.JPG +27754,3733,367,16,6,pollen,DSC_0840.JPG +27758,1813,964,15,6,pollen,DSC_0840.JPG +27763,2596,481,17,6,pollen,DSC_0840.JPG +27766,5209,1006,15,6,pollen,DSC_0840.JPG +27771,1603,91,15,6,pollen,DSC_0840.JPG +27782,3454,121,15,6,pollen,DSC_0840.JPG +27783,319,199,17,6,pollen,DSC_0840.JPG +27784,4783,505,17,6,pollen,DSC_0840.JPG +27785,2803,856,17,6,pollen,DSC_0840.JPG +27797,1594,1792,15,6,pollen,DSC_0840.JPG +27800,3307,361,17,6,pollen,DSC_0840.JPG +27802,4993,637,15,6,pollen,DSC_0840.JPG +27813,1840,1732,17,6,pollen,DSC_0840.JPG +27818,781,274,15,6,pollen,DSC_0840.JPG +27821,2659,976,16,6,pollen,DSC_0840.JPG +27826,1873,1798,15,6,pollen,DSC_0840.JPG +27828,3307,118,15,6,pollen,DSC_0840.JPG +27829,1603,223,15,6,pollen,DSC_0840.JPG +27830,1282,406,17,6,pollen,DSC_0840.JPG +27836,2794,1816,16,6,pollen,DSC_0840.JPG +27837,5182,2188,16,6,pollen,DSC_0840.JPG +27839,3556,307,17,6,pollen,DSC_0840.JPG +27844,1525,1672,16,6,pollen,DSC_0840.JPG +27848,2845,421,17,6,pollen,DSC_0840.JPG +27850,5215,763,15,6,pollen,DSC_0840.JPG +27852,5059,880,15,6,pollen,DSC_0840.JPG +27853,5215,883,15,6,pollen,DSC_0840.JPG +27858,1441,43,15,6,pollen,DSC_0840.JPG +27859,886,217,17,6,pollen,DSC_0840.JPG +27860,2599,226,15,6,pollen,DSC_0840.JPG +27861,3382,238,15,6,pollen,DSC_0840.JPG +27863,3415,304,16,6,pollen,DSC_0840.JPG +27864,3091,358,16,6,pollen,DSC_0840.JPG +27875,2647,40,17,6,pollen,DSC_0840.JPG +27880,5245,1180,15,6,pollen,DSC_0840.JPG +27885,3334,799,16,6,pollen,DSC_0840.JPG +27889,2155,1795,17,6,pollen,DSC_0840.JPG +27907,2662,484,16,6,pollen,DSC_0840.JPG +27915,3346,61,15,6,pollen,DSC_0840.JPG +27916,3421,64,15,6,pollen,DSC_0840.JPG +27919,1501,280,17,6,pollen,DSC_0840.JPG +27921,2842,544,17,6,pollen,DSC_0840.JPG +27922,2908,670,17,6,pollen,DSC_0840.JPG +27927,3115,1159,16,6,pollen,DSC_0840.JPG +27931,3034,2227,16,6,pollen,DSC_0840.JPG +27936,4123,172,17,6,pollen,DSC_0840.JPG +27948,1921,163,17,6,pollen,DSC_0840.JPG +27949,4339,178,17,6,pollen,DSC_0840.JPG +27956,1525,1789,17,6,pollen,DSC_0840.JPG +27970,5023,1294,17,6,pollen,DSC_0840.JPG +27972,2587,1810,17,6,pollen,DSC_0840.JPG +27978,166,325,17,6,pollen,DSC_0840.JPG +27990,751,211,17,6,pollen,DSC_0840.JPG +27991,2317,226,16,6,pollen,DSC_0840.JPG +27992,3235,244,17,6,pollen,DSC_0840.JPG +27993,205,265,17,6,pollen,DSC_0840.JPG +27995,2770,421,16,6,pollen,DSC_0840.JPG +27996,3484,430,17,6,pollen,DSC_0840.JPG +27997,4717,502,15,6,pollen,DSC_0840.JPG +27998,5065,640,15,6,pollen,DSC_0840.JPG +28003,5287,1003,15,6,pollen,DSC_0840.JPG +28005,2014,1918,16,6,pollen,DSC_0840.JPG +28009,4657,376,17,6,pollen,DSC_0840.JPG +28013,2593,733,17,6,pollen,DSC_0840.JPG +28030,4951,814,15,6,pollen,DSC_0840.JPG +28035,2551,1744,17,6,pollen,DSC_0840.JPG +28037,3454,244,15,6,pollen,DSC_0840.JPG +28045,3253,1396,17,6,pollen,DSC_0840.JPG +28046,5320,1534,17,6,pollen,DSC_0840.JPG +28053,205,139,17,6,pollen,DSC_0840.JPG +28055,2740,223,17,6,pollen,DSC_0840.JPG +28057,2770,289,17,6,pollen,DSC_0840.JPG +28064,3391,1393,17,6,pollen,DSC_0840.JPG +28065,2122,1498,17,6,pollen,DSC_0840.JPG +28067,2191,1621,16,6,pollen,DSC_0840.JPG +28081,3526,241,15,6,pollen,DSC_0840.JPG +28083,3487,304,16,6,pollen,DSC_0840.JPG +28085,5137,637,15,6,pollen,DSC_0840.JPG +28092,3607,121,15,6,pollen,DSC_0840.JPG +28093,1642,157,17,6,pollen,DSC_0840.JPG +28098,5176,823,16,6,pollen,DSC_0840.JPG +28100,5320,1063,17,6,pollen,DSC_0840.JPG +28110,3202,181,15,6,pollen,DSC_0840.JPG +28112,3598,244,15,6,pollen,DSC_0840.JPG +28114,3199,427,17,6,pollen,DSC_0840.JPG +28123,2050,1975,17,6,pollen,DSC_0840.JPG +28129,1393,343,17,6,pollen,DSC_0840.JPG +28131,3268,550,16,6,pollen,DSC_0840.JPG +28135,5194,1702,15,6,pollen,DSC_0840.JPG +28136,1771,1855,17,6,pollen,DSC_0840.JPG +28137,2965,2230,16,6,pollen,DSC_0840.JPG +28138,3493,61,15,6,pollen,DSC_0840.JPG +28139,88,73,17,6,pollen,DSC_0840.JPG +28140,5104,577,16,6,pollen,DSC_0840.JPG +28141,1600,721,16,6,pollen,DSC_0840.JPG +28146,1981,1858,16,6,pollen,DSC_0840.JPG +28148,3649,58,15,6,pollen,DSC_0840.JPG +28151,3520,367,16,6,pollen,DSC_0840.JPG +28159,169,199,17,6,pollen,DSC_0840.JPG +28162,2941,859,17,6,pollen,DSC_0840.JPG +28165,1840,1855,15,6,pollen,DSC_0840.JPG +28169,1573,157,15,6,pollen,DSC_0840.JPG +28171,4690,442,17,6,pollen,DSC_0840.JPG +28172,5257,820,15,6,pollen,DSC_0840.JPG +28173,5209,1240,17,6,pollen,DSC_0840.JPG +28177,1174,217,17,6,pollen,DSC_0840.JPG +28178,2176,229,15,6,pollen,DSC_0840.JPG +28180,3376,367,15,6,pollen,DSC_0840.JPG +28183,3442,739,17,6,pollen,DSC_0840.JPG +28184,5137,760,16,6,pollen,DSC_0840.JPG +28187,1564,1144,17,6,pollen,DSC_0840.JPG +28188,5020,1411,15,6,pollen,DSC_0840.JPG +28189,5248,1414,17,6,pollen,DSC_0840.JPG +28191,1912,1855,17,6,pollen,DSC_0840.JPG +28195,3382,118,15,6,pollen,DSC_0840.JPG +28196,1390,217,16,6,pollen,DSC_0840.JPG +28197,1852,289,17,6,pollen,DSC_0840.JPG +28198,1321,343,17,6,pollen,DSC_0840.JPG +28199,4966,574,15,6,pollen,DSC_0840.JPG +28205,3322,1393,16,6,pollen,DSC_0840.JPG +28209,5146,2122,15,6,pollen,DSC_0840.JPG +28213,4741,937,17,6,pollen,DSC_0840.JPG +28214,5089,1639,17,6,pollen,DSC_0840.JPG +28215,2227,1681,16,6,pollen,DSC_0840.JPG +28225,2836,673,17,6,pollen,DSC_0840.JPG +28229,5284,1123,15,6,pollen,DSC_0840.JPG +28233,2722,1450,17,6,pollen,DSC_0840.JPG +28235,2587,1690,17,6,pollen,DSC_0840.JPG +28236,2692,1876,17,6,pollen,DSC_0840.JPG +28239,1708,160,17,6,pollen,DSC_0840.JPG +28240,3589,370,17,6,pollen,DSC_0840.JPG +28241,5002,511,17,6,pollen,DSC_0840.JPG +28251,5281,1471,15,6,pollen,DSC_0840.JPG +28254,2899,1996,17,6,pollen,DSC_0840.JPG +28255,5146,2248,15,6,pollen,DSC_0840.JPG +28258,1783,163,17,6,pollen,DSC_0840.JPG +28259,97,196,15,6,pollen,DSC_0840.JPG +28270,2659,1933,15,6,pollen,DSC_0840.JPG +28272,2590,2050,17,6,pollen,DSC_0840.JPG +28286,1468,97,15,6,pollen,DSC_0840.JPG +28287,2638,163,15,6,pollen,DSC_0840.JPG +28289,1426,283,15,6,pollen,DSC_0840.JPG +28294,5173,1297,17,6,pollen,DSC_0840.JPG +28295,5137,1354,17,6,pollen,DSC_0840.JPG +28300,4864,505,15,6,pollen,DSC_0840.JPG +28301,3052,547,15,6,pollen,DSC_0840.JPG +28306,2515,1684,17,6,pollen,DSC_0840.JPG +28314,1672,94,17,6,pollen,DSC_0840.JPG +28315,2245,106,15,6,pollen,DSC_0840.JPG +28318,2134,541,16,6,pollen,DSC_0840.JPG +28323,2827,1516,17,6,pollen,DSC_0840.JPG +28326,4969,2182,17,6,pollen,DSC_0840.JPG +28342,2737,355,17,6,pollen,DSC_0840.JPG +28347,3256,1159,17,6,pollen,DSC_0840.JPG +28361,2086,1093,17,6,pollen,DSC_0840.JPG +28364,1207,154,17,6,pollen,DSC_0840.JPG +28365,4936,508,15,6,pollen,DSC_0840.JPG +28368,5293,883,15,6,pollen,DSC_0840.JPG +28373,1840,1972,16,6,pollen,DSC_0840.JPG +28377,3274,178,17,6,pollen,DSC_0840.JPG +28381,5134,1009,17,6,pollen,DSC_0840.JPG +28382,5248,1294,15,6,pollen,DSC_0840.JPG +28388,1705,37,15,6,pollen,DSC_0840.JPG +28391,1105,340,17,6,pollen,DSC_0840.JPG +28395,5215,640,17,6,pollen,DSC_0840.JPG +28401,2086,1678,17,6,pollen,DSC_0840.JPG +28403,2224,1801,17,6,pollen,DSC_0840.JPG +28406,1540,94,15,6,pollen,DSC_0840.JPG +28407,1744,100,15,6,pollen,DSC_0840.JPG +28408,3529,118,16,6,pollen,DSC_0840.JPG +28409,997,154,17,6,pollen,DSC_0840.JPG +28410,3163,361,17,6,pollen,DSC_0840.JPG +28428,2863,1939,17,6,pollen,DSC_0840.JPG +28431,5074,2242,17,6,pollen,DSC_0840.JPG +28433,1246,100,17,6,pollen,DSC_0840.JPG +28434,3493,181,15,6,pollen,DSC_0840.JPG +28435,358,265,17,6,pollen,DSC_0840.JPG +28436,3946,367,16,6,pollen,DSC_0840.JPG +28439,4957,940,17,6,pollen,DSC_0840.JPG +28442,5059,1351,15,6,pollen,DSC_0840.JPG +28444,5053,1582,17,6,pollen,DSC_0840.JPG +28446,1801,2149,17,6,pollen,DSC_0840.JPG +28449,3163,238,16,6,pollen,DSC_0840.JPG +28452,5098,820,15,6,pollen,DSC_0840.JPG +28455,2377,1804,15,6,pollen,DSC_0840.JPG +28462,211,388,17,6,pollen,DSC_0840.JPG +28466,5245,1531,17,6,pollen,DSC_0840.JPG +28468,5260,1933,17,6,pollen,DSC_0840.JPG +2847,3262,2170,17,6,pollen,DSC_0844.JPG +28470,1783,289,17,6,pollen,DSC_0840.JPG +28474,5095,1408,16,6,pollen,DSC_0840.JPG +28475,5326,1414,15,6,pollen,DSC_0840.JPG +28480,3418,181,15,6,pollen,DSC_0840.JPG +28489,2965,1993,15,6,pollen,DSC_0840.JPG +28498,5179,703,15,6,pollen,DSC_0840.JPG +28503,5128,1582,15,6,pollen,DSC_0840.JPG +28504,1345,1609,17,6,pollen,DSC_0840.JPG +28509,4885,937,15,6,pollen,DSC_0840.JPG +28511,3073,1570,16,6,pollen,DSC_0840.JPG +28513,5071,2122,17,6,pollen,DSC_0840.JPG +28517,1534,217,17,6,pollen,DSC_0840.JPG +28518,2986,295,15,6,pollen,DSC_0840.JPG +28527,1315,1198,16,6,pollen,DSC_0840.JPG +28532,2482,1744,17,6,pollen,DSC_0840.JPG +28533,2860,1816,16,6,pollen,DSC_0840.JPG +28535,1975,1975,17,6,pollen,DSC_0840.JPG +28538,2878,229,17,6,pollen,DSC_0840.JPG +28540,1177,340,17,6,pollen,DSC_0840.JPG +28549,5131,1465,15,6,pollen,DSC_0840.JPG +28550,5224,1873,16,6,pollen,DSC_0840.JPG +28551,2929,1936,17,6,pollen,DSC_0840.JPG +28552,2674,100,15,6,pollen,DSC_0840.JPG +28553,922,148,17,6,pollen,DSC_0840.JPG +28566,1510,34,15,6,pollen,DSC_0840.JPG +28568,1462,346,15,6,pollen,DSC_0840.JPG +28569,3415,430,17,6,pollen,DSC_0840.JPG +28570,3982,430,17,6,pollen,DSC_0840.JPG +28574,670,1657,17,6,pollen,DSC_0840.JPG +28578,2668,226,17,6,pollen,DSC_0840.JPG +28579,1636,283,16,6,pollen,DSC_0840.JPG +28581,5035,574,15,6,pollen,DSC_0840.JPG +28582,5245,703,15,6,pollen,DSC_0840.JPG +28596,4954,1057,17,6,pollen,DSC_0840.JPG +28598,4951,1294,17,6,pollen,DSC_0840.JPG +28602,1597,1675,17,6,pollen,DSC_0840.JPG +28619,3157,739,17,6,pollen,DSC_0840.JPG +28620,4810,934,17,6,pollen,DSC_0840.JPG +28624,3811,1513,17,6,pollen,DSC_0840.JPG +28625,4027,1516,15,6,pollen,DSC_0840.JPG +28629,2773,163,17,6,pollen,DSC_0840.JPG +28634,5206,1120,17,6,pollen,DSC_0840.JPG +28658,133,385,15,6,pollen,DSC_0840.JPG +28662,5026,940,17,6,pollen,DSC_0840.JPG +28665,5284,1357,17,6,pollen,DSC_0840.JPG +28668,1819,103,17,6,pollen,DSC_0840.JPG +28669,1426,157,17,6,pollen,DSC_0840.JPG +28670,3553,433,17,6,pollen,DSC_0840.JPG +28675,784,148,17,6,pollen,DSC_0840.JPG +28677,3622,556,17,6,pollen,DSC_0840.JPG +28679,4846,1003,17,6,pollen,DSC_0840.JPG +28695,5023,820,17,6,pollen,DSC_0840.JPG +28719,2788,2173,17,6,pollen,DSC_0840.JPG +28721,4408,2176,16,6,pollen,DSC_0840.JPG +28729,5026,1177,15,6,pollen,DSC_0840.JPG +28733,4054,1579,16,6,pollen,DSC_0840.JPG +28735,1342,2086,17,6,pollen,DSC_0840.JPG +28751,820,85,15,6,pollen,DSC_0840.JPG +28757,5170,1066,17,6,pollen,DSC_0840.JPG +28764,4096,1516,17,6,pollen,DSC_0840.JPG +28766,1561,1735,17,6,pollen,DSC_0840.JPG +28767,1807,1795,17,6,pollen,DSC_0840.JPG +28769,4375,1882,17,6,pollen,DSC_0840.JPG +2877,5371,1489,17,6,pollen,DSC_0844.JPG +28770,1948,1915,17,6,pollen,DSC_0840.JPG +28792,3352,2173,17,6,pollen,DSC_0840.JPG +28796,2605,106,17,6,pollen,DSC_0840.JPG +28818,4843,1120,17,6,pollen,DSC_0840.JPG +28828,1567,283,17,6,pollen,DSC_0840.JPG +28849,3619,802,17,6,pollen,DSC_0840.JPG +28868,3421,2173,17,6,pollen,DSC_0840.JPG +28871,133,262,15,6,pollen,DSC_0840.JPG +28882,5173,1411,15,6,pollen,DSC_0840.JPG +28900,5056,1237,17,6,pollen,DSC_0840.JPG +28904,5206,1468,17,6,pollen,DSC_0840.JPG +28937,1951,226,15,6,pollen,DSC_0840.JPG +28939,1780,784,17,6,pollen,DSC_0840.JPG +28945,4987,1237,17,6,pollen,DSC_0840.JPG +28953,604,2236,16,6,pollen,DSC_0840.JPG +28966,4990,1000,15,6,pollen,DSC_0840.JPG +29005,1246,343,17,6,pollen,DSC_0840.JPG +29012,5098,943,16,6,pollen,DSC_0840.JPG +29031,2068,289,17,6,pollen,DSC_0840.JPG +29044,4882,1063,17,6,pollen,DSC_0840.JPG +29048,4954,1411,17,6,pollen,DSC_0840.JPG +29069,2188,1858,15,6,pollen,DSC_0840.JPG +29084,5278,1588,15,6,pollen,DSC_0840.JPG +29085,5266,1699,17,6,pollen,DSC_0840.JPG +29108,5122,1702,17,6,pollen,DSC_0840.JPG +29112,4339,1816,17,6,pollen,DSC_0840.JPG +29168,1036,217,17,6,pollen,DSC_0840.JPG +29180,5245,1066,17,6,pollen,DSC_0840.JPG +29185,5020,1522,17,6,pollen,DSC_0840.JPG +29205,4987,880,17,6,pollen,DSC_0840.JPG +29211,5326,1294,15,6,pollen,DSC_0840.JPG +29245,3355,1450,17,6,pollen,DSC_0840.JPG +29270,4903,577,15,6,pollen,DSC_0840.JPG +29303,5362,1357,17,6,pollen,DSC_0840.JPG +29356,2323,112,17,6,pollen,DSC_0840.JPG +29395,4915,1240,17,6,pollen,DSC_0840.JPG +2942,2863,2167,15,6,pollen,DSC_0844.JPG +29457,3994,1456,17,6,pollen,DSC_0840.JPG +29507,5050,1699,17,6,pollen,DSC_0840.JPG +29521,94,325,17,6,pollen,DSC_0840.JPG +29564,1705,784,17,6,pollen,DSC_0840.JPG +29591,3025,112,15,6,pollen,DSC_0840.JPG +29593,1705,289,15,6,pollen,DSC_0840.JPG +29719,5095,1060,17,6,pollen,DSC_0840.JPG +29721,5362,1234,15,6,pollen,DSC_0840.JPG +2979,3940,487,15,6,pollen,DSC_0837.JPG +29792,5164,1528,17,6,pollen,DSC_0840.JPG +2980,5104,1033,16,6,pollen,DSC_0837.JPG +29879,5335,814,17,6,pollen,DSC_0840.JPG +3003,4597,232,16,6,pollen,DSC_0837.JPG +30160,1162,91,15,6,pollen,DSC_0840.JPG +30217,58,259,17,6,pollen,DSC_0840.JPG +30289,2620,1753,17,6,pollen,DSC_0840.JPG +3030,4450,484,16,6,pollen,DSC_0837.JPG +30338,4306,1885,17,6,pollen,DSC_0840.JPG +30351,3313,4,17,6,pollen,DSC_0840.JPG +30368,5362,754,15,6,pollen,DSC_0840.JPG +30374,3535,7,17,6,pollen,DSC_0840.JPG +30393,5371,886,15,6,pollen,DSC_0840.JPG +30409,1468,229,15,6,pollen,DSC_0840.JPG +30436,3457,10,15,6,pollen,DSC_0840.JPG +30457,3376,7,15,6,pollen,DSC_0840.JPG +30464,2890,1738,15,6,pollen,DSC_0840.JPG +30633,2980,184,16,6,pollen,DSC_0820.JPG +30634,3475,184,17,6,pollen,DSC_0820.JPG +30663,4735,1894,17,6,pollen,DSC_0820.JPG +30840,4750,436,17,6,pollen,DSC_0820.JPG +30912,3331,184,17,6,pollen,DSC_0820.JPG +3093,445,316,17,6,pollen,DSC_0837.JPG +30952,3406,184,17,6,pollen,DSC_0820.JPG +30955,2944,655,17,6,pollen,DSC_0820.JPG +3098,1279,268,15,6,pollen,DSC_0837.JPG +3101,5002,976,15,6,pollen,DSC_0837.JPG +3102,4894,1042,15,6,pollen,DSC_0837.JPG +31033,4996,871,16,6,pollen,DSC_0820.JPG +31079,3691,175,17,6,pollen,DSC_0820.JPG +31115,4678,436,16,6,pollen,DSC_0820.JPG +31149,2842,460,17,6,pollen,DSC_0820.JPG +31152,2983,715,16,6,pollen,DSC_0820.JPG +31173,2911,589,16,6,pollen,DSC_0820.JPG +31178,3793,1258,16,6,pollen,DSC_0820.JPG +31186,4924,628,17,6,pollen,DSC_0820.JPG +3120,5194,679,17,6,pollen,DSC_0837.JPG +31214,3052,184,17,6,pollen,DSC_0820.JPG +31218,4609,436,17,6,pollen,DSC_0820.JPG +31221,4573,502,15,6,pollen,DSC_0820.JPG +31232,2134,181,17,6,pollen,DSC_0820.JPG +31250,4396,439,17,6,pollen,DSC_0820.JPG +31290,2347,187,16,6,pollen,DSC_0820.JPG +3134,5248,1033,16,6,pollen,DSC_0837.JPG +31483,4924,874,17,6,pollen,DSC_0820.JPG +31517,2062,175,17,6,pollen,DSC_0820.JPG +31588,3688,313,15,6,pollen,DSC_0820.JPG +31590,4540,442,17,6,pollen,DSC_0820.JPG +31634,2104,109,17,6,pollen,DSC_0820.JPG +31659,2419,184,16,6,pollen,DSC_0820.JPG +31679,3901,166,16,6,pollen,DSC_0820.JPG +3171,4510,736,16,6,pollen,DSC_0837.JPG +31781,3445,1618,17,6,pollen,DSC_0820.JPG +31784,5089,1885,17,6,pollen,DSC_0820.JPG +31805,2275,181,17,6,pollen,DSC_0820.JPG +31814,2992,1795,16,6,pollen,DSC_0820.JPG +3207,4519,610,17,6,pollen,DSC_0837.JPG +32085,3970,166,17,6,pollen,DSC_0820.JPG +3212,523,445,15,6,pollen,DSC_0837.JPG +3219,631,262,15,6,pollen,DSC_0837.JPG +32230,4501,511,17,6,pollen,DSC_0820.JPG +32318,3265,319,17,6,pollen,DSC_0820.JPG +3233,4096,229,16,6,pollen,DSC_0837.JPG +32354,2209,175,15,6,pollen,DSC_0820.JPG +32402,2575,1327,17,6,pollen,DSC_0820.JPG +32420,3406,322,17,6,pollen,DSC_0820.JPG +3250,4882,1279,15,6,pollen,DSC_0837.JPG +32635,4717,502,17,6,pollen,DSC_0820.JPG +3268,661,199,15,6,pollen,DSC_0837.JPG +3305,4948,1636,16,6,pollen,DSC_0837.JPG +3310,4375,487,17,6,pollen,DSC_0837.JPG +3313,5068,1099,15,6,pollen,DSC_0837.JPG +3322,5149,859,17,6,pollen,DSC_0837.JPG +33292,943,448,17,6,pollen,DSC_0820.JPG +3337,1354,271,15,6,pollen,DSC_0837.JPG +33524,595,1033,15,6,pollen,DSC_0841.JPG +33529,1408,115,16,6,pollen,DSC_0841.JPG +33534,4249,532,16,6,pollen,DSC_0841.JPG +33535,2260,385,17,6,pollen,DSC_0841.JPG +33542,4003,466,16,6,pollen,DSC_0841.JPG +33562,4144,340,16,6,pollen,DSC_0841.JPG +33565,1585,565,16,6,pollen,DSC_0841.JPG +33574,2152,181,17,6,pollen,DSC_0841.JPG +33577,2224,190,15,6,pollen,DSC_0841.JPG +33585,523,1030,15,6,pollen,DSC_0841.JPG +33591,2080,319,15,6,pollen,DSC_0841.JPG +33594,1552,502,16,6,pollen,DSC_0841.JPG +33604,1516,562,17,6,pollen,DSC_0841.JPG +33616,3403,127,17,6,pollen,DSC_0841.JPG +33625,3931,337,17,6,pollen,DSC_0841.JPG +3363,5278,1573,15,6,pollen,DSC_0837.JPG +33635,4036,400,17,6,pollen,DSC_0841.JPG +33643,4072,337,15,6,pollen,DSC_0841.JPG +33644,2473,385,17,6,pollen,DSC_0841.JPG +33649,556,973,15,6,pollen,DSC_0841.JPG +33650,2503,181,15,6,pollen,DSC_0841.JPG +33654,844,745,16,6,pollen,DSC_0841.JPG +33658,2044,250,16,6,pollen,DSC_0841.JPG +33663,2689,256,17,6,pollen,DSC_0841.JPG +33664,1582,310,17,6,pollen,DSC_0841.JPG +33674,2224,322,17,6,pollen,DSC_0841.JPG +33679,4249,403,17,6,pollen,DSC_0841.JPG +33680,334,1201,15,6,pollen,DSC_0841.JPG +33682,1831,253,16,6,pollen,DSC_0841.JPG +33685,877,679,15,6,pollen,DSC_0841.JPG +33687,916,745,17,6,pollen,DSC_0841.JPG +33692,2401,256,16,6,pollen,DSC_0841.JPG +33693,3859,334,15,6,pollen,DSC_0841.JPG +33700,121,1078,16,6,pollen,DSC_0841.JPG +33703,265,1201,17,6,pollen,DSC_0841.JPG +33708,736,919,16,6,pollen,DSC_0841.JPG +33711,5362,466,15,6,pollen,DSC_0841.JPG +33712,340,1798,15,6,pollen,DSC_0841.JPG +33714,3826,133,15,6,pollen,DSC_0841.JPG +33715,2116,253,17,6,pollen,DSC_0841.JPG +33721,559,2266,16,6,pollen,DSC_0841.JPG +33724,1513,181,15,6,pollen,DSC_0841.JPG +33727,448,1504,17,6,pollen,DSC_0841.JPG +33732,3967,274,17,6,pollen,DSC_0841.JPG +33743,415,1915,16,6,pollen,DSC_0841.JPG +33744,739,1978,17,6,pollen,DSC_0841.JPG +33749,760,364,16,6,pollen,DSC_0841.JPG +33755,4039,274,17,6,pollen,DSC_0841.JPG +33771,1441,310,17,6,pollen,DSC_0841.JPG +33782,484,1087,15,6,pollen,DSC_0841.JPG +33787,1480,115,15,6,pollen,DSC_0841.JPG +33792,226,1501,15,6,pollen,DSC_0841.JPG +33798,1408,244,15,6,pollen,DSC_0841.JPG +33802,838,493,16,6,pollen,DSC_0841.JPG +33803,514,556,15,6,pollen,DSC_0841.JPG +33805,592,913,16,6,pollen,DSC_0841.JPG +33806,664,1036,17,6,pollen,DSC_0841.JPG +33815,1903,253,17,6,pollen,DSC_0841.JPG +33820,949,679,15,6,pollen,DSC_0841.JPG +33834,403,610,17,6,pollen,DSC_0841.JPG +33836,520,916,17,6,pollen,DSC_0841.JPG +33841,262,1441,15,6,pollen,DSC_0841.JPG +33843,1621,376,16,6,pollen,DSC_0841.JPG +33844,4180,403,16,6,pollen,DSC_0841.JPG +33845,2581,448,16,6,pollen,DSC_0841.JPG +33854,2506,577,16,6,pollen,DSC_0841.JPG +33856,3073,829,17,6,pollen,DSC_0841.JPG +3386,4828,922,15,6,pollen,DSC_0837.JPG +33861,2077,187,17,6,pollen,DSC_0841.JPG +33862,2437,319,16,6,pollen,DSC_0841.JPG +33863,802,430,16,6,pollen,DSC_0841.JPG +33867,5374,337,15,6,pollen,DSC_0841.JPG +33873,436,550,17,6,pollen,DSC_0841.JPG +33877,223,1381,15,6,pollen,DSC_0841.JPG +33878,2530,2062,17,6,pollen,DSC_0841.JPG +33883,2791,325,17,6,pollen,DSC_0841.JPG +33885,3145,826,16,6,pollen,DSC_0841.JPG +33886,256,964,15,6,pollen,DSC_0841.JPG +33887,667,1975,15,6,pollen,DSC_0841.JPG +33894,1867,178,17,6,pollen,DSC_0841.JPG +33895,2260,259,15,6,pollen,DSC_0841.JPG +33900,2365,190,16,6,pollen,DSC_0841.JPG +33910,1444,178,16,6,pollen,DSC_0841.JPG +33914,592,1147,17,6,pollen,DSC_0841.JPG +33915,262,1681,15,6,pollen,DSC_0841.JPG +33920,3967,139,17,6,pollen,DSC_0841.JPG +33922,2152,316,17,6,pollen,DSC_0841.JPG +33924,556,1090,17,6,pollen,DSC_0841.JPG +33930,616,490,17,6,pollen,DSC_0841.JPG +33936,3619,2131,17,6,pollen,DSC_0841.JPG +33938,1372,2221,17,6,pollen,DSC_0841.JPG +33941,301,1621,15,6,pollen,DSC_0841.JPG +33942,2005,184,17,6,pollen,DSC_0841.JPG +33944,3649,337,17,6,pollen,DSC_0841.JPG +33945,1549,376,16,6,pollen,DSC_0841.JPG +33953,2722,325,16,6,pollen,DSC_0841.JPG +33954,4003,334,17,6,pollen,DSC_0841.JPG +33955,2329,385,16,6,pollen,DSC_0841.JPG +33957,2116,508,17,6,pollen,DSC_0841.JPG +33959,3073,946,17,6,pollen,DSC_0841.JPG +33967,373,1027,15,6,pollen,DSC_0841.JPG +3397,1312,457,16,6,pollen,DSC_0837.JPG +33972,844,616,17,6,pollen,DSC_0841.JPG +33973,337,1564,15,6,pollen,DSC_0841.JPG +33978,2119,382,16,6,pollen,DSC_0841.JPG +33980,1975,253,17,6,pollen,DSC_0841.JPG +33982,772,736,17,6,pollen,DSC_0841.JPG +33983,229,1135,15,6,pollen,DSC_0841.JPG +33985,4183,2014,16,6,pollen,DSC_0841.JPG +33989,730,676,17,6,pollen,DSC_0841.JPG +33992,406,2263,15,6,pollen,DSC_0841.JPG +33998,556,850,17,6,pollen,DSC_0841.JPG +34000,2923,1777,17,6,pollen,DSC_0841.JPG +34002,2188,256,17,6,pollen,DSC_0841.JPG +34010,484,970,17,6,pollen,DSC_0841.JPG +34019,2296,316,15,6,pollen,DSC_0841.JPG +34023,337,1438,17,6,pollen,DSC_0841.JPG +34025,4042,142,17,6,pollen,DSC_0841.JPG +34030,289,901,15,6,pollen,DSC_0841.JPG +34031,298,1501,17,6,pollen,DSC_0841.JPG +34032,412,1564,15,6,pollen,DSC_0841.JPG +34034,4747,1897,17,6,pollen,DSC_0841.JPG +34039,913,616,17,6,pollen,DSC_0841.JPG +34040,400,739,17,6,pollen,DSC_0841.JPG +3405,5095,1516,15,6,pollen,DSC_0837.JPG +34050,442,796,16,6,pollen,DSC_0841.JPG +34053,631,976,15,6,pollen,DSC_0841.JPG +34054,445,1144,15,6,pollen,DSC_0841.JPG +34055,187,1201,15,6,pollen,DSC_0841.JPG +34056,2860,1306,17,6,pollen,DSC_0841.JPG +34059,2434,187,16,6,pollen,DSC_0841.JPG +34063,1471,373,15,6,pollen,DSC_0841.JPG +34066,553,619,17,6,pollen,DSC_0841.JPG +34068,331,964,15,6,pollen,DSC_0841.JPG +34069,523,1150,17,6,pollen,DSC_0841.JPG +34070,379,1855,15,6,pollen,DSC_0841.JPG +34071,2779,1891,17,6,pollen,DSC_0841.JPG +34073,4750,154,16,6,pollen,DSC_0841.JPG +34075,4180,274,17,6,pollen,DSC_0841.JPG +34079,700,859,17,6,pollen,DSC_0841.JPG +34081,262,1321,15,6,pollen,DSC_0841.JPG +34087,721,430,17,6,pollen,DSC_0841.JPG +34088,583,553,17,6,pollen,DSC_0841.JPG +34089,370,796,15,6,pollen,DSC_0841.JPG +34091,4213,340,15,6,pollen,DSC_0841.JPG +34092,772,616,17,6,pollen,DSC_0841.JPG +34097,3586,2074,17,6,pollen,DSC_0841.JPG +34099,4465,277,17,6,pollen,DSC_0841.JPG +34102,256,844,15,6,pollen,DSC_0841.JPG +34103,628,850,17,6,pollen,DSC_0841.JPG +34104,334,1081,15,6,pollen,DSC_0841.JPG +34106,2212,2236,16,6,pollen,DSC_0841.JPG +34108,520,2326,17,6,pollen,DSC_0841.JPG +34110,4105,271,17,6,pollen,DSC_0841.JPG +34114,3106,1003,16,6,pollen,DSC_0841.JPG +34115,226,1261,17,6,pollen,DSC_0841.JPG +34118,2818,1834,17,6,pollen,DSC_0841.JPG +34125,508,673,15,6,pollen,DSC_0841.JPG +34126,442,676,17,6,pollen,DSC_0841.JPG +34130,370,2086,17,6,pollen,DSC_0841.JPG +34133,2863,196,17,6,pollen,DSC_0841.JPG +34140,295,1378,15,6,pollen,DSC_0841.JPG +34141,118,1438,15,6,pollen,DSC_0841.JPG +34144,181,964,17,6,pollen,DSC_0841.JPG +34147,1195,232,17,6,pollen,DSC_0841.JPG +34148,649,424,16,6,pollen,DSC_0841.JPG +34151,301,1741,15,6,pollen,DSC_0841.JPG +34155,1300,172,17,6,pollen,DSC_0841.JPG +34160,448,1030,15,6,pollen,DSC_0841.JPG +34163,2749,1720,17,6,pollen,DSC_0841.JPG +34164,3136,1783,16,6,pollen,DSC_0841.JPG +34165,262,1798,17,6,pollen,DSC_0841.JPG +34169,1549,244,16,6,pollen,DSC_0841.JPG +34172,760,493,17,6,pollen,DSC_0841.JPG +34173,3175,1006,17,6,pollen,DSC_0841.JPG +34175,412,1441,17,6,pollen,DSC_0841.JPG +34180,5383,208,17,6,pollen,DSC_0841.JPG +34186,2890,1837,15,6,pollen,DSC_0841.JPG +34187,2887,1948,17,6,pollen,DSC_0841.JPG +34188,451,1972,17,6,pollen,DSC_0841.JPG +34189,1579,2224,16,6,pollen,DSC_0841.JPG +34201,217,901,15,6,pollen,DSC_0841.JPG +34205,2998,1426,17,6,pollen,DSC_0841.JPG +34207,3064,1663,17,6,pollen,DSC_0841.JPG +34208,4966,1783,17,6,pollen,DSC_0841.JPG +34217,3139,946,17,6,pollen,DSC_0841.JPG +34219,4255,2014,17,6,pollen,DSC_0841.JPG +3422,3835,421,15,6,pollen,DSC_0837.JPG +34221,370,2200,17,6,pollen,DSC_0841.JPG +34222,1510,2221,16,6,pollen,DSC_0841.JPG +34232,1375,1648,17,6,pollen,DSC_0841.JPG +34235,1687,2164,17,6,pollen,DSC_0841.JPG +34240,733,556,15,6,pollen,DSC_0841.JPG +34242,703,979,17,6,pollen,DSC_0841.JPG +34243,2929,1306,16,6,pollen,DSC_0841.JPG +34252,4003,208,17,6,pollen,DSC_0841.JPG +34253,4252,274,17,6,pollen,DSC_0841.JPG +34254,4285,340,16,6,pollen,DSC_0841.JPG +34259,484,1444,16,6,pollen,DSC_0841.JPG +34264,3898,268,15,6,pollen,DSC_0841.JPG +34265,4501,340,17,6,pollen,DSC_0841.JPG +34267,520,787,15,6,pollen,DSC_0841.JPG +34272,484,2266,17,6,pollen,DSC_0841.JPG +34274,1516,313,17,6,pollen,DSC_0841.JPG +34275,1510,436,15,6,pollen,DSC_0841.JPG +34278,373,1141,17,6,pollen,DSC_0841.JPG +34293,445,913,15,6,pollen,DSC_0841.JPG +34294,406,967,15,6,pollen,DSC_0841.JPG +34298,484,1564,17,6,pollen,DSC_0841.JPG +34300,2887,1720,15,6,pollen,DSC_0841.JPG +34307,2080,574,16,6,pollen,DSC_0841.JPG +34313,370,907,16,6,pollen,DSC_0841.JPG +34314,298,1261,15,6,pollen,DSC_0841.JPG +34315,3001,1306,17,6,pollen,DSC_0841.JPG +34327,799,553,15,6,pollen,DSC_0841.JPG +34328,667,790,17,6,pollen,DSC_0841.JPG +34337,334,853,16,6,pollen,DSC_0841.JPG +34349,484,736,15,6,pollen,DSC_0841.JPG +34353,61,1384,17,6,pollen,DSC_0841.JPG +34356,553,1453,17,6,pollen,DSC_0841.JPG +34358,1447,2101,17,6,pollen,DSC_0841.JPG +34364,1276,232,15,6,pollen,DSC_0841.JPG +34395,1612,2287,17,6,pollen,DSC_0841.JPG +34399,4612,148,17,6,pollen,DSC_0841.JPG +34405,406,853,15,6,pollen,DSC_0841.JPG +34420,292,1024,15,6,pollen,DSC_0841.JPG +34421,409,1087,15,6,pollen,DSC_0841.JPG +34428,187,1438,15,6,pollen,DSC_0841.JPG +34433,4216,2074,17,6,pollen,DSC_0841.JPG +34435,4396,2131,17,6,pollen,DSC_0841.JPG +34440,3865,205,17,6,pollen,DSC_0841.JPG +34444,5329,403,17,6,pollen,DSC_0841.JPG +34456,448,2206,17,6,pollen,DSC_0841.JPG +34463,595,793,17,6,pollen,DSC_0841.JPG +34469,370,1387,15,6,pollen,DSC_0841.JPG +34471,265,1561,15,6,pollen,DSC_0841.JPG +34480,658,553,17,6,pollen,DSC_0841.JPG +34482,472,613,15,6,pollen,DSC_0841.JPG +34483,805,676,17,6,pollen,DSC_0841.JPG +34488,187,1318,15,6,pollen,DSC_0841.JPG +34497,472,487,17,6,pollen,DSC_0841.JPG +34503,3070,1066,17,6,pollen,DSC_0841.JPG +34512,2902,124,17,6,pollen,DSC_0841.JPG +34532,5221,334,17,6,pollen,DSC_0841.JPG +34535,1555,751,17,6,pollen,DSC_0841.JPG +34570,3526,1609,17,6,pollen,DSC_0841.JPG +34611,1480,244,17,6,pollen,DSC_0841.JPG +34612,2824,391,17,6,pollen,DSC_0841.JPG +3463,877,199,15,6,pollen,DSC_0837.JPG +34649,2929,1426,16,6,pollen,DSC_0841.JPG +34659,2848,2008,16,6,pollen,DSC_0841.JPG +3466,4123,547,16,6,pollen,DSC_0837.JPG +3468,5269,676,17,6,pollen,DSC_0837.JPG +34682,340,1687,17,6,pollen,DSC_0841.JPG +34689,2494,2239,17,6,pollen,DSC_0841.JPG +34693,298,787,17,6,pollen,DSC_0841.JPG +34721,697,736,15,6,pollen,DSC_0841.JPG +34735,3070,1423,17,6,pollen,DSC_0841.JPG +34768,292,1969,16,6,pollen,DSC_0841.JPG +34795,3463,1489,16,6,pollen,DSC_0841.JPG +34800,3028,1717,17,6,pollen,DSC_0841.JPG +34805,4189,1900,16,6,pollen,DSC_0841.JPG +34843,5296,340,15,6,pollen,DSC_0841.JPG +34875,331,2266,17,6,pollen,DSC_0841.JPG +34878,5347,271,16,6,pollen,DSC_0841.JPG +34891,625,1210,17,6,pollen,DSC_0841.JPG +34949,1342,241,15,6,pollen,DSC_0841.JPG +3503,4858,982,15,6,pollen,DSC_0837.JPG +35111,142,1375,15,6,pollen,DSC_0841.JPG +35147,370,1501,17,6,pollen,DSC_0841.JPG +35203,3127,2365,17,6,pollen,DSC_0841.JPG +35207,538,493,17,6,pollen,DSC_0841.JPG +3534,2239,475,16,6,pollen,DSC_0837.JPG +354,4870,469,17,6,pollen,DSC_0844.JPG +3540,4891,1159,15,6,pollen,DSC_0837.JPG +3550,5044,802,16,6,pollen,DSC_0837.JPG +3555,4951,1396,16,6,pollen,DSC_0837.JPG +35593,5398,394,17,6,pollen,DSC_0841.JPG +35601,487,856,15,6,pollen,DSC_0841.JPG +3562,3700,418,16,6,pollen,DSC_0837.JPG +35665,196,1561,17,6,pollen,DSC_0841.JPG +35677,1270,2155,17,6,pollen,DSC_0841.JPG +3570,4456,1402,15,6,pollen,DSC_0837.JPG +3585,4339,547,15,6,pollen,DSC_0837.JPG +3589,4756,922,15,6,pollen,DSC_0837.JPG +36180,163,1621,15,6,pollen,DSC_0841.JPG +36225,5455,211,15,6,pollen,DSC_0841.JPG +36247,592,727,15,6,pollen,DSC_0841.JPG +3626,667,322,17,6,pollen,DSC_0837.JPG +3630,3661,484,16,6,pollen,DSC_0837.JPG +3631,523,568,17,6,pollen,DSC_0837.JPG +36406,139,1252,15,6,pollen,DSC_0841.JPG +36446,5446,334,17,6,pollen,DSC_0841.JPG +36465,370,1618,15,6,pollen,DSC_0841.JPG +36487,2503,2128,15,6,pollen,DSC_0841.JPG +36506,2944,211,17,6,pollen,DSC_0841.JPG +3654,4195,547,15,6,pollen,DSC_0837.JPG +36558,3112,1429,17,6,pollen,DSC_0838.JPG +36561,3271,166,15,6,pollen,DSC_0838.JPG +36564,3133,166,16,6,pollen,DSC_0838.JPG +36576,5059,628,16,6,pollen,DSC_0838.JPG +36612,3400,1069,17,6,pollen,DSC_0838.JPG +36646,2944,1129,16,6,pollen,DSC_0838.JPG +36650,4267,1738,15,6,pollen,DSC_0838.JPG +36655,2896,1792,17,6,pollen,DSC_0838.JPG +36666,4708,382,17,6,pollen,DSC_0838.JPG +36696,937,139,16,6,pollen,DSC_0838.JPG +36715,2008,151,16,6,pollen,DSC_0838.JPG +36725,3034,1792,15,6,pollen,DSC_0838.JPG +36727,4885,445,16,6,pollen,DSC_0838.JPG +36730,3523,2026,17,6,pollen,DSC_0838.JPG +36731,5197,994,17,6,pollen,DSC_0838.JPG +36733,3037,1672,15,6,pollen,DSC_0838.JPG +3674,4696,550,15,6,pollen,DSC_0837.JPG +36740,3112,1549,16,6,pollen,DSC_0838.JPG +36758,2728,1489,15,6,pollen,DSC_0838.JPG +36763,4780,379,15,6,pollen,DSC_0838.JPG +36767,3853,1141,17,6,pollen,DSC_0838.JPG +36769,3289,1372,17,6,pollen,DSC_0838.JPG +36787,4087,112,17,6,pollen,DSC_0838.JPG +36789,5062,505,17,6,pollen,DSC_0838.JPG +3679,4927,1099,15,6,pollen,DSC_0837.JPG +36808,5056,751,17,6,pollen,DSC_0838.JPG +3681,5320,1390,17,6,pollen,DSC_0837.JPG +36828,2863,1849,17,6,pollen,DSC_0838.JPG +36831,5026,568,15,6,pollen,DSC_0838.JPG +36832,5128,628,17,6,pollen,DSC_0838.JPG +36833,5128,751,15,6,pollen,DSC_0838.JPG +36835,3262,946,17,6,pollen,DSC_0838.JPG +36838,2725,1609,16,6,pollen,DSC_0838.JPG +36843,3064,169,15,6,pollen,DSC_0838.JPG +36849,3115,1309,16,6,pollen,DSC_0838.JPG +36855,4609,319,16,6,pollen,DSC_0838.JPG +36856,4987,628,16,6,pollen,DSC_0838.JPG +36857,5023,694,17,6,pollen,DSC_0838.JPG +36864,3445,85,17,6,pollen,DSC_0838.JPG +36868,4990,505,16,6,pollen,DSC_0838.JPG +36890,3241,100,17,6,pollen,DSC_0838.JPG +36891,3658,106,17,6,pollen,DSC_0838.JPG +36892,622,196,16,6,pollen,DSC_0838.JPG +36902,1189,79,15,6,pollen,DSC_0838.JPG +36913,3430,1495,16,6,pollen,DSC_0838.JPG +36914,3322,1552,16,6,pollen,DSC_0838.JPG +36918,334,442,17,6,pollen,DSC_0838.JPG +36927,3427,1732,17,6,pollen,DSC_0838.JPG +36942,3202,166,15,6,pollen,DSC_0838.JPG +36946,3538,1198,15,6,pollen,DSC_0838.JPG +36961,307,253,15,6,pollen,DSC_0838.JPG +36965,5305,1045,15,6,pollen,DSC_0838.JPG +36968,1048,70,17,6,pollen,DSC_0838.JPG +36969,3169,94,17,6,pollen,DSC_0838.JPG +3697,1027,331,16,6,pollen,DSC_0837.JPG +36973,3292,1129,15,6,pollen,DSC_0838.JPG +36985,2701,937,16,6,pollen,DSC_0838.JPG +36989,3043,1429,16,6,pollen,DSC_0838.JPG +36990,3289,1492,16,6,pollen,DSC_0838.JPG +37000,3145,1732,16,6,pollen,DSC_0838.JPG +37003,5104,442,17,6,pollen,DSC_0838.JPG +37007,3532,1675,16,6,pollen,DSC_0838.JPG +37015,3604,1675,15,6,pollen,DSC_0838.JPG +37017,1006,136,15,6,pollen,DSC_0838.JPG +37029,3226,754,17,6,pollen,DSC_0838.JPG +37031,3610,1198,17,6,pollen,DSC_0838.JPG +37042,4573,256,15,6,pollen,DSC_0838.JPG +37052,1687,211,16,6,pollen,DSC_0838.JPG +37055,4675,316,17,6,pollen,DSC_0838.JPG +37057,4849,508,17,6,pollen,DSC_0838.JPG +3706,5398,1507,17,6,pollen,DSC_0837.JPG +37060,2962,1792,15,6,pollen,DSC_0838.JPG +37087,5272,748,15,6,pollen,DSC_0838.JPG +37119,3292,1252,16,6,pollen,DSC_0838.JPG +37120,3364,1252,15,6,pollen,DSC_0838.JPG +37124,2791,1966,17,6,pollen,DSC_0838.JPG +37126,1828,82,17,6,pollen,DSC_0838.JPG +37133,3400,1195,15,6,pollen,DSC_0838.JPG +37144,5197,871,15,6,pollen,DSC_0838.JPG +37148,3388,1795,15,6,pollen,DSC_0838.JPG +37155,5161,934,17,6,pollen,DSC_0838.JPG +37161,3643,1261,15,6,pollen,DSC_0838.JPG +37172,3211,1966,17,6,pollen,DSC_0838.JPG +3718,4939,862,15,6,pollen,DSC_0837.JPG +37198,4855,382,17,6,pollen,DSC_0838.JPG +37200,2845,688,17,6,pollen,DSC_0838.JPG +37204,3247,1792,17,6,pollen,DSC_0838.JPG +37212,4714,250,17,6,pollen,DSC_0838.JPG +37220,5170,565,16,6,pollen,DSC_0838.JPG +37221,5167,688,15,6,pollen,DSC_0838.JPG +37223,4951,694,17,6,pollen,DSC_0838.JPG +37226,1117,82,17,6,pollen,DSC_0838.JPG +37243,553,196,15,6,pollen,DSC_0838.JPG +37248,3223,1249,15,6,pollen,DSC_0838.JPG +37251,3004,1729,17,6,pollen,DSC_0838.JPG +37255,3148,1489,17,6,pollen,DSC_0838.JPG +37261,2830,1669,16,6,pollen,DSC_0838.JPG +37265,4786,250,15,6,pollen,DSC_0838.JPG +37268,2824,1909,17,6,pollen,DSC_0838.JPG +37273,4819,316,17,6,pollen,DSC_0838.JPG +37274,5233,688,15,6,pollen,DSC_0838.JPG +37275,5164,811,16,6,pollen,DSC_0838.JPG +37280,2602,235,17,6,pollen,DSC_0838.JPG +37281,4642,253,17,6,pollen,DSC_0838.JPG +37295,5302,928,15,6,pollen,DSC_0838.JPG +37297,3364,1132,16,6,pollen,DSC_0838.JPG +37298,3256,1312,16,6,pollen,DSC_0838.JPG +37304,3106,2143,17,6,pollen,DSC_0838.JPG +37309,3091,757,17,6,pollen,DSC_0838.JPG +3732,4408,670,15,6,pollen,DSC_0837.JPG +37321,5095,691,16,6,pollen,DSC_0838.JPG +37322,2845,817,17,6,pollen,DSC_0838.JPG +37328,901,76,15,6,pollen,DSC_0838.JPG +37329,1792,148,16,6,pollen,DSC_0838.JPG +37330,1864,148,17,6,pollen,DSC_0838.JPG +37331,2425,163,17,6,pollen,DSC_0838.JPG +37349,3376,103,15,6,pollen,DSC_0838.JPG +37354,3328,1315,17,6,pollen,DSC_0838.JPG +37357,2305,1597,15,6,pollen,DSC_0838.JPG +37367,3220,1372,15,6,pollen,DSC_0838.JPG +3737,5284,1207,16,6,pollen,DSC_0837.JPG +37380,3253,1426,17,6,pollen,DSC_0838.JPG +37436,4435,247,15,6,pollen,DSC_0838.JPG +37457,3217,1486,15,6,pollen,DSC_0838.JPG +37468,4855,250,17,6,pollen,DSC_0838.JPG +3748,988,268,16,6,pollen,DSC_0837.JPG +37483,5299,1156,15,6,pollen,DSC_0838.JPG +37497,5098,565,15,6,pollen,DSC_0838.JPG +37512,3709,1615,17,6,pollen,DSC_0838.JPG +37523,5125,871,17,6,pollen,DSC_0838.JPG +37546,5305,805,17,6,pollen,DSC_0838.JPG +37548,3364,1375,15,6,pollen,DSC_0838.JPG +37560,5233,931,15,6,pollen,DSC_0838.JPG +37563,5272,991,15,6,pollen,DSC_0838.JPG +3757,4723,862,15,6,pollen,DSC_0837.JPG +37620,5197,751,15,6,pollen,DSC_0838.JPG +37632,4747,313,15,6,pollen,DSC_0838.JPG +37637,5305,682,16,6,pollen,DSC_0838.JPG +37639,5272,871,17,6,pollen,DSC_0838.JPG +37673,3610,1315,17,6,pollen,DSC_0838.JPG +37693,5269,1108,17,6,pollen,DSC_0838.JPG +37694,3682,1198,17,6,pollen,DSC_0838.JPG +37713,5230,811,15,6,pollen,DSC_0838.JPG +37799,5329,1096,15,6,pollen,DSC_0838.JPG +3780,4768,676,17,6,pollen,DSC_0837.JPG +3793,4945,739,15,6,pollen,DSC_0837.JPG +3795,4762,799,16,6,pollen,DSC_0837.JPG +37964,4369,250,15,6,pollen,DSC_0838.JPG +38027,5203,631,17,6,pollen,DSC_0838.JPG +3818,4786,1099,15,6,pollen,DSC_0837.JPG +38226,760,2260,17,6,pollen,DSC_0838.JPG +38270,1078,139,15,6,pollen,DSC_0838.JPG +3829,1423,397,16,6,pollen,DSC_0837.JPG +3830,5299,736,15,6,pollen,DSC_0837.JPG +38356,5236,1051,17,6,pollen,DSC_0838.JPG +38445,5143,2122,16,6,pollen,DSC_0838.JPG +3846,1885,340,16,6,pollen,DSC_0837.JPG +3849,448,691,16,6,pollen,DSC_0837.JPG +38490,5026,448,15,6,pollen,DSC_0838.JPG +3851,4585,736,15,6,pollen,DSC_0837.JPG +38530,4819,190,15,6,pollen,DSC_0838.JPG +3871,5020,616,15,6,pollen,DSC_0837.JPG +3899,1279,523,16,6,pollen,DSC_0837.JPG +3931,3940,607,16,6,pollen,DSC_0837.JPG +3938,5176,1033,16,6,pollen,DSC_0837.JPG +39504,4804,448,15,6,pollen,DSC_0838.JPG +3985,4618,673,17,6,pollen,DSC_0837.JPG +3988,4822,1042,15,6,pollen,DSC_0837.JPG +399,4909,403,17,6,pollen,DSC_0844.JPG +3993,595,1540,15,6,pollen,DSC_0837.JPG +4010,445,442,16,6,pollen,DSC_0837.JPG +4023,5215,1330,15,6,pollen,DSC_0837.JPG +4027,5320,1507,17,6,pollen,DSC_0837.JPG +4060,3829,676,17,6,pollen,DSC_0837.JPG +4063,5260,796,17,6,pollen,DSC_0837.JPG +4065,5107,919,15,6,pollen,DSC_0837.JPG +4128,1030,202,17,6,pollen,DSC_0837.JPG +4131,4192,673,16,6,pollen,DSC_0837.JPG +4132,4870,742,17,6,pollen,DSC_0837.JPG +4134,5038,922,17,6,pollen,DSC_0837.JPG +4140,592,1423,15,6,pollen,DSC_0837.JPG +4151,4681,919,17,6,pollen,DSC_0837.JPG +4210,4690,799,15,6,pollen,DSC_0837.JPG +4212,985,1018,15,6,pollen,DSC_0837.JPG +4217,775,1372,15,6,pollen,DSC_0837.JPG +4237,3199,421,15,6,pollen,DSC_0837.JPG +4247,4966,1039,15,6,pollen,DSC_0837.JPG +4266,376,316,15,6,pollen,DSC_0837.JPG +4274,4714,982,15,6,pollen,DSC_0837.JPG +4290,1459,334,17,6,pollen,DSC_0837.JPG +4294,2983,544,17,6,pollen,DSC_0837.JPG +4302,337,874,15,6,pollen,DSC_0837.JPG +4322,3133,421,15,6,pollen,DSC_0837.JPG +4345,4735,490,15,6,pollen,DSC_0837.JPG +4370,844,511,16,6,pollen,DSC_0837.JPG +4382,4801,1756,17,6,pollen,DSC_0837.JPG +4383,4984,1819,17,6,pollen,DSC_0837.JPG +4425,4909,1822,15,6,pollen,DSC_0837.JPG +4438,5116,799,15,6,pollen,DSC_0837.JPG +4447,559,1597,15,6,pollen,DSC_0837.JPG +4482,5056,553,15,6,pollen,DSC_0837.JPG +450,3844,1579,15,6,pollen,DSC_0844.JPG +4503,775,1963,17,6,pollen,DSC_0837.JPG +4533,3310,481,17,6,pollen,DSC_0837.JPG +4535,4438,736,15,6,pollen,DSC_0837.JPG +4537,4618,799,15,6,pollen,DSC_0837.JPG +4540,5068,1333,15,6,pollen,DSC_0837.JPG +4545,808,1900,17,6,pollen,DSC_0837.JPG +455,3349,388,16,6,pollen,DSC_0844.JPG +4553,5212,1210,15,6,pollen,DSC_0837.JPG +4559,5053,1933,15,6,pollen,DSC_0837.JPG +4568,1312,331,15,6,pollen,DSC_0837.JPG +4571,1744,466,16,6,pollen,DSC_0837.JPG +4573,2950,484,17,6,pollen,DSC_0837.JPG +4577,1096,958,16,6,pollen,DSC_0837.JPG +4578,4753,1039,15,6,pollen,DSC_0837.JPG +4580,5140,1099,15,6,pollen,DSC_0837.JPG +4584,451,1657,15,6,pollen,DSC_0837.JPG +4594,1099,205,17,6,pollen,DSC_0837.JPG +4600,1057,766,17,6,pollen,DSC_0837.JPG +4626,4051,547,17,6,pollen,DSC_0837.JPG +4628,982,769,17,6,pollen,DSC_0837.JPG +4631,4930,979,15,6,pollen,DSC_0837.JPG +4653,4606,922,17,6,pollen,DSC_0837.JPG +4672,952,955,17,6,pollen,DSC_0837.JPG +4698,5323,1147,15,6,pollen,DSC_0837.JPG +471,4354,2119,16,6,pollen,DSC_0844.JPG +4729,5026,1393,15,6,pollen,DSC_0837.JPG +4737,841,388,16,6,pollen,DSC_0837.JPG +4738,3871,484,15,6,pollen,DSC_0837.JPG +4757,3091,481,16,6,pollen,DSC_0837.JPG +4772,1495,526,17,6,pollen,DSC_0837.JPG +4774,4663,610,15,6,pollen,DSC_0837.JPG +4775,484,757,17,6,pollen,DSC_0837.JPG +4776,487,874,17,6,pollen,DSC_0837.JPG +4778,1060,1021,15,6,pollen,DSC_0837.JPG +4797,5284,1450,16,6,pollen,DSC_0837.JPG +4808,4993,1216,15,6,pollen,DSC_0837.JPG +4809,4957,1276,15,6,pollen,DSC_0837.JPG +4828,4075,1105,16,6,pollen,DSC_0837.JPG +4829,916,1138,17,6,pollen,DSC_0837.JPG +4831,4921,1213,16,6,pollen,DSC_0837.JPG +4848,4594,1039,15,6,pollen,DSC_0837.JPG +4876,874,955,17,6,pollen,DSC_0837.JPG +4879,739,1315,17,6,pollen,DSC_0837.JPG +4907,2593,361,17,6,pollen,DSC_0837.JPG +4912,4987,553,15,6,pollen,DSC_0837.JPG +4918,661,1189,17,6,pollen,DSC_0837.JPG +4919,805,1195,15,6,pollen,DSC_0837.JPG +494,4699,268,17,6,pollen,DSC_0844.JPG +4944,2311,478,16,6,pollen,DSC_0837.JPG +5003,880,1198,16,6,pollen,DSC_0837.JPG +5007,454,1537,15,6,pollen,DSC_0837.JPG +5015,1882,595,17,6,pollen,DSC_0837.JPG +5016,4159,607,15,6,pollen,DSC_0837.JPG +5032,4366,1021,15,6,pollen,DSC_0837.JPG +5034,4705,1219,16,6,pollen,DSC_0837.JPG +5040,2173,343,17,6,pollen,DSC_0837.JPG +5045,5212,1096,15,6,pollen,DSC_0837.JPG +5058,1279,394,15,6,pollen,DSC_0837.JPG +5064,451,1417,15,6,pollen,DSC_0837.JPG +5066,199,1711,15,6,pollen,DSC_0837.JPG +5075,766,1135,17,6,pollen,DSC_0837.JPG +5088,739,1195,15,6,pollen,DSC_0837.JPG +5103,667,1312,15,6,pollen,DSC_0837.JPG +5110,958,205,17,6,pollen,DSC_0837.JPG +5114,4711,1099,16,6,pollen,DSC_0837.JPG +5127,4744,1156,17,6,pollen,DSC_0837.JPG +5128,5173,1393,15,6,pollen,DSC_0837.JPG +5140,913,895,16,6,pollen,DSC_0837.JPG +5150,733,700,17,6,pollen,DSC_0837.JPG +5151,2941,733,16,6,pollen,DSC_0837.JPG +5157,415,1477,15,6,pollen,DSC_0837.JPG +5177,1060,517,15,6,pollen,DSC_0837.JPG +5187,2806,484,17,6,pollen,DSC_0837.JPG +5205,631,1483,15,6,pollen,DSC_0837.JPG +5211,5005,859,15,6,pollen,DSC_0837.JPG +5216,808,1432,15,6,pollen,DSC_0837.JPG +5218,523,1537,15,6,pollen,DSC_0837.JPG +5219,451,1774,16,6,pollen,DSC_0837.JPG +5232,379,2014,17,6,pollen,DSC_0837.JPG +5241,841,1138,15,6,pollen,DSC_0837.JPG +5253,694,1006,17,6,pollen,DSC_0837.JPG +5254,520,1063,17,6,pollen,DSC_0837.JPG +5256,736,1426,17,6,pollen,DSC_0837.JPG +5257,490,1477,17,6,pollen,DSC_0837.JPG +5263,4630,1099,17,6,pollen,DSC_0837.JPG +5265,742,1546,17,6,pollen,DSC_0837.JPG +5284,4975,799,16,6,pollen,DSC_0837.JPG +5287,418,1834,15,6,pollen,DSC_0837.JPG +5290,5077,862,15,6,pollen,DSC_0837.JPG +5301,916,520,17,6,pollen,DSC_0837.JPG +5304,772,1252,17,6,pollen,DSC_0837.JPG +5314,1060,892,17,6,pollen,DSC_0837.JPG +5326,5299,856,17,6,pollen,DSC_0837.JPG +5329,4948,1516,15,6,pollen,DSC_0837.JPG +5340,3937,985,15,6,pollen,DSC_0837.JPG +5341,4672,1039,15,6,pollen,DSC_0837.JPG +5343,553,1123,15,6,pollen,DSC_0837.JPG +5359,988,388,17,6,pollen,DSC_0837.JPG +5374,667,1540,17,6,pollen,DSC_0837.JPG +5399,631,1363,17,6,pollen,DSC_0837.JPG +5416,484,1357,15,6,pollen,DSC_0837.JPG +5438,703,1249,15,6,pollen,DSC_0837.JPG +5441,487,1831,16,6,pollen,DSC_0837.JPG +5481,5089,616,17,6,pollen,DSC_0837.JPG +5517,478,1240,15,6,pollen,DSC_0837.JPG +5532,1018,955,17,6,pollen,DSC_0837.JPG +5533,520,1180,17,6,pollen,DSC_0837.JPG +5536,487,1597,15,6,pollen,DSC_0837.JPG +5541,301,1174,17,6,pollen,DSC_0837.JPG +5571,592,1186,16,6,pollen,DSC_0837.JPG +5583,343,1837,15,6,pollen,DSC_0837.JPG +5607,232,691,17,6,pollen,DSC_0837.JPG +5613,343,1585,15,6,pollen,DSC_0837.JPG +5614,3220,1621,17,6,pollen,DSC_0837.JPG +5643,337,1231,15,6,pollen,DSC_0837.JPG +5676,481,1120,15,6,pollen,DSC_0837.JPG +569,2983,898,16,6,pollen,DSC_0844.JPG +5746,808,1084,15,6,pollen,DSC_0837.JPG +5801,5158,1270,17,6,pollen,DSC_0837.JPG +583,2986,2170,17,6,pollen,DSC_0844.JPG +5873,5206,973,17,6,pollen,DSC_0837.JPG +5874,5128,1318,17,6,pollen,DSC_0837.JPG +5891,2884,493,17,6,pollen,DSC_0837.JPG +5915,1390,217,17,6,pollen,DSC_0837.JPG +599,3202,1813,17,6,pollen,DSC_0844.JPG +743,5155,1501,15,6,pollen,DSC_0844.JPG +747,2404,1747,17,6,pollen,DSC_0844.JPG +773,4762,403,17,6,pollen,DSC_0844.JPG +791,3826,2059,17,6,pollen,DSC_0844.JPG +809,4519,2290,15,6,pollen,DSC_0844.JPG +885,2368,1684,16,6,pollen,DSC_0844.JPG +920,2815,2227,17,6,pollen,DSC_0844.JPG +921,3022,2230,16,6,pollen,DSC_0844.JPG +956,2341,1258,15,6,pollen,DSC_0844.JPG +983,2071,1255,16,6,pollen,DSC_0844.JPG diff --git a/src/split_dataset.py b/src/split_dataset.py new file mode 100644 index 0000000..3c331f3 --- /dev/null +++ b/src/split_dataset.py @@ -0,0 +1,80 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on Fri Jan 12 10:56:16 2018 + +@author: avsthiago +""" + +from os.path import join +import os +import random +import shutil + +PCT_TRAIN = 50 +PCT_VALIDATION = 50 +#PCT_TEST = 5 the remaining images + +PATH_IMAGES = "/home/avsthiago/tese_thiago/thesis/meu_teste/dataset/train" +OUT_PATH_IMAGES = "/home/avsthiago/tese_thiago/thesis/meu_teste/dataset/out_train" +OUT_PATHS = ['Testing', 'Training', 'Validation'] + +def subfolders_names(path): + files_and_folders = os.listdir(path) + folders = list(filter(lambda x: os.path.isdir(join(PATH_IMAGES, x)), files_and_folders)) + return folders + +def extract_sample(population, k): + random.seed(3) + subset = random.sample(population, k) + population = list(filter(lambda x: x not in subset, population)) + return subset, population + +def create_path(path): + if not os.path.exists(path): + os.makedirs(path) + +def create_main_path(path): + if not os.path.exists(path): + os.makedirs(path) + for p in OUT_PATHS: + full_out_path = os.path.join(path, p) + os.makedirs(full_out_path) + os.makedirs(os.path.join(full_out_path, 'Deep')) + os.makedirs(os.path.join(full_out_path, 'Models')) + +def copy_images(original_path, out_path, images): + for i in images: + shutil.copy(os.path.join(original_path, i), out_path) + +def create_datasets(): + if os.path.exists(OUT_PATH_IMAGES): + shutil.rmtree(OUT_PATH_IMAGES, True) + + folders = subfolders_names(PATH_IMAGES) + + create_main_path(OUT_PATH_IMAGES) + + for i in folders: + full_path_name = os.path.join(PATH_IMAGES, i) + all_images = os.listdir(full_path_name) + tot_images = len(all_images) + + tot_train = PCT_TRAIN * tot_images // 100 + tot_validation = PCT_VALIDATION * tot_images // 100 + + images_train, all_images = extract_sample(all_images, tot_train) + # images_test will get the remaining images + images_validation, images_test = extract_sample(all_images, tot_validation) + + for p in OUT_PATHS: + final_path = join(join(join(OUT_PATH_IMAGES, p), 'Deep'), i.title()) + create_path(final_path) + if p == 'Testing': + copy_images(full_path_name, final_path, images_test) + elif p == 'Training': + copy_images(full_path_name, final_path, images_train) + else: + copy_images(full_path_name, final_path, images_validation) + +create_datasets() From 4cdd2bb9aa2b6b08544f728e1760b468fc7ea6ec Mon Sep 17 00:00:00 2001 From: avsthiago Date: Fri, 26 Mar 2021 21:41:18 +0100 Subject: [PATCH 2/3] moving some files --- src/{data => }/clip_images.py | 0 src/{data => }/create_dataset.py | 0 src/{data => }/download_dataset_train.py | 0 src/{data => }/extract_cells.py | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename src/{data => }/clip_images.py (100%) rename src/{data => }/create_dataset.py (100%) rename src/{data => }/download_dataset_train.py (100%) rename src/{data => }/extract_cells.py (100%) diff --git a/src/data/clip_images.py b/src/clip_images.py similarity index 100% rename from src/data/clip_images.py rename to src/clip_images.py diff --git a/src/data/create_dataset.py b/src/create_dataset.py similarity index 100% rename from src/data/create_dataset.py rename to src/create_dataset.py diff --git a/src/data/download_dataset_train.py b/src/download_dataset_train.py similarity index 100% rename from src/data/download_dataset_train.py rename to src/download_dataset_train.py diff --git a/src/data/extract_cells.py b/src/extract_cells.py similarity index 100% rename from src/data/extract_cells.py rename to src/extract_cells.py From a8d6c15abefd1a80e7a61856921901d185f983fc Mon Sep 17 00:00:00 2001 From: avsthiago Date: Fri, 26 Mar 2021 21:42:31 +0100 Subject: [PATCH 3/3] adding model train script --- src/model_train.py | 278 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 278 insertions(+) create mode 100644 src/model_train.py diff --git a/src/model_train.py b/src/model_train.py new file mode 100644 index 0000000..c937af2 --- /dev/null +++ b/src/model_train.py @@ -0,0 +1,278 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Jan 15 15:16:22 2018 +@author: avsthiago +""" + +import os +import cv2 +import numpy as np +import multiprocessing +from keras.applications.imagenet_utils import preprocess_input +from keras.callbacks import ReduceLROnPlateau, EarlyStopping, ModelCheckpoint +from keras.preprocessing.image import ImageDataGenerator +from keras.models import load_model +from tqdm import tqdm +import shutil +from pathlib import PurePath +import imghdr +from collections import Counter +import random +import warnings +warnings.filterwarnings("ignore") +os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' + +PATH_PRED_CORR = os.path.join(*list(PurePath('../annotations/predictions_corrected/').parts)) +PATH_PREDS = os.path.join(*list(PurePath('../annotations/predictions').parts)) + +PATH_IMGS = os.path.join(*list(PurePath('../original_images/').parts)) +OUT_DATASET = os.path.join(*list(PurePath('../dataset_train').parts)) +PATH_MODEL = os.path.join(*list(PurePath('./model/classification.h5').parts)) +PATH_TRAIN = os.path.join(OUT_DATASET, 'train') +PATH_VAL = os.path.join(OUT_DATASET, 'validation') +CONFIG_FILE = 'config.txt' +BATCH_SIZE = 50 +MAX_SAMPLES_CLASS = 50000 +LABELS = ['Capped', 'Eggs', 'Honey', 'Larva', 'Nectar', 'Other', 'Pollen'] + +def load_configs(): + global MAX_SAMPLES_CLASS, BATCH_SIZE + if os.path.exists(CONFIG_FILE): + with open(CONFIG_FILE, 'r') as file: + lines = file.readlines() + # load num_samples + try: + mx_sam = [i for i in lines if 'MAX_SAMPLES_CLASS' in i][0] + MAX_SAMPLES_CLASS = int(mx_sam.split(':')[-1].strip()) + except: + print('MAX_SAMPLES_CLASS not found in the config.txt file') + # load batch + try: + mx_sam = [i for i in lines if 'BATCH_SIZE' in i][0] + BATCH_SIZE = int(mx_sam.split(':')[-1].strip()) + except: + print('BATCH_SIZE not found in the config.txt file') + + +def cross_plataform_directory(): + global PATH_PRED_CORR, PATH_IMGS, OUT_DATASET, PATH_MODEL, PATH_TRAIN, \ + PATH_VAL, PATH_PREDS + if '\\' in PATH_PRED_CORR: + PATH_PRED_CORR += '\\' + PATH_IMGS += '\\' + OUT_DATASET += '\\' + PATH_TRAIN += '\\' + PATH_VAL += '\\' + PATH_PREDS += '\\' + elif '/' in PATH_PRED_CORR: + PATH_PRED_CORR += '/' + PATH_IMGS += '/' + OUT_DATASET += '/' + PATH_TRAIN += '/' + PATH_VAL += '/' + PATH_PREDS += '/' + + +def create_folder(path): + path = os.path.join(*PurePath(path).parts[:-1]) + if not os.path.exists(path): + os.makedirs(path) + + +def extract_cells(image, pts, output_size=224, mean_radius_default=32, standardize_radius=True): + + if standardize_radius: + pts[:, 2] = output_size / mean_radius_default * pts[:, 2] / 2 + size_border = pts[:, 2].max() + 1 + pts[:,[0, 1]] = pts[:, [0, 1]] + size_border + img_w_border = cv2.copyMakeBorder(image,size_border, size_border, + size_border, size_border, + cv2.BORDER_REFLECT) + + ROIs = [cv2.resize(img_w_border[i[1]-i[2]:i[1]+i[2], i[0]-i[2]:i[0]+i[2]], (224, 224)) for i in pts] + + return ROIs + + +def save_image(data): + cv2.imwrite(data[1],data[0]) + + +def find_image_names(): + l_images = [] + for path, subdirs, files in os.walk(PATH_IMGS): + for name in files: + full_path = os.path.join(path, name) + if imghdr.what(full_path) is not None: + l_images.append(full_path.replace(PATH_IMGS, '')) + return l_images + + +def get_images_predictions(folder_im, folder_npy, folder_npy_correct): + images = find_image_names() + + im_to_npy = lambda x: os.path.join( + os.path.join(*PurePath(x).parts[:-1]), + PurePath(x).parts[-1].split('.')[:1][0] + '.npy') + + files_path = sorted([[i, os.path.join(folder_im, i), + os.path.join(folder_npy, im_to_npy(i)), + os.path.join(folder_npy_correct, im_to_npy(i))] + for i in images]) + + # filter if the image exists and has an annotation + imgs_with_det = list(filter(lambda x: os.path.isfile(x[1]) + and os.path.isfile(x[2]), files_path)) + + pred_files = [] + + for i in imgs_with_det: + index = -1 if os.path.isfile(i[-1]) else -2 + pth_to_npy = i[index] + pred_files.append([i[1], pth_to_npy]) + + return pred_files + + +def get_qtd_by_class(points, labels): + sum_predictions = Counter(points) + return [*[sum_predictions[i] for i, j in enumerate(labels)]] + + +def sum_qtd_by_class(list_qtd1, list_qtd2): + return [i+j for i, j in zip(list_qtd1, list_qtd2)] + + +def create_dataset(): + shutil.rmtree(os.path.abspath(OUT_DATASET), ignore_errors=True) + list_im_det = get_images_predictions(PATH_IMGS, PATH_PREDS, PATH_PRED_CORR) + random.shuffle(list_im_det) + + qt_h_conf = [] + dict_classes = {i: np.array([], dtype=np.object) for i in LABELS} + dict_all = np.array([]) + + print('\nLoading detections...') + with tqdm(total=len(list_im_det)) as t: + for k, p in enumerate(list_im_det): + points = np.load(p[1])[2][:,[0,1,2,4,5,6]].astype(np.int32) + points = points[points[:,-1]==1] + points_h_conf = points[points[:,-2]==1] + + if points_h_conf.size == 0: + continue + + l_h_conf = get_qtd_by_class(points_h_conf[:,3], LABELS) + qt_h_conf = sum_qtd_by_class(l_h_conf, qt_h_conf) if qt_h_conf else l_h_conf + + names = np.expand_dims(np.ones(len(points_h_conf)),1).astype(np.int32) * k + + points_class = np.hstack((points_h_conf[:,:-2], names)) + + dict_all = np.vstack((dict_all, points_class)) \ + if dict_all.size > 0 else points_class + + t.update(1) + + max_samples = min(min(qt_h_conf), MAX_SAMPLES_CLASS) + + for i, j in enumerate(dict_classes.items()): + cl, arr = j + points_class = dict_all[dict_all[:,3]==i] + np.random.shuffle(points_class) + dict_classes[cl] = points_class[:max_samples] + + print('\nExtracting detections...') + with tqdm(total=len(list_im_det)) as t: + for c in range(7): + lb_class = LABELS[c] + create_folder(os.path.join(OUT_DATASET,'train',lb_class, 'X')) + create_folder(os.path.join(OUT_DATASET,'validation',lb_class, 'X')) + + for k, n in enumerate(list_im_det): + im_name = PurePath(n[0]).stem + ftype = PurePath(n[0]).suffix + path_annots = n[1] + if os.path.isfile(path_annots): + annotation = np.concatenate([i[i[:, -1]==k] for i in \ + dict_classes.values() if i.size > 0]) + if annotation.size == 0: + continue + + image = cv2.imread(n[0]) + + pool = multiprocessing.Pool(processes=multiprocessing.cpu_count()) + + for c in range(7): + lb_class = LABELS[c] + cells_class = annotation[annotation[:,-2]==c] + train_samples = int(len(cells_class) * .8) + train_set = cells_class[:train_samples] + val_set = cells_class[train_samples:] + + # train set + if train_set.size > 0: + imgs = extract_cells(image, np.copy(train_set)) + names = [os.path.join(OUT_DATASET, 'train', lb_class, + im_name + '_' + str(i[0]) + str(i[1]) + ftype) for i in train_set] + if len(names) != len(set(names)): + print(k) + pool.map(save_image, zip(imgs, names)) + + # validation set + if val_set.size > 0: + imgs = extract_cells(image, np.copy(val_set)) + names = [os.path.join(OUT_DATASET, 'validation', lb_class, + im_name + '_' + str(i[0]) + str(i[1]) + ftype) for i in val_set] + pool.map(save_image, zip(imgs, names)) + pool.close() + t.update(1) + + +def train(): + train_datagen = ImageDataGenerator(preprocessing_function=preprocess_input) + val_datagen = ImageDataGenerator(preprocessing_function=preprocess_input) + + train_generator = train_datagen.flow_from_directory(PATH_TRAIN, + target_size=(224, 224), + batch_size=50) + + val_generator = val_datagen.flow_from_directory(PATH_VAL, + target_size=(224, 224), + batch_size=50) + + earlystopper = EarlyStopping(patience=3, verbose=0) + checkpointer = ModelCheckpoint(PATH_MODEL, verbose=1, save_best_only=True) + learning_rate_reduction = ReduceLROnPlateau(monitor='val_loss', + patience=3, + verbose=0, + factor=0.5, + min_lr=0.000001) + + model = load_model(PATH_MODEL) + + model.fit_generator(train_generator, validation_data=val_generator, + epochs=20, callbacks=[earlystopper, + learning_rate_reduction, + checkpointer]) + + + print('\nRemoving dataset.') + shutil.rmtree(os.path.abspath(OUT_DATASET), ignore_errors=True) + print('\nDone.') + + +def main(): + cross_plataform_directory() + load_configs() + + print('\nCreating Dataset...\n') + create_dataset() + + print('\n\nTraining...\n\n') + train() + input('\nPress Enter to close...') + + +if __name__ == '__main__': + main()