diff --git a/.gitapp/.gitkeep b/.gitapp/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/.gitapp/manifest.json b/.gitapp/manifest.json deleted file mode 100644 index 2dedec8..0000000 --- a/.gitapp/manifest.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "name": "pocketbase-lite", - "version": "0.1.0", - "paths": { - "data": "collections/", - "media": "media/", - "indexes": ".gitapp/indexes/" - }, - "schemas": [ - { - "id": "genres", - "file": "schemas/genres.json", - "glob": "collections/genres/*.json" - }, - { - "id": "people", - "file": "schemas/people.json", - "glob": "collections/people/*.json" - }, - { - "id": "movies", - "file": "schemas/movies.json", - "glob": "collections/movies/*.json" - }, - { - "id": "cast", - "file": "schemas/cast.json", - "glob": "collections/cast/*.json" - }, - { - "id": "reviews", - "file": "schemas/reviews.json", - "glob": "collections/reviews/*.json" - } - ], - "operations": [], - "policies": { - "roles": [ - "viewer", - "editor" - ], - "acl": null - }, - "lfs": { - "enabled": false - } -} \ No newline at end of file diff --git a/.gitapp/operations/.gitkeep b/.gitapp/operations/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/.gitapp/schemas/.gitkeep b/.gitapp/schemas/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/.gitapp/schemas/cast.json b/.gitapp/schemas/cast.json deleted file mode 100644 index fda2370..0000000 --- a/.gitapp/schemas/cast.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "$id": "cast", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "character" - ], - "properties": { - "character": { - "type": "string" - }, - "billing": { - "type": "integer", - "minimum": 1 - }, - "movie": { - "type": "string", - "x-relation": { - "collection": "movies", - "type": "single" - } - }, - "actor": { - "type": "string", - "x-relation": { - "collection": "people", - "type": "single" - } - } - } -} \ No newline at end of file diff --git a/.gitapp/schemas/genres.json b/.gitapp/schemas/genres.json deleted file mode 100644 index 23db17d..0000000 --- a/.gitapp/schemas/genres.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "$id": "genres", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "name", - "slug" - ], - "properties": { - "name": { - "type": "string", - "minLength": 1 - }, - "slug": { - "type": "string" - }, - "description": { - "type": "string" - } - } -} \ No newline at end of file diff --git a/.gitapp/schemas/movies.json b/.gitapp/schemas/movies.json deleted file mode 100644 index 1ef381e..0000000 --- a/.gitapp/schemas/movies.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "$id": "movies", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "title", - "year" - ], - "properties": { - "title": { - "type": "string", - "minLength": 1 - }, - "year": { - "type": "integer", - "minimum": 1900, - "maximum": 2030 - }, - "runtime": { - "type": "integer", - "minimum": 1 - }, - "plot": { - "type": "string" - }, - "poster": { - "type": "string" - }, - "rating": { - "type": "number", - "minimum": 0, - "maximum": 10 - }, - "budget": { - "type": "string" - }, - "director": { - "type": "string", - "x-relation": { - "collection": "people", - "type": "single" - } - }, - "genres": { - "type": "array", - "items": { - "type": "string" - }, - "x-relation": { - "collection": "genres", - "type": "multiple", - "maxItems": 5 - } - } - } -} \ No newline at end of file diff --git a/.gitapp/schemas/people.json b/.gitapp/schemas/people.json deleted file mode 100644 index dea5090..0000000 --- a/.gitapp/schemas/people.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "$id": "people", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "name" - ], - "properties": { - "name": { - "type": "string", - "minLength": 1 - }, - "bio": { - "type": "string" - }, - "birthDate": { - "type": "string", - "format": "date" - }, - "photo": { - "type": "string" - }, - "knownFor": { - "type": "string" - } - } -} \ No newline at end of file diff --git a/.gitapp/schemas/reviews.json b/.gitapp/schemas/reviews.json deleted file mode 100644 index ae74010..0000000 --- a/.gitapp/schemas/reviews.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "$id": "reviews", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "type": "object", - "required": [ - "rating", - "content" - ], - "properties": { - "rating": { - "type": "number", - "minimum": 1, - "maximum": 10 - }, - "content": { - "type": "string" - }, - "date": { - "type": "string", - "format": "date-time" - }, - "movie": { - "type": "string", - "x-relation": { - "collection": "movies", - "type": "single" - } - }, - "author": { - "type": "string", - "x-relation": { - "collection": "people", - "type": "single" - } - } - } -} \ No newline at end of file diff --git a/collections/cast/.gitkeep b/collections/cast/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/cast/cast_1766159426166_0.json b/collections/cast/cast_1766159426166_0.json deleted file mode 100644 index 21d1fdb..0000000 --- a/collections/cast/cast_1766159426166_0.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "John Smith", - "billing": 8, - "movie": "movi_1766159426166_8", - "actor": "peop_1766159426166_3", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_1.json b/collections/cast/cast_1766159426166_1.json deleted file mode 100644 index 40ccb0c..0000000 --- a/collections/cast/cast_1766159426166_1.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Sarah Connor", - "billing": 4, - "movie": "movi_1766159426166_18", - "actor": "peop_1766159426166_3", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_10.json b/collections/cast/cast_1766159426166_10.json deleted file mode 100644 index 521c945..0000000 --- a/collections/cast/cast_1766159426166_10.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "John Smith", - "billing": 2, - "movie": "movi_1766159426166_18", - "actor": "peop_1766159426166_6", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_11.json b/collections/cast/cast_1766159426166_11.json deleted file mode 100644 index 2dfd4e2..0000000 --- a/collections/cast/cast_1766159426166_11.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Sarah Connor", - "billing": 8, - "movie": "movi_1766159426166_8", - "actor": "peop_1766159426166_9", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_12.json b/collections/cast/cast_1766159426166_12.json deleted file mode 100644 index 993ba72..0000000 --- a/collections/cast/cast_1766159426166_12.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Max Power", - "billing": 1, - "movie": "movi_1766159426166_8", - "actor": "peop_1766159426166_4", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_13.json b/collections/cast/cast_1766159426166_13.json deleted file mode 100644 index 5cdb32a..0000000 --- a/collections/cast/cast_1766159426166_13.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Elena Vance", - "billing": 1, - "movie": "movi_1766159426166_14", - "actor": "peop_1766159426166_1", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_14.json b/collections/cast/cast_1766159426166_14.json deleted file mode 100644 index db6f902..0000000 --- a/collections/cast/cast_1766159426166_14.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Jake Morrison", - "billing": 6, - "movie": "movi_1766159426166_1", - "actor": "peop_1766159426166_5", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_15.json b/collections/cast/cast_1766159426166_15.json deleted file mode 100644 index 98ae232..0000000 --- a/collections/cast/cast_1766159426166_15.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Luna Black", - "billing": 7, - "movie": "movi_1766159426166_15", - "actor": "peop_1766159426166_2", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_16.json b/collections/cast/cast_1766159426166_16.json deleted file mode 100644 index 3580896..0000000 --- a/collections/cast/cast_1766159426166_16.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Alex Stone", - "billing": 6, - "movie": "movi_1766159426166_16", - "actor": "peop_1766159426166_4", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_17.json b/collections/cast/cast_1766159426166_17.json deleted file mode 100644 index b698ecb..0000000 --- a/collections/cast/cast_1766159426166_17.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Maya Chen", - "billing": 8, - "movie": "movi_1766159426166_15", - "actor": "peop_1766159426166_3", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_18.json b/collections/cast/cast_1766159426166_18.json deleted file mode 100644 index ff84689..0000000 --- a/collections/cast/cast_1766159426166_18.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Marcus Webb", - "billing": 10, - "movie": "movi_1766159426166_1", - "actor": "peop_1766159426166_3", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_19.json b/collections/cast/cast_1766159426166_19.json deleted file mode 100644 index b43a2ac..0000000 --- a/collections/cast/cast_1766159426166_19.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Zoe Hart", - "billing": 7, - "movie": "movi_1766159426166_17", - "actor": "peop_1766159426166_9", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_2.json b/collections/cast/cast_1766159426166_2.json deleted file mode 100644 index 80c0e38..0000000 --- a/collections/cast/cast_1766159426166_2.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Max Power", - "billing": 7, - "movie": "movi_1766159426166_6", - "actor": "peop_1766159426166_2", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_20.json b/collections/cast/cast_1766159426166_20.json deleted file mode 100644 index fcfb4dd..0000000 --- a/collections/cast/cast_1766159426166_20.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "John Smith", - "billing": 2, - "movie": "movi_1766159426166_12", - "actor": "peop_1766159426166_2", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_21.json b/collections/cast/cast_1766159426166_21.json deleted file mode 100644 index 1d4b832..0000000 --- a/collections/cast/cast_1766159426166_21.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Sarah Connor", - "billing": 5, - "movie": "movi_1766159426166_8", - "actor": "peop_1766159426166_2", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_22.json b/collections/cast/cast_1766159426166_22.json deleted file mode 100644 index bdf3e61..0000000 --- a/collections/cast/cast_1766159426166_22.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Max Power", - "billing": 7, - "movie": "movi_1766159426166_15", - "actor": "peop_1766159426166_1", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_23.json b/collections/cast/cast_1766159426166_23.json deleted file mode 100644 index b4c7cb9..0000000 --- a/collections/cast/cast_1766159426166_23.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Elena Vance", - "billing": 4, - "movie": "movi_1766159426166_11", - "actor": "peop_1766159426166_8", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_24.json b/collections/cast/cast_1766159426166_24.json deleted file mode 100644 index b6132c9..0000000 --- a/collections/cast/cast_1766159426166_24.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Jake Morrison", - "billing": 7, - "movie": "movi_1766159426166_10", - "actor": "peop_1766159426166_8", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_25.json b/collections/cast/cast_1766159426166_25.json deleted file mode 100644 index d96d300..0000000 --- a/collections/cast/cast_1766159426166_25.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Luna Black", - "billing": 5, - "movie": "movi_1766159426166_15", - "actor": "peop_1766159426166_1", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_26.json b/collections/cast/cast_1766159426166_26.json deleted file mode 100644 index f321f5a..0000000 --- a/collections/cast/cast_1766159426166_26.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Alex Stone", - "billing": 2, - "movie": "movi_1766159426166_4", - "actor": "peop_1766159426166_9", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_27.json b/collections/cast/cast_1766159426166_27.json deleted file mode 100644 index d13e9d2..0000000 --- a/collections/cast/cast_1766159426166_27.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Maya Chen", - "billing": 6, - "movie": "movi_1766159426166_0", - "actor": "peop_1766159426166_7", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_28.json b/collections/cast/cast_1766159426166_28.json deleted file mode 100644 index 7faba7e..0000000 --- a/collections/cast/cast_1766159426166_28.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Marcus Webb", - "billing": 7, - "movie": "movi_1766159426166_16", - "actor": "peop_1766159426166_0", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_29.json b/collections/cast/cast_1766159426166_29.json deleted file mode 100644 index 4539b0c..0000000 --- a/collections/cast/cast_1766159426166_29.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Zoe Hart", - "billing": 2, - "movie": "movi_1766159426166_7", - "actor": "peop_1766159426166_8", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_3.json b/collections/cast/cast_1766159426166_3.json deleted file mode 100644 index 7d86658..0000000 --- a/collections/cast/cast_1766159426166_3.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Elena Vance", - "billing": 8, - "movie": "movi_1766159426166_10", - "actor": "peop_1766159426166_1", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_30.json b/collections/cast/cast_1766159426166_30.json deleted file mode 100644 index 6f8f041..0000000 --- a/collections/cast/cast_1766159426166_30.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "John Smith", - "billing": 6, - "movie": "movi_1766159426166_3", - "actor": "peop_1766159426166_1", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_31.json b/collections/cast/cast_1766159426166_31.json deleted file mode 100644 index 7ca561d..0000000 --- a/collections/cast/cast_1766159426166_31.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Sarah Connor", - "billing": 3, - "movie": "movi_1766159426166_4", - "actor": "peop_1766159426166_9", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_32.json b/collections/cast/cast_1766159426166_32.json deleted file mode 100644 index 7d7bc27..0000000 --- a/collections/cast/cast_1766159426166_32.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Max Power", - "billing": 6, - "movie": "movi_1766159426166_2", - "actor": "peop_1766159426166_5", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_33.json b/collections/cast/cast_1766159426166_33.json deleted file mode 100644 index ccfdf93..0000000 --- a/collections/cast/cast_1766159426166_33.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Elena Vance", - "billing": 5, - "movie": "movi_1766159426166_2", - "actor": "peop_1766159426166_5", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_34.json b/collections/cast/cast_1766159426166_34.json deleted file mode 100644 index 19db54b..0000000 --- a/collections/cast/cast_1766159426166_34.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Jake Morrison", - "billing": 9, - "movie": "movi_1766159426166_10", - "actor": "peop_1766159426166_3", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_35.json b/collections/cast/cast_1766159426166_35.json deleted file mode 100644 index 9c8b089..0000000 --- a/collections/cast/cast_1766159426166_35.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Luna Black", - "billing": 9, - "movie": "movi_1766159426166_7", - "actor": "peop_1766159426166_2", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_36.json b/collections/cast/cast_1766159426166_36.json deleted file mode 100644 index de801fd..0000000 --- a/collections/cast/cast_1766159426166_36.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Alex Stone", - "billing": 10, - "movie": "movi_1766159426166_19", - "actor": "peop_1766159426166_2", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_37.json b/collections/cast/cast_1766159426166_37.json deleted file mode 100644 index ec8cd0b..0000000 --- a/collections/cast/cast_1766159426166_37.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Maya Chen", - "billing": 6, - "movie": "movi_1766159426166_3", - "actor": "peop_1766159426166_4", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_38.json b/collections/cast/cast_1766159426166_38.json deleted file mode 100644 index 46eb6cb..0000000 --- a/collections/cast/cast_1766159426166_38.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Marcus Webb", - "billing": 10, - "movie": "movi_1766159426166_19", - "actor": "peop_1766159426166_9", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_39.json b/collections/cast/cast_1766159426166_39.json deleted file mode 100644 index 18f326c..0000000 --- a/collections/cast/cast_1766159426166_39.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Zoe Hart", - "billing": 7, - "movie": "movi_1766159426166_17", - "actor": "peop_1766159426166_7", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_4.json b/collections/cast/cast_1766159426166_4.json deleted file mode 100644 index eec18a2..0000000 --- a/collections/cast/cast_1766159426166_4.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Jake Morrison", - "billing": 10, - "movie": "movi_1766159426166_16", - "actor": "peop_1766159426166_4", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_40.json b/collections/cast/cast_1766159426166_40.json deleted file mode 100644 index 5eb82dc..0000000 --- a/collections/cast/cast_1766159426166_40.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "John Smith", - "billing": 7, - "movie": "movi_1766159426166_7", - "actor": "peop_1766159426166_4", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_41.json b/collections/cast/cast_1766159426166_41.json deleted file mode 100644 index 0d71ed8..0000000 --- a/collections/cast/cast_1766159426166_41.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Sarah Connor", - "billing": 6, - "movie": "movi_1766159426166_9", - "actor": "peop_1766159426166_2", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_42.json b/collections/cast/cast_1766159426166_42.json deleted file mode 100644 index 56a48fc..0000000 --- a/collections/cast/cast_1766159426166_42.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Max Power", - "billing": 4, - "movie": "movi_1766159426166_9", - "actor": "peop_1766159426166_9", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_43.json b/collections/cast/cast_1766159426166_43.json deleted file mode 100644 index 75ceb8c..0000000 --- a/collections/cast/cast_1766159426166_43.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Elena Vance", - "billing": 4, - "movie": "movi_1766159426166_5", - "actor": "peop_1766159426166_2", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_44.json b/collections/cast/cast_1766159426166_44.json deleted file mode 100644 index b0740a6..0000000 --- a/collections/cast/cast_1766159426166_44.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Jake Morrison", - "billing": 4, - "movie": "movi_1766159426166_1", - "actor": "peop_1766159426166_8", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_45.json b/collections/cast/cast_1766159426166_45.json deleted file mode 100644 index 161eaaf..0000000 --- a/collections/cast/cast_1766159426166_45.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Luna Black", - "billing": 1, - "movie": "movi_1766159426166_16", - "actor": "peop_1766159426166_4", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_46.json b/collections/cast/cast_1766159426166_46.json deleted file mode 100644 index a1c57b4..0000000 --- a/collections/cast/cast_1766159426166_46.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Alex Stone", - "billing": 5, - "movie": "movi_1766159426166_9", - "actor": "peop_1766159426166_2", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_47.json b/collections/cast/cast_1766159426166_47.json deleted file mode 100644 index 8a9bea9..0000000 --- a/collections/cast/cast_1766159426166_47.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Maya Chen", - "billing": 5, - "movie": "movi_1766159426166_16", - "actor": "peop_1766159426166_4", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_48.json b/collections/cast/cast_1766159426166_48.json deleted file mode 100644 index d1a5fd7..0000000 --- a/collections/cast/cast_1766159426166_48.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Marcus Webb", - "billing": 8, - "movie": "movi_1766159426166_2", - "actor": "peop_1766159426166_5", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_49.json b/collections/cast/cast_1766159426166_49.json deleted file mode 100644 index 5e04058..0000000 --- a/collections/cast/cast_1766159426166_49.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Zoe Hart", - "billing": 6, - "movie": "movi_1766159426166_3", - "actor": "peop_1766159426166_8", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_5.json b/collections/cast/cast_1766159426166_5.json deleted file mode 100644 index d6b6590..0000000 --- a/collections/cast/cast_1766159426166_5.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Luna Black", - "billing": 10, - "movie": "movi_1766159426166_11", - "actor": "peop_1766159426166_6", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_50.json b/collections/cast/cast_1766159426166_50.json deleted file mode 100644 index 2bd181c..0000000 --- a/collections/cast/cast_1766159426166_50.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "John Smith", - "billing": 7, - "movie": "movi_1766159426166_7", - "actor": "peop_1766159426166_8", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_51.json b/collections/cast/cast_1766159426166_51.json deleted file mode 100644 index 0932617..0000000 --- a/collections/cast/cast_1766159426166_51.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Sarah Connor", - "billing": 1, - "movie": "movi_1766159426166_6", - "actor": "peop_1766159426166_4", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_52.json b/collections/cast/cast_1766159426166_52.json deleted file mode 100644 index ce2776b..0000000 --- a/collections/cast/cast_1766159426166_52.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Max Power", - "billing": 4, - "movie": "movi_1766159426166_10", - "actor": "peop_1766159426166_5", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_53.json b/collections/cast/cast_1766159426166_53.json deleted file mode 100644 index 940866f..0000000 --- a/collections/cast/cast_1766159426166_53.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Elena Vance", - "billing": 5, - "movie": "movi_1766159426166_19", - "actor": "peop_1766159426166_5", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_54.json b/collections/cast/cast_1766159426166_54.json deleted file mode 100644 index c8d0f86..0000000 --- a/collections/cast/cast_1766159426166_54.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Jake Morrison", - "billing": 8, - "movie": "movi_1766159426166_10", - "actor": "peop_1766159426166_5", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_55.json b/collections/cast/cast_1766159426166_55.json deleted file mode 100644 index aaeb1f9..0000000 --- a/collections/cast/cast_1766159426166_55.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Luna Black", - "billing": 3, - "movie": "movi_1766159426166_19", - "actor": "peop_1766159426166_7", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_56.json b/collections/cast/cast_1766159426166_56.json deleted file mode 100644 index 6ad48c6..0000000 --- a/collections/cast/cast_1766159426166_56.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Alex Stone", - "billing": 2, - "movie": "movi_1766159426166_14", - "actor": "peop_1766159426166_8", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_57.json b/collections/cast/cast_1766159426166_57.json deleted file mode 100644 index d2a6538..0000000 --- a/collections/cast/cast_1766159426166_57.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Maya Chen", - "billing": 6, - "movie": "movi_1766159426166_7", - "actor": "peop_1766159426166_2", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_58.json b/collections/cast/cast_1766159426166_58.json deleted file mode 100644 index 05250eb..0000000 --- a/collections/cast/cast_1766159426166_58.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Marcus Webb", - "billing": 9, - "movie": "movi_1766159426166_2", - "actor": "peop_1766159426166_1", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_59.json b/collections/cast/cast_1766159426166_59.json deleted file mode 100644 index 6f51d58..0000000 --- a/collections/cast/cast_1766159426166_59.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Zoe Hart", - "billing": 3, - "movie": "movi_1766159426166_8", - "actor": "peop_1766159426166_8", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_6.json b/collections/cast/cast_1766159426166_6.json deleted file mode 100644 index 270fa5e..0000000 --- a/collections/cast/cast_1766159426166_6.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Alex Stone", - "billing": 2, - "movie": "movi_1766159426166_10", - "actor": "peop_1766159426166_8", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_7.json b/collections/cast/cast_1766159426166_7.json deleted file mode 100644 index 425aa0b..0000000 --- a/collections/cast/cast_1766159426166_7.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Maya Chen", - "billing": 9, - "movie": "movi_1766159426166_15", - "actor": "peop_1766159426166_9", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_8.json b/collections/cast/cast_1766159426166_8.json deleted file mode 100644 index 1b4cce2..0000000 --- a/collections/cast/cast_1766159426166_8.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Marcus Webb", - "billing": 2, - "movie": "movi_1766159426166_1", - "actor": "peop_1766159426166_0", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/cast/cast_1766159426166_9.json b/collections/cast/cast_1766159426166_9.json deleted file mode 100644 index ef2f20a..0000000 --- a/collections/cast/cast_1766159426166_9.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "character": "Zoe Hart", - "billing": 9, - "movie": "movi_1766159426166_4", - "actor": "peop_1766159426166_6", - "created": "2025-12-19T15:50:29.042Z", - "updated": "2025-12-19T15:50:29.042Z" -} \ No newline at end of file diff --git a/collections/genres/.gitkeep b/collections/genres/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/genres/genr_1766159426166_0.json b/collections/genres/genr_1766159426166_0.json deleted file mode 100644 index f567ea4..0000000 --- a/collections/genres/genr_1766159426166_0.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "Action", - "slug": "action", - "description": "High-energy films with physical stunts", - "created": "2025-12-19T15:50:27.045Z", - "updated": "2025-12-19T15:50:27.045Z" -} \ No newline at end of file diff --git a/collections/genres/genr_1766159426166_1.json b/collections/genres/genr_1766159426166_1.json deleted file mode 100644 index 8e22515..0000000 --- a/collections/genres/genr_1766159426166_1.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "Comedy", - "slug": "comedy", - "description": "Humorous films designed to amuse", - "created": "2025-12-19T15:50:27.045Z", - "updated": "2025-12-19T15:50:27.045Z" -} \ No newline at end of file diff --git a/collections/movies/.gitkeep b/collections/movies/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/movies/movi_1766159426166_0.json b/collections/movies/movi_1766159426166_0.json deleted file mode 100644 index 0a4956d..0000000 --- a/collections/movies/movi_1766159426166_0.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "The Last Horizon", - "year": 2011, - "runtime": 125, - "plot": "Stillicidium tabgo coaegresco sono basium subnecto timor. Amplus solutio cultura defungo corporis omnis claudeo. Debeo vomer super callide quasi auxilium.\nCurvo termes ter adhuc decor adulescens cibus ratione spero utor. Aeneus confugo abundans tamisium unde spiculum valens nisi accusamus approbo. Tero ago deficio cultura aveho demoror.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 9.6, - "budget": "$50M", - "director": "peop_1766159426166_5", - "genres": [ - "genr_1766159426166_0", - "genr_1766159426166_1" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_1.json b/collections/movies/movi_1766159426166_1.json deleted file mode 100644 index 8940999..0000000 --- a/collections/movies/movi_1766159426166_1.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "title": "Midnight Echo", - "year": 1986, - "runtime": 179, - "plot": "Arbustum sunt terminatio vicinus. Crur argumentum stillicidium conatus incidunt sollicito. Causa bestia cognatus amet tremo vobis depereo repellat venustas.\nSuppellex ambitus attollo cohibeo similique aduro. Sollers texo facilis ascisco totus decor. Textus conatus sumo trans coma contabesco.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 7, - "budget": "$200M+", - "director": "peop_1766159426166_5", - "genres": [ - "genr_1766159426166_0" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_10.json b/collections/movies/movi_1766159426166_10.json deleted file mode 100644 index 65eef41..0000000 --- a/collections/movies/movi_1766159426166_10.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "Crimson Tide", - "year": 1972, - "runtime": 130, - "plot": "Sopor commodo corroboro tunc utor repellendus peior varietas verbera. Mollitia certus quidem quo coaegresco. Taceo atrocitas vulnus tamdiu ter antea.\nBlanditiis subnecto usus architecto natus argentum ademptio demoror. Suscipit utpote texo assentator tondeo cunae tracto appono depopulo ter. Calculus vitiosus crur tyrannus deinde ullus tamen spoliatio.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 2.5, - "budget": "$50M", - "director": "peop_1766159426166_9", - "genres": [ - "genr_1766159426166_0", - "genr_1766159426166_1" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_11.json b/collections/movies/movi_1766159426166_11.json deleted file mode 100644 index 9d33e5d..0000000 --- a/collections/movies/movi_1766159426166_11.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "The Void Walker", - "year": 2000, - "runtime": 89, - "plot": "Tactus vos color cohors explicabo apto aveho sordeo. Territo ab venio. Considero tolero labore rem quidem tutis enim coadunatio deleo.\nTertius virga desino labore altus compello astrum defaeco ancilla victus. Aggredior adduco veniam corpus commodo vos. Vicissitudo amitto vacuus appello aegrus aegre cibus eius tempora curiositas.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 5, - "budget": "$5M", - "director": "peop_1766159426166_4", - "genres": [ - "genr_1766159426166_0", - "genr_1766159426166_1" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_12.json b/collections/movies/movi_1766159426166_12.json deleted file mode 100644 index 5a3cad0..0000000 --- a/collections/movies/movi_1766159426166_12.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "Eternal Flame", - "year": 1971, - "runtime": 156, - "plot": "Tamquam nisi cribro tener ago cura fugiat vel thymum sordeo. Qui subnecto turba. Temperantia minima audio torrens cotidie spiritus delibero careo.\nCenaculum conturbo utilis dolore. Thermae auxilium eos ustulo. Est alo adinventitias vir terebro appositus tepesco audeo patruus non.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 3.8, - "budget": "$100M", - "director": "peop_1766159426166_0", - "genres": [ - "genr_1766159426166_1", - "genr_1766159426166_0" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_13.json b/collections/movies/movi_1766159426166_13.json deleted file mode 100644 index eb70917..0000000 --- a/collections/movies/movi_1766159426166_13.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "title": "The Silver Key", - "year": 1972, - "runtime": 107, - "plot": "Desipio magnam careo sperno cruentus corpus corona crastinus bardus atavus. Perspiciatis textus accusator commodi nulla curatio vir spectaculum. Temeritas amplexus adipisci thorax vulgaris abstergo voluptas velut assentator.\nPorro creator tergo absens ager tabella cresco. Debeo comis villa cenaculum dens causa. Odio arx provident arbitro.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 9.8, - "budget": "$10M", - "director": "peop_1766159426166_6", - "genres": [ - "genr_1766159426166_1" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_14.json b/collections/movies/movi_1766159426166_14.json deleted file mode 100644 index e857bd7..0000000 --- a/collections/movies/movi_1766159426166_14.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "Digital Frontier", - "year": 1996, - "runtime": 83, - "plot": "Amplitudo absque carus cui administratio derideo. Usus supplanto super accusator. Clamo crux antea capio antea adamo amet ullam.\nAnnus aestus cattus averto aer quibusdam iusto pecto. Dicta demo ver. Urbanus temptatio denuo adhuc speculum cimentarius vitae perspiciatis copiose.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 4.5, - "budget": "$5M", - "director": "peop_1766159426166_8", - "genres": [ - "genr_1766159426166_1", - "genr_1766159426166_0" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_15.json b/collections/movies/movi_1766159426166_15.json deleted file mode 100644 index edbe298..0000000 --- a/collections/movies/movi_1766159426166_15.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "The Glass Tower", - "year": 1991, - "runtime": 121, - "plot": "Thema asporto toties desino adflicto somniculosus comminor aut sint. Tibi utor tabgo tracto abeo campana conor. Succedo sopor illo thymum veritas vitium odit ars.\nAbsorbeo victus tenus uberrime somnus pariatur commodi. Tres porro vitiosus paulatim denego tabgo peccatus nam tepesco. Spectaculum accusamus absque depulso vespillo tumultus cohibeo antiquus volup vorax.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 4.5, - "budget": "$100M", - "director": "peop_1766159426166_4", - "genres": [ - "genr_1766159426166_1", - "genr_1766159426166_0" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_16.json b/collections/movies/movi_1766159426166_16.json deleted file mode 100644 index e654dec..0000000 --- a/collections/movies/movi_1766159426166_16.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "Dark Waters", - "year": 2022, - "runtime": 154, - "plot": "Tardus chirographum campana constans vorago aestus sint esse. Vulgaris quae vero stultus degusto tutis aut caelestis adipiscor atavus. Tribuo utrimque supra taceo depereo minus corporis sollicito ambitus veritatis.\nUtor terga tepesco commemoro thesaurus volva suffragium voluptatem calcar. Truculenter terror cerno ascisco delectatio cibo catena cupiditas. Comptus vinculum abeo civis suffoco talus arguo temperantia.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 3.1, - "budget": "$50M", - "director": "peop_1766159426166_1", - "genres": [ - "genr_1766159426166_1", - "genr_1766159426166_0" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_17.json b/collections/movies/movi_1766159426166_17.json deleted file mode 100644 index 1ea6ebb..0000000 --- a/collections/movies/movi_1766159426166_17.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "title": "The Phoenix Rising", - "year": 2007, - "runtime": 119, - "plot": "Ademptio vulnus perspiciatis iusto abstergo confugo toties velum praesentium. Confugo abstergo solum aufero ullam attollo ipsam verbera error. Thymum vulgaris autem solium vir tantillus trepide admiratio abundans.\nVictoria ab adfero aspicio appello virgo tot vitae advenio. Agnitio terra perferendis vado vulpes addo. Accendo similique callide confugo nemo commemoro talis speciosus sumo.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 6.5, - "budget": "$50M", - "director": "peop_1766159426166_6", - "genres": [ - "genr_1766159426166_0" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_18.json b/collections/movies/movi_1766159426166_18.json deleted file mode 100644 index 601738d..0000000 --- a/collections/movies/movi_1766159426166_18.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "Quantum Leap", - "year": 2024, - "runtime": 106, - "plot": "Aureus exercitationem videlicet eaque adversus clementia omnis aegrotatio itaque ulciscor. Bonus venustas denuo defluo. Conor est suus numquam tribuo armarium arcus.\nUndique adhuc nulla commodi maiores aro. Turpis acquiro cui verus occaecati ultio ipsum. Teneo caelestis vulnero debitis deserunt abutor adficio.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 5.6, - "budget": "$10M", - "director": "peop_1766159426166_4", - "genres": [ - "genr_1766159426166_0", - "genr_1766159426166_1" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_19.json b/collections/movies/movi_1766159426166_19.json deleted file mode 100644 index f0c7ff2..0000000 --- a/collections/movies/movi_1766159426166_19.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "The Last Stand", - "year": 1979, - "runtime": 178, - "plot": "Theatrum acerbitas ager eius carbo voluntarius necessitatibus. Amita vero turpis utroque coruscus ipsum accusator absque. Catena alo deporto ante crur ago cras deserunt sophismata cupressus.\nAedificium derelinquo in desino excepturi hic cotidie defluo spectaculum bonus. Vulgaris condico repellat alienus tergo assentator adipiscor demitto. Animadverto tenax umquam.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 7.1, - "budget": "$150M", - "director": "peop_1766159426166_4", - "genres": [ - "genr_1766159426166_1", - "genr_1766159426166_0" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_2.json b/collections/movies/movi_1766159426166_2.json deleted file mode 100644 index 3defcb1..0000000 --- a/collections/movies/movi_1766159426166_2.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "Neon Dreams", - "year": 1997, - "runtime": 172, - "plot": "Uxor cibo sopor. Officia valetudo cauda. Succurro accedo carbo articulus surgo vitiosus terebro eum adstringo turba.\nTotam surgo aggredior aeneus subvenio thalassinus surgo derelinquo. Caput utroque ventus odit tertius tutis corpus aperio currus. Concido admiratio vulticulus angelus volutabrum error bardus centum pecto.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 2.7, - "budget": "$200M+", - "director": "peop_1766159426166_7", - "genres": [ - "genr_1766159426166_0", - "genr_1766159426166_1" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_3.json b/collections/movies/movi_1766159426166_3.json deleted file mode 100644 index fb66980..0000000 --- a/collections/movies/movi_1766159426166_3.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "title": "Silent Thunder", - "year": 2016, - "runtime": 141, - "plot": "Curo conscendo subseco suasoria cuius. Vespillo circumvenio adhaero expedita nostrum caelestis tam. Coerceo acerbitas cognomen angulus adsuesco defungo bos.\nThesis tabula crastinus. Abscido confido surculus subito sufficio. Viridis tubineus cado appositus aestus creber truculenter abduco.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 1.4, - "budget": "$25M", - "director": "peop_1766159426166_6", - "genres": [ - "genr_1766159426166_1" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_4.json b/collections/movies/movi_1766159426166_4.json deleted file mode 100644 index e8e1562..0000000 --- a/collections/movies/movi_1766159426166_4.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "Beyond the Stars", - "year": 1983, - "runtime": 131, - "plot": "Ter vulticulus curriculum solium aduro pauper validus articulus cotidie. Abstergo argumentum degusto curso decretum animi corroboro maxime. Adicio aer vigilo vado coadunatio crur.\nBestia audax blandior valetudo concedo molestiae clementia. Comptus vicissitudo conspergo talio corroboro constans congregatio crustulum caveo clementia. Solus conor sustineo animadverto quod alii depopulo curiositas vomica.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 2.6, - "budget": "$5M", - "director": "peop_1766159426166_5", - "genres": [ - "genr_1766159426166_1", - "genr_1766159426166_0" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_5.json b/collections/movies/movi_1766159426166_5.json deleted file mode 100644 index 8f2e35a..0000000 --- a/collections/movies/movi_1766159426166_5.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "The Forgotten Path", - "year": 1989, - "runtime": 129, - "plot": "Coniuratio thorax celebrer vociferor voluntarius solvo ara. Velit triduana abeo. Tabesco curvo vulgaris tolero desino vulticulus.\nSpiculum vere turbo tui colo. Veritas stillicidium charisma tertius usque viscus celo tutis deleniti vigilo. Usitas odio alius.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 3, - "budget": "$25M", - "director": "peop_1766159426166_2", - "genres": [ - "genr_1766159426166_0", - "genr_1766159426166_1" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_6.json b/collections/movies/movi_1766159426166_6.json deleted file mode 100644 index 7d97137..0000000 --- a/collections/movies/movi_1766159426166_6.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "Shadow Protocol", - "year": 1974, - "runtime": 142, - "plot": "In sint tum brevis repudiandae spoliatio. Conduco cruentus turba totam tyrannus. Vulgivagus cruciamentum contigo demonstro dolores.\nDemens usitas vitiosus praesentium tristis casso carpo verto antea aperio. Auxilium careo ullus benevolentia casso pecus viduo termes tepesco subnecto. Caritas catena amo sumo tui succedo dicta abutor adeo.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 6.4, - "budget": "$200M+", - "director": "peop_1766159426166_4", - "genres": [ - "genr_1766159426166_1", - "genr_1766159426166_0" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_7.json b/collections/movies/movi_1766159426166_7.json deleted file mode 100644 index 08bd9f8..0000000 --- a/collections/movies/movi_1766159426166_7.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "Crystal Dawn", - "year": 1995, - "runtime": 127, - "plot": "Depulso defungo quod audacia assentator ducimus decumbo. Qui debitis venio tracto tamisium. Vicissitudo tempore demoror tenetur aperiam taceo statua uberrime.\nStudio carpo cito dolorem subvenio atqui quidem. Cogo verus peccatus sed ab audio voluntarius varius ara. Atrocitas addo undique valens tolero curso pecco curatio.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 5.1, - "budget": "$50M", - "director": "peop_1766159426166_7", - "genres": [ - "genr_1766159426166_0", - "genr_1766159426166_1" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_8.json b/collections/movies/movi_1766159426166_8.json deleted file mode 100644 index a0e98c2..0000000 --- a/collections/movies/movi_1766159426166_8.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "The Iron Gate", - "year": 1970, - "runtime": 172, - "plot": "Delectus animadverto speculum velit blandior ubi velit. Blanditiis acsi defendo. Altus ceno crepusculum vorax barba varius traho toties.\nStella iusto valetudo. Aequus tenuis calcar fugiat taedium asporto abscido. Sortitus iusto candidus.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 4.1, - "budget": "$10M", - "director": "peop_1766159426166_2", - "genres": [ - "genr_1766159426166_0", - "genr_1766159426166_1" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/movies/movi_1766159426166_9.json b/collections/movies/movi_1766159426166_9.json deleted file mode 100644 index 0d84336..0000000 --- a/collections/movies/movi_1766159426166_9.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "title": "Whispers in the Wind", - "year": 2023, - "runtime": 88, - "plot": "Temporibus creptio adicio vilis comparo campana utique verecundia viriliter acsi. Vulgo cibus tremo assumenda alius strenuus amicitia claro tyrannus depono. Sulum natus creta vulnero cuius utilis.\nVerto earum adulatio. Tam nobis attonbitus ago cavus eum conicio tandem. Alveus tot vulgaris casus.", - "poster": "https://placehold.co/300x450/333/fff?text=Poster", - "rating": 8.2, - "budget": "$10M", - "director": "peop_1766159426166_4", - "genres": [ - "genr_1766159426166_1", - "genr_1766159426166_0" - ], - "created": "2025-12-19T15:50:28.303Z", - "updated": "2025-12-19T15:50:28.303Z" -} \ No newline at end of file diff --git a/collections/people/.gitkeep b/collections/people/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/people/peop_1766159426166_0.json b/collections/people/peop_1766159426166_0.json deleted file mode 100644 index a821ba3..0000000 --- a/collections/people/peop_1766159426166_0.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Lynn Yost", - "bio": "Sequi derideo usus degero stipes neque totam. Universe stipes appono dolores bos. Aegrus coniuratio vox.", - "birthDate": "1962-02-01", - "photo": "https://placehold.co/200x200/333/fff?text=Photo", - "knownFor": "Producing", - "created": "2025-12-19T15:50:27.613Z", - "updated": "2025-12-19T15:50:27.613Z" -} \ No newline at end of file diff --git a/collections/people/peop_1766159426166_1.json b/collections/people/peop_1766159426166_1.json deleted file mode 100644 index 2eecad5..0000000 --- a/collections/people/peop_1766159426166_1.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Preston Cormier", - "bio": "Paulatim repellat sum tandem quos aperiam curriculum asporto succurro iure. Beneficium bestia carpo vereor vesper. Sum ulciscor bis basium consuasor causa.", - "birthDate": "1999-10-18", - "photo": "https://placehold.co/200x200/333/fff?text=Photo", - "knownFor": "Producing", - "created": "2025-12-19T15:50:27.613Z", - "updated": "2025-12-19T15:50:27.613Z" -} \ No newline at end of file diff --git a/collections/people/peop_1766159426166_2.json b/collections/people/peop_1766159426166_2.json deleted file mode 100644 index e65f79a..0000000 --- a/collections/people/peop_1766159426166_2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Maryann Bode", - "bio": "Correptius bellum vester damnatio. Cuppedia tenuis supra dedecor caelestis uredo trucido templum. Calcar vinum universe sublime nesciunt deleo.", - "birthDate": "1981-04-15", - "photo": "https://placehold.co/200x200/333/fff?text=Photo", - "knownFor": "Acting", - "created": "2025-12-19T15:50:27.613Z", - "updated": "2025-12-19T15:50:27.613Z" -} \ No newline at end of file diff --git a/collections/people/peop_1766159426166_3.json b/collections/people/peop_1766159426166_3.json deleted file mode 100644 index d373cd5..0000000 --- a/collections/people/peop_1766159426166_3.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Dr. Kyle Roob", - "bio": "Sumo sumptus vix video. Sum umerus aegrotatio corrupti umquam casso. Dolores modi in vomer creator tertius defetiscor exercitationem velut.", - "birthDate": "1951-11-03", - "photo": "https://placehold.co/200x200/333/fff?text=Photo", - "knownFor": "Writing", - "created": "2025-12-19T15:50:27.613Z", - "updated": "2025-12-19T15:50:27.613Z" -} \ No newline at end of file diff --git a/collections/people/peop_1766159426166_4.json b/collections/people/peop_1766159426166_4.json deleted file mode 100644 index b0eb28f..0000000 --- a/collections/people/peop_1766159426166_4.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Tomas Reynolds", - "bio": "Theologus pectus atque ullus cubicularis denique stips vos nihil. Molestiae delinquo voluptates appello repellendus. Amplitudo facere cruentus tabella sufficio cognatus.", - "birthDate": "1989-09-04", - "photo": "https://placehold.co/200x200/333/fff?text=Photo", - "knownFor": "Acting", - "created": "2025-12-19T15:50:27.613Z", - "updated": "2025-12-19T15:50:27.613Z" -} \ No newline at end of file diff --git a/collections/people/peop_1766159426166_5.json b/collections/people/peop_1766159426166_5.json deleted file mode 100644 index 6193ce5..0000000 --- a/collections/people/peop_1766159426166_5.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Mr. Norman Gutkowski", - "bio": "Synagoga sol cado supra quod. Demo aeger aduro attonbitus delectatio callide decens. Amplus aiunt circumvenio comminor deludo.", - "birthDate": "1973-12-13", - "photo": "https://placehold.co/200x200/333/fff?text=Photo", - "knownFor": "Acting", - "created": "2025-12-19T15:50:27.613Z", - "updated": "2025-12-19T15:50:27.613Z" -} \ No newline at end of file diff --git a/collections/people/peop_1766159426166_6.json b/collections/people/peop_1766159426166_6.json deleted file mode 100644 index 759ff5f..0000000 --- a/collections/people/peop_1766159426166_6.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Earl Kovacek", - "bio": "Tergeo advoco temperantia cogo cuppedia aperio tepesco. Sit conservo denuncio architecto thorax uter canto conqueror. Terreo ex tergeo currus tollo auctus.", - "birthDate": "1991-05-18", - "photo": "https://placehold.co/200x200/333/fff?text=Photo", - "knownFor": "Acting", - "created": "2025-12-19T15:50:27.613Z", - "updated": "2025-12-19T15:50:27.613Z" -} \ No newline at end of file diff --git a/collections/people/peop_1766159426166_7.json b/collections/people/peop_1766159426166_7.json deleted file mode 100644 index 96ee7f2..0000000 --- a/collections/people/peop_1766159426166_7.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Viola Satterfield", - "bio": "Surculus depono quae thema amitto laborum itaque tabella tabgo tardus. Cinis vergo deficio. Autem auctor voluptate vitium volup tero velociter tabesco.", - "birthDate": "1951-12-17", - "photo": "https://placehold.co/200x200/333/fff?text=Photo", - "knownFor": "Writing", - "created": "2025-12-19T15:50:27.613Z", - "updated": "2025-12-19T15:50:27.613Z" -} \ No newline at end of file diff --git a/collections/people/peop_1766159426166_8.json b/collections/people/peop_1766159426166_8.json deleted file mode 100644 index 500b6ea..0000000 --- a/collections/people/peop_1766159426166_8.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Julian Johnston", - "bio": "Comburo stillicidium arbor tepidus comis venustas. Sordeo excepturi maxime arguo aurum amicitia iure. Communis speciosus color adflicto auctus damnatio.", - "birthDate": "1954-12-09", - "photo": "https://placehold.co/200x200/333/fff?text=Photo", - "knownFor": "Directing", - "created": "2025-12-19T15:50:27.613Z", - "updated": "2025-12-19T15:50:27.613Z" -} \ No newline at end of file diff --git a/collections/people/peop_1766159426166_9.json b/collections/people/peop_1766159426166_9.json deleted file mode 100644 index b0532d0..0000000 --- a/collections/people/peop_1766159426166_9.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Katrina Wolff", - "bio": "Venustas apto quam arguo solio necessitatibus sustineo. Corroboro illo suggero stultus asporto crebro talis approbo basium. Occaecati vero veritatis bardus.", - "birthDate": "1988-08-05", - "photo": "https://placehold.co/200x200/333/fff?text=Photo", - "knownFor": "Writing", - "created": "2025-12-19T15:50:27.613Z", - "updated": "2025-12-19T15:50:27.613Z" -} \ No newline at end of file diff --git a/collections/reviews/.gitkeep b/collections/reviews/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/collections/reviews/revi_1766159426166_0.json b/collections/reviews/revi_1766159426166_0.json deleted file mode 100644 index f156b42..0000000 --- a/collections/reviews/revi_1766159426166_0.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 2.2, - "content": "Versus capto voluntarius ventito. Sub aequitas custodia tamquam. Sumptus vulgus comitatus tepesco ultio.", - "date": "2025-06-01T08:57:09.450Z", - "movie": "movi_1766159426166_7", - "author": "peop_1766159426166_6", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_1.json b/collections/reviews/revi_1766159426166_1.json deleted file mode 100644 index 1a13b44..0000000 --- a/collections/reviews/revi_1766159426166_1.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 6.4, - "content": "Desidero veritatis vigilo deripio maiores. Vestrum contego decumbo. Vulgivagus annus tener delinquo commemoro desolo uberrime apto cariosus.", - "date": "2025-07-26T18:21:55.421Z", - "movie": "movi_1766159426166_18", - "author": "peop_1766159426166_3", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_10.json b/collections/reviews/revi_1766159426166_10.json deleted file mode 100644 index a3ebfd8..0000000 --- a/collections/reviews/revi_1766159426166_10.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 5.5, - "content": "Accedo articulus torqueo maiores tripudio officia certus suffragium arbitro. Acies blanditiis coadunatio sufficio valens adfectus vicinus claustrum. Cuius timidus aegrotatio trucido aduro.\nVir tergum adsidue cupio decet caput tutamen. Cura comes tepidus anser aptus color. Credo bibo bibo.", - "date": "2025-08-04T03:20:47.458Z", - "movie": "movi_1766159426166_1", - "author": "peop_1766159426166_3", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_11.json b/collections/reviews/revi_1766159426166_11.json deleted file mode 100644 index f1457bd..0000000 --- a/collections/reviews/revi_1766159426166_11.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 6.8, - "content": "Assentator territo stipes uberrime sonitus bonus maiores curto ipsa truculenter. Nesciunt perspiciatis cibus advenio subnecto conforto spiritus correptius demitto non. Carpo tandem molestias auctor torrens aveho.\nTres sopor texo concido cunabula spes theca vomica trucido. Caste canis audax vita. Nisi urbanus adduco sum cognomen tabgo cilicium ad.\nTubineus vallum abduco vero tepidus expedita carmen crudelis. Barba corrupti argumentum decet villa inventore toties suadeo sunt contra. Optio amoveo conforto ipsum ater cibo turbo temporibus valetudo.", - "date": "2025-11-16T21:07:16.808Z", - "movie": "movi_1766159426166_0", - "author": "peop_1766159426166_9", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_12.json b/collections/reviews/revi_1766159426166_12.json deleted file mode 100644 index ea6d0e8..0000000 --- a/collections/reviews/revi_1766159426166_12.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 9.1, - "content": "Pauper tepidus ventosus avaritia uberrime tener torrens. Tyrannus sponte tantum coniuratio pectus delinquo debilito. Voveo voluptates spero neque degusto.\nVilis carpo suffoco. Volubilis virga ascisco stultus vere canonicus. Teres esse adimpleo tot cui trado summa sufficio.\nSoleo conservo valde cura aedificium sulum trepide basium strues caput. Arx beatae caterva aro supra testimonium. Sordeo dolorem vado creber recusandae usque ciminatio depereo atrocitas.", - "date": "2025-05-26T04:26:57.361Z", - "movie": "movi_1766159426166_18", - "author": "peop_1766159426166_2", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_13.json b/collections/reviews/revi_1766159426166_13.json deleted file mode 100644 index 56a3289..0000000 --- a/collections/reviews/revi_1766159426166_13.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 2.6, - "content": "Tametsi appello suscipio ocer verecundia comes sufficio vestigium. Sublime adflicto cerno bos vestigium vobis deporto. Substantia ceno somniculosus peior delectatio spes doloribus antea.\nUtor cibo ancilla tempus ambulo terebro coaegresco pecto abscido absum. Amplexus dens tot voveo doloremque abundans impedit aequus. Aliquid votum voluptatum cito maxime hic.\nVictus absens voluptas xiphias curis candidus vigor. Acerbitas sulum textus molestiae incidunt. Comminor adeo decretum aeger aestus conduco temptatio.", - "date": "2025-12-05T13:13:21.454Z", - "movie": "movi_1766159426166_19", - "author": "peop_1766159426166_4", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_14.json b/collections/reviews/revi_1766159426166_14.json deleted file mode 100644 index 97169e6..0000000 --- a/collections/reviews/revi_1766159426166_14.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 1, - "content": "Deludo adulescens tactus demoror stipes cubo claudeo temptatio. Illum videlicet adeo curso caveo. Demens vitium similique nobis vado.\nIncidunt accusamus thema sapiente animus constans. Angulus aperte rerum labore tergeo una ipsa ex. Baiulus tenetur molestias officia argumentum averto vulgivagus iure.", - "date": "2025-02-13T18:00:33.044Z", - "movie": "movi_1766159426166_16", - "author": "peop_1766159426166_6", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_15.json b/collections/reviews/revi_1766159426166_15.json deleted file mode 100644 index e5e5873..0000000 --- a/collections/reviews/revi_1766159426166_15.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 2, - "content": "Vos avaritia cupiditas. Carbo enim amet incidunt carus curiositas paens aeneus. Casus cariosus sordeo tempora id atrox.", - "date": "2025-05-15T13:05:59.860Z", - "movie": "movi_1766159426166_7", - "author": "peop_1766159426166_0", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_16.json b/collections/reviews/revi_1766159426166_16.json deleted file mode 100644 index ce35efa..0000000 --- a/collections/reviews/revi_1766159426166_16.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 9.5, - "content": "Vaco ancilla tyrannus nihil assentator succedo decimus. Tristis tremo socius. Vinitor pel crux titulus reiciendis textor alioqui abeo.\nColo stultus strenuus id tumultus. Timor strenuus crinis abduco uxor ut cresco cenaculum caecus. Canonicus amaritudo deleo alius absens.\nTempus sublime cado. Voluptate appono laborum debeo tametsi cohibeo carus vir. Angelus suasoria deripio texo.", - "date": "2025-08-19T02:43:05.491Z", - "movie": "movi_1766159426166_2", - "author": "peop_1766159426166_4", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_17.json b/collections/reviews/revi_1766159426166_17.json deleted file mode 100644 index cdd5095..0000000 --- a/collections/reviews/revi_1766159426166_17.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 5.5, - "content": "Cupressus depopulo cohors aeneus. Uberrime considero venia carus caecus patrocinor audacia ceno adficio ventito. Cito aggredior conservo appono.\nQuibusdam aspicio cinis volubilis aer summa quisquam sunt. Vestigium consectetur delibero demoror soleo abundans aliqua demergo accusantium. Laboriosam depopulo patrocinor sursum.", - "date": "2025-10-19T02:33:39.483Z", - "movie": "movi_1766159426166_2", - "author": "peop_1766159426166_8", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_18.json b/collections/reviews/revi_1766159426166_18.json deleted file mode 100644 index 1a55fe4..0000000 --- a/collections/reviews/revi_1766159426166_18.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 3, - "content": "Ipsum modi maiores adfectus commodi laborum cavus vilicus earum caelum. Numquam arca templum clarus sum somniculosus thema debeo. Venustas inventore crepusculum ulterius arbitro.\nStella conforto turba decet ustulo cubo aliquid fugiat decerno victoria. Aeternus cras aduro barba vulariter vorax. Vaco adamo audax ceno claro sufficio error comminor verto.", - "date": "2025-12-19T01:06:29.245Z", - "movie": "movi_1766159426166_12", - "author": "peop_1766159426166_0", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_19.json b/collections/reviews/revi_1766159426166_19.json deleted file mode 100644 index e36eb4f..0000000 --- a/collections/reviews/revi_1766159426166_19.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 5.4, - "content": "Canis capitulus esse thesis sulum universe damnatio vesica. Conservo bonus asperiores constans. Tamen defendo candidus accendo suffragium valetudo quam turpis.\nDignissimos crur vivo dapifer. Summisse pectus carmen verbum. Desparatus attonbitus contigo.\nTero terror vulgivagus considero sponte argumentum cruciamentum. Dapifer calculus auditor carus veritas bibo demum. Voro appono vulgaris.", - "date": "2025-09-20T13:44:02.513Z", - "movie": "movi_1766159426166_3", - "author": "peop_1766159426166_3", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_2.json b/collections/reviews/revi_1766159426166_2.json deleted file mode 100644 index b0d209b..0000000 --- a/collections/reviews/revi_1766159426166_2.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 4.8, - "content": "Aegrus adinventitias antiquus victoria cervus cubicularis peior. Cribro damno apostolus. Tergum aduro temporibus cubicularis aggero.\nUtroque cunae cedo solutio animus cattus calculus theca congregatio. In stabilis tersus solus. Circumvenio statim articulus succedo urbs summopere.\nUsque tabesco aeger tametsi asperiores quis. Video aqua decet quos. Cogo utor valens balbus.", - "date": "2025-01-20T09:38:48.534Z", - "movie": "movi_1766159426166_7", - "author": "peop_1766159426166_1", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_20.json b/collections/reviews/revi_1766159426166_20.json deleted file mode 100644 index 8fa9c8c..0000000 --- a/collections/reviews/revi_1766159426166_20.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 2.4, - "content": "Virtus tracto coerceo vitae voluptas accendo. Admoneo nulla tersus audentia eius repellat distinctio. Ventito vindico repellat tergum.\nCalco turpis tollo uxor ambitus subito comburo. Earum depopulo comminor decerno asporto. Vociferor delego volo.\nVidelicet communis asperiores soluta tubineus adsuesco. Coruscus balbus cribro peccatus. Condico conscendo conscendo ventus sonitus sto usus ambitus ut aggero.", - "date": "2025-10-13T03:44:58.765Z", - "movie": "movi_1766159426166_14", - "author": "peop_1766159426166_1", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_21.json b/collections/reviews/revi_1766159426166_21.json deleted file mode 100644 index 15463ad..0000000 --- a/collections/reviews/revi_1766159426166_21.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 9.6, - "content": "Earum conduco confugo. Tandem defessus aspicio conduco auctor velut. Cetera enim currus.\nUter adversus aedificium vindico. Accusator cibus aduro vinco. Clementia vulpes deserunt itaque totam suppellex angelus convoco.", - "date": "2025-09-29T11:11:37.211Z", - "movie": "movi_1766159426166_5", - "author": "peop_1766159426166_7", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_22.json b/collections/reviews/revi_1766159426166_22.json deleted file mode 100644 index 3024046..0000000 --- a/collections/reviews/revi_1766159426166_22.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 2.1, - "content": "Textilis officia dedecor ducimus tricesimus certe comminor. Ventosus ex desidero deripio tollo damnatio tamen patrocinor. Sublime depono adstringo vae cornu accusamus arbustum adflicto inflammatio.\nCunctatio arto deludo deorsum adflicto. Chirographum suggero cenaculum. Vorago conservo cupressus bellicus cenaculum congregatio tredecim pauper.", - "date": "2025-08-17T01:44:09.836Z", - "movie": "movi_1766159426166_11", - "author": "peop_1766159426166_3", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_23.json b/collections/reviews/revi_1766159426166_23.json deleted file mode 100644 index 4036515..0000000 --- a/collections/reviews/revi_1766159426166_23.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 6.1, - "content": "Cado deorsum aestivus laudantium clibanus voco depopulo tabgo. Avarus alo aurum canto aperte timidus auxilium tabernus desidero. Urbs vindico annus magni calcar.\nNam sufficio universe. Adaugeo suffoco curto. Ab placeat condico nisi ater rerum sponte conatus uberrime ulterius.\nCribro abstergo vivo adinventitias deinde cupressus labore doloribus creo tracto. Adhaero architecto undique communis minima spes cupiditas. Toties valde urbanus.", - "date": "2025-01-22T13:13:38.366Z", - "movie": "movi_1766159426166_0", - "author": "peop_1766159426166_3", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_24.json b/collections/reviews/revi_1766159426166_24.json deleted file mode 100644 index 73bfad5..0000000 --- a/collections/reviews/revi_1766159426166_24.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 8.9, - "content": "Cetera usus maxime casso usus comedo. Culpo volup solio apparatus tempora centum. Corrigo demens asperiores.\nBrevis avarus ab. Adnuo dolorum clementia carcer amoveo spargo tergo. Copiose accusantium ars aeger uredo cibus conduco.", - "date": "2025-08-06T16:11:30.405Z", - "movie": "movi_1766159426166_1", - "author": "peop_1766159426166_0", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_25.json b/collections/reviews/revi_1766159426166_25.json deleted file mode 100644 index dcc4916..0000000 --- a/collections/reviews/revi_1766159426166_25.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 9.4, - "content": "Ipsum volubilis ait utrimque impedit totam. Thymbra carus cavus temporibus tibi acsi. Contigo decerno denique curtus aggredior apparatus defaeco adipiscor.\nArs teneo compono comminor varietas facere vere sufficio adulatio. Auctor conculco cupiditas vacuus appello triumphus quasi subseco ascisco. Occaecati comedo torqueo testimonium cenaculum vetus curso saepe suffoco.", - "date": "2025-10-20T09:11:25.704Z", - "movie": "movi_1766159426166_11", - "author": "peop_1766159426166_4", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_26.json b/collections/reviews/revi_1766159426166_26.json deleted file mode 100644 index 1badc3d..0000000 --- a/collections/reviews/revi_1766159426166_26.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 2.3, - "content": "Atrocitas cogito alveus vulgo quo aranea speciosus defungo. Eius subiungo uxor advoco ab compono confero. Autus doloribus vitae benevolentia appositus tibi cuius id.\nRecusandae comedo suasoria ratione viduo voluptas. Repudiandae admiratio voluptas. Porro terga tot conor sequi tolero defaeco adstringo tristis.\nDecerno crastinus congregatio tabgo statim. Distinctio ait vehemens decerno uredo alii. Tabesco ter decor deputo cresco cunctatio usitas certe.", - "date": "2025-05-19T20:05:50.271Z", - "movie": "movi_1766159426166_0", - "author": "peop_1766159426166_7", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_27.json b/collections/reviews/revi_1766159426166_27.json deleted file mode 100644 index cc47f03..0000000 --- a/collections/reviews/revi_1766159426166_27.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 1.5, - "content": "Volva ultra comis subvenio vel colo. Aptus crebro alias nobis argentum. Solitudo absens creo officiis conduco.\nAsperiores thesaurus quod excepturi aestivus benigne alii. Capio audacia adeptio sunt antea sol capillus accedo. Subseco surculus sursum eaque spiculum voluptas corporis.", - "date": "2025-01-10T11:22:16.251Z", - "movie": "movi_1766159426166_17", - "author": "peop_1766159426166_5", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_28.json b/collections/reviews/revi_1766159426166_28.json deleted file mode 100644 index c51a399..0000000 --- a/collections/reviews/revi_1766159426166_28.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 7.6, - "content": "Viscus thesis aedificium ultio et amitto. Quasi statim architecto. Odit valde atque articulus cognomen eos.\nVere vinculum carus teres adfectus. Campana sum deleniti vorago contego decimus. Bardus thesaurus censura absconditus antea tumultus nesciunt adhaero.", - "date": "2025-09-22T20:06:08.522Z", - "movie": "movi_1766159426166_18", - "author": "peop_1766159426166_4", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_29.json b/collections/reviews/revi_1766159426166_29.json deleted file mode 100644 index 5d24441..0000000 --- a/collections/reviews/revi_1766159426166_29.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 4.2, - "content": "Deprecator color aedificium aqua odio ait arceo. Centum suasoria adstringo depopulo aufero tutis accendo angelus comparo. Delibero turpis ad administratio coruscus truculenter credo timidus caelum benevolentia.", - "date": "2025-01-01T19:01:24.818Z", - "movie": "movi_1766159426166_16", - "author": "peop_1766159426166_5", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_3.json b/collections/reviews/revi_1766159426166_3.json deleted file mode 100644 index c28a7d5..0000000 --- a/collections/reviews/revi_1766159426166_3.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 2.4, - "content": "Traho molestias terra adiuvo demoror. Arceo natus audeo defessus animus absens aranea. Creber terminatio undique.", - "date": "2025-08-16T10:52:18.968Z", - "movie": "movi_1766159426166_19", - "author": "peop_1766159426166_7", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_30.json b/collections/reviews/revi_1766159426166_30.json deleted file mode 100644 index 98ec5d8..0000000 --- a/collections/reviews/revi_1766159426166_30.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 9.5, - "content": "Caste aegrus celebrer contego terra deludo cernuus. Spoliatio clarus libero sit ubi accusamus adipiscor. Vicissitudo aetas patruus vomito depraedor vapulus tripudio.", - "date": "2025-08-07T12:35:36.847Z", - "movie": "movi_1766159426166_16", - "author": "peop_1766159426166_1", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_31.json b/collections/reviews/revi_1766159426166_31.json deleted file mode 100644 index b93ebd0..0000000 --- a/collections/reviews/revi_1766159426166_31.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 1.8, - "content": "Tantum via barba. Administratio decipio quos. Acies textor conduco corrigo velit cumque ullus.", - "date": "2025-04-16T12:38:30.397Z", - "movie": "movi_1766159426166_3", - "author": "peop_1766159426166_5", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_32.json b/collections/reviews/revi_1766159426166_32.json deleted file mode 100644 index 0248951..0000000 --- a/collections/reviews/revi_1766159426166_32.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 2.4, - "content": "Corpus spectaculum adopto colo. Amiculum titulus allatus vestrum alii soleo careo. Tyrannus decor quod nobis abscido virtus thymum.\nPeior conicio laborum caterva facilis amiculum tepesco cursim temperantia carmen. Ipsum cuppedia bonus asporto tabesco appositus cubo animi armarium adulescens. Demonstro demo pauci cubicularis tot tactus capillus alioqui.\nFugiat ustilo valetudo ullam audentia colligo curo absorbeo decens ab. Ullam vulgo timidus stabilis demens. Coerceo decumbo tui fugiat conturbo.", - "date": "2025-10-11T21:54:10.539Z", - "movie": "movi_1766159426166_13", - "author": "peop_1766159426166_1", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_33.json b/collections/reviews/revi_1766159426166_33.json deleted file mode 100644 index eca5eb6..0000000 --- a/collections/reviews/revi_1766159426166_33.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 6.1, - "content": "Deporto voluntarius degenero bellicus pax deduco annus magni. Valetudo despecto vobis articulus vaco abeo unde coma solum. Cohaero aliqua amet.\nAveho voluntarius sulum alienus autus. Tabgo copiose despecto. Voro volutabrum thalassinus.", - "date": "2025-04-16T12:20:15.010Z", - "movie": "movi_1766159426166_0", - "author": "peop_1766159426166_6", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_34.json b/collections/reviews/revi_1766159426166_34.json deleted file mode 100644 index ff3a27a..0000000 --- a/collections/reviews/revi_1766159426166_34.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 9.2, - "content": "Agnosco cogo dolor capto catena angelus. Degenero tabella ver accommodo patria comptus talus concido arbitro. Usque ulterius suus ulterius ea ventus custodia alienus.", - "date": "2025-02-11T10:11:46.756Z", - "movie": "movi_1766159426166_11", - "author": "peop_1766159426166_7", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_35.json b/collections/reviews/revi_1766159426166_35.json deleted file mode 100644 index 71e4adb..0000000 --- a/collections/reviews/revi_1766159426166_35.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 1.7, - "content": "Incidunt cultellus ara rem vulariter tabesco vinco impedit delinquo. Acidus carpo casso theca tergeo nulla talis. Modi confero degero conscendo doloribus aptus tamisium hic cimentarius calco.", - "date": "2025-07-21T19:15:42.768Z", - "movie": "movi_1766159426166_17", - "author": "peop_1766159426166_0", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_36.json b/collections/reviews/revi_1766159426166_36.json deleted file mode 100644 index c83583c..0000000 --- a/collections/reviews/revi_1766159426166_36.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 4.5, - "content": "Atqui adulescens alienus cruentus avaritia velociter. Molestias suffoco tardus rerum subvenio minus. Creber cuppedia consuasor attonbitus verecundia celo.\nDemulceo tendo conventus cohors suadeo conculco placeat pauci cupiditas sit. Ullam crapula odit cunabula capto. Vigor casso crepusculum absque.", - "date": "2025-05-29T01:46:43.319Z", - "movie": "movi_1766159426166_7", - "author": "peop_1766159426166_2", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_37.json b/collections/reviews/revi_1766159426166_37.json deleted file mode 100644 index 941a110..0000000 --- a/collections/reviews/revi_1766159426166_37.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 9.7, - "content": "Tabernus reiciendis unde usitas nobis absum. Adsuesco conduco facilis molestias dolorem acquiro. Subnecto inflammatio arguo vobis venio uterque theologus occaecati cras thymum.\nSoleo magnam celo vergo tener sapiente dolorum decor. Coaegresco tergiversatio facilis addo. Uxor deludo alioqui amicitia suppellex alius fugit denego concido suggero.\nCrastinus adeo subvenio balbus ex caelum talio. Curia auctus desino articulus sto accendo terreo vinum maxime abutor. Deripio triumphus mollitia fugit tenus vix amitto asporto.", - "date": "2025-01-04T15:24:01.826Z", - "movie": "movi_1766159426166_8", - "author": "peop_1766159426166_3", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_38.json b/collections/reviews/revi_1766159426166_38.json deleted file mode 100644 index 6c6ecec..0000000 --- a/collections/reviews/revi_1766159426166_38.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 1.8, - "content": "Vespillo vesper amplus vorax aqua aedificium centum vinculum volva. Ascisco vilicus tergum aggero temperantia. Taceo tubineus arx audio.", - "date": "2025-02-18T21:41:54.805Z", - "movie": "movi_1766159426166_19", - "author": "peop_1766159426166_5", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_39.json b/collections/reviews/revi_1766159426166_39.json deleted file mode 100644 index e80b317..0000000 --- a/collections/reviews/revi_1766159426166_39.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 8.9, - "content": "Cribro delego consequuntur cum quasi acidus color comis. Super tactus arbitro. Virtus venustas eveniet.\nStatim decipio delectatio considero copiose. Bonus fugiat velociter timidus utpote alveus adficio tamen angustus apparatus. Tempora neque alo officiis cras.", - "date": "2025-07-19T12:45:16.212Z", - "movie": "movi_1766159426166_7", - "author": "peop_1766159426166_8", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_4.json b/collections/reviews/revi_1766159426166_4.json deleted file mode 100644 index 6719350..0000000 --- a/collections/reviews/revi_1766159426166_4.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 4.2, - "content": "Qui aetas recusandae caste cattus absorbeo circumvenio arcesso crinis. Dolores civitas curriculum provident thorax. Error impedit amplus conscendo veritatis creber deleo uredo conduco.\nDemum depraedor amplus adnuo creber condico. Claustrum labore temeritas spero amplus constans ducimus vigor terreo triumphus. Confero vicissitudo contigo.", - "date": "2025-01-01T13:58:20.286Z", - "movie": "movi_1766159426166_14", - "author": "peop_1766159426166_6", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_5.json b/collections/reviews/revi_1766159426166_5.json deleted file mode 100644 index 47893e7..0000000 --- a/collections/reviews/revi_1766159426166_5.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 8.7, - "content": "Denuo verus ascit ad thymbra laudantium tribuo tum abeo velum. Adipisci campana tibi. Voluntarius peior sumo reiciendis cunae.", - "date": "2025-09-10T14:11:41.324Z", - "movie": "movi_1766159426166_11", - "author": "peop_1766159426166_5", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_6.json b/collections/reviews/revi_1766159426166_6.json deleted file mode 100644 index d95cfa6..0000000 --- a/collections/reviews/revi_1766159426166_6.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 3.7, - "content": "Numquam solitudo voluptatum asperiores. Basium carpo eos convoco paens. Ancilla vel decor cultura.", - "date": "2025-12-03T02:38:34.615Z", - "movie": "movi_1766159426166_12", - "author": "peop_1766159426166_1", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_7.json b/collections/reviews/revi_1766159426166_7.json deleted file mode 100644 index c6ef931..0000000 --- a/collections/reviews/revi_1766159426166_7.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 8.4, - "content": "Adficio asperiores turpis torqueo vulgus ipsam debitis tumultus tutis spero. Subvenio aut terra natus atrox accedo velum virtus cogo tergo. Benevolentia coniecto acer currus victus crebro.\nConcido averto cubicularis aliquid. Quasi ait teneo. Vita tersus soleo adflicto.", - "date": "2025-06-30T15:09:36.397Z", - "movie": "movi_1766159426166_7", - "author": "peop_1766159426166_0", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_8.json b/collections/reviews/revi_1766159426166_8.json deleted file mode 100644 index 52a9690..0000000 --- a/collections/reviews/revi_1766159426166_8.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 9.6, - "content": "Sordeo deduco ceno. Succurro curo aranea tener soluta civis ter crapula tam. Accendo itaque antea solum curtus optio.", - "date": "2025-07-15T04:50:21.258Z", - "movie": "movi_1766159426166_18", - "author": "peop_1766159426166_3", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file diff --git a/collections/reviews/revi_1766159426166_9.json b/collections/reviews/revi_1766159426166_9.json deleted file mode 100644 index 1748715..0000000 --- a/collections/reviews/revi_1766159426166_9.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "rating": 7.4, - "content": "Tempora alveus vicinus volup eveniet. Virgo vociferor maiores. Cavus auctor villa officia.", - "date": "2025-01-11T19:11:12.072Z", - "movie": "movi_1766159426166_2", - "author": "peop_1766159426166_9", - "created": "2025-12-19T15:50:30.777Z", - "updated": "2025-12-19T15:50:30.777Z" -} \ No newline at end of file