diff --git a/customers/0-0.jpg b/customers/0-0.jpg deleted file mode 100644 index af8e989..0000000 Binary files a/customers/0-0.jpg and /dev/null differ diff --git a/customers/1-0.jpg b/customers/1-0.jpg deleted file mode 100644 index 6c049af..0000000 Binary files a/customers/1-0.jpg and /dev/null differ diff --git a/customers/test1/0-0.jpg b/customers/test1/0-0.jpg index bdfe7dd..597649e 100644 Binary files a/customers/test1/0-0.jpg and b/customers/test1/0-0.jpg differ diff --git a/customers/test1/1-0.jpg b/customers/test1/1-0.jpg index cff3f3e..5b2a681 100644 Binary files a/customers/test1/1-0.jpg and b/customers/test1/1-0.jpg differ diff --git a/helper_images.py b/helper_images.py index 2840713..7c0b342 100644 --- a/helper_images.py +++ b/helper_images.py @@ -2,6 +2,43 @@ from PIL import Image, ImageEnhance import os +def split_string(string, max_chars_per_line): + words = string.split() + lines = [] + current_line = "" + for word in words: + if len(current_line + " " + word) > max_chars_per_line: + lines.append(current_line.strip()) + current_line = "" + current_line += " " + word + if current_line: + lines.append(current_line.strip()) + + # Re-combine lines to achieve even distribution of words + num_lines = len(lines) + if num_lines > 1: + total_words = len(words) + ideal_words_per_line = (total_words + num_lines - 1) // num_lines + excess_words = total_words - ideal_words_per_line * (num_lines - 1) + + even_lines = [] + i = 0 + while i < num_lines - 1: + line_words = words[:ideal_words_per_line] + if excess_words > 0: + line_words.append(words[ideal_words_per_line]) + excess_words -= 1 + words.pop(ideal_words_per_line) + even_lines.append(" ".join(line_words)) + words = words[ideal_words_per_line:] + i += 1 + even_lines.append(" ".join(words)) + return "\n".join(even_lines) + else: + return lines[0] + + + def darken_images(images_folder, output_folder): # Set desired darkness dark = 0.5 diff --git a/main.py b/main.py index e9e87db..882037b 100644 --- a/main.py +++ b/main.py @@ -2,18 +2,26 @@ import post_handler import helper_images # Define the paths and values to everything -number_of_posts = 2 -images_folder = "C:/Bots/ChristianPostMaker/sources/images/cropped/darken" +number_of_posts = 119 +images_folder = "C:/Bots/ChristianPostMaker/sources/images" +images_folder_cropped = f"{images_folder}/cropped" +images_folder_cropped_darken = f"{images_folder_cropped}/darken" text_file = "C:/Bots/ChristianPostMaker/sources/quotes.txt" font_dir = "C:/Users/samla/AppData/Local/Microsoft/Windows/Fonts/MouldyCheeseRegular-WyMWG.ttf" output_folder = "C:/Bots/ChristianPostMaker/customers" logo_file = "C:/Bots/ChristianPostMaker/sources/logo.png" -customer_name = "test1" +customer_name = "no_logo" if __name__ == "__main__": - # helper_images.cut_images(images_folder, f"{images_folder}/cropped") - # helper_images.darken_images(images_folder, f"{images_folder}/darken") - post_handler.create_posts(images_folder=images_folder, text_file=text_file, + # helper_images.cut_images(images_folder, images_folder_cropped) + # helper_images.darken_images(images_folder_cropped, images_folder_cropped_darken) + # post_handler.create_posts(images_folder=images_folder_cropped_darken, text_file=text_file, + # font_dir=font_dir, output_folder=output_folder, + # logo_file=logo_file, customer_name=customer_name, number_of_posts=number_of_posts) + + # No logo + post_handler.create_posts(images_folder=images_folder_cropped_darken, text_file=text_file, font_dir=font_dir, output_folder=output_folder, - logo_file=logo_file, customer_name=customer_name, number_of_posts=number_of_posts) + customer_name=customer_name, number_of_posts=number_of_posts) + diff --git a/post_handler.py b/post_handler.py index 1d1e389..c693325 100644 --- a/post_handler.py +++ b/post_handler.py @@ -1,11 +1,13 @@ import os import random +import re import textwrap import time from string import ascii_letters from PIL import Image, ImageDraw, ImageFont, ImageFilter, ImageEnhance +import helper_images import json_handler @@ -29,7 +31,9 @@ def create_posts(images_folder, text_file, font_dir, output_folder, customer_nam # verses: str = json_data[0] # refs: str = json_data[1] - quotes = ["test1", "test2"] + # Read the text file into a list of lines + with open(text_file, 'r', encoding='utf-8') as file: + quotes = file.readlines() # Get list of photos in the specified folder and shuffle it @@ -53,7 +57,13 @@ def create_posts(images_folder, text_file, font_dir, output_folder, customer_nam random_image_num = image_num[0] del image_num[0] image_file = image_files[random_image_num] - file_name = f"/{i}-{random_image_num}.jpg" + + image_license = image_file.split('/') + image_license = image_license[len(image_license)-1] + image_license = image_license.split('-') + image_license = image_license[len(image_license)-1].rstrip(".jpg") + + file_name = f"/{i}-{image_license}.jpg" create_post(image_file=image_file, text=text, font_dir=font_dir, output_path=output_path, file_name=file_name, logo_file=logo_file, customer_name=customer_name) @@ -86,14 +96,14 @@ def create_post(image_file, text, font_dir, output_path, file_name, logo_file, c # Define our text: # Calculate the average length of a single character of our font. # Note: this takes into account the specific font and font size. - avg_char_width = sum(font.getsize(char)[0] for char in ascii_letters) / len(ascii_letters) + # avg_char_width = sum(font.getsize(char)[0] for char in ascii_letters) / len(ascii_letters) # Translate this average length into a character count - max_char_count = int(img.size[0] * .718 / avg_char_width) - + # max_char_count = int(img.size[0] / avg_char_width) + max_char_count = 25 # Create a wrapped text object using scaled character count new_text = textwrap.fill(text=text, width=max_char_count) - + # new_text = helper_images.split_string(text, max_char_count) # Define the positions of logo and text x_logo = 0 y_logo = 1100 @@ -104,7 +114,7 @@ def create_post(image_file, text, font_dir, output_path, file_name, logo_file, c # Draw the shadow text shadow_color = (0, 0, 0, 128) shadow_position = (x_text+5, y_text+5) - draw.text(shadow_position, text, font=font, fill=shadow_color, anchor='mm') + draw.text(shadow_position, new_text, font=font, fill=shadow_color, anchor='mm', align='center') # Add main text to the image draw.text(position, text=new_text, font=font, fill=(255, 255, 255, 255), anchor='mm', @@ -115,7 +125,7 @@ def create_post(image_file, text, font_dir, output_path, file_name, logo_file, c img_logo = Image.open(logo_file) # Reduce the alpha of the overlay image by 50% - alpha = 0.5 + alpha = 0.7 enhancer = ImageEnhance.Brightness(img_logo) img_logo_darken = enhancer.enhance(alpha) @@ -131,6 +141,8 @@ def create_post(image_file, text, font_dir, output_path, file_name, logo_file, c # Convert from RGBA to RGB img_with_logo_rgb = img_with_logo.convert("RGB") + file_name + # Save the image img_with_logo_rgb.save(f"{output_path}/{file_name}") # combined.show() diff --git a/sources/fiverr/AD_Feed_Light.png b/sources/fiverr/AD_Feed_Light.png new file mode 100644 index 0000000..d916059 Binary files /dev/null and b/sources/fiverr/AD_Feed_Light.png differ diff --git a/sources/fiverr/AD_Feed_Light2.png b/sources/fiverr/AD_Feed_Light2.png new file mode 100644 index 0000000..408e9db Binary files /dev/null and b/sources/fiverr/AD_Feed_Light2.png differ diff --git a/sources/fiverr/fiver pic1.psd b/sources/fiverr/fiver pic1.psd new file mode 100644 index 0000000..70ee3fd Binary files /dev/null and b/sources/fiverr/fiver pic1.psd differ diff --git a/sources/fiverr/fiverr banner1.png b/sources/fiverr/fiverr banner1.png new file mode 100644 index 0000000..d335e9c Binary files /dev/null and b/sources/fiverr/fiverr banner1.png differ diff --git a/sources/fiverr/fiverr pic2 - Copy.psd b/sources/fiverr/fiverr pic2 - Copy.psd new file mode 100644 index 0000000..6a0569a Binary files /dev/null and b/sources/fiverr/fiverr pic2 - Copy.psd differ diff --git a/sources/fiverr/fiverr pic2 copy.png b/sources/fiverr/fiverr pic2 copy.png new file mode 100644 index 0000000..09174b9 Binary files /dev/null and b/sources/fiverr/fiverr pic2 copy.png differ diff --git a/sources/fiverr/fiverr pic2 with socials.png b/sources/fiverr/fiverr pic2 with socials.png new file mode 100644 index 0000000..adeb6fc Binary files /dev/null and b/sources/fiverr/fiverr pic2 with socials.png differ diff --git a/sources/fiverr/fiverr pic2.png b/sources/fiverr/fiverr pic2.png new file mode 100644 index 0000000..f238459 Binary files /dev/null and b/sources/fiverr/fiverr pic2.png differ diff --git a/sources/fiverr/fiverr pic2.psd b/sources/fiverr/fiverr pic2.psd new file mode 100644 index 0000000..4e420de Binary files /dev/null and b/sources/fiverr/fiverr pic2.psd differ diff --git a/sources/fiverr/fiverr_banner.psd b/sources/fiverr/fiverr_banner.psd new file mode 100644 index 0000000..7301bbc Binary files /dev/null and b/sources/fiverr/fiverr_banner.psd differ diff --git a/sources/fiverr/promotion_video.mp4 b/sources/fiverr/promotion_video.mp4 new file mode 100644 index 0000000..e7a9407 Binary files /dev/null and b/sources/fiverr/promotion_video.mp4 differ diff --git a/sources/fiverr/promotion_video/62-1Peter122_52_25_20_Moment.jpg b/sources/fiverr/promotion_video/62-1Peter122_52_25_20_Moment.jpg new file mode 100644 index 0000000..63d57cf Binary files /dev/null and b/sources/fiverr/promotion_video/62-1Peter122_52_25_20_Moment.jpg differ diff --git a/sources/fiverr/promotion_video/78-Ephesians432_26_41_13_Moment.jpg b/sources/fiverr/promotion_video/78-Ephesians432_26_41_13_Moment.jpg new file mode 100644 index 0000000..b1ced5a Binary files /dev/null and b/sources/fiverr/promotion_video/78-Ephesians432_26_41_13_Moment.jpg differ diff --git a/sources/fiverr/promotion_video/83-Proverbs817_19_10_0_Moment.jpg b/sources/fiverr/promotion_video/83-Proverbs817_19_10_0_Moment.jpg new file mode 100644 index 0000000..5940414 Binary files /dev/null and b/sources/fiverr/promotion_video/83-Proverbs817_19_10_0_Moment.jpg differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021.zip b/sources/fiverr/promotion_video/AD_Instagram_Template_2021.zip new file mode 100644 index 0000000..7b92844 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021.zip differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/.DS_Store b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/.DS_Store new file mode 100644 index 0000000..c96737a Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/.DS_Store differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/.DS_Store b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/.DS_Store new file mode 100644 index 0000000..6cd9deb Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/.DS_Store differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/LIVE.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/LIVE.psd new file mode 100644 index 0000000..823d401 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/LIVE.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New-Feed.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New-Feed.psd new file mode 100644 index 0000000..2409bda Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New-Feed.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Buisness_Profile.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Buisness_Profile.psd new file mode 100644 index 0000000..6eab34c Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Buisness_Profile.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Camera.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Camera.psd new file mode 100644 index 0000000..f5dbae8 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Camera.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_IGTV_Search.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_IGTV_Search.psd new file mode 100644 index 0000000..f5d4d05 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_IGTV_Search.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Profile.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Profile.psd new file mode 100644 index 0000000..018abb5 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Profile.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Story.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Story.psd new file mode 100644 index 0000000..51b0344 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/New_Story.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/Shop.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/Shop.psd new file mode 100644 index 0000000..6407b5f Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Dark/Shop.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/.DS_Store b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/.DS_Store new file mode 100644 index 0000000..e8bcca1 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/.DS_Store differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Buisness_Profile.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Buisness_Profile.psd new file mode 100644 index 0000000..5079b27 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Buisness_Profile.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Camera.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Camera.psd new file mode 100644 index 0000000..e1dcbbc Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Camera.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Feed.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Feed.psd new file mode 100644 index 0000000..3ca3c20 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Feed.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/IGTV.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/IGTV.psd new file mode 100644 index 0000000..739befb Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/IGTV.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Live.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Live.psd new file mode 100644 index 0000000..33935d0 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Live.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Profile.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Profile.psd new file mode 100644 index 0000000..7b48a7a Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Profile.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Shop.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Shop.psd new file mode 100644 index 0000000..5adea3e Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Shop.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Story.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Story.psd new file mode 100644 index 0000000..19c7bbd Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/NEW Version 2021/Light/Story.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Buisness_Profile.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Buisness_Profile.psd new file mode 100644 index 0000000..d6d913f Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Buisness_Profile.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Camera.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Camera.psd new file mode 100644 index 0000000..50bd768 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Camera.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Feed.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Feed.psd new file mode 100644 index 0000000..92013b4 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Feed.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/IGTV.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/IGTV.psd new file mode 100644 index 0000000..cbd355a Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/IGTV.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/LIVE.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/LIVE.psd new file mode 100644 index 0000000..10e1067 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/LIVE.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Profile.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Profile.psd new file mode 100644 index 0000000..17340e4 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Profile.psd differ diff --git a/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Story.psd b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Story.psd new file mode 100644 index 0000000..29e9820 Binary files /dev/null and b/sources/fiverr/promotion_video/AD_Instagram_Template_2021/_Old Version 2019/Story.psd differ diff --git a/sources/fiverr/promotion_video/fiverr_banner.png b/sources/fiverr/promotion_video/fiverr_banner.png new file mode 100644 index 0000000..363cbb1 Binary files /dev/null and b/sources/fiverr/promotion_video/fiverr_banner.png differ diff --git a/sources/fiverr/promotion_video/fiverr_banner_no_phone.png b/sources/fiverr/promotion_video/fiverr_banner_no_phone.png new file mode 100644 index 0000000..bd6a5bf Binary files /dev/null and b/sources/fiverr/promotion_video/fiverr_banner_no_phone.png differ diff --git a/sources/fiverr/promotion_video/free-sample.png b/sources/fiverr/promotion_video/free-sample.png new file mode 100644 index 0000000..fcf8ac9 Binary files /dev/null and b/sources/fiverr/promotion_video/free-sample.png differ diff --git a/sources/fiverr/promotion_video/phone mockp.png b/sources/fiverr/promotion_video/phone mockp.png new file mode 100644 index 0000000..691255f Binary files /dev/null and b/sources/fiverr/promotion_video/phone mockp.png differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/1-1Corinthians1614_10_26_7.mp4 b/sources/fiverr/promotion_video/promotion switching vids/1-1Corinthians1614_10_26_7.mp4 new file mode 100644 index 0000000..c6344ec Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/1-1Corinthians1614_10_26_7.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/1.mp4 b/sources/fiverr/promotion_video/promotion switching vids/1.mp4 new file mode 100644 index 0000000..76a0460 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/1.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/10-Proverbs1012_23_43_11.mp4 b/sources/fiverr/promotion_video/promotion switching vids/10-Proverbs1012_23_43_11.mp4 new file mode 100644 index 0000000..d379b0c Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/10-Proverbs1012_23_43_11.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/19-John1415_42_25_7.mp4 b/sources/fiverr/promotion_video/promotion switching vids/19-John1415_42_25_7.mp4 new file mode 100644 index 0000000..dd4b4cf Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/19-John1415_42_25_7.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/2-John316_3_9_19.mp4 b/sources/fiverr/promotion_video/promotion switching vids/2-John316_3_9_19.mp4 new file mode 100644 index 0000000..f6d1002 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/2-John316_3_9_19.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/3-1John48_44_46_8.mp4 b/sources/fiverr/promotion_video/promotion switching vids/3-1John48_44_46_8.mp4 new file mode 100644 index 0000000..2038ee6 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/3-1John48_44_46_8.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/4-1Peter48_24_21_12.mp4 b/sources/fiverr/promotion_video/promotion switching vids/4-1Peter48_24_21_12.mp4 new file mode 100644 index 0000000..c059e91 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/4-1Peter48_24_21_12.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/5-Colossians314_22_8_1.mp4 b/sources/fiverr/promotion_video/promotion switching vids/5-Colossians314_22_8_1.mp4 new file mode 100644 index 0000000..4d6d49f Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/5-Colossians314_22_8_1.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/54-John1334_20_15_15.mp4 b/sources/fiverr/promotion_video/promotion switching vids/54-John1334_20_15_15.mp4 new file mode 100644 index 0000000..a8f5177 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/54-John1334_20_15_15.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/7-John1513_36_12_2.mp4 b/sources/fiverr/promotion_video/promotion switching vids/7-John1513_36_12_2.mp4 new file mode 100644 index 0000000..deb2fd2 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/7-John1513_36_12_2.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/77-1Corinthians134_37_2_2.mp4 b/sources/fiverr/promotion_video/promotion switching vids/77-1Corinthians134_37_2_2.mp4 new file mode 100644 index 0000000..fd82d24 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/77-1Corinthians134_37_2_2.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/97-Ephesians52_28_47_21.mp4 b/sources/fiverr/promotion_video/promotion switching vids/97-Ephesians52_28_47_21.mp4 new file mode 100644 index 0000000..6860e31 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/97-Ephesians52_28_47_21.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/Capture.PNG b/sources/fiverr/promotion_video/promotion switching vids/Capture.PNG new file mode 100644 index 0000000..12a51e4 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/Capture.PNG differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/desktop.ini b/sources/fiverr/promotion_video/promotion switching vids/desktop.ini new file mode 100644 index 0000000..8de78dc --- /dev/null +++ b/sources/fiverr/promotion_video/promotion switching vids/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=C:\ProgramData\TechSmith\Camtasia\Icons\ProjectFolder.ico,0 diff --git a/sources/fiverr/promotion_video/promotion switching vids/fiverr_banner.png b/sources/fiverr/promotion_video/promotion switching vids/fiverr_banner.png new file mode 100644 index 0000000..363cbb1 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/fiverr_banner.png differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/fiverr_banner_no_phone.png b/sources/fiverr/promotion_video/promotion switching vids/fiverr_banner_no_phone.png new file mode 100644 index 0000000..bd6a5bf Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/fiverr_banner_no_phone.png differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/free-sample.png b/sources/fiverr/promotion_video/promotion switching vids/free-sample.png new file mode 100644 index 0000000..fcf8ac9 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/free-sample.png differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/phone mockp.png b/sources/fiverr/promotion_video/promotion switching vids/phone mockp.png new file mode 100644 index 0000000..691255f Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/phone mockp.png differ diff --git a/sources/fiverr/promotion_video/promotion switching vids/promotion_video.tscproj b/sources/fiverr/promotion_video/promotion switching vids/promotion_video.tscproj new file mode 100644 index 0000000..553541d --- /dev/null +++ b/sources/fiverr/promotion_video/promotion switching vids/promotion_video.tscproj @@ -0,0 +1,4588 @@ +{ + "title" : "", + "description" : "", + "author" : "", + "targetLoudness" : -18.0, + "shouldApplyLoudnessNormalization" : true, + "videoFormatFrameRate" : 30, + "audioFormatSampleRate" : 44100, + "width" : 1280.0, + "height" : 770.0, + "version" : "5.0", + "editRate" : 30, + "authoringClientName" : { + "name" : "Camtasia", + "platform" : "Windows", + "version" : "21.0" + }, + "sourceBin" : [ + { + "id" : 1, + "src" : "fiverr_banner.png", + "rect" : [0, 0, 1280, 769], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 1280, 769], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T133756.732511" + } + }, + { + "id" : 2, + "src" : "1.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 7900], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 30, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T133846.039087" + } + }, + { + "id" : 3, + "src" : "fiverr_banner_no_phone.png", + "rect" : [0, 0, 1280, 769], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 1280, 769], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134025.135559" + } + }, + { + "id" : 4, + "src" : "phone mockp.png", + "rect" : [0, 0, 345, 715], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 345, 715], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134122.413603" + } + }, + { + "id" : 5, + "src" : "free-sample.png", + "rect" : [0, 0, 347, 202], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 347, 202], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134824.735976" + } + }, + { + "id" : 6, + "src" : "1-1Corinthians1614_10_26_7.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175044", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 23709], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "120001/5000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 23694], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T175227.994743" + } + }, + { + "id" : 7, + "src" : "2-John316_3_9_19.mp4", + "rect" : [0, 0, 1046, 1862], + "lastMod" : "20230404T175057", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 30084], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1046, 1862], + "sampleRate" : "120001/5000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 30067], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T175832.498853" + } + }, + { + "id" : 8, + "src" : "3-1John48_44_46_8.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175108", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 22125], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 24, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 22152], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T180431.183435" + } + }, + { + "id" : 9, + "src" : "yellow_background.png", + "rect" : [0, 0, 1280, 769], + "lastMod" : "20230404T180804", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 1280, 769], + "sampleRate" : 0, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T180820.296638" + } + }, + { + "id" : 10, + "src" : "4-1Peter48_24_21_12.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175113", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 9834], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "240007/10000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 9823], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T181233.250997" + } + }, + { + "id" : 11, + "src" : "5-Colossians314_22_8_1.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175123", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 22250], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 24, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 22257], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T181453.274400" + } + }, + { + "id" : 12, + "src" : "7-John1513_36_12_2.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175144", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 19625], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 24, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 19618], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T181847.888631" + } + }, + { + "id" : 13, + "src" : "10-Proverbs1012_23_43_11.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175211", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 15500], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 24, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 15491], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T182132.883570" + } + }, + { + "id" : 14, + "src" : "54-John1334_20_15_15.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175918", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 17709], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "120003/5000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 17685], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T182225.445610" + } + }, + { + "id" : 15, + "src" : "77-1Corinthians134_37_2_2.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T180255", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 11417], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "15001/625", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 11416], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T182620.634753" + } + }, + { + "id" : 16, + "src" : "97-Ephesians52_28_47_21.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T180609", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 20625], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 24, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 20611], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T182817.283732" + } + }, + { + "id" : 17, + "src" : "19-John1415_42_25_7.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175336", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 20834], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "120001/5000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 20820], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T183000.926697" + } + }, + { + "id" : 18, + "src" : "Capture.PNG", + "rect" : [0, 0, 942, 549], + "lastMod" : "20230404T201905", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 942, 549], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T201913.432395" + } + } + ], + "timeline" : { + "id" : 19, + "sceneTrack" : { + "scenes" : [ + { + "csml" : { + "tracks" : [ + { + "trackIndex" : 0, + "medias" : [ + { + "id" : 20, + "_type" : "IMFile", + "src" : 3, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "fiverr_banner_no_phone" + }, + "parameters" : { + "translation1" : -0.5, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0 + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ] + }, + { + "trackIndex" : 1, + "medias" : [ + { + "id" : 21, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 22, + "_type" : "VMFile", + "src" : 6, + "trackNumber" : 0, + "attributes" : { + "ident" : "1-1Corinthians1614_10_26_7" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "keyframes" : [ + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : 0.418132716049223, + "keyframes" : [ + { + "endTime" : 121, + "time" : 101, + "value" : 652.25598889107, + "duration" : 20 + } + ] + }, + "scale0" : 0.339155543983755, + "scale1" : 0.339155543983755, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0 + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : 1.0, + "bottom-right" : 1.0, + "radius" : 90.0, + "top-left" : 1.0, + "top-right" : 1.0 + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 0, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 23, + "_type" : "AMFile", + "src" : 6, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 0.999999999999996, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 0, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 711, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : -0.581867283950777, + "default-width" : 366.287987502455 + } + }, + { + "id" : 24, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 25, + "_type" : "VMFile", + "src" : 8, + "trackNumber" : 0, + "attributes" : { + "ident" : "3-1John48_44_46_8" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.825605417081, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -648.915200617284, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.0, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 655.226803783729, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 202, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 26, + "_type" : "AMFile", + "src" : 8, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 202, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 202, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 663, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : -0.581867283950777, + "default-width" : 366.287987502455 + } + } + ] + }, + { + "trackIndex" : 2, + "medias" : [ + { + "id" : 27, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 28, + "_type" : "VMFile", + "src" : 7, + "trackNumber" : 0, + "attributes" : { + "ident" : "2-John316_3_9_19" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -648.915200617284, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.908328794480596, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 653.922655557737, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.349720002389264, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.349720002389264, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 101, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 29, + "_type" : "AMFile", + "src" : 7, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 101, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 101, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 902, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : -0.581867283950777, + "default-width" : 365.80712249917 + } + }, + { + "id" : 30, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 31, + "_type" : "VMFile", + "src" : 10, + "trackNumber" : 0, + "attributes" : { + "ident" : "4-1Peter48_24_21_12" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.511977782143, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 2.08479938271589, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 653.922655557737, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 303, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 32, + "_type" : "AMFile", + "src" : 10, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 102, + "time" : 102, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 303, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 303, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 294, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : -0.581867283950777, + "default-width" : 366.287987502455 + } + }, + { + "id" : 33, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 34, + "_type" : "VMFile", + "src" : 13, + "trackNumber" : 0, + "attributes" : { + "ident" : "10-Proverbs1012_23_43_11" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.511977782143, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -0.581867283950777, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 653.922655557737, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 505, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 35, + "_type" : "AMFile", + "src" : 13, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 505, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 505, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 465, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false + } + }, + { + "id" : 36, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 37, + "_type" : "VMFile", + "src" : 16, + "trackNumber" : 0, + "attributes" : { + "ident" : "97-Ephesians52_28_47_21" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.511977782143, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.751466049382557, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 653.922655557737, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 707, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 38, + "_type" : "AMFile", + "src" : 16, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 707, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 707, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 618, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation1" : -0.581867283950777, + "default-width" : 366.287987502455 + } + } + ] + }, + { + "trackIndex" : 3, + "medias" : [ + { + "id" : 39, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 40, + "_type" : "VMFile", + "src" : 12, + "trackNumber" : 0, + "attributes" : { + "ident" : "7-John1513_36_12_2" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.718799231942, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.714826001586236, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 652.25598889107, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 404, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 41, + "_type" : "AMFile", + "src" : 12, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 0.999999999999997, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 404, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 404, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 588, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : -0.581867283950777, + "default-width" : 366.287987502455 + } + }, + { + "id" : 42, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 43, + "_type" : "VMFile", + "src" : 14, + "trackNumber" : 0, + "attributes" : { + "ident" : "54-John1334_20_15_15" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : -421.585172915439, + "duration" : 20 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.718799231942, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.714826001586236, + "duration" : 19 + }, + { + "endTime" : 121, + "time" : 101, + "value" : 653.007162599991, + "duration" : 20 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 606, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + }, + { + "endTime" : 121, + "duration" : 20, + "range" : [ 101, 20] + } + ] + } + }, + "audio" : + { + "id" : 44, + "_type" : "AMFile", + "src" : 14, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 101, + "time" : 101, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 606, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 121, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 606, + "duration" : 121, + "mediaStart" : 0, + "mediaDuration" : 531, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 651.17864444881, + "default-translation0" : -421.585172915439, + "default-translation1" : 0.714826001586236, + "default-width" : 366.287987502455 + } + }, + { + "id" : 45, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 46, + "_type" : "VMFile", + "src" : 17, + "trackNumber" : 0, + "attributes" : { + "ident" : "19-John1415_42_25_7" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : -421.585172915439, + "duration" : 19 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : -649.718799231942, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.714826001586236, + "duration" : 19 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 19, + "time" : 0, + "value" : 0.339155543983755, + "duration" : 19 + } + ] + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : true, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 808, + "duration" : 120, + "mediaStart" : 0, + "mediaDuration" : 120, + "scalar" : 1, + "animationTracks" : { + "visual" : [ + { + "endTime" : 19, + "duration" : 19, + "range" : [ 0, 19] + } + ] + } + }, + "audio" : + { + "id" : 47, + "_type" : "AMFile", + "src" : 17, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "parameters" : { + "volume" : { + "type" : "double", + "keyframes" : [ + { + "endTime" : 0, + "time" : 0, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 94, + "time" : 94, + "value" : 1.0, + "duration" : 0 + }, + { + "endTime" : 121, + "time" : 121, + "value" : 0.0, + "duration" : 0 + }, + { + "endTime" : 122, + "time" : 122, + "value" : 1.0, + "duration" : 0 + } + ] + } + }, + "effects" : [ + + ], + "start" : 808, + "duration" : 120, + "mediaStart" : 0, + "mediaDuration" : 120, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 808, + "duration" : 120, + "mediaStart" : 0, + "mediaDuration" : 624, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false + } + } + ] + }, + { + "trackIndex" : 4, + "medias" : [ + { + "id" : 48, + "_type" : "Group", + "parameters" : { + "translation0" : -401.0, + "translation1" : -1.0, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0, + "volume" : 1.0 + }, + "tracks" : [ + { + "trackIndex" : 0, + "medias" : [ + { + "id" : 49, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 0.0793441782349191, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : 356.534572026228, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.320282269866897, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0740323224285344, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "trackIndex" : 1, + "medias" : [ + { + "id" : 50, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 0.0793441782348623, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -354.064738503769, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.373561475278492, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0778550364011211, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "trackIndex" : 2, + "medias" : [ + { + "id" : 51, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 168.393330226382, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -333.438677104797, + "interp" : "eioe" + }, + "rotation2" : { + "type" : "double", + "defaultValue" : 0.706968159564296, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.0485209553770944, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0649367535672276, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "trackIndex" : 3, + "medias" : [ + { + "id" : 52, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -203.362527732643, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -336.163223874672, + "interp" : "eioe" + }, + "rotation2" : { + "type" : "double", + "defaultValue" : -0.658813936823206, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.043403232341029, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0580875825845971, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "trackIndex" : 4, + "medias" : [ + { + "id" : 53, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 165.468844816376, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : 336.209325144936, + "interp" : "eioe" + }, + "rotation2" : { + "type" : "double", + "defaultValue" : -0.74572762865246, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.043403232341029, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0580875825845971, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "trackIndex" : 5, + "medias" : [ + { + "id" : 54, + "_type" : "IMFile", + "src" : 9, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "yellow_background" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -208.435917088386, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : 336.590277525889, + "interp" : "eioe" + }, + "rotation2" : { + "type" : "double", + "defaultValue" : 0.752235389913766, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.043403232341029, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.0580875825845971, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ], + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + } + ], + "attributes" : { + "ident" : "Yellow cover behing mockup", + "widthAttr" : 480.0, + "heightAttr" : 770.0, + "gain" : 1.0, + "mixToMono" : false, + "assetProperties" : [ + ] + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0.0, + "mediaDuration" : 928.0, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false + }, + "animationTracks" : { + + } + } + ] + }, + { + "trackIndex" : 5, + "medias" : [ + { + "id" : 55, + "_type" : "IMFile", + "src" : 4, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "phone mockp" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -5.83333333333339, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 1.1651295564339, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.965908119658119, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 715.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : -0.5, + "default-translation1" : -0.5, + "default-width" : 345.0 + }, + "animationTracks" : { + + } + } + ] + }, + { + "trackIndex" : 6, + "medias" : [ + { + "id" : 56, + "_type" : "IMFile", + "src" : 5, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "free-sample" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 499.5, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 271, + "time" : 241, + "value" : 499.5, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 499.5, + "duration" : 30 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : 313.333333333333, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 271, + "time" : 241, + "value" : 313.333333333333, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 313.333333333333, + "duration" : 30 + } + ] + }, + "rotation2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 361, + "time" : 331, + "value" : 0.0, + "duration" : 30 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 30, + "time" : 0, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 60, + "time" : 30, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 91, + "time" : 61, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 121, + "time" : 91, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 151, + "time" : 121, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 181, + "time" : 151, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 211, + "time" : 181, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 241, + "time" : 211, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 271, + "time" : 241, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 301, + "time" : 271, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 331, + "time" : 301, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 391, + "time" : 361, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 421, + "time" : 391, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 451, + "time" : 421, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 481, + "time" : 451, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 511, + "time" : 481, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 542, + "time" : 512, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 573, + "time" : 543, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 603, + "time" : 573, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 633, + "time" : 603, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 663, + "time" : 633, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 693, + "time" : 663, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 723, + "time" : 693, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 753, + "time" : 723, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 783, + "time" : 753, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 813, + "time" : 783, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 843, + "time" : 813, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 873, + "time" : 843, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 903, + "time" : 873, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 928, + "time" : 903, + "value" : 1.25, + "duration" : 25 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "eioe", + "keyframes" : [ + { + "endTime" : 30, + "time" : 0, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 60, + "time" : 30, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 91, + "time" : 61, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 121, + "time" : 91, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 151, + "time" : 121, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 181, + "time" : 151, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 211, + "time" : 181, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 241, + "time" : 211, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 271, + "time" : 241, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 301, + "time" : 271, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 331, + "time" : 301, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 391, + "time" : 361, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 421, + "time" : 391, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 451, + "time" : 421, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 481, + "time" : 451, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 511, + "time" : 481, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 542, + "time" : 512, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 573, + "time" : 543, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 603, + "time" : 573, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 633, + "time" : 603, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 663, + "time" : 633, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 693, + "time" : 663, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 723, + "time" : 693, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 753, + "time" : 723, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 783, + "time" : 753, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 813, + "time" : 783, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 843, + "time" : 813, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 873, + "time" : 843, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 903, + "time" : 873, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 928, + "time" : 903, + "value" : 1.25, + "duration" : 25 + } + ] + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 928, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 202.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : -0.5, + "default-translation1" : 0.0, + "default-width" : 347.0 + }, + "animationTracks" : { + "visual" : [ + { + "endTime" : 30, + "duration" : 30, + "range" : [ 0, 30] + }, + { + "endTime" : 60, + "duration" : 30, + "range" : [ 30, 30] + }, + { + "endTime" : 91, + "duration" : 30, + "range" : [ 61, 30] + }, + { + "endTime" : 121, + "duration" : 30, + "range" : [ 91, 30] + }, + { + "endTime" : 151, + "duration" : 30, + "range" : [ 121, 30] + }, + { + "endTime" : 181, + "duration" : 30, + "range" : [ 151, 30] + }, + { + "endTime" : 211, + "duration" : 30, + "range" : [ 181, 30] + }, + { + "endTime" : 241, + "duration" : 30, + "range" : [ 211, 30] + }, + { + "endTime" : 271, + "duration" : 30, + "range" : [ 241, 30] + }, + { + "endTime" : 301, + "duration" : 30, + "range" : [ 271, 30] + }, + { + "endTime" : 331, + "duration" : 30, + "range" : [ 301, 30] + }, + { + "endTime" : 361, + "duration" : 30, + "range" : [ 331, 30] + }, + { + "endTime" : 391, + "duration" : 30, + "range" : [ 361, 30] + }, + { + "endTime" : 421, + "duration" : 30, + "range" : [ 391, 30] + }, + { + "endTime" : 451, + "duration" : 30, + "range" : [ 421, 30] + }, + { + "endTime" : 481, + "duration" : 30, + "range" : [ 451, 30] + }, + { + "endTime" : 511, + "duration" : 30, + "range" : [ 481, 30] + }, + { + "endTime" : 542, + "duration" : 30, + "range" : [ 512, 30] + }, + { + "endTime" : 573, + "duration" : 30, + "range" : [ 543, 30] + }, + { + "endTime" : 603, + "duration" : 30, + "range" : [ 573, 30] + }, + { + "endTime" : 633, + "duration" : 30, + "range" : [ 603, 30] + }, + { + "endTime" : 663, + "duration" : 30, + "range" : [ 633, 30] + }, + { + "endTime" : 693, + "duration" : 30, + "range" : [ 663, 30] + }, + { + "endTime" : 723, + "duration" : 30, + "range" : [ 693, 30] + }, + { + "endTime" : 753, + "duration" : 30, + "range" : [ 723, 30] + }, + { + "endTime" : 783, + "duration" : 30, + "range" : [ 753, 30] + }, + { + "endTime" : 813, + "duration" : 30, + "range" : [ 783, 30] + }, + { + "endTime" : 843, + "duration" : 30, + "range" : [ 813, 30] + }, + { + "endTime" : 873, + "duration" : 30, + "range" : [ 843, 30] + }, + { + "endTime" : 903, + "duration" : 30, + "range" : [ 873, 30] + }, + { + "endTime" : 928, + "duration" : 25, + "range" : [ 903, 25] + } + ] + } + } + ] + }, + { + "trackIndex" : 7, + "medias" : [ + { + "id" : 57, + "_type" : "IMFile", + "src" : 18, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "Capture" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 1.20085887445856, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : 0.722391666666338, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 1.62463027361881, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 1.67692583485125, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + + ], + "start" : 914, + "duration" : 14, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 549.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 942.0 + }, + "animationTracks" : { + + } + } + ], + "transitions" : [ + { + "name" : "Fade", + "duration" : 14, + "rightMedia" : 57, + "attributes" : { + "bypass" : false, + "reverse" : false, + "trivial" : false, + "useAudioPreRoll" : true, + "useVisualPreRoll" : true + } + + } + ] + }, + { + "trackIndex" : 8, + "medias" : [ + ] + } ] + } + } + ] + }, + "trackAttributes" : [ + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + } + ], + "captionAttributes" : { + "enabled" : true, + "fontName" : "Arial", + "fontSize" : 45, + "backgroundColor" : [ 0, 0, 0, 191], + "foregroundColor" : [ 255, 255, 255, 255], + "lang" : "en", + "alignment" : 0, + "defaultFontSize" : true, + "opacity" : 0.5, + "backgroundEnabled" : true, + "backgroundOnlyAroundText" : true + }, + "gain" : 1.0, + "legacyAttenuateAudioMix" : false, + "backgroundColor" : [ 0, 0, 0, 255] + }, + "metadata" : { + "AutoSaveFile" : "C:\\Users\\Samurai\\AppData\\Local\\TechSmith\\Camtasia Studio\\21.0\\Auto-Saves\\promotion_video21907db.autosave.tscproj", + "CanvasZoom" : 50, + "Date" : "2023-04-02 04:35:42 PM", + "Fit" : 0, + "IsAutoSave" : false, + "IsStandalone" : true, + "Language" : "ENU", + "ProfileName" : "", + "ProjectDimensionsChanged" : "1", + "Title" : "promotion_video", + "audioNarrationNotes" : "", + "calloutStyle" : "Basic" + } +} diff --git a/sources/fiverr/promotion_video/promotion switching vids/yellow_background.png b/sources/fiverr/promotion_video/promotion switching vids/yellow_background.png new file mode 100644 index 0000000..e1ce3c4 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion switching vids/yellow_background.png differ diff --git a/sources/fiverr/promotion_video/promotion_video.tscproj/1-1Corinthians1614_10_26_7.mp4 b/sources/fiverr/promotion_video/promotion_video.tscproj/1-1Corinthians1614_10_26_7.mp4 new file mode 100644 index 0000000..c6344ec Binary files /dev/null and b/sources/fiverr/promotion_video/promotion_video.tscproj/1-1Corinthians1614_10_26_7.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion_video.tscproj/1.mp4 b/sources/fiverr/promotion_video/promotion_video.tscproj/1.mp4 new file mode 100644 index 0000000..76a0460 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion_video.tscproj/1.mp4 differ diff --git a/sources/fiverr/promotion_video/promotion_video.tscproj/desktop.ini b/sources/fiverr/promotion_video/promotion_video.tscproj/desktop.ini new file mode 100644 index 0000000..8de78dc --- /dev/null +++ b/sources/fiverr/promotion_video/promotion_video.tscproj/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=C:\ProgramData\TechSmith\Camtasia\Icons\ProjectFolder.ico,0 diff --git a/sources/fiverr/promotion_video/promotion_video.tscproj/fiverr_banner.png b/sources/fiverr/promotion_video/promotion_video.tscproj/fiverr_banner.png new file mode 100644 index 0000000..363cbb1 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion_video.tscproj/fiverr_banner.png differ diff --git a/sources/fiverr/promotion_video/promotion_video.tscproj/fiverr_banner_no_phone.png b/sources/fiverr/promotion_video/promotion_video.tscproj/fiverr_banner_no_phone.png new file mode 100644 index 0000000..bd6a5bf Binary files /dev/null and b/sources/fiverr/promotion_video/promotion_video.tscproj/fiverr_banner_no_phone.png differ diff --git a/sources/fiverr/promotion_video/promotion_video.tscproj/free-sample.png b/sources/fiverr/promotion_video/promotion_video.tscproj/free-sample.png new file mode 100644 index 0000000..fcf8ac9 Binary files /dev/null and b/sources/fiverr/promotion_video/promotion_video.tscproj/free-sample.png differ diff --git a/sources/fiverr/promotion_video/promotion_video.tscproj/phone mockp.png b/sources/fiverr/promotion_video/promotion_video.tscproj/phone mockp.png new file mode 100644 index 0000000..691255f Binary files /dev/null and b/sources/fiverr/promotion_video/promotion_video.tscproj/phone mockp.png differ diff --git a/sources/fiverr/promotion_video/promotion_video.tscproj/promotion_video.tscproj b/sources/fiverr/promotion_video/promotion_video.tscproj/promotion_video.tscproj new file mode 100644 index 0000000..9734185 --- /dev/null +++ b/sources/fiverr/promotion_video/promotion_video.tscproj/promotion_video.tscproj @@ -0,0 +1,1066 @@ +{ + "title" : "", + "description" : "", + "author" : "", + "targetLoudness" : -18.0, + "shouldApplyLoudnessNormalization" : true, + "videoFormatFrameRate" : 30, + "audioFormatSampleRate" : 44100, + "width" : 1280.0, + "height" : 770.0, + "version" : "5.0", + "editRate" : 30, + "authoringClientName" : { + "name" : "Camtasia", + "platform" : "Windows", + "version" : "21.0" + }, + "sourceBin" : [ + { + "id" : 1, + "src" : "fiverr_banner.png", + "rect" : [0, 0, 1280, 769], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 1280, 769], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T133756.732511" + } + }, + { + "id" : 2, + "src" : "1.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 7900], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : 30, + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T133846.039087" + } + }, + { + "id" : 3, + "src" : "fiverr_banner_no_phone.png", + "rect" : [0, 0, 1280, 769], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 1280, 769], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134025.135559" + } + }, + { + "id" : 4, + "src" : "phone mockp.png", + "rect" : [0, 0, 345, 715], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 345, 715], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134122.413603" + } + }, + { + "id" : 5, + "src" : "free-sample.png", + "rect" : [0, 0, 347, 202], + "lastMod" : "20230404T164756", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 1], + "type" : 1, + "editRate" : 10000000, + "trackRect" : [0, 0, 347, 202], + "sampleRate" : 0, + "bitDepth" : 32, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230402T134824.735976" + } + }, + { + "id" : 6, + "src" : "1-1Corinthians1614_10_26_7.mp4", + "rect" : [0, 0, 1080, 1920], + "lastMod" : "20230404T175044", + "loudnessNormalization" : true, + "sourceTracks" : [ + { + "range" : [0, 23709], + "type" : 0, + "editRate" : 1000, + "trackRect" : [0, 0, 1080, 1920], + "sampleRate" : "120001/5000", + "bitDepth" : 24, + "numChannels" : 0, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + }, + { + "range" : [0, 23694], + "type" : 2, + "editRate" : 1000, + "trackRect" : [0, 0, 0, 0], + "sampleRate" : 44100, + "bitDepth" : 16, + "numChannels" : 2, + "integratedLUFS" : 100.0, + "peakLevel" : -1.0, + "metaData" : "" + } + ], + "metadata" : { + "timeAdded" : "20230404T175227.994743" + } + } + ], + "timeline" : { + "id" : 7, + "sceneTrack" : { + "scenes" : [ + { + "csml" : { + "tracks" : [ + { + "trackIndex" : 0, + "medias" : [ + { + "id" : 8, + "_type" : "IMFile", + "src" : 3, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "fiverr_banner_no_phone" + }, + "parameters" : { + "translation1" : -0.5, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0 + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 769.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : 0.0, + "default-translation1" : -0.5, + "default-width" : 1280.0 + }, + "animationTracks" : { + + } + } + ] + }, + { + "trackIndex" : 1, + "medias" : [ + { + "id" : 9, + "_type" : "UnifiedMedia", + "video" : + { + "id" : 10, + "_type" : "VMFile", + "src" : 6, + "trackNumber" : 0, + "attributes" : { + "ident" : "1-1Corinthians1614_10_26_7" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : -421.585172915439, + "interp" : "eioe" + }, + "translation1" : { + "type" : "double", + "defaultValue" : -0.581867283950777, + "interp" : "eioe" + }, + "scale0" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "scale1" : { + "type" : "double", + "defaultValue" : 0.339155543983755, + "interp" : "eioe" + }, + "sourceCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "sourceCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop0" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop1" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop2" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + }, + "geometryCrop3" : { + "type" : "double", + "defaultValue" : 0.0, + "interp" : "eioe" + } + }, + "effects" : [ + { + "effectName" : "RoundCorners", + "bypassed" : false, + "category" : "categoryVisualEffects", + "parameters" : { + "bottom-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "bottom-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "radius" : { + "type" : "double", + "defaultValue" : 90.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-left" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + }, + "top-right" : { + "type" : "double", + "defaultValue" : 1.0, + "interp" : "linr", + "uiHints" : { + "userInterfaceType" : 0, + "unitType" : 0 + } + } + }, + "metadata" : { + "default-RoundCorners_radius" : 20.0, + "effectIndex" : "0", + "presetName" : "Corner Rounding" + } + } + ], + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 711, + "scalar" : 1, + "animationTracks" : { + + } + }, + "audio" : + { + "id" : 11, + "_type" : "AMFile", + "src" : 6, + "trackNumber" : 1, + "attributes" : { + "ident" : "", + "gain" : 1.0, + "mixToMono" : false, + "loudnessNormalization" : true, + "sourceFileOffset" : 0 + }, + "channelNumber" : "0,1", + "effects" : [ + + ], + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 711, + "scalar" : 1, + "animationTracks" : { + + } + } +, + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 711, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false + } + } + ] + }, + { + "trackIndex" : 2, + "medias" : [ + { + "id" : 12, + "_type" : "IMFile", + "src" : 4, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "phone mockp" + }, + "parameters" : { + "translation0" : -421.585172915439, + "translation1" : -5.83333333333339, + "scale0" : 1.1651295564339, + "scale1" : 0.965908119658119, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0 + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 715.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : -0.5, + "default-translation1" : -0.5, + "default-width" : 345.0 + }, + "animationTracks" : { + + } + } + ] + }, + { + "trackIndex" : 3, + "medias" : [ + { + "id" : 13, + "_type" : "IMFile", + "src" : 5, + "trackNumber" : 0, + "trimStartSum" : 0, + "attributes" : { + "ident" : "free-sample" + }, + "parameters" : { + "translation0" : { + "type" : "double", + "defaultValue" : 499.5, + "keyframes" : [ + { + "endTime" : 361, + "time" : 331, + "value" : 499.5, + "duration" : 30 + } + ] + }, + "translation1" : { + "type" : "double", + "defaultValue" : 313.333333333333, + "keyframes" : [ + { + "endTime" : 361, + "time" : 331, + "value" : 313.333333333333, + "duration" : 30 + } + ] + }, + "rotation2" : { + "type" : "double", + "defaultValue" : 0.0, + "keyframes" : [ + { + "endTime" : 361, + "time" : 331, + "value" : 0.0, + "duration" : 30 + } + ] + }, + "scale0" : { + "type" : "double", + "defaultValue" : 1.0, + "keyframes" : [ + { + "endTime" : 30, + "time" : 0, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 60, + "time" : 30, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 91, + "time" : 61, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 121, + "time" : 91, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 151, + "time" : 121, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 181, + "time" : 151, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 211, + "time" : 181, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 241, + "time" : 211, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 271, + "time" : 241, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 301, + "time" : 271, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 331, + "time" : 301, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 391, + "time" : 361, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 421, + "time" : 391, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 451, + "time" : 421, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 481, + "time" : 451, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 511, + "time" : 481, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 542, + "time" : 512, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 573, + "time" : 543, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 603, + "time" : 573, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 633, + "time" : 603, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 663, + "time" : 633, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 693, + "time" : 663, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 711, + "time" : 697, + "value" : 1.0, + "duration" : 14 + } + ] + }, + "scale1" : { + "type" : "double", + "defaultValue" : 1.0, + "keyframes" : [ + { + "endTime" : 30, + "time" : 0, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 60, + "time" : 30, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 91, + "time" : 61, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 121, + "time" : 91, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 151, + "time" : 121, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 181, + "time" : 151, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 211, + "time" : 181, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 241, + "time" : 211, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 271, + "time" : 241, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 301, + "time" : 271, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 331, + "time" : 301, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 361, + "time" : 331, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 391, + "time" : 361, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 421, + "time" : 391, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 451, + "time" : 421, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 481, + "time" : 451, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 511, + "time" : 481, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 542, + "time" : 512, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 573, + "time" : 543, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 603, + "time" : 573, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 633, + "time" : 603, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 663, + "time" : 633, + "value" : 1.0, + "duration" : 30 + }, + { + "endTime" : 693, + "time" : 663, + "value" : 1.25, + "duration" : 30 + }, + { + "endTime" : 711, + "time" : 697, + "value" : 1.0, + "duration" : 14 + } + ] + }, + "sourceCrop0" : 0.0, + "sourceCrop1" : 0.0, + "sourceCrop2" : 0.0, + "sourceCrop3" : 0.0, + "geometryCrop0" : 0.0, + "geometryCrop1" : 0.0, + "geometryCrop2" : 0.0, + "geometryCrop3" : 0.0 + }, + "effects" : [ + + ], + "start" : 0, + "duration" : 711, + "mediaStart" : 0, + "mediaDuration" : 1, + "scalar" : 1, + "metadata" : { + "clipSpeedAttribute" : false, + "default-height" : 202.0, + "default-rotation2" : 0.0, + "default-scale0" : 1.0, + "default-scale1" : 1.0, + "default-translation0" : -0.5, + "default-translation1" : 0.0, + "default-width" : 347.0 + }, + "animationTracks" : { + "visual" : [ + { + "endTime" : 30, + "duration" : 30, + "range" : [ 0, 30] + }, + { + "endTime" : 60, + "duration" : 30, + "range" : [ 30, 30] + }, + { + "endTime" : 91, + "duration" : 30, + "range" : [ 61, 30] + }, + { + "endTime" : 121, + "duration" : 30, + "range" : [ 91, 30] + }, + { + "endTime" : 151, + "duration" : 30, + "range" : [ 121, 30] + }, + { + "endTime" : 181, + "duration" : 30, + "range" : [ 151, 30] + }, + { + "endTime" : 211, + "duration" : 30, + "range" : [ 181, 30] + }, + { + "endTime" : 241, + "duration" : 30, + "range" : [ 211, 30] + }, + { + "endTime" : 271, + "duration" : 30, + "range" : [ 241, 30] + }, + { + "endTime" : 301, + "duration" : 30, + "range" : [ 271, 30] + }, + { + "endTime" : 331, + "duration" : 30, + "range" : [ 301, 30] + }, + { + "endTime" : 361, + "duration" : 30, + "range" : [ 331, 30] + }, + { + "endTime" : 391, + "duration" : 30, + "range" : [ 361, 30] + }, + { + "endTime" : 421, + "duration" : 30, + "range" : [ 391, 30] + }, + { + "endTime" : 451, + "duration" : 30, + "range" : [ 421, 30] + }, + { + "endTime" : 481, + "duration" : 30, + "range" : [ 451, 30] + }, + { + "endTime" : 511, + "duration" : 30, + "range" : [ 481, 30] + }, + { + "endTime" : 542, + "duration" : 30, + "range" : [ 512, 30] + }, + { + "endTime" : 573, + "duration" : 30, + "range" : [ 543, 30] + }, + { + "endTime" : 603, + "duration" : 30, + "range" : [ 573, 30] + }, + { + "endTime" : 633, + "duration" : 30, + "range" : [ 603, 30] + }, + { + "endTime" : 663, + "duration" : 30, + "range" : [ 633, 30] + }, + { + "endTime" : 693, + "duration" : 30, + "range" : [ 663, 30] + }, + { + "endTime" : 711, + "duration" : 14, + "range" : [ 697, 14] + } + ] + } + } + ] + }, + { + "trackIndex" : 4, + "medias" : [ + ] + } ] + } + } + ] + }, + "trackAttributes" : [ + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + }, + { + "ident" : "", + "audioMuted" : false, + "videoHidden" : false, + "magnetic" : false, + "matte" : 0, + "solo" : false, + "metadata" : { + "IsLocked" : "False", + "WinTrackHeight" : "56" + } + } + ], + "captionAttributes" : { + "enabled" : true, + "fontName" : "Arial", + "fontSize" : 45, + "backgroundColor" : [ 0, 0, 0, 191], + "foregroundColor" : [ 255, 255, 255, 255], + "lang" : "en", + "alignment" : 0, + "defaultFontSize" : true, + "opacity" : 0.5, + "backgroundEnabled" : true, + "backgroundOnlyAroundText" : true + }, + "gain" : 1.0, + "legacyAttenuateAudioMix" : false, + "backgroundColor" : [ 0, 0, 0, 255] + }, + "metadata" : { + "AutoSaveFile" : "C:\\Users\\Samurai\\AppData\\Local\\TechSmith\\Camtasia Studio\\21.0\\Auto-Saves\\promotion_video1913867.autosave.tscproj", + "CanvasZoom" : 60, + "Date" : "2023-04-02 04:35:42 PM", + "Fit" : 0, + "IsAutoSave" : false, + "IsStandalone" : true, + "Language" : "ENU", + "ProfileName" : "", + "ProjectDimensionsChanged" : "1", + "Title" : "promotion_video", + "audioNarrationNotes" : "", + "calloutStyle" : "Basic" + } +} diff --git a/sources/fiverr/promotion_video/yellow_background.png b/sources/fiverr/promotion_video/yellow_background.png new file mode 100644 index 0000000..e1ce3c4 Binary files /dev/null and b/sources/fiverr/promotion_video/yellow_background.png differ diff --git a/sources/images/autumn-111315_1920.jpg b/sources/images/autumn-111315_1920.jpg deleted file mode 100644 index af7fac1..0000000 Binary files a/sources/images/autumn-111315_1920.jpg and /dev/null differ diff --git a/sources/images/cropped/autumn-111315_1920.jpg b/sources/images/cropped/autumn-111315_1920.jpg deleted file mode 100644 index 33af0a3..0000000 Binary files a/sources/images/cropped/autumn-111315_1920.jpg and /dev/null differ diff --git a/sources/images/cropped/darken/autumn-111315_1920.jpg b/sources/images/cropped/darken/autumn-111315_1920.jpg deleted file mode 100644 index 6ab027e..0000000 Binary files a/sources/images/cropped/darken/autumn-111315_1920.jpg and /dev/null differ diff --git a/sources/images/cropped/darken/pexels-aleksandar-pasaric-2707645.jpg b/sources/images/cropped/darken/pexels-aleksandar-pasaric-2707645.jpg new file mode 100644 index 0000000..90ef640 Binary files /dev/null and b/sources/images/cropped/darken/pexels-aleksandar-pasaric-2707645.jpg differ diff --git a/sources/images/cropped/darken/pexels-aron-visuals-1643113.jpg b/sources/images/cropped/darken/pexels-aron-visuals-1643113.jpg new file mode 100644 index 0000000..6bb47bb Binary files /dev/null and b/sources/images/cropped/darken/pexels-aron-visuals-1643113.jpg differ diff --git a/sources/images/cropped/darken/pexels-aron-visuals-1743165.jpg b/sources/images/cropped/darken/pexels-aron-visuals-1743165.jpg new file mode 100644 index 0000000..258a39b Binary files /dev/null and b/sources/images/cropped/darken/pexels-aron-visuals-1743165.jpg differ diff --git a/sources/images/cropped/darken/pexels-artem-saranin-1496373.jpg b/sources/images/cropped/darken/pexels-artem-saranin-1496373.jpg new file mode 100644 index 0000000..d2d69ce Binary files /dev/null and b/sources/images/cropped/darken/pexels-artem-saranin-1496373.jpg differ diff --git a/sources/images/cropped/darken/pexels-arın-turkay-2591408.jpg b/sources/images/cropped/darken/pexels-arın-turkay-2591408.jpg new file mode 100644 index 0000000..6426c10 Binary files /dev/null and b/sources/images/cropped/darken/pexels-arın-turkay-2591408.jpg differ diff --git a/sources/images/cropped/darken/pexels-disha-sheta-3584430.jpg b/sources/images/cropped/darken/pexels-disha-sheta-3584430.jpg new file mode 100644 index 0000000..7461ecb Binary files /dev/null and b/sources/images/cropped/darken/pexels-disha-sheta-3584430.jpg differ diff --git a/sources/images/cropped/darken/pexels-eberhard-grossgasteiger-1287145.jpg b/sources/images/cropped/darken/pexels-eberhard-grossgasteiger-1287145.jpg new file mode 100644 index 0000000..1b85a34 Binary files /dev/null and b/sources/images/cropped/darken/pexels-eberhard-grossgasteiger-1287145.jpg differ diff --git a/sources/images/cropped/darken/pexels-eberhard-grossgasteiger-2310641.jpg b/sources/images/cropped/darken/pexels-eberhard-grossgasteiger-2310641.jpg new file mode 100644 index 0000000..3c4674e Binary files /dev/null and b/sources/images/cropped/darken/pexels-eberhard-grossgasteiger-2310641.jpg differ diff --git a/sources/images/cropped/darken/pexels-eberhard-grossgasteiger-2437295.jpg b/sources/images/cropped/darken/pexels-eberhard-grossgasteiger-2437295.jpg new file mode 100644 index 0000000..ddf4c59 Binary files /dev/null and b/sources/images/cropped/darken/pexels-eberhard-grossgasteiger-2437295.jpg differ diff --git a/sources/images/cropped/darken/pexels-edou-hoekstra-3756718.jpg b/sources/images/cropped/darken/pexels-edou-hoekstra-3756718.jpg new file mode 100644 index 0000000..61023aa Binary files /dev/null and b/sources/images/cropped/darken/pexels-edou-hoekstra-3756718.jpg differ diff --git a/sources/images/cropped/darken/pexels-felix-mittermeier-1459534.jpg b/sources/images/cropped/darken/pexels-felix-mittermeier-1459534.jpg new file mode 100644 index 0000000..c11685a Binary files /dev/null and b/sources/images/cropped/darken/pexels-felix-mittermeier-1459534.jpg differ diff --git a/sources/images/cropped/darken/pexels-ian-beckley-2440021.jpg b/sources/images/cropped/darken/pexels-ian-beckley-2440021.jpg new file mode 100644 index 0000000..f3a36b6 Binary files /dev/null and b/sources/images/cropped/darken/pexels-ian-beckley-2440021.jpg differ diff --git a/sources/images/cropped/darken/pexels-jacob-colvin-1761279.jpg b/sources/images/cropped/darken/pexels-jacob-colvin-1761279.jpg new file mode 100644 index 0000000..96fb558 Binary files /dev/null and b/sources/images/cropped/darken/pexels-jacob-colvin-1761279.jpg differ diff --git a/sources/images/cropped/darken/pexels-jaime-reimer-2662116.jpg b/sources/images/cropped/darken/pexels-jaime-reimer-2662116.jpg new file mode 100644 index 0000000..69ce084 Binary files /dev/null and b/sources/images/cropped/darken/pexels-jaime-reimer-2662116.jpg differ diff --git a/sources/images/cropped/darken/pexels-jeremy-bishop-2524874.jpg b/sources/images/cropped/darken/pexels-jeremy-bishop-2524874.jpg new file mode 100644 index 0000000..5589564 Binary files /dev/null and b/sources/images/cropped/darken/pexels-jeremy-bishop-2524874.jpg differ diff --git a/sources/images/cropped/darken/pexels-jeremy-bishop-3464632.jpg b/sources/images/cropped/darken/pexels-jeremy-bishop-3464632.jpg new file mode 100644 index 0000000..3b0c2b6 Binary files /dev/null and b/sources/images/cropped/darken/pexels-jeremy-bishop-3464632.jpg differ diff --git a/sources/images/cropped/darken/pexels-kasuma-1785493.jpg b/sources/images/cropped/darken/pexels-kasuma-1785493.jpg new file mode 100644 index 0000000..9604e9a Binary files /dev/null and b/sources/images/cropped/darken/pexels-kasuma-1785493.jpg differ diff --git a/sources/images/cropped/darken/pexels-lena-khrupina-2683365.jpg b/sources/images/cropped/darken/pexels-lena-khrupina-2683365.jpg new file mode 100644 index 0000000..2ec0362 Binary files /dev/null and b/sources/images/cropped/darken/pexels-lena-khrupina-2683365.jpg differ diff --git a/sources/images/cropped/darken/pexels-luis-dalvan-1770809.jpg b/sources/images/cropped/darken/pexels-luis-dalvan-1770809.jpg new file mode 100644 index 0000000..f573061 Binary files /dev/null and b/sources/images/cropped/darken/pexels-luis-dalvan-1770809.jpg differ diff --git a/sources/images/cropped/darken/pexels-marlon-martinez-1450082.jpg b/sources/images/cropped/darken/pexels-marlon-martinez-1450082.jpg new file mode 100644 index 0000000..d9abcef Binary files /dev/null and b/sources/images/cropped/darken/pexels-marlon-martinez-1450082.jpg differ diff --git a/sources/images/cropped/darken/pexels-marlon-martinez-1517162.jpg b/sources/images/cropped/darken/pexels-marlon-martinez-1517162.jpg new file mode 100644 index 0000000..21dddb6 Binary files /dev/null and b/sources/images/cropped/darken/pexels-marlon-martinez-1517162.jpg differ diff --git a/sources/images/cropped/darken/pexels-matheus-bertelli-1144687.jpg b/sources/images/cropped/darken/pexels-matheus-bertelli-1144687.jpg new file mode 100644 index 0000000..e7d112f Binary files /dev/null and b/sources/images/cropped/darken/pexels-matheus-bertelli-1144687.jpg differ diff --git a/sources/images/cropped/darken/pexels-matteo-badini-4064432.jpg b/sources/images/cropped/darken/pexels-matteo-badini-4064432.jpg new file mode 100644 index 0000000..231811f Binary files /dev/null and b/sources/images/cropped/darken/pexels-matteo-badini-4064432.jpg differ diff --git a/sources/images/cropped/darken/pexels-matthew-montrone-1179229.jpg b/sources/images/cropped/darken/pexels-matthew-montrone-1179229.jpg new file mode 100644 index 0000000..6254d38 Binary files /dev/null and b/sources/images/cropped/darken/pexels-matthew-montrone-1179229.jpg differ diff --git a/sources/images/cropped/darken/pexels-michael-block-3225517.jpg b/sources/images/cropped/darken/pexels-michael-block-3225517.jpg new file mode 100644 index 0000000..24f335c Binary files /dev/null and b/sources/images/cropped/darken/pexels-michael-block-3225517.jpg differ diff --git a/sources/images/cropped/darken/pexels-oleksandr-pidvalnyi-345522.jpg b/sources/images/cropped/darken/pexels-oleksandr-pidvalnyi-345522.jpg new file mode 100644 index 0000000..d7cea22 Binary files /dev/null and b/sources/images/cropped/darken/pexels-oleksandr-pidvalnyi-345522.jpg differ diff --git a/sources/images/cropped/darken/pexels-oliver-sjöström-1078983.jpg b/sources/images/cropped/darken/pexels-oliver-sjöström-1078983.jpg new file mode 100644 index 0000000..fc1fcf6 Binary files /dev/null and b/sources/images/cropped/darken/pexels-oliver-sjöström-1078983.jpg differ diff --git a/sources/images/cropped/darken/pexels-paul-voie-2627945.jpg b/sources/images/cropped/darken/pexels-paul-voie-2627945.jpg new file mode 100644 index 0000000..ecf7cd1 Binary files /dev/null and b/sources/images/cropped/darken/pexels-paul-voie-2627945.jpg differ diff --git a/sources/images/cropped/darken/pexels-peter-de-vink-849403.jpg b/sources/images/cropped/darken/pexels-peter-de-vink-849403.jpg new file mode 100644 index 0000000..769bc77 Binary files /dev/null and b/sources/images/cropped/darken/pexels-peter-de-vink-849403.jpg differ diff --git a/sources/images/cropped/darken/pexels-pixabay-147411.jpg b/sources/images/cropped/darken/pexels-pixabay-147411.jpg new file mode 100644 index 0000000..19062dc Binary files /dev/null and b/sources/images/cropped/darken/pexels-pixabay-147411.jpg differ diff --git a/sources/images/cropped/darken/pexels-rifqi-ramadhan-884547.jpg b/sources/images/cropped/darken/pexels-rifqi-ramadhan-884547.jpg new file mode 100644 index 0000000..085171b Binary files /dev/null and b/sources/images/cropped/darken/pexels-rifqi-ramadhan-884547.jpg differ diff --git a/sources/images/cropped/darken/pexels-ruvim-3560044.jpg b/sources/images/cropped/darken/pexels-ruvim-3560044.jpg new file mode 100644 index 0000000..c084ff2 Binary files /dev/null and b/sources/images/cropped/darken/pexels-ruvim-3560044.jpg differ diff --git a/sources/images/cropped/darken/pexels-sam-kolder-2387873.jpg b/sources/images/cropped/darken/pexels-sam-kolder-2387873.jpg new file mode 100644 index 0000000..81971a3 Binary files /dev/null and b/sources/images/cropped/darken/pexels-sam-kolder-2387873.jpg differ diff --git a/sources/images/cropped/darken/pexels-stijn-dijkstra-2583833.jpg b/sources/images/cropped/darken/pexels-stijn-dijkstra-2583833.jpg new file mode 100644 index 0000000..cebba67 Binary files /dev/null and b/sources/images/cropped/darken/pexels-stijn-dijkstra-2583833.jpg differ diff --git a/sources/images/cropped/darken/pexels-szabó-viktor-3227984.jpg b/sources/images/cropped/darken/pexels-szabó-viktor-3227984.jpg new file mode 100644 index 0000000..1bd1138 Binary files /dev/null and b/sources/images/cropped/darken/pexels-szabó-viktor-3227984.jpg differ diff --git a/sources/images/cropped/darken/pexels-tembela-bohle-963713.jpg b/sources/images/cropped/darken/pexels-tembela-bohle-963713.jpg new file mode 100644 index 0000000..bb210e3 Binary files /dev/null and b/sources/images/cropped/darken/pexels-tembela-bohle-963713.jpg differ diff --git a/sources/images/cropped/darken/pexels-tiago-cardoso-2402995.jpg b/sources/images/cropped/darken/pexels-tiago-cardoso-2402995.jpg new file mode 100644 index 0000000..34c9ed8 Binary files /dev/null and b/sources/images/cropped/darken/pexels-tiago-cardoso-2402995.jpg differ diff --git a/sources/images/cropped/darken/pexels-tiana-614484.jpg b/sources/images/cropped/darken/pexels-tiana-614484.jpg new file mode 100644 index 0000000..2b1f642 Binary files /dev/null and b/sources/images/cropped/darken/pexels-tiana-614484.jpg differ diff --git a/sources/images/cropped/darken/pexels-tobi-675764.jpg b/sources/images/cropped/darken/pexels-tobi-675764.jpg new file mode 100644 index 0000000..817fbdd Binary files /dev/null and b/sources/images/cropped/darken/pexels-tobi-675764.jpg differ diff --git a/sources/images/cropped/darken/pexels-tobias-bjørkli-1819631.jpg b/sources/images/cropped/darken/pexels-tobias-bjørkli-1819631.jpg new file mode 100644 index 0000000..0a06881 Binary files /dev/null and b/sources/images/cropped/darken/pexels-tobias-bjørkli-1819631.jpg differ diff --git a/sources/images/cropped/darken/pexels-trace-hudson-2724664.jpg b/sources/images/cropped/darken/pexels-trace-hudson-2724664.jpg new file mode 100644 index 0000000..9c737be Binary files /dev/null and b/sources/images/cropped/darken/pexels-trace-hudson-2724664.jpg differ diff --git a/sources/images/cropped/darken/pexels-tyler-lastovich-808465.jpg b/sources/images/cropped/darken/pexels-tyler-lastovich-808465.jpg new file mode 100644 index 0000000..08a61da Binary files /dev/null and b/sources/images/cropped/darken/pexels-tyler-lastovich-808465.jpg differ diff --git a/sources/images/cropped/darken/pexels-valdemaras-d-1647972.jpg b/sources/images/cropped/darken/pexels-valdemaras-d-1647972.jpg new file mode 100644 index 0000000..bf602bc Binary files /dev/null and b/sources/images/cropped/darken/pexels-valdemaras-d-1647972.jpg differ diff --git a/sources/images/cropped/darken/pexels-valdemaras-d-1752372.jpg b/sources/images/cropped/darken/pexels-valdemaras-d-1752372.jpg new file mode 100644 index 0000000..8ed15bc Binary files /dev/null and b/sources/images/cropped/darken/pexels-valdemaras-d-1752372.jpg differ diff --git a/sources/images/cropped/darken/pexels-yaroslav-shuraev-1834399.jpg b/sources/images/cropped/darken/pexels-yaroslav-shuraev-1834399.jpg new file mode 100644 index 0000000..0a8457e Binary files /dev/null and b/sources/images/cropped/darken/pexels-yaroslav-shuraev-1834399.jpg differ diff --git a/sources/images/cropped/darken/pexels-yaroslav-shuraev-1834407.jpg b/sources/images/cropped/darken/pexels-yaroslav-shuraev-1834407.jpg new file mode 100644 index 0000000..8a79766 Binary files /dev/null and b/sources/images/cropped/darken/pexels-yaroslav-shuraev-1834407.jpg differ diff --git a/sources/images/cropped/pexels-aleksandar-pasaric-2707645.jpg b/sources/images/cropped/pexels-aleksandar-pasaric-2707645.jpg new file mode 100644 index 0000000..94c35dd Binary files /dev/null and b/sources/images/cropped/pexels-aleksandar-pasaric-2707645.jpg differ diff --git a/sources/images/cropped/pexels-alex-conchillos-3941855.jpg b/sources/images/cropped/pexels-alex-conchillos-3941855.jpg new file mode 100644 index 0000000..341d943 Binary files /dev/null and b/sources/images/cropped/pexels-alex-conchillos-3941855.jpg differ diff --git a/sources/images/cropped/pexels-aron-visuals-1643113.jpg b/sources/images/cropped/pexels-aron-visuals-1643113.jpg new file mode 100644 index 0000000..44e982f Binary files /dev/null and b/sources/images/cropped/pexels-aron-visuals-1643113.jpg differ diff --git a/sources/images/cropped/pexels-aron-visuals-1743165.jpg b/sources/images/cropped/pexels-aron-visuals-1743165.jpg new file mode 100644 index 0000000..1bc2b0d Binary files /dev/null and b/sources/images/cropped/pexels-aron-visuals-1743165.jpg differ diff --git a/sources/images/cropped/pexels-artem-saranin-1496373.jpg b/sources/images/cropped/pexels-artem-saranin-1496373.jpg new file mode 100644 index 0000000..856a4d1 Binary files /dev/null and b/sources/images/cropped/pexels-artem-saranin-1496373.jpg differ diff --git a/sources/images/cropped/pexels-arın-turkay-2591408.jpg b/sources/images/cropped/pexels-arın-turkay-2591408.jpg new file mode 100644 index 0000000..dd8d636 Binary files /dev/null and b/sources/images/cropped/pexels-arın-turkay-2591408.jpg differ diff --git a/sources/images/cropped/pexels-aydın-kiraz-3070671.jpg b/sources/images/cropped/pexels-aydın-kiraz-3070671.jpg new file mode 100644 index 0000000..756c4f9 Binary files /dev/null and b/sources/images/cropped/pexels-aydın-kiraz-3070671.jpg differ diff --git a/sources/images/cropped/pexels-disha-sheta-3584430.jpg b/sources/images/cropped/pexels-disha-sheta-3584430.jpg new file mode 100644 index 0000000..71e8be2 Binary files /dev/null and b/sources/images/cropped/pexels-disha-sheta-3584430.jpg differ diff --git a/sources/images/cropped/pexels-eberhard-grossgasteiger-1287145.jpg b/sources/images/cropped/pexels-eberhard-grossgasteiger-1287145.jpg new file mode 100644 index 0000000..ed6deb1 Binary files /dev/null and b/sources/images/cropped/pexels-eberhard-grossgasteiger-1287145.jpg differ diff --git a/sources/images/cropped/pexels-eberhard-grossgasteiger-2310641.jpg b/sources/images/cropped/pexels-eberhard-grossgasteiger-2310641.jpg new file mode 100644 index 0000000..6f26bbe Binary files /dev/null and b/sources/images/cropped/pexels-eberhard-grossgasteiger-2310641.jpg differ diff --git a/sources/images/cropped/pexels-eberhard-grossgasteiger-2437295.jpg b/sources/images/cropped/pexels-eberhard-grossgasteiger-2437295.jpg new file mode 100644 index 0000000..eba82dc Binary files /dev/null and b/sources/images/cropped/pexels-eberhard-grossgasteiger-2437295.jpg differ diff --git a/sources/images/cropped/pexels-eberhard-grossgasteiger-572897.jpg b/sources/images/cropped/pexels-eberhard-grossgasteiger-572897.jpg new file mode 100644 index 0000000..4592f9b Binary files /dev/null and b/sources/images/cropped/pexels-eberhard-grossgasteiger-572897.jpg differ diff --git a/sources/images/cropped/pexels-edou-hoekstra-3756718.jpg b/sources/images/cropped/pexels-edou-hoekstra-3756718.jpg new file mode 100644 index 0000000..6d2c9c2 Binary files /dev/null and b/sources/images/cropped/pexels-edou-hoekstra-3756718.jpg differ diff --git a/sources/images/cropped/pexels-felix-mittermeier-1459534.jpg b/sources/images/cropped/pexels-felix-mittermeier-1459534.jpg new file mode 100644 index 0000000..0e0d07f Binary files /dev/null and b/sources/images/cropped/pexels-felix-mittermeier-1459534.jpg differ diff --git a/sources/images/cropped/pexels-ian-beckley-2440021.jpg b/sources/images/cropped/pexels-ian-beckley-2440021.jpg new file mode 100644 index 0000000..e155176 Binary files /dev/null and b/sources/images/cropped/pexels-ian-beckley-2440021.jpg differ diff --git a/sources/images/cropped/pexels-jacob-colvin-1761279.jpg b/sources/images/cropped/pexels-jacob-colvin-1761279.jpg new file mode 100644 index 0000000..3429f55 Binary files /dev/null and b/sources/images/cropped/pexels-jacob-colvin-1761279.jpg differ diff --git a/sources/images/cropped/pexels-jaime-reimer-2662116.jpg b/sources/images/cropped/pexels-jaime-reimer-2662116.jpg new file mode 100644 index 0000000..58082d5 Binary files /dev/null and b/sources/images/cropped/pexels-jaime-reimer-2662116.jpg differ diff --git a/sources/images/cropped/pexels-jeremy-bishop-2524874.jpg b/sources/images/cropped/pexels-jeremy-bishop-2524874.jpg new file mode 100644 index 0000000..4e79ed1 Binary files /dev/null and b/sources/images/cropped/pexels-jeremy-bishop-2524874.jpg differ diff --git a/sources/images/cropped/pexels-jeremy-bishop-3464632.jpg b/sources/images/cropped/pexels-jeremy-bishop-3464632.jpg new file mode 100644 index 0000000..65c5f1f Binary files /dev/null and b/sources/images/cropped/pexels-jeremy-bishop-3464632.jpg differ diff --git a/sources/images/cropped/pexels-kasuma-1785493.jpg b/sources/images/cropped/pexels-kasuma-1785493.jpg new file mode 100644 index 0000000..74e3504 Binary files /dev/null and b/sources/images/cropped/pexels-kasuma-1785493.jpg differ diff --git a/sources/images/cropped/pexels-lena-khrupina-2683365.jpg b/sources/images/cropped/pexels-lena-khrupina-2683365.jpg new file mode 100644 index 0000000..eeab581 Binary files /dev/null and b/sources/images/cropped/pexels-lena-khrupina-2683365.jpg differ diff --git a/sources/images/cropped/pexels-luis-dalvan-1770809.jpg b/sources/images/cropped/pexels-luis-dalvan-1770809.jpg new file mode 100644 index 0000000..7c501c3 Binary files /dev/null and b/sources/images/cropped/pexels-luis-dalvan-1770809.jpg differ diff --git a/sources/images/cropped/pexels-marlon-martinez-1450082.jpg b/sources/images/cropped/pexels-marlon-martinez-1450082.jpg new file mode 100644 index 0000000..3004c97 Binary files /dev/null and b/sources/images/cropped/pexels-marlon-martinez-1450082.jpg differ diff --git a/sources/images/cropped/pexels-marlon-martinez-1517162.jpg b/sources/images/cropped/pexels-marlon-martinez-1517162.jpg new file mode 100644 index 0000000..ff1bac2 Binary files /dev/null and b/sources/images/cropped/pexels-marlon-martinez-1517162.jpg differ diff --git a/sources/images/cropped/pexels-matheus-bertelli-1144687.jpg b/sources/images/cropped/pexels-matheus-bertelli-1144687.jpg new file mode 100644 index 0000000..069a13f Binary files /dev/null and b/sources/images/cropped/pexels-matheus-bertelli-1144687.jpg differ diff --git a/sources/images/cropped/pexels-matteo-badini-4064432.jpg b/sources/images/cropped/pexels-matteo-badini-4064432.jpg new file mode 100644 index 0000000..4dad9ee Binary files /dev/null and b/sources/images/cropped/pexels-matteo-badini-4064432.jpg differ diff --git a/sources/images/cropped/pexels-matthew-montrone-1179229.jpg b/sources/images/cropped/pexels-matthew-montrone-1179229.jpg new file mode 100644 index 0000000..8506e27 Binary files /dev/null and b/sources/images/cropped/pexels-matthew-montrone-1179229.jpg differ diff --git a/sources/images/cropped/pexels-michael-block-3225517.jpg b/sources/images/cropped/pexels-michael-block-3225517.jpg new file mode 100644 index 0000000..e089c4f Binary files /dev/null and b/sources/images/cropped/pexels-michael-block-3225517.jpg differ diff --git a/sources/images/cropped/pexels-nathan-cowley-1151282.jpg b/sources/images/cropped/pexels-nathan-cowley-1151282.jpg new file mode 100644 index 0000000..02a4688 Binary files /dev/null and b/sources/images/cropped/pexels-nathan-cowley-1151282.jpg differ diff --git a/sources/images/cropped/pexels-oleksandr-pidvalnyi-345522.jpg b/sources/images/cropped/pexels-oleksandr-pidvalnyi-345522.jpg new file mode 100644 index 0000000..ddc1264 Binary files /dev/null and b/sources/images/cropped/pexels-oleksandr-pidvalnyi-345522.jpg differ diff --git a/sources/images/cropped/pexels-oliver-sjöström-1078983.jpg b/sources/images/cropped/pexels-oliver-sjöström-1078983.jpg new file mode 100644 index 0000000..a5da097 Binary files /dev/null and b/sources/images/cropped/pexels-oliver-sjöström-1078983.jpg differ diff --git a/sources/images/cropped/pexels-paul-voie-2627945.jpg b/sources/images/cropped/pexels-paul-voie-2627945.jpg new file mode 100644 index 0000000..144b930 Binary files /dev/null and b/sources/images/cropped/pexels-paul-voie-2627945.jpg differ diff --git a/sources/images/cropped/pexels-peter-de-vink-849403.jpg b/sources/images/cropped/pexels-peter-de-vink-849403.jpg new file mode 100644 index 0000000..03aa9b6 Binary files /dev/null and b/sources/images/cropped/pexels-peter-de-vink-849403.jpg differ diff --git a/sources/images/cropped/pexels-pixabay-147411.jpg b/sources/images/cropped/pexels-pixabay-147411.jpg new file mode 100644 index 0000000..62df203 Binary files /dev/null and b/sources/images/cropped/pexels-pixabay-147411.jpg differ diff --git a/sources/images/cropped/pexels-rifqi-ramadhan-884547.jpg b/sources/images/cropped/pexels-rifqi-ramadhan-884547.jpg new file mode 100644 index 0000000..77e5f68 Binary files /dev/null and b/sources/images/cropped/pexels-rifqi-ramadhan-884547.jpg differ diff --git a/sources/images/cropped/pexels-ruvim-3560044.jpg b/sources/images/cropped/pexels-ruvim-3560044.jpg new file mode 100644 index 0000000..f3c1d1c Binary files /dev/null and b/sources/images/cropped/pexels-ruvim-3560044.jpg differ diff --git a/sources/images/cropped/pexels-sam-kolder-2387873.jpg b/sources/images/cropped/pexels-sam-kolder-2387873.jpg new file mode 100644 index 0000000..ad80a92 Binary files /dev/null and b/sources/images/cropped/pexels-sam-kolder-2387873.jpg differ diff --git a/sources/images/cropped/pexels-stijn-dijkstra-2583833.jpg b/sources/images/cropped/pexels-stijn-dijkstra-2583833.jpg new file mode 100644 index 0000000..c3b8281 Binary files /dev/null and b/sources/images/cropped/pexels-stijn-dijkstra-2583833.jpg differ diff --git a/sources/images/cropped/pexels-szabó-viktor-3227984.jpg b/sources/images/cropped/pexels-szabó-viktor-3227984.jpg new file mode 100644 index 0000000..ffa3484 Binary files /dev/null and b/sources/images/cropped/pexels-szabó-viktor-3227984.jpg differ diff --git a/sources/images/cropped/pexels-tembela-bohle-963713.jpg b/sources/images/cropped/pexels-tembela-bohle-963713.jpg new file mode 100644 index 0000000..72d6b46 Binary files /dev/null and b/sources/images/cropped/pexels-tembela-bohle-963713.jpg differ diff --git a/sources/images/cropped/pexels-tiago-cardoso-2402995.jpg b/sources/images/cropped/pexels-tiago-cardoso-2402995.jpg new file mode 100644 index 0000000..d2e21c5 Binary files /dev/null and b/sources/images/cropped/pexels-tiago-cardoso-2402995.jpg differ diff --git a/sources/images/cropped/pexels-tiana-614484.jpg b/sources/images/cropped/pexels-tiana-614484.jpg new file mode 100644 index 0000000..d186468 Binary files /dev/null and b/sources/images/cropped/pexels-tiana-614484.jpg differ diff --git a/sources/images/cropped/pexels-tobi-675764.jpg b/sources/images/cropped/pexels-tobi-675764.jpg new file mode 100644 index 0000000..c71b051 Binary files /dev/null and b/sources/images/cropped/pexels-tobi-675764.jpg differ diff --git a/sources/images/cropped/pexels-tobias-bjørkli-1819631.jpg b/sources/images/cropped/pexels-tobias-bjørkli-1819631.jpg new file mode 100644 index 0000000..a8f8ed6 Binary files /dev/null and b/sources/images/cropped/pexels-tobias-bjørkli-1819631.jpg differ diff --git a/sources/images/cropped/pexels-trace-hudson-2724664.jpg b/sources/images/cropped/pexels-trace-hudson-2724664.jpg new file mode 100644 index 0000000..454c863 Binary files /dev/null and b/sources/images/cropped/pexels-trace-hudson-2724664.jpg differ diff --git a/sources/images/cropped/pexels-tyler-lastovich-808465.jpg b/sources/images/cropped/pexels-tyler-lastovich-808465.jpg new file mode 100644 index 0000000..2f8f31f Binary files /dev/null and b/sources/images/cropped/pexels-tyler-lastovich-808465.jpg differ diff --git a/sources/images/cropped/pexels-valdemaras-d-1647972.jpg b/sources/images/cropped/pexels-valdemaras-d-1647972.jpg new file mode 100644 index 0000000..95885d2 Binary files /dev/null and b/sources/images/cropped/pexels-valdemaras-d-1647972.jpg differ diff --git a/sources/images/cropped/pexels-valdemaras-d-1752372.jpg b/sources/images/cropped/pexels-valdemaras-d-1752372.jpg new file mode 100644 index 0000000..b0c4d70 Binary files /dev/null and b/sources/images/cropped/pexels-valdemaras-d-1752372.jpg differ diff --git a/sources/images/cropped/pexels-yaroslav-shuraev-1553963.jpg b/sources/images/cropped/pexels-yaroslav-shuraev-1553963.jpg new file mode 100644 index 0000000..661853a Binary files /dev/null and b/sources/images/cropped/pexels-yaroslav-shuraev-1553963.jpg differ diff --git a/sources/images/cropped/pexels-yaroslav-shuraev-1834399.jpg b/sources/images/cropped/pexels-yaroslav-shuraev-1834399.jpg new file mode 100644 index 0000000..18e6d6c Binary files /dev/null and b/sources/images/cropped/pexels-yaroslav-shuraev-1834399.jpg differ diff --git a/sources/images/cropped/pexels-yaroslav-shuraev-1834407.jpg b/sources/images/cropped/pexels-yaroslav-shuraev-1834407.jpg new file mode 100644 index 0000000..af421cf Binary files /dev/null and b/sources/images/cropped/pexels-yaroslav-shuraev-1834407.jpg differ diff --git a/sources/images/pexels-aleksandar-pasaric-2707645.jpg b/sources/images/pexels-aleksandar-pasaric-2707645.jpg new file mode 100644 index 0000000..860c081 Binary files /dev/null and b/sources/images/pexels-aleksandar-pasaric-2707645.jpg differ diff --git a/sources/images/pexels-alex-conchillos-3941855.jpg b/sources/images/pexels-alex-conchillos-3941855.jpg new file mode 100644 index 0000000..ea7af25 Binary files /dev/null and b/sources/images/pexels-alex-conchillos-3941855.jpg differ diff --git a/sources/images/pexels-aron-visuals-1643113.jpg b/sources/images/pexels-aron-visuals-1643113.jpg new file mode 100644 index 0000000..e916b0e Binary files /dev/null and b/sources/images/pexels-aron-visuals-1643113.jpg differ diff --git a/sources/images/pexels-aron-visuals-1743165.jpg b/sources/images/pexels-aron-visuals-1743165.jpg new file mode 100644 index 0000000..3bd87af Binary files /dev/null and b/sources/images/pexels-aron-visuals-1743165.jpg differ diff --git a/sources/images/pexels-artem-saranin-1496373.jpg b/sources/images/pexels-artem-saranin-1496373.jpg new file mode 100644 index 0000000..75e6380 Binary files /dev/null and b/sources/images/pexels-artem-saranin-1496373.jpg differ diff --git a/sources/images/pexels-arın-turkay-2591408.jpg b/sources/images/pexels-arın-turkay-2591408.jpg new file mode 100644 index 0000000..70ad6c9 Binary files /dev/null and b/sources/images/pexels-arın-turkay-2591408.jpg differ diff --git a/sources/images/pexels-aydın-kiraz-3070671.jpg b/sources/images/pexels-aydın-kiraz-3070671.jpg new file mode 100644 index 0000000..d5e0a79 Binary files /dev/null and b/sources/images/pexels-aydın-kiraz-3070671.jpg differ diff --git a/sources/images/pexels-disha-sheta-3584430.jpg b/sources/images/pexels-disha-sheta-3584430.jpg new file mode 100644 index 0000000..2236415 Binary files /dev/null and b/sources/images/pexels-disha-sheta-3584430.jpg differ diff --git a/sources/images/pexels-eberhard-grossgasteiger-1287145.jpg b/sources/images/pexels-eberhard-grossgasteiger-1287145.jpg new file mode 100644 index 0000000..386cf34 Binary files /dev/null and b/sources/images/pexels-eberhard-grossgasteiger-1287145.jpg differ diff --git a/sources/images/pexels-eberhard-grossgasteiger-2310641.jpg b/sources/images/pexels-eberhard-grossgasteiger-2310641.jpg new file mode 100644 index 0000000..8ca0810 Binary files /dev/null and b/sources/images/pexels-eberhard-grossgasteiger-2310641.jpg differ diff --git a/sources/images/pexels-eberhard-grossgasteiger-2437295.jpg b/sources/images/pexels-eberhard-grossgasteiger-2437295.jpg new file mode 100644 index 0000000..254a89b Binary files /dev/null and b/sources/images/pexels-eberhard-grossgasteiger-2437295.jpg differ diff --git a/sources/images/pexels-eberhard-grossgasteiger-572897.jpg b/sources/images/pexels-eberhard-grossgasteiger-572897.jpg new file mode 100644 index 0000000..29e2fd5 Binary files /dev/null and b/sources/images/pexels-eberhard-grossgasteiger-572897.jpg differ diff --git a/sources/images/pexels-edou-hoekstra-3756718.jpg b/sources/images/pexels-edou-hoekstra-3756718.jpg new file mode 100644 index 0000000..b18637b Binary files /dev/null and b/sources/images/pexels-edou-hoekstra-3756718.jpg differ diff --git a/sources/images/pexels-felix-mittermeier-1459534.jpg b/sources/images/pexels-felix-mittermeier-1459534.jpg new file mode 100644 index 0000000..b75ce2e Binary files /dev/null and b/sources/images/pexels-felix-mittermeier-1459534.jpg differ diff --git a/sources/images/pexels-ian-beckley-2440021.jpg b/sources/images/pexels-ian-beckley-2440021.jpg new file mode 100644 index 0000000..efbaf96 Binary files /dev/null and b/sources/images/pexels-ian-beckley-2440021.jpg differ diff --git a/sources/images/pexels-jacob-colvin-1761279.jpg b/sources/images/pexels-jacob-colvin-1761279.jpg new file mode 100644 index 0000000..dd16ddf Binary files /dev/null and b/sources/images/pexels-jacob-colvin-1761279.jpg differ diff --git a/sources/images/pexels-jaime-reimer-2662116.jpg b/sources/images/pexels-jaime-reimer-2662116.jpg new file mode 100644 index 0000000..b8791bb Binary files /dev/null and b/sources/images/pexels-jaime-reimer-2662116.jpg differ diff --git a/sources/images/pexels-jeremy-bishop-2524874.jpg b/sources/images/pexels-jeremy-bishop-2524874.jpg new file mode 100644 index 0000000..e07d385 Binary files /dev/null and b/sources/images/pexels-jeremy-bishop-2524874.jpg differ diff --git a/sources/images/pexels-jeremy-bishop-3464632.jpg b/sources/images/pexels-jeremy-bishop-3464632.jpg new file mode 100644 index 0000000..0c945f4 Binary files /dev/null and b/sources/images/pexels-jeremy-bishop-3464632.jpg differ diff --git a/sources/images/pexels-kasuma-1785493.jpg b/sources/images/pexels-kasuma-1785493.jpg new file mode 100644 index 0000000..7b0ed96 Binary files /dev/null and b/sources/images/pexels-kasuma-1785493.jpg differ diff --git a/sources/images/pexels-lena-khrupina-2683365.jpg b/sources/images/pexels-lena-khrupina-2683365.jpg new file mode 100644 index 0000000..6aae643 Binary files /dev/null and b/sources/images/pexels-lena-khrupina-2683365.jpg differ diff --git a/sources/images/pexels-luis-dalvan-1770809.jpg b/sources/images/pexels-luis-dalvan-1770809.jpg new file mode 100644 index 0000000..657ad35 Binary files /dev/null and b/sources/images/pexels-luis-dalvan-1770809.jpg differ diff --git a/sources/images/pexels-marlon-martinez-1450082.jpg b/sources/images/pexels-marlon-martinez-1450082.jpg new file mode 100644 index 0000000..df98f08 Binary files /dev/null and b/sources/images/pexels-marlon-martinez-1450082.jpg differ diff --git a/sources/images/pexels-marlon-martinez-1517162.jpg b/sources/images/pexels-marlon-martinez-1517162.jpg new file mode 100644 index 0000000..989a158 Binary files /dev/null and b/sources/images/pexels-marlon-martinez-1517162.jpg differ diff --git a/sources/images/pexels-matheus-bertelli-1144687.jpg b/sources/images/pexels-matheus-bertelli-1144687.jpg new file mode 100644 index 0000000..5cac301 Binary files /dev/null and b/sources/images/pexels-matheus-bertelli-1144687.jpg differ diff --git a/sources/images/pexels-matteo-badini-4064432.jpg b/sources/images/pexels-matteo-badini-4064432.jpg new file mode 100644 index 0000000..d797d21 Binary files /dev/null and b/sources/images/pexels-matteo-badini-4064432.jpg differ diff --git a/sources/images/pexels-matthew-montrone-1179229.jpg b/sources/images/pexels-matthew-montrone-1179229.jpg new file mode 100644 index 0000000..4f42ac9 Binary files /dev/null and b/sources/images/pexels-matthew-montrone-1179229.jpg differ diff --git a/sources/images/pexels-michael-block-3225517.jpg b/sources/images/pexels-michael-block-3225517.jpg new file mode 100644 index 0000000..b594796 Binary files /dev/null and b/sources/images/pexels-michael-block-3225517.jpg differ diff --git a/sources/images/pexels-nathan-cowley-1151282.jpg b/sources/images/pexels-nathan-cowley-1151282.jpg new file mode 100644 index 0000000..1a0b563 Binary files /dev/null and b/sources/images/pexels-nathan-cowley-1151282.jpg differ diff --git a/sources/images/pexels-oleksandr-pidvalnyi-345522.jpg b/sources/images/pexels-oleksandr-pidvalnyi-345522.jpg new file mode 100644 index 0000000..7f35166 Binary files /dev/null and b/sources/images/pexels-oleksandr-pidvalnyi-345522.jpg differ diff --git a/sources/images/pexels-oliver-sjöström-1078983.jpg b/sources/images/pexels-oliver-sjöström-1078983.jpg new file mode 100644 index 0000000..51d51ff Binary files /dev/null and b/sources/images/pexels-oliver-sjöström-1078983.jpg differ diff --git a/sources/images/pexels-paul-voie-2627945.jpg b/sources/images/pexels-paul-voie-2627945.jpg new file mode 100644 index 0000000..a6fd0a7 Binary files /dev/null and b/sources/images/pexels-paul-voie-2627945.jpg differ diff --git a/sources/images/pexels-peter-de-vink-849403.jpg b/sources/images/pexels-peter-de-vink-849403.jpg new file mode 100644 index 0000000..a93d6f4 Binary files /dev/null and b/sources/images/pexels-peter-de-vink-849403.jpg differ diff --git a/sources/images/pexels-pixabay-147411.jpg b/sources/images/pexels-pixabay-147411.jpg new file mode 100644 index 0000000..c583873 Binary files /dev/null and b/sources/images/pexels-pixabay-147411.jpg differ diff --git a/sources/images/pexels-rifqi-ramadhan-884547.jpg b/sources/images/pexels-rifqi-ramadhan-884547.jpg new file mode 100644 index 0000000..6989066 Binary files /dev/null and b/sources/images/pexels-rifqi-ramadhan-884547.jpg differ diff --git a/sources/images/pexels-ruvim-3560044.jpg b/sources/images/pexels-ruvim-3560044.jpg new file mode 100644 index 0000000..0c14d14 Binary files /dev/null and b/sources/images/pexels-ruvim-3560044.jpg differ diff --git a/sources/images/pexels-sam-kolder-2387873.jpg b/sources/images/pexels-sam-kolder-2387873.jpg new file mode 100644 index 0000000..80bb598 Binary files /dev/null and b/sources/images/pexels-sam-kolder-2387873.jpg differ diff --git a/sources/images/pexels-stijn-dijkstra-2583833.jpg b/sources/images/pexels-stijn-dijkstra-2583833.jpg new file mode 100644 index 0000000..44c7dbb Binary files /dev/null and b/sources/images/pexels-stijn-dijkstra-2583833.jpg differ diff --git a/sources/images/pexels-szabó-viktor-3227984.jpg b/sources/images/pexels-szabó-viktor-3227984.jpg new file mode 100644 index 0000000..5fa7112 Binary files /dev/null and b/sources/images/pexels-szabó-viktor-3227984.jpg differ diff --git a/sources/images/pexels-tembela-bohle-963713.jpg b/sources/images/pexels-tembela-bohle-963713.jpg new file mode 100644 index 0000000..9b22463 Binary files /dev/null and b/sources/images/pexels-tembela-bohle-963713.jpg differ diff --git a/sources/images/pexels-tiago-cardoso-2402995.jpg b/sources/images/pexels-tiago-cardoso-2402995.jpg new file mode 100644 index 0000000..8e9c279 Binary files /dev/null and b/sources/images/pexels-tiago-cardoso-2402995.jpg differ diff --git a/sources/images/pexels-tiana-614484.jpg b/sources/images/pexels-tiana-614484.jpg new file mode 100644 index 0000000..31944dc Binary files /dev/null and b/sources/images/pexels-tiana-614484.jpg differ diff --git a/sources/images/pexels-tobi-675764.jpg b/sources/images/pexels-tobi-675764.jpg new file mode 100644 index 0000000..02db48f Binary files /dev/null and b/sources/images/pexels-tobi-675764.jpg differ diff --git a/sources/images/pexels-tobias-bjørkli-1819631.jpg b/sources/images/pexels-tobias-bjørkli-1819631.jpg new file mode 100644 index 0000000..fe24498 Binary files /dev/null and b/sources/images/pexels-tobias-bjørkli-1819631.jpg differ diff --git a/sources/images/pexels-trace-hudson-2724664.jpg b/sources/images/pexels-trace-hudson-2724664.jpg new file mode 100644 index 0000000..2da628c Binary files /dev/null and b/sources/images/pexels-trace-hudson-2724664.jpg differ diff --git a/sources/images/pexels-tyler-lastovich-808465.jpg b/sources/images/pexels-tyler-lastovich-808465.jpg new file mode 100644 index 0000000..a7a8a4c Binary files /dev/null and b/sources/images/pexels-tyler-lastovich-808465.jpg differ diff --git a/sources/images/pexels-valdemaras-d-1647972.jpg b/sources/images/pexels-valdemaras-d-1647972.jpg new file mode 100644 index 0000000..053a712 Binary files /dev/null and b/sources/images/pexels-valdemaras-d-1647972.jpg differ diff --git a/sources/images/pexels-valdemaras-d-1752372.jpg b/sources/images/pexels-valdemaras-d-1752372.jpg new file mode 100644 index 0000000..142314d Binary files /dev/null and b/sources/images/pexels-valdemaras-d-1752372.jpg differ diff --git a/sources/images/pexels-yaroslav-shuraev-1553963.jpg b/sources/images/pexels-yaroslav-shuraev-1553963.jpg new file mode 100644 index 0000000..4ffb8c5 Binary files /dev/null and b/sources/images/pexels-yaroslav-shuraev-1553963.jpg differ diff --git a/sources/images/pexels-yaroslav-shuraev-1834399.jpg b/sources/images/pexels-yaroslav-shuraev-1834399.jpg new file mode 100644 index 0000000..5b7978b Binary files /dev/null and b/sources/images/pexels-yaroslav-shuraev-1834399.jpg differ diff --git a/sources/images/pexels-yaroslav-shuraev-1834407.jpg b/sources/images/pexels-yaroslav-shuraev-1834407.jpg new file mode 100644 index 0000000..31eded7 Binary files /dev/null and b/sources/images/pexels-yaroslav-shuraev-1834407.jpg differ diff --git a/sources/logo.png b/sources/logo.png index 2593e17..acdeb47 100644 Binary files a/sources/logo.png and b/sources/logo.png differ diff --git a/sources/logo.psd b/sources/logo.psd index 4d53f90..f9c5a0f 100644 Binary files a/sources/logo.psd and b/sources/logo.psd differ diff --git a/sources/ChristianQuotes.txt b/sources/quotes.txt similarity index 100% rename from sources/ChristianQuotes.txt rename to sources/quotes.txt