fadhilafif98 commited on
Commit
a08fc80
·
verified ·
1 Parent(s): dedbee8

Initial dataset upload: tripleS Objekts HD images & metadata

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
.gitattributes CHANGED
@@ -58,3 +58,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ all_objekts.json filter=lfs diff=lfs merge=lfs -text
62
+ metadata.jsonl filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ language:
5
+ - en
6
+ - ko
7
+ license: other
8
+ license_name: modhaus-fan-archive
9
+ task_categories:
10
+ - image-classification
11
+ - feature-extraction
12
+ - image-to-text
13
+ tags:
14
+ - kpop
15
+ - triples
16
+ - objekts
17
+ - photocard
18
+ - cosmo
19
+ - modhaus
20
+ - digital-collectibles
21
+ size_categories:
22
+ - 10K<n<100K
23
+ pretty_name: tripleS Objekts Archive
24
+ dataset_info:
25
+ features:
26
+ - name: file_name
27
+ dtype: string
28
+ - name: image
29
+ dtype: image
30
+ - name: slug
31
+ dtype: string
32
+ - name: id
33
+ dtype: string
34
+ - name: artist
35
+ dtype: string
36
+ - name: member
37
+ dtype: string
38
+ - name: memberSortOrder
39
+ dtype: int64
40
+ - name: season
41
+ dtype: string
42
+ - name: class
43
+ dtype: string
44
+ - name: collectionNo
45
+ dtype: string
46
+ - name: shortCode
47
+ dtype: string
48
+ - name: side
49
+ dtype: string
50
+ - name: onOffline
51
+ dtype: string
52
+ - name: comoAmount
53
+ dtype: int64
54
+ - name: hasAudio
55
+ dtype: bool
56
+ - name: accentColor
57
+ dtype: string
58
+ - name: backgroundColor
59
+ dtype: string
60
+ - name: textColor
61
+ dtype: string
62
+ - name: description
63
+ dtype: string
64
+ - name: createdAt
65
+ dtype: int64
66
+ - name: contract
67
+ dtype: string
68
+ ---
69
+
70
+ # tripleS Objekts Archive (HD Images & Full Metadata)
71
+
72
+ Complete digital collectible photocards (Objekts) dataset for the K-Pop girl group **tripleS** (Modhaus / COSMO app).
73
+
74
+ ## Dataset Summary
75
+
76
+ - **Total Objekts**: 10,983 unique digital collectibles
77
+ - **Total Images**: 21,298 high-resolution card scans (Front & Back)
78
+ - **Members**: All 24 members (S1–S24) + Sub-units (AAA, KRE, Assemble24, etc.)
79
+ - **Seasons Included**: Atom01, Atom02, Binary01, Binary02, Cream01, Cream02, Divine01, Ever01
80
+ - **Metadata fields**: `member`, `season`, `class`, `collectionNo`, `shortCode`, `side` (front/back), `onOffline`, `comoAmount`, `accentColor`, `contract`, `createdAt`, `description`.
81
+
82
+ ## Directory Structure
83
+
84
+ ```text
85
+ ├── metadata.jsonl # Hugging Face Dataset format linking all images & attributes
86
+ ├── all_objekts.json # Master raw JSON containing all 10,983 objekt items
87
+ ├── summary.json # Statistical counts by member, season, and class
88
+ ├── by_member/ # Subdivided JSON files per member
89
+ ├── by_season/ # Subdivided JSON files per season
90
+ └── images/ # Hierarchical HD card images
91
+ ├── Atom01/
92
+ │ ├── JiWoo/
93
+ │ │ ├── atom01-jiwoo-100z_front.png
94
+ │ │ └── atom01-jiwoo-100z_back.png
95
+ │ └── ...
96
+ └── ...
97
+ ```
98
+
99
+ ## Quick Start / Usage
100
+
101
+ ### Using Python `datasets`
102
+
103
+ ```python
104
+ from datasets import load_dataset
105
+
106
+ # Load dataset with automatic image decoding
107
+ dataset = load_dataset("<YOUR_HF_USERNAME>/triples-objekts", split="train")
108
+
109
+ # Access sample item
110
+ first_sample = dataset[0]
111
+ print(first_sample["member"], first_sample["season"], first_sample["side"])
112
+
113
+ # Display image
114
+ image = first_sample["image"]
115
+ image.show()
116
+ ```
117
+
118
+ ### Filtering by Member & Season
119
+
120
+ ```python
121
+ jiwoo_atom01 = dataset.filter(lambda x: x["member"] == "JiWoo" and x["season"] == "Atom01" and x["side"] == "front")
122
+ print(f"Total JiWoo Atom01 front cards: {len(jiwoo_atom01)}")
123
+ ```
124
+
125
+ ## Data Fields
126
+
127
+ | Field | Type | Description |
128
+ | :--- | :--- | :--- |
129
+ | `image` | `Image` | Decoded photocard image |
130
+ | `file_name` | `string` | Relative path to image file |
131
+ | `slug` | `string` | Unique slug identifier |
132
+ | `side` | `string` | Card face (`front` or `back`) |
133
+ | `member` | `string` | Member name (e.g. `SeoYeon`, `JiWoo`, `Xinyu`, etc.) |
134
+ | `season` | `string` | Release season (`Atom01`, `Binary01`, `Cream01`, etc.) |
135
+ | `class` | `string` | Objekt class (`First`, `Special`, `Double`, `Welcome`, `Zero`) |
136
+ | `collectionNo` | `string` | Collection serial number (e.g. `100Z`, `301A`) |
137
+ | `shortCode` | `string` | Short identifier code (e.g. `A100Z`, `B201A`) |
138
+ | `onOffline` | `string` | Availability type (`online` or `offline`) |
139
+ | `comoAmount` | `int` | Voting COMO units provided by objekt |
140
+ | `accentColor` | `string` | Hex accent color string |
141
+ | `contract` | `string` | Polygon blockchain smart contract address |
142
+ | `createdAt` | `int` | Unix epoch millisecond timestamp |
143
+
144
+ ## Disclaimer & Copyright
145
+
146
+ All visual assets and trademarks belong to **MODHAUS** and the **COSMO** platform. This dataset is compiled strictly for non-commercial fan archival, educational, indexing, and computer vision research purposes.
all_objekts.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c87730b6b7f7f9334da0d2f52cdd6ede95fb74d1630c11a56680073e3f6c01e
3
+ size 11121333
by_member/AAA.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#F1F2F2",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/f9cbb2cf-218d-40dc-a703-9b17701c8f00/4x",
6
+ "backgroundColor": "#F1F2F2",
7
+ "class": "Zero",
8
+ "collectionId": "Atom01 AAA 000Z",
9
+ "collectionNo": "000Z",
10
+ "comoAmount": 1,
11
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
12
+ "createdAt": 1665729881000,
13
+ "description": "Gifted on October 14th 2022 to everyone who voted in Our First Grand Gravity.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/038ba648-7688-4084-1ee3-f492f47e1200/4x",
15
+ "hasAudio": false,
16
+ "id": "baeccd0d-08d5-42bb-92ac-8c89d1caf6b4",
17
+ "member": "AAA",
18
+ "onOffline": "online",
19
+ "season": "Atom01",
20
+ "shortCode": "A000Z",
21
+ "slug": "atom01-aaa-000z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/038ba648-7688-4084-1ee3-f492f47e1200/thumbnail"
24
+ }
25
+ ]
by_member/Assemble24.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#000000",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/b29387b6-0c50-496a-5ba2-b35b3f5e9600/4x",
6
+ "backgroundColor": "#F2F2F2",
7
+ "class": "Double",
8
+ "collectionId": "Cream01 Assemble24 324Z",
9
+ "collectionNo": "324Z",
10
+ "comoAmount": 2,
11
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
12
+ "createdAt": 1708653614000,
13
+ "description": "Gifted on February 23rd 2024 to everyone who voted in Grand Gravity : ASSEMBLE24 Title Track.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/2ed4729d-7c9f-421f-ba1b-ef7d288b8b00/4x",
15
+ "hasAudio": false,
16
+ "id": "8b774fd1-afdb-4b20-839c-d59f10d76f6c",
17
+ "member": "Assemble24",
18
+ "onOffline": "online",
19
+ "season": "Cream01",
20
+ "shortCode": "C324Z",
21
+ "slug": "cream01-assemble24-324z",
22
+ "textColor": "#CA9739",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/2ed4729d-7c9f-421f-ba1b-ef7d288b8b00/thumbnail"
24
+ }
25
+ ]
by_member/ChaeWon.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/ChaeYeon.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/DaHyun.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/HaYeon.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/HyeRin.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/JiWoo.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/JiYeon.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/JooBin.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/KRE.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#F1F2F2",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/503e8f71-9743-4706-9a41-86ebd63dd100/4x",
6
+ "backgroundColor": "#F1F2F2",
7
+ "class": "Zero",
8
+ "collectionId": "Atom01 +(KR)E 000Z",
9
+ "collectionNo": "000Z",
10
+ "comoAmount": 1,
11
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
12
+ "createdAt": 1665729881000,
13
+ "description": "Gifted on October 14th 2022 to everyone who voted in Our First Grand Gravity.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/d96cc820-3a41-43e5-9f0d-1b751d83c200/4x",
15
+ "hasAudio": false,
16
+ "id": "eb94a23b-5370-4835-ab3a-2d32bbc5390d",
17
+ "member": "+(KR)E",
18
+ "onOffline": "online",
19
+ "season": "Atom01",
20
+ "shortCode": "A000Z",
21
+ "slug": "atom01-kre-000z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/d96cc820-3a41-43e5-9f0d-1b751d83c200/thumbnail"
24
+ }
25
+ ]
by_member/Kaede.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/Kotone.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/Lynn.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/Mayu.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/NaKyoung.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/Nien.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/S1 X S13.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#c9a753",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/eaca5c56-c079-4ed9-a5c4-0c5a2c697500/original",
6
+ "backgroundColor": "#c9a753",
7
+ "class": "Unit",
8
+ "collectionId": "Binary02 S1 X S13 601Z",
9
+ "collectionNo": "601Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1768527014000,
13
+ "description": "2025 tripleS Awards Winners Event, sold on the COSMO app shop.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/d07d9032-82b1-4522-3ffb-dbaf68d87200/original",
15
+ "hasAudio": false,
16
+ "id": "6560a4ac-2fe4-4395-b948-4d8b6c2fffee",
17
+ "member": "S1 X S13",
18
+ "onOffline": "online",
19
+ "season": "Binary02",
20
+ "shortCode": "BB601Z",
21
+ "slug": "binary02-s1-x-s13-601z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/d07d9032-82b1-4522-3ffb-dbaf68d87200/thumbnail"
24
+ }
25
+ ]
by_member/S1 X S9.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/4762e517-c6ae-41ec-b748-d1bb6fa2ae00/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S1 X S9 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670817000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/abf7553f-7a13-4a92-3a13-5101dd068300/original",
15
+ "hasAudio": false,
16
+ "id": "8770ef1f-da70-41f4-8217-d11dd6a4e285",
17
+ "member": "S1 X S9",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s1-x-s9-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/abf7553f-7a13-4a92-3a13-5101dd068300/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/7a298625-c82b-45d4-50dd-c94be787bb00/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S1 X S9 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780382529000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/c8e253e8-3fcd-4b9b-b668-5b4850403900/original",
38
+ "hasAudio": false,
39
+ "id": "5480adee-f145-455b-9696-967b7c058ade",
40
+ "member": "S1 X S9",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s1-x-s9-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/c8e253e8-3fcd-4b9b-b668-5b4850403900/thumbnail"
47
+ }
48
+ ]
by_member/S11 X S14.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/32033696-bd95-4340-d20c-3dbaf0921c00/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S11 X S14 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670813000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/df3e1d85-0d61-416e-2a40-a5b7c3d23d00/original",
15
+ "hasAudio": false,
16
+ "id": "895a31fd-873c-45d5-91a5-2336f1a1527e",
17
+ "member": "S11 X S14",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s11-x-s14-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/df3e1d85-0d61-416e-2a40-a5b7c3d23d00/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/2ef481e7-4f1a-4f9b-f732-ec4497986100/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S11 X S14 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780385844000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/1608926e-b75d-4bc8-1fe5-bf50d3649e00/original",
38
+ "hasAudio": false,
39
+ "id": "710430ad-03f5-4a81-9946-8a59d922a888",
40
+ "member": "S11 X S14",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s11-x-s14-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/1608926e-b75d-4bc8-1fe5-bf50d3649e00/thumbnail"
47
+ }
48
+ ]
by_member/S13 X S22.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/71335857-6942-4912-ce89-04d03d1d0800/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S13 X S22 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670817000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/e562f62a-36ec-457c-05a7-37e771cc7d00/original",
15
+ "hasAudio": false,
16
+ "id": "5823105a-5478-4f46-a41b-7f056d4388f9",
17
+ "member": "S13 X S22",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s13-x-s22-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/e562f62a-36ec-457c-05a7-37e771cc7d00/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/17524352-d3ef-4b0c-0763-8bccbd4f2100/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S13 X S22 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780374426000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/6233d2a6-e344-4b8a-af93-bb5854287f00/original",
38
+ "hasAudio": false,
39
+ "id": "c1d0174b-1e26-413e-b63a-802808a52acc",
40
+ "member": "S13 X S22",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s13-x-s22-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/6233d2a6-e344-4b8a-af93-bb5854287f00/thumbnail"
47
+ }
48
+ ]
by_member/S16 X S21.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/786a57bc-43c9-4d09-1cc4-d4bd1c10f600/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S16 X S21 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670817000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/d2384dfd-5136-4984-2f05-c1e00c672c00/original",
15
+ "hasAudio": false,
16
+ "id": "8a45698f-bd51-479e-badb-aefd7e419c8d",
17
+ "member": "S16 X S21",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s16-x-s21-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/d2384dfd-5136-4984-2f05-c1e00c672c00/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/5efbb5e2-3c9a-4707-aa86-74a80fc1b200/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S16 X S21 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780379345000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/2af6d691-1852-46a1-a455-3dcf3e069600/original",
38
+ "hasAudio": false,
39
+ "id": "a1dec4a7-3754-4613-b2f7-57b7c457700a",
40
+ "member": "S16 X S21",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s16-x-s21-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/2af6d691-1852-46a1-a455-3dcf3e069600/thumbnail"
47
+ }
48
+ ]
by_member/S19 X S24.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/7d64a3fc-0a2e-4731-4879-8c284c2e1f00/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S19 X S24 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670812000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/20d2f558-3f38-4b7c-7212-db715ec8a500/original",
15
+ "hasAudio": false,
16
+ "id": "b3764731-bcb7-4c08-8698-e9ed62fac981",
17
+ "member": "S19 X S24",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s19-x-s24-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/20d2f558-3f38-4b7c-7212-db715ec8a500/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/1d3ed9a8-8c5c-42bf-caba-a3b49f11d100/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S19 X S24 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780377672000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/a765d511-1741-4a16-fba2-ead10ebd8f00/original",
38
+ "hasAudio": false,
39
+ "id": "7c5f0cf1-b44c-4365-8139-c95bbbbb0822",
40
+ "member": "S19 X S24",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s19-x-s24-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/a765d511-1741-4a16-fba2-ead10ebd8f00/thumbnail"
47
+ }
48
+ ]
by_member/S2 X S10.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/c9fd7cfc-82a0-4113-a69f-11df40ae6900/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S2 X S10 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670813000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/57d06468-46eb-423d-d0fd-e364d5096f00/original",
15
+ "hasAudio": false,
16
+ "id": "565ef5c4-0b65-4043-9e03-76fd52f7c4c3",
17
+ "member": "S2 X S10",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s2-x-s10-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/57d06468-46eb-423d-d0fd-e364d5096f00/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/e3a8a72c-444a-4713-81b5-d138dc8b2100/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S2 X S10 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780366290000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/805de663-45ed-45cc-f240-f88de48ecf00/original",
38
+ "hasAudio": false,
39
+ "id": "8fcdc559-1d04-48b4-b10b-f310dccfc591",
40
+ "member": "S2 X S10",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s2-x-s10-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/805de663-45ed-45cc-f240-f88de48ecf00/thumbnail"
47
+ }
48
+ ]
by_member/S21.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#DEFAE9",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/c8cff6d7-4cbd-4efa-da2e-7c59ce07b700/4x",
6
+ "backgroundColor": "#DEFAE9",
7
+ "class": "Double",
8
+ "collectionId": "Cream01 S21 325Z",
9
+ "collectionNo": "325Z",
10
+ "comoAmount": 2,
11
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
12
+ "createdAt": 1710983050000,
13
+ "description": "S21-S24 Blind Double Class Objekt Event. 325Z purchasers were given an equivalent number of 328Z of the respective member.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/92214f89-eee6-4be2-3025-4d7896cb2800/4x",
15
+ "hasAudio": false,
16
+ "id": "5ac2a118-0859-4f8f-a933-a08fa801e309",
17
+ "member": "S21",
18
+ "onOffline": "online",
19
+ "season": "Cream01",
20
+ "shortCode": "C325Z",
21
+ "slug": "cream01-s21-325z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/92214f89-eee6-4be2-3025-4d7896cb2800/thumbnail"
24
+ }
25
+ ]
by_member/S22.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#DEFAE9",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/0175a653-3e0a-4d6f-e195-ce9fb2f5d800/4x",
6
+ "backgroundColor": "#DEFAE9",
7
+ "class": "Double",
8
+ "collectionId": "Cream01 S22 325Z",
9
+ "collectionNo": "325Z",
10
+ "comoAmount": 2,
11
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
12
+ "createdAt": 1711069217000,
13
+ "description": "S21-S24 Blind Double Class Objekt Event. 325Z purchasers were given an equivalent number of 328Z of the respective member.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/5cc6ed16-af16-4150-f3f9-401290de2d00/4x",
15
+ "hasAudio": false,
16
+ "id": "d1d6e770-4c8f-4a0d-8801-852fad150652",
17
+ "member": "S22",
18
+ "onOffline": "online",
19
+ "season": "Cream01",
20
+ "shortCode": "C325Z",
21
+ "slug": "cream01-s22-325z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/5cc6ed16-af16-4150-f3f9-401290de2d00/thumbnail"
24
+ }
25
+ ]
by_member/S23.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#DEFAE9",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/4baef867-6ddd-466a-061b-8e71e4cf2d00/4x",
6
+ "backgroundColor": "#DEFAE9",
7
+ "class": "Double",
8
+ "collectionId": "Cream01 S23 325Z",
9
+ "collectionNo": "325Z",
10
+ "comoAmount": 2,
11
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
12
+ "createdAt": 1711155609000,
13
+ "description": "S21-S24 Blind Double Class Objekt Event. 325Z purchasers were given an equivalent number of 328Z of the respective member.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/c5ff21aa-2acf-4757-7daa-a61f07c23600/4x",
15
+ "hasAudio": false,
16
+ "id": "960e13ed-d64c-4675-a365-f429c70e1a76",
17
+ "member": "S23",
18
+ "onOffline": "online",
19
+ "season": "Cream01",
20
+ "shortCode": "C325Z",
21
+ "slug": "cream01-s23-325z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/c5ff21aa-2acf-4757-7daa-a61f07c23600/thumbnail"
24
+ }
25
+ ]
by_member/S24.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#DEFAE9",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/dfcc399a-c55d-4bfb-44cc-1294b3ced800/4x",
6
+ "backgroundColor": "#DEFAE9",
7
+ "class": "Double",
8
+ "collectionId": "Cream01 S24 325Z",
9
+ "collectionNo": "325Z",
10
+ "comoAmount": 2,
11
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
12
+ "createdAt": 1711242121000,
13
+ "description": "S21-S24 Blind Double Class Objekt Event. 325Z purchasers were given an equivalent number of 328Z of the respective member.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/df950e28-8363-4870-286e-b76df55d4b00/4x",
15
+ "hasAudio": false,
16
+ "id": "457fbbcd-afd3-40cf-bdaa-c435535fda42",
17
+ "member": "S24",
18
+ "onOffline": "online",
19
+ "season": "Cream01",
20
+ "shortCode": "C325Z",
21
+ "slug": "cream01-s24-325z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/df950e28-8363-4870-286e-b76df55d4b00/thumbnail"
24
+ }
25
+ ]
by_member/S3 X S23.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/25b7f338-2de5-4d36-d0be-c658a3677f00/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S3 X S23 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670817000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/e409faf6-5956-4b0f-311c-e497a8877700/original",
15
+ "hasAudio": false,
16
+ "id": "3ab571b2-5fd1-41e0-813f-7259508a0c25",
17
+ "member": "S3 X S23",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s3-x-s23-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/e409faf6-5956-4b0f-311c-e497a8877700/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/69f6cac2-cedc-4600-8494-6c7beb4bfa00/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S3 X S23 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780374399000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/2759f9b9-fb09-4f3a-8bdc-e7c96c4ab000/original",
38
+ "hasAudio": false,
39
+ "id": "974ee603-5b6d-4f4d-a264-1a9c01174cdb",
40
+ "member": "S3 X S23",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s3-x-s23-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/2759f9b9-fb09-4f3a-8bdc-e7c96c4ab000/thumbnail"
47
+ }
48
+ ]
by_member/S4 X S18.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/906e9d44-bcf3-4f39-effc-ab65fec29800/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S4 X S18 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670817000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/953f01d7-ce9e-491a-24d2-092f68674c00/original",
15
+ "hasAudio": false,
16
+ "id": "c65ed347-d04a-420a-b0c8-98dde063fdbb",
17
+ "member": "S4 X S18",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s4-x-s18-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/953f01d7-ce9e-491a-24d2-092f68674c00/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/ed46bd2f-ddef-4d29-3ced-8a2e5dc27400/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S4 X S18 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780374359000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/7105801c-847d-491b-ef86-0b38e23e3600/original",
38
+ "hasAudio": false,
39
+ "id": "2271d5b0-2c16-4ad4-aed9-52963959c6f1",
40
+ "member": "S4 X S18",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s4-x-s18-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/7105801c-847d-491b-ef86-0b38e23e3600/thumbnail"
47
+ }
48
+ ]
by_member/S5 X S20.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/42cf65b0-9c9f-4749-b298-4347364b0e00/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S5 X S20 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670812000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/b772a5a1-b15e-48a0-03b1-be78686dba00/original",
15
+ "hasAudio": false,
16
+ "id": "48ec760a-fbd9-442e-a2a3-fff8e1c73282",
17
+ "member": "S5 X S20",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s5-x-s20-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/b772a5a1-b15e-48a0-03b1-be78686dba00/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/538b6007-6a08-4c96-71a8-730eaf786800/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S5 X S20 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780374365000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/24f054d5-5b78-4b1d-d7da-48c5eb1b4d00/original",
38
+ "hasAudio": false,
39
+ "id": "b3793422-e800-47a1-b033-f9c557b18e6d",
40
+ "member": "S5 X S20",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s5-x-s20-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/24f054d5-5b78-4b1d-d7da-48c5eb1b4d00/thumbnail"
47
+ }
48
+ ]
by_member/S6 X S17.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/253e4be6-b161-46e1-1e34-4e78fb2d0d00/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S6 X S17 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670808000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/eaf6db46-cf52-454c-ed96-274ebf9dfd00/original",
15
+ "hasAudio": false,
16
+ "id": "bfce33b3-2df0-4a39-b328-0217f0c64117",
17
+ "member": "S6 X S17",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s6-x-s17-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/eaf6db46-cf52-454c-ed96-274ebf9dfd00/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/17d745e1-5928-4a51-c8d7-dc37c6ffd200/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S6 X S17 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780368657000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/214e9020-c35e-41f7-d031-eeabbdd9d800/original",
38
+ "hasAudio": false,
39
+ "id": "a0f60780-5f24-44ac-bfe1-56214a517db0",
40
+ "member": "S6 X S17",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s6-x-s17-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/214e9020-c35e-41f7-d031-eeabbdd9d800/thumbnail"
47
+ }
48
+ ]
by_member/S7 X S15.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/cc764130-677b-4271-0906-33764b965700/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S7 X S15 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670808000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/c1e7e4a0-53ba-4eeb-32f6-2fea21307200/original",
15
+ "hasAudio": false,
16
+ "id": "4a63026b-9630-4e0b-bf62-633efaa13360",
17
+ "member": "S7 X S15",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s7-x-s15-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/c1e7e4a0-53ba-4eeb-32f6-2fea21307200/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/512f6f3e-48b8-4003-42e8-fb40365d3700/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S7 X S15 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780374467000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/16973e08-dd0a-4e2b-a1f7-101912c57900/original",
38
+ "hasAudio": false,
39
+ "id": "49e72870-ed39-4060-8164-304639ef79a2",
40
+ "member": "S7 X S15",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s7-x-s15-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/16973e08-dd0a-4e2b-a1f7-101912c57900/thumbnail"
47
+ }
48
+ ]
by_member/S8 X S12.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#e6fccc",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/0d48e02b-9f0d-46ba-c8ca-46b77452b200/original",
6
+ "backgroundColor": "#e6fccc",
7
+ "class": "Unit",
8
+ "collectionId": "Cream02 S8 X S12 602Z",
9
+ "collectionNo": "602Z",
10
+ "comoAmount": 1,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779670824000,
13
+ "description": "Gifted during the Binary02 season for ranking top 10 in Objekts, Gravity, or Grid; or ranking top 50 in Offline Badges.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/0836f204-4fa9-4193-595a-32613a9fb900/original",
15
+ "hasAudio": false,
16
+ "id": "8da6acf3-6740-4a60-ae53-8acb44dd079a",
17
+ "member": "S8 X S12",
18
+ "onOffline": "online",
19
+ "season": "Cream02",
20
+ "shortCode": "CC602Z",
21
+ "slug": "cream02-s8-x-s12-602z",
22
+ "textColor": "#000000",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/0836f204-4fa9-4193-595a-32613a9fb900/thumbnail"
24
+ },
25
+ {
26
+ "accentColor": "#000000",
27
+ "artist": "triples",
28
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/9afa5150-896a-4391-4d71-95819e813300/original",
29
+ "backgroundColor": "#000000",
30
+ "class": "Unit",
31
+ "collectionId": "Cream02 S8 X S12 601A",
32
+ "collectionNo": "601A",
33
+ "comoAmount": 1,
34
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
35
+ "createdAt": 1780374315000,
36
+ "description": "Part of <LOVE&POP> pt.1 Objekt Music Album",
37
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/5de3a021-4a43-4f8e-12ec-2c28c1fdf100/original",
38
+ "hasAudio": false,
39
+ "id": "929708ee-b3e3-41df-8282-b95443a52319",
40
+ "member": "S8 X S12",
41
+ "onOffline": "offline",
42
+ "season": "Cream02",
43
+ "shortCode": "CC601A",
44
+ "slug": "cream02-s8-x-s12-601a",
45
+ "textColor": "#FFFFFF",
46
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/5de3a021-4a43-4f8e-12ec-2c28c1fdf100/thumbnail"
47
+ }
48
+ ]
by_member/SeoAh.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/SeoYeon.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/ShiOn.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/SoHyun.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/SooMin.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/Sullin.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/TokyoHaus.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#B0C5FF",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/37b93b8a-cd1e-4bb4-bf5f-1350ac4e1400/4x",
6
+ "backgroundColor": "#B0C5FF",
7
+ "class": "Zero",
8
+ "collectionId": "Atom01 TokyoHaus 000Z",
9
+ "collectionNo": "000Z",
10
+ "comoAmount": 1,
11
+ "contract": "0xa4b37be40f7b231ee9574c4b16b7ddb7eacdc99b",
12
+ "createdAt": 1677837432000,
13
+ "description": "Gifted through various Discord events related to the Tokyo Haus.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/2e93f9c8-f20f-4d4d-38e8-1bb62ddde500/4x",
15
+ "hasAudio": false,
16
+ "id": "76eb925c-9835-41ee-ab76-fcc26837cdca",
17
+ "member": "TokyoHaus",
18
+ "onOffline": "online",
19
+ "season": "Atom01",
20
+ "shortCode": "A000Z",
21
+ "slug": "atom01-tokyohaus-000z",
22
+ "textColor": "#6289DF",
23
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/2e93f9c8-f20f-4d4d-38e8-1bb62ddde500/thumbnail"
24
+ }
25
+ ]
by_member/Xinyu.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/YeonJi.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/YooYeon.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/YuBin.json ADDED
The diff for this file is too large to render. See raw diff
 
