New post
@ -59,7 +59,7 @@ webmaster_verifications:
|
||||
# Web Analytics Settings
|
||||
analytics:
|
||||
google:
|
||||
id: # fill in your Google Analytics ID
|
||||
id: G-NVPCBPJ8NQ
|
||||
goatcounter:
|
||||
id: # fill in your GoatCounter ID
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: Boat & Conundrum
|
||||
title: Ahoy
|
||||
description: Mobile game that offers simple yet challenging gameplay mechanics, vibrant visuals, and a charming aesthetic that appeals to players of all ages.
|
||||
author: [sanchit]
|
||||
date: 2024-04-04
|
||||
@ -8,27 +8,52 @@ tags: [Mobile Game, Puzzle, Adventure]
|
||||
pin: true
|
||||
image:
|
||||
path: /assets/04-04-2024/3.png
|
||||
alt: Boat & Conundrum Game Logo
|
||||
alt: Ahoy Game Logo
|
||||
---
|
||||
|
||||
# Boat & Conundrum
|
||||
# Ahoy : Boat and Conundrum
|
||||
|
||||
**Age:** Born 2024, Q1
|
||||
|
||||
|
||||
**Age:** Born 2024, Q1
|
||||
**Price:** 3 Euro IAP
|
||||
**Breed:** Poodle
|
||||
**Platform:** [Get it on Google Play](https://play.google.com/store/apps/details?id=in.caffeinism.ahoy)
|
||||
|
||||
---
|
||||
# Turn-Based Strategy Game
|
||||
|
||||
## About
|
||||
*Boat & Conundrum* is a mobile game that offers simple yet challenging gameplay mechanics, vibrant visuals, and a charming aesthetic that appeals to players of all ages.
|
||||
In this turn-based strategy game, you step into the shoes of Captain Blackwood and engage in strategic puzzle-solving, where you are challenged to collect all the treasures scattered across the island shores.
|
||||
|
||||
---
|
||||
## Gameplay
|
||||
|
||||
## Lore
|
||||
As players embark on their journey in the puzzle game, they assume the role of Captain Blackwood, commanding her trusty steam-powered wooden ship, the "Aether Voyager." Their mission: to navigate the treacherous waters surrounding Arcanus, solving intricate puzzles and overcoming challenges to collect all the treasures scattered across the island shores.
|
||||
- Navigate grid-based levels.
|
||||
- Avoid islands.
|
||||
- Collect all treasures.
|
||||
- Utilize other gameplay elements.
|
||||
- Each level presents new challenges and requires careful planning.
|
||||
|
||||
## Visual Style
|
||||
|
||||
- Minimalist design.
|
||||
- Beautifully crafted environments.
|
||||
- Emoji-like characters.
|
||||
|
||||
## Objective
|
||||
|
||||
As Captain Blackwood, your goal is to eliminate targets while avoiding guards and other hazards.
|
||||
Each level has specific objectives, such as assassinating a target or reaching an exit point.
|
||||
|
||||
## Turn-Based Movement
|
||||
|
||||
You move Captain Blackwood’s Aether Voyager one step at a time, planning your route carefully.
|
||||
|
||||
## Obstacles and Interactions
|
||||
|
||||
- Levels feature various elements like treasures, armored treasures, and distractions.
|
||||
- There is only one correct way to solve the puzzle, and it’s not so obvious.
|
||||
|
||||
## Disclaimer
|
||||
|
||||
We do not have any ads in this build, nor do we track you personally to sell your data. But if you like the first few levels, please buy the game to support further development.
|
||||
## Video
|
||||
|
||||
{% include embed/youtube.html id='zmjtnhzDOBQ' %}
|
||||
|
337
_posts/2024-07-04-Tricking.md
Normal file
@ -0,0 +1,337 @@
|
||||
---
|
||||
title: Tricking AI Image Recognition with Minimal Pixel Modifications
|
||||
description: Explore how minimal pixel modifications can deceive AI image recognition systems, demonstrated through the RNET classifier.
|
||||
author: [sanchit]
|
||||
date: 2024-04-05
|
||||
categories: [AI, Image Recognition]
|
||||
tags: [Machine Learning, Computer Vision, ResNet50]
|
||||
pin: true
|
||||
image:
|
||||
path: /assets/07-04-2024/1_original.jpeg
|
||||
alt: screenshot
|
||||
---
|
||||
|
||||
# Tricking AI Image Recognition
|
||||
## _How many pixels does it take to fool RNET classifier?_
|
||||
### Answer : Not Many!
|
||||
### Inspiration : [YouTube Video by Computerphile](https://www.youtube.com/watch?v=gGIiechWEFs)
|
||||
|
||||
### Classification Model Details
|
||||
```py
|
||||
weights = ResNet50_Weights.DEFAULT
|
||||
model = resnet50
|
||||
```
|
||||
|
||||
### Dataset
|
||||
```
|
||||
https://huggingface.co/datasets/jamescalam/unsplash-25k-photos
|
||||
```
|
||||
|
||||
### Image 1
|
||||
|
||||
Initial Prediction: monarch | pixels_modified: 687 | After Modification: ringlet
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 2
|
||||
|
||||
Initial Prediction: head cabbage | pixels_modified: 154 | After Modification: ice cream
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 3
|
||||
|
||||
Initial Prediction: pay-phone | pixels_modified: 200 | After Modification: cash machine
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 4
|
||||
|
||||
Initial Prediction: cliff | pixels_modified: 136 | After Modification: promontory
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 5
|
||||
|
||||
Initial Prediction: seashore | pixels_modified: 276 | After Modification: promontory
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 6
|
||||
|
||||
Initial Prediction: mountain tent | pixels_modified: 160 | After Modification: yurt
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 7
|
||||
|
||||
Initial Prediction: castle | pixels_modified: 673 | After Modification: palace
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 8
|
||||
|
||||
Initial Prediction: bubble | pixels_modified: 209 | After Modification: fountain
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 9
|
||||
|
||||
Initial Prediction: volcano | pixels_modified: 196 | After Modification: torch
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 10
|
||||
|
||||
Initial Prediction: alp | pixels_modified: 472 | After Modification: mountain tent
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 11
|
||||
|
||||
Initial Prediction: common iguana | pixels_modified: 595 | After Modification: green lizard
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 12
|
||||
|
||||
Initial Prediction: cloak | pixels_modified: 47 | After Modification: abaya
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 13
|
||||
|
||||
Initial Prediction: volcano | pixels_modified: 173 | After Modification: alp
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 14
|
||||
|
||||
Initial Prediction: torch | pixels_modified: 131 | After Modification: beacon
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 15
|
||||
|
||||
Initial Prediction: wool | pixels_modified: 162 | After Modification: swab
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 16
|
||||
|
||||
Initial Prediction: jellyfish | pixels_modified: 336 | After Modification: isopod
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 17
|
||||
|
||||
Initial Prediction: vase | pixels_modified: 125 | After Modification: pot
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 18
|
||||
|
||||
Initial Prediction: carousel | pixels_modified: 298 | After Modification: water snake
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 19
|
||||
|
||||
Initial Prediction: vase | pixels_modified: 557 | After Modification: pot
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 20
|
||||
|
||||
Initial Prediction: goose | pixels_modified: 255 | After Modification: lakeside
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 21
|
||||
|
||||
Initial Prediction: golden retriever | pixels_modified: 382 | After Modification: tennis ball
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 22
|
||||
|
||||
Initial Prediction: mountain tent | pixels_modified: 744 | After Modification: valley
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 23
|
||||
|
||||
Initial Prediction: seashore | pixels_modified: 185 | After Modification: sandbar
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 24
|
||||
|
||||
Initial Prediction: alp | pixels_modified: 486 | After Modification: valley
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 25
|
||||
|
||||
Initial Prediction: hamster | pixels_modified: 183 | After Modification: bath towel
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 26
|
||||
|
||||
Initial Prediction: alp | pixels_modified: 719 | After Modification: ski
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 27
|
||||
|
||||
Initial Prediction: jellyfish | pixels_modified: 254 | After Modification: bubble
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 28
|
||||
|
||||
Initial Prediction: gas pump | pixels_modified: 290 | After Modification: traffic light
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 29
|
||||
|
||||
Initial Prediction: promontory | pixels_modified: 177 | After Modification: seashore
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 30
|
||||
|
||||
Initial Prediction: coral reef | pixels_modified: 283 | After Modification: scuba diver
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 31
|
||||
|
||||
Initial Prediction: alp | pixels_modified: 536 | After Modification: valley
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 32
|
||||
|
||||
Initial Prediction: seashore | pixels_modified: 259 | After Modification: lakeside
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 33
|
||||
|
||||
Initial Prediction: Pembroke | pixels_modified: 773 | After Modification: Cardigan
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 34
|
||||
|
||||
Initial Prediction: Cardigan | pixels_modified: 290 | After Modification: Pembroke
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 35
|
||||
|
||||
Initial Prediction: alp | pixels_modified: 162 | After Modification: volcano
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 36
|
||||
|
||||
Initial Prediction: cocker spaniel | pixels_modified: 384 | After Modification: Sussex spaniel
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 37
|
||||
|
||||
Initial Prediction: sea lion | pixels_modified: 325 | After Modification: otter
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 38
|
||||
|
||||
Initial Prediction: pot | pixels_modified: 140 | After Modification: spider web
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 39
|
||||
|
||||
Initial Prediction: torch | pixels_modified: 153 | After Modification: sleeping bag
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 40
|
||||
|
||||
Initial Prediction: alp | pixels_modified: 279 | After Modification: mountain tent
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 41
|
||||
|
||||
Initial Prediction: seashore | pixels_modified: 289 | After Modification: lakeside
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 42
|
||||
|
||||
Initial Prediction: ox | pixels_modified: 883 | After Modification: bison
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 43
|
||||
|
||||
Initial Prediction: suspension bridge | pixels_modified: 166 | After Modification: pier
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 44
|
||||
|
||||
Initial Prediction: jellyfish | pixels_modified: 136 | After Modification: sea slug
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 45
|
||||
|
||||
Initial Prediction: volcano | pixels_modified: 487 | After Modification: mountain tent
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 46
|
||||
|
||||
Initial Prediction: goldfish | pixels_modified: 340 | After Modification: anemone fish
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 47
|
||||
|
||||
Initial Prediction: greenhouse | pixels_modified: 574 | After Modification: folding chair
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 48
|
||||
|
||||
Initial Prediction: greenhouse | pixels_modified: 340 | After Modification: crutch
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 49
|
||||
|
||||
Initial Prediction: valley | pixels_modified: 255 | After Modification: fountain
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 50
|
||||
|
||||
Initial Prediction: alp | pixels_modified: 983 | After Modification: valley
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
### Image 51
|
||||
|
||||
Initial Prediction: Indian elephant | pixels_modified: 644 | After Modification: tusker
|
||||
:-------------------------:|:-------------------------:|:------------------------
|
||||
||
|
||||
|
||||
## License
|
||||
MIT
|
BIN
assets/07-04-2024/0_modified.jpeg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
assets/07-04-2024/0_original.jpeg
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
assets/07-04-2024/0_pixel.jpeg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
assets/07-04-2024/10_modified.jpeg
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
assets/07-04-2024/10_original.jpeg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/07-04-2024/10_pixel.jpeg
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
assets/07-04-2024/11_modified.jpeg
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
assets/07-04-2024/11_original.jpeg
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
assets/07-04-2024/11_pixel.jpeg
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
assets/07-04-2024/12_modified.jpeg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
assets/07-04-2024/12_original.jpeg
Normal file
After Width: | Height: | Size: 9.5 KiB |
BIN
assets/07-04-2024/12_pixel.jpeg
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
assets/07-04-2024/13_modified.jpeg
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
assets/07-04-2024/13_original.jpeg
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
assets/07-04-2024/13_pixel.jpeg
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
assets/07-04-2024/14_modified.jpeg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
assets/07-04-2024/14_original.jpeg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
assets/07-04-2024/14_pixel.jpeg
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
assets/07-04-2024/15_modified.jpeg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/07-04-2024/15_original.jpeg
Normal file
After Width: | Height: | Size: 8.7 KiB |
BIN
assets/07-04-2024/15_pixel.jpeg
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
assets/07-04-2024/16_modified.jpeg
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
assets/07-04-2024/16_original.jpeg
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
assets/07-04-2024/16_pixel.jpeg
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
assets/07-04-2024/17_modified.jpeg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
assets/07-04-2024/17_original.jpeg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
assets/07-04-2024/17_pixel.jpeg
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
assets/07-04-2024/18_modified.jpeg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
assets/07-04-2024/18_original.jpeg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
assets/07-04-2024/18_pixel.jpeg
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
assets/07-04-2024/19_modified.jpeg
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
assets/07-04-2024/19_original.jpeg
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
assets/07-04-2024/19_pixel.jpeg
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
assets/07-04-2024/1_modified.jpeg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
assets/07-04-2024/1_original.jpeg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
assets/07-04-2024/1_pixel.jpeg
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
assets/07-04-2024/20_modified.jpeg
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
assets/07-04-2024/20_original.jpeg
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
assets/07-04-2024/20_pixel.jpeg
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
assets/07-04-2024/21_modified.jpeg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
assets/07-04-2024/21_original.jpeg
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
assets/07-04-2024/21_pixel.jpeg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
assets/07-04-2024/22_modified.jpeg
Normal file
After Width: | Height: | Size: 8.1 KiB |
BIN
assets/07-04-2024/22_original.jpeg
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
assets/07-04-2024/22_pixel.jpeg
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
assets/07-04-2024/23_modified.jpeg
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
assets/07-04-2024/23_original.jpeg
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
assets/07-04-2024/23_pixel.jpeg
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
assets/07-04-2024/24_modified.jpeg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
assets/07-04-2024/24_original.jpeg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
assets/07-04-2024/24_pixel.jpeg
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
assets/07-04-2024/25_modified.jpeg
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
assets/07-04-2024/25_original.jpeg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
assets/07-04-2024/25_pixel.jpeg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
assets/07-04-2024/26_modified.jpeg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
assets/07-04-2024/26_original.jpeg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/07-04-2024/26_pixel.jpeg
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
assets/07-04-2024/27_modified.jpeg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
assets/07-04-2024/27_original.jpeg
Normal file
After Width: | Height: | Size: 8.5 KiB |
BIN
assets/07-04-2024/27_pixel.jpeg
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
assets/07-04-2024/28_modified.jpeg
Normal file
After Width: | Height: | Size: 8.9 KiB |
BIN
assets/07-04-2024/28_original.jpeg
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
assets/07-04-2024/28_pixel.jpeg
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
assets/07-04-2024/29_modified.jpeg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
assets/07-04-2024/29_original.jpeg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
assets/07-04-2024/29_pixel.jpeg
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
assets/07-04-2024/2_modified.jpeg
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
assets/07-04-2024/2_original.jpeg
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
assets/07-04-2024/2_pixel.jpeg
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
assets/07-04-2024/30_modified.jpeg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
assets/07-04-2024/30_original.jpeg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/07-04-2024/30_pixel.jpeg
Normal file
After Width: | Height: | Size: 8.4 KiB |
BIN
assets/07-04-2024/31_modified.jpeg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
assets/07-04-2024/31_original.jpeg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
assets/07-04-2024/31_pixel.jpeg
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
assets/07-04-2024/32_modified.jpeg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
assets/07-04-2024/32_original.jpeg
Normal file
After Width: | Height: | Size: 9.7 KiB |
BIN
assets/07-04-2024/32_pixel.jpeg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
assets/07-04-2024/33_modified.jpeg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
assets/07-04-2024/33_original.jpeg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
assets/07-04-2024/33_pixel.jpeg
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
assets/07-04-2024/34_modified.jpeg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
assets/07-04-2024/34_original.jpeg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
assets/07-04-2024/34_pixel.jpeg
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
assets/07-04-2024/35_modified.jpeg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
assets/07-04-2024/35_original.jpeg
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
assets/07-04-2024/35_pixel.jpeg
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
assets/07-04-2024/36_modified.jpeg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/07-04-2024/36_original.jpeg
Normal file
After Width: | Height: | Size: 9.9 KiB |
BIN
assets/07-04-2024/36_pixel.jpeg
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
assets/07-04-2024/37_modified.jpeg
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
assets/07-04-2024/37_original.jpeg
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
assets/07-04-2024/37_pixel.jpeg
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
assets/07-04-2024/38_modified.jpeg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
assets/07-04-2024/38_original.jpeg
Normal file
After Width: | Height: | Size: 9.9 KiB |
BIN
assets/07-04-2024/38_pixel.jpeg
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
assets/07-04-2024/39_modified.jpeg
Normal file
After Width: | Height: | Size: 13 KiB |