by_member/moon.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#917d9b",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/12bdd5d0-a26d-456d-2de1-48457bcc3300/original",
6
+ "backgroundColor": "#917d9b",
7
+ "class": "Double",
8
+ "collectionId": "Cream02 moon 066Z",
9
+ "collectionNo": "066Z",
10
+ "comoAmount": 2,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779722235000,
13
+ "description": "Gifted for voting in the ASSEMBLE26 <LOVE&POP> pt.1 Leader Gravity. Features Baby Flower snippet.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/4f98eaf3-2a4e-4389-6192-74d92e4a1900/original",
15
+ "frontMedia": "https://cdn.apollo.cafe/dco/triples/cream02-moon-066z.mp4",
16
+ "hasAudio": true,
17
+ "id": "bf4dabe0-1919-4dcc-934a-6a54c9f45572",
18
+ "member": "moon",
19
+ "onOffline": "online",
20
+ "season": "Cream02",
21
+ "shortCode": "CC066Z",
22
+ "slug": "cream02-moon-066z",
23
+ "textColor": "#d5ebf6",
24
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/4f98eaf3-2a4e-4389-6192-74d92e4a1900/thumbnail"
25
+ }
26
+ ]
by_member/neptune.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "accentColor": "#917d9b",
4
+ "artist": "triples",
5
+ "backImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/8371a2e4-7826-4ea8-924e-426da82eb900/original",
6
+ "backgroundColor": "#917d9b",
7
+ "class": "Double",
8
+ "collectionId": "Cream02 neptune 886Z",
9
+ "collectionNo": "886Z",
10
+ "comoAmount": 2,
11
+ "contract": "0x99bb83ae9bb0c0a6be865cacf67760947f91cb70",
12
+ "createdAt": 1779721206000,
13
+ "description": "Gifted for voting in the ASSEMBLE26 <LOVE&POP> pt.1 Leader Gravity. Features Baby Flower snippet.",
14
+ "frontImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/6c693f10-3b7a-4a47-6edd-503b7f347000/original",
15
+ "frontMedia": "https://cdn.apollo.cafe/dco/triples/cream02-neptune-886z.mp4",
16
+ "hasAudio": true,
17
+ "id": "34515ae0-8f4b-409c-98d8-50b114a15dbc",
18
+ "member": "neptune",
19
+ "onOffline": "online",
20
+ "season": "Cream02",
21
+ "shortCode": "CC886Z",
22
+ "slug": "cream02-neptune-886z",
23
+ "textColor": "#d5ebf6",
24
+ "thumbnailImage": "https://imagedelivery.net/qQuMkbHJ-0s6rwu8vup_5w/6c693f10-3b7a-4a47-6edd-503b7f347000/thumbnail"
25
+ }
26
+ ]