1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
// Get forum and topics
use Result;
use OsynicOsuApiV2Client;
use IForum;
use OToken;
async
/*
ReqwestForum get_forum_and_topic
GetForumAndTopicsResponse {
forum: Forum {
id: 25,
name: "中文",
description: "Chinese",
subforums: Some([])
},
topics: [ForumTopic {
created_at: "2024-10-22T06:31:42+00:00",
deleted_at: None,
first_post_id: 9703859,
forum_id: 25,
id: 1993367,
is_locked: false,
last_post_id: 9896086,
poll: None,
post_count: 11,
title: "[STD][线下赛]OCNCC S2 [1k-100k]丨 萌萌乐大湾区线下赛S2(观众预报名)",
topic_type: "normal",
updated_at: "2025-05-11T14:56:45+00:00",
user_id: 15525823
}, ForumTopic {
created_at: "2023-10-27T03:01:58+00:00",
deleted_at: None,
first_post_id: 9314296,
forum_id: 25,
id: 1837805,
is_locked: false,
last_post_id: 9895644,
poll: None,
post_count: 159,
title: "还有华人玩osu吗?怎么感觉国内国外都没人玩儿了?",
topic_type: "normal",
updated_at: "2025-05-11T04:15:01+00:00",
user_id: 31307955
}, ForumTopic {
created_at: "2025-05-04T15:58:06+00:00",
deleted_at: None,
first_post_id: 9890309,
forum_id: 25,
id: 2075082,
is_locked: false,
last_post_id: 9894658,
poll: None,
post_count: 4,
title: "mania读谱的时候 眼睛会不自觉追键, 怎么办",
topic_type: "normal",
updated_at: "2025-05-10T01:03:16+00:00",
user_id: 16596519
}, ForumTopic {
created_at: "2025-03-23T12:32:33+00:00",
deleted_at: None,
first_post_id: 9848856,
forum_id: 25,
id: 2057363,
is_locked: false,
last_post_id: 9894384,
poll: None,
post_count: 6,
title: "歌曲許願",
topic_type: "normal",
updated_at: "2025-05-09T16:39:17+00:00",
user_id: 30615338
}, ForumTopic {
created_at: "2025-05-02T18:17:29+00:00",
deleted_at: None,
first_post_id: 9888618,
forum_id: 25,
id: 2074125,
is_locked: false,
last_post_id: 9889871,
poll: None,
post_count: 2,
title: "[invalid]关于lazer无法在mac上启用游 戏模式",
topic_type: "normal",
updated_at: "2025-05-04T04:42:35+00:00",
user_id: 34125350
}, ForumTopic {
created_at: "2025-05-02T12:31:08+00:00",
deleted_at: None,
first_post_id: 9888272,
forum_id: 25,
id: 2073999,
is_locked: false,
last_post_id: 9889508,
poll: None,
post_count: 4,
title: "这是一个互相说早晚安的帖子",
topic_type: "normal",
updated_at: "2025-05-03T17:37:44+00:00",
user_id: 26880346
}, ForumTopic {
created_at: "2025-05-02T07:06:59+00:00",
deleted_at: None,
first_post_id: 9888079,
forum_id: 25,
id: 2073883,
is_locked: false,
last_post_id: 9889012,
poll: None,
post_count: 2,
title: "求助寻找皮肤,感谢",
topic_type: "normal",
updated_at: "2025-05-03T04:55:53+00:00",
user_id: 20740183
}, ForumTopic {
created_at: "2025-05-01T12:44:04+00:00",
deleted_at: None,
first_post_id: 9887397,
forum_id: 25,
id: 2073559,
is_locked: false,
last_post_id: 9888018,
poll: None,
post_count: 2,
title: "求助!本地成绩一夜之间全部消失了",
topic_type: "normal",
updated_at: "2025-05-02T03:56:50+00:00",
user_id: 25078043
}, ForumTopic {
created_at: "2025-04-24T11:53:33+00:00",
deleted_at: None,
first_post_id: 9880316,
forum_id: 25,
id: 2070657,
is_locked: false,
last_post_id: 9884079,
poll: None,
post_count: 4,
title: "nya",
topic_type: "normal",
updated_at: "2025-04-27T17:48:19+00:00",
user_id: 33373304
}, ForumTopic {
created_at: "2025-03-06T15:51:26+00:00",
deleted_at: None,
first_post_id: 9834637,
forum_id: 25,
id: 2050240,
is_locked: false,
last_post_id: 9884075,
poll: None,
post_count: 3,
title: "当你osu!玩多了.jpg",
topic_type: "normal",
updated_at: "2025-04-27T17:46:35+00:00",
user_id: 32586085
}, ForumTopic {
created_at: "2025-04-25T09:11:21+00:00",
deleted_at: None,
first_post_id: 9881922,
forum_id: 25,
id: 2071009,
is_locked: false,
last_post_id: 9882629,
poll: None,
post_count: 4,
title: "ios那个测试大概多久放一次名额",
topic_type: "normal",
updated_at: "2025-04-26T02:35:47+00:00",
user_id: 3417101
}, ForumTopic {
created_at: "2025-04-10T03:26:37+00:00",
deleted_at: None,
first_post_id: 9866079,
forum_id: 25,
id: 2064745,
is_locked: false,
last_post_id: 9876535,
poll: None,
post_count: 4,
title: "[Mania]游戏界面编辑求助",
topic_type: "normal",
updated_at: "2025-04-21T15:43:19+00:00",
user_id: 32082018
}, ForumTopic {
created_at: "2025-04-19T22:44:58+00:00",
deleted_at: None,
first_post_id: 9874729,
forum_id: 25,
id: 2068809,
is_locked: false,
last_post_id: 9874729,
poll: None,
post_count: 1,
title: "Osulazer设置求助(已解决)",
topic_type: "normal",
updated_at: "2025-04-19T22:44:58+00:00",
user_id: 352027
}, ForumTopic {
created_at: "2025-01-18T05:48:00+00:00",
deleted_at: None,
first_post_id: 9785010,
forum_id: 25,
id: 2028963,
is_locked: false,
last_post_id: 9871495,
poll: None,
post_count: 3,
title: "Lazer的mania投皮怎么尖尖的?(",
topic_type: "normal",
updated_at: "2025-04-16T07:07:32+00:00",
user_id: 28451567
}, ForumTopic {
created_at: "2025-03-27T16:34:29+00:00",
deleted_at: None,
first_post_id: 9852551,
forum_id: 25,
id: 2059046,
is_locked: false,
last_post_id: 9866121,
poll: None,
post_count: 4,
title: "萌新报到",
topic_type: "normal",
updated_at: "2025-04-10T05:55:39+00:00",
user_id: 36452971
}, ForumTopic {
created_at: "2024-09-24T10:27:44+00:00",
deleted_at: None,
first_post_id: 9678519,
forum_id: 25,
id: 1981634,
is_locked: false,
last_post_id: 9864247,
poll: None,
post_count: 13,
title: "PP究竟是如何算出来的? 剖析osu!的PP算法!",
topic_type: "normal",
updated_at: "2025-04-08T00:07:10+00:00",
user_id: 10458474
}, ForumTopic {
created_at: "2025-03-24T10:37:23+00:00",
deleted_at: None,
first_post_id: 9849880,
forum_id: 25,
id: 2057806,
is_locked: true,
last_post_id: 9858420,
poll: None,
post_count: 4,
title: "[mania][4k][待BNS或MAT審 核(For ranked)]Xeroa-camellia (開放中)",
topic_type: "normal",
updated_at: "2025-04-02T13:22:30+00:00",
user_id: 34354085
}, ForumTopic {
created_at: "2025-03-21T10:19:07+00:00",
deleted_at: None,
first_post_id: 9846932,
forum_id: 25,
id: 2056350,
is_locked: false,
last_post_id: 9847097,
poll: None,
post_count: 3,
title: "新手求助!(OSU本家模式)",
topic_type: "normal",
updated_at: "2025-03-21T13:01:24+00:00",
user_id: 35919951
}, ForumTopic {
created_at: "2025-03-19T11:37:15+00:00",
deleted_at: None,
first_post_id: 9845336,
forum_id: 25,
id: 2055630,
is_locked: false,
last_post_id: 9845357,
poll: None,
post_count: 3,
title: "提问",
topic_type: "normal",
updated_at: "2025-03-19T12:14:59+00:00",
user_id: 37047453
}, ForumTopic {
created_at: "2025-02-24T07:18:45+00:00",
deleted_at: None,
first_post_id: 9823156,
forum_id: 25,
id: 2045806,
is_locked: false,
last_post_id: 9841337,
poll: None,
post_count: 14,
title: "[Mania4k][Chinese]GBC 2025 Spring GB杯春季周常活动(报名结束)",
topic_type: "normal",
updated_at: "2025-03-14T11:24:35+00:00",
user_id: 14128407
}, ForumTopic {
created_at: "2025-03-08T08:18:01+00:00",
deleted_at: None,
first_post_id: 9836001,
forum_id: 25,
id: 2050895,
is_locked: false,
last_post_id: 9836917,
poll: None,
post_count: 4,
title: "怎麼關閉自動更新?",
topic_type: "normal",
updated_at: "2025-03-09T04:08:42+00:00",
user_id: 36885070
}, ForumTopic {
created_at: "2025-03-08T17:22:14+00:00",
deleted_at: None,
first_post_id: 9836409,
forum_id: 25,
id: 2051086,
is_locked: false,
last_post_id: 9836765,
poll: None,
post_count: 3,
title: "求助!为什么我成绩上传了但不加PP啊",
topic_type: "normal",
updated_at: "2025-03-08T23:55:27+00:00",
user_id: 32740956
}, ForumTopic {
created_at: "2023-06-09T10:51:04+00:00",
deleted_at: None,
first_post_id: 9144838,
forum_id: 25,
id: 1776537,
is_locked: false,
last_post_id: 9832431,
poll: None,
post_count: 13,
title: "第八屆Osu!台灣大賽 Osu! Taiwan Standard Tournament #8",
topic_type: "normal",
updated_at: "2025-03-05T19:35:10+00:00",
user_id: 1285637
}, ForumTopic {
created_at: "2025-03-02T17:22:52+00:00",
deleted_at: None,
first_post_id: 9829746,
forum_id: 25,
id: 2048678,
is_locked: false,
last_post_id: 9830371,
poll: None,
post_count: 3,
title: "還有什麼小比賽可以比的嗎?",
topic_type: "normal",
updated_at: "2025-03-03T10:12:38+00:00",
user_id: 33413887
}, ForumTopic {
created_at: "2009-09-10T08:57:53+00:00",
deleted_at: None,
first_post_id: 200268,
forum_id: 25,
id: 17363,
is_locked: false,
last_post_id: 9829743,
poll: None,
post_count: 807,
title: "大家ID的由來?",
topic_type: "normal",
updated_at: "2025-03-02T17:20:02+00:00",
user_id: 7824
}, ForumTopic {
created_at: "2021-09-30T15:09:18+00:00",
deleted_at: None,
first_post_id: 8318273,
forum_id: 25,
id: 1431141,
is_locked: false,
last_post_id: 9829598,
poll: Some(Poll {
allow_vote_change: false,
ended_at: None,
hide_incomplete_results: false,
last_vote_at: Some("2025-05-09T05:32:54+00:00"),
max_votes: 1,
options: [PollOption {
id: 0,
text: Body {
bbcode: "华北(北京、天津、河北、山西、内蒙古)",
html: "<div class='bbcode'>华北(北京、天津、河北、山西、内蒙古)</div>"
},
vote_count: Some(70)
}, PollOption {
id: 1,
text: Body {
bbcode: "东 北(辽宁、吉林、黑龙江)",
html: "<div class='bbcode'>东北(辽宁、吉林、黑龙江)</div>"
},
vote_count: Some(38)
}, PollOption {
id: 2,
text: Body {
bbcode: "华东(上海、江苏、浙江、安徽、江西、福建、山东)",
html: "<div class='bbcode'>华东(上海、江苏、浙 江、安徽、江西、福建、山东)</div>"
},
vote_count: Some(260)
}, PollOption {
id: 3,
text: Body {
bbcode: "华中(河南、湖北、湖南)",
html: "<div class='bbcode'>华中(河南、湖北、湖南)</div>"
},
vote_count: Some(72)
}, PollOption {
id: 4,
text: Body {
bbcode: "华南(广东、广西、海南)",
html: "<div class='bbcode'>华南(广东、广西、海南)</div>"
},
vote_count: Some(146)
}, PollOption {
id: 5,
text: Body {
bbcode: "西南(重庆、四川、贵州、云南、西藏)",
html: "<div class='bbcode'>西南(重庆、四川、贵州、云南 、西藏)</div>"
},
vote_count: Some(61)
}, PollOption {
id: 6,
text: Body {
bbcode: "西北(陕西、甘肃、宁夏、青海、新疆)",
html: "<div class='bbcode'>西北(陕西、甘肃、宁夏、青海、新疆)</div>"
},
vote_count: Some(27)
}, PollOption {
id: 7,
text: Body {
bbcode: "港澳台(香港、澳门、台湾)",
html: "<div class='bbcode'>港澳台(香港、澳门、台湾)</div>"
},
vote_count: Some(160)
}],
started_at: "2021-09-30T15:09:18+00:00",
title: Body {
bbcode: "你所在的地区",
html: "<div class='bbcode'>你所在的地区</div>"
},
total_vote_count: 834
}),
post_count: 172,
title: "统计一下各位所在的地区",
topic_type: "normal",
updated_at: "2025-03-02T14:42:05+00:00",
user_id: 16396675
}, ForumTopic {
created_at: "2025-03-01T16:24:24+00:00",
deleted_at: None,
first_post_id: 9828635,
forum_id: 25,
id: 2048097,
is_locked: false,
last_post_id: 9829592,
poll: None,
post_count: 3,
title: "有没有人来我的队伍!!叫omori!",
topic_type: "normal",
updated_at: "2025-03-02T14:37:19+00:00",
user_id: 17723349
}, ForumTopic {
created_at: "2025-02-24T10:19:03+00:00",
deleted_at: None,
first_post_id: 9823257,
forum_id: 25,
id: 2045853,
is_locked: false,
last_post_id: 9828695,
poll: None,
post_count: 9,
title: "新人报道",
topic_type: "normal",
updated_at: "2025-03-01T17:07:33+00:00",
user_id: 37524888
}, ForumTopic {
created_at: "2021-06-20T13:56:34+00:00",
deleted_at: None,
first_post_id: 8156478,
forum_id: 25,
id: 1353270,
is_locked: false,
last_post_id: 9828195,
poll: None,
post_count: 6,
title: "怎么上传谱面",
topic_type: "normal",
updated_at: "2025-03-01T04:33:00+00:00",
user_id: 24138556
}, ForumTopic {
created_at: "2025-02-26T03:30:26+00:00",
deleted_at: None,
first_post_id: 9825447,
forum_id: 25,
id: 2046635,
is_locked: false,
last_post_id: 9825447,
poll: None,
post_count: 1,
title: "将故事板/视 频添加到已下载的谱面中",
topic_type: "normal",
updated_at: "2025-02-26T03:30:26+00:00",
user_id: 32786307
}, ForumTopic {
created_at: "2025-02-21T05:45:40+00:00",
deleted_at: None,
first_post_id: 9819705,
forum_id: 25,
id: 2044200,
is_locked: false,
last_post_id: 9819705,
poll: None,
post_count: 1,
title: "标准模式曲包1-1573网盘链接",
topic_type: "normal",
updated_at: "2025-02-21T05:45:40+00:00",
user_id: 787542
}, ForumTopic {
created_at: "2025-02-17T17:46:38+00:00",
deleted_at: None,
first_post_id: 9816069,
forum_id: 25,
id: 2042678,
is_locked: false,
last_post_id: 9818623,
poll: None,
post_count: 3,
title: "求且 旋轉式螢幕 解析設定",
topic_type: "normal",
updated_at: "2025-02-20T05:27:14+00:00",
user_id: 7241816
}, ForumTopic {
created_at: "2025-02-11T09:04:27+00:00",
deleted_at: None,
first_post_id: 9809714,
forum_id: 25,
id: 2039667,
is_locked: false,
last_post_id: 9811760,
poll: None,
post_count: 3,
title: "移動滑鼠會嚴重掉偵 設備也沒多爛 我犯了甚麼賤 ...",
topic_type: "normal",
updated_at: "2025-02-13T16:36:30+00:00",
user_id: 9323350
}, ForumTopic {
created_at: "2025-01-28T15:17:11+00:00",
deleted_at: None,
first_post_id: 9796574,
forum_id: 25,
id: 2033692,
is_locked: false,
last_post_id: 9806499,
poll: None,
post_count: 4,
title: "想要这首歌",
topic_type: "normal",
updated_at: "2025-02-08T05:31:30+00:00",
user_id: 34827821
}, ForumTopic {
created_at: "2025-01-20T09:14:14+00:00",
deleted_at: None,
first_post_id: 9787374,
forum_id: 25,
id: 2029988,
is_locked: false,
last_post_id: 9801753,
poll: None,
post_count: 3,
title: "求帮忙找个皮肤",
topic_type: "normal",
updated_at: "2025-02-02T16:57:48+00:00",
user_id: 29865808
}, ForumTopic {
created_at: "2025-01-23T19:48:39+00:00",
deleted_at: None,
first_post_id: 9791235,
forum_id: 25,
id: 2031440,
is_locked: false,
last_post_id: 9795129,
poll: None,
post_count: 5,
title: "超想要這首歌",
topic_type: "normal",
updated_at: "2025-01-27T08:32:56+00:00",
user_id: 22520682
}, ForumTopic {
created_at: "2025-01-24T08:12:24+00:00",
deleted_at: None,
first_post_id: 9791714,
forum_id: 25,
id: 2031654,
is_locked: false,
last_post_id: 9792820,
poll: None,
post_count: 5,
title: "求支援",
topic_type: "normal",
updated_at: "2025-01-25T06:22:03+00:00",
user_id: 31122625
}, ForumTopic {
created_at: "2025-01-23T17:50:56+00:00",
deleted_at: None,
first_post_id: 9791138,
forum_id: 25,
id: 2031390,
is_locked: false,
last_post_id: 9792617,
poll: None,
post_count: 6,
title: "osu鼠標一直往左上卡住 求解",
topic_type: "normal",
updated_at: "2025-01-25T01:02:19+00:00",
user_id: 23629958
}, ForumTopic {
created_at: "2025-01-20T09:25:38+00:00",
deleted_at: None,
first_post_id: 9787380,
forum_id: 25,
id: 2029991,
is_locked: false,
last_post_id: 9788101,
poll: None,
post_count: 3,
title: "哪里有OSU!(lazer)的皮肤",
topic_type: "normal",
updated_at: "2025-01-20T23:24:50+00:00",
user_id: 37047453
}, ForumTopic {
created_at: "2025-01-20T12:52:12+00:00",
deleted_at: None,
first_post_id: 9787569,
forum_id: 25,
id: 2030072,
is_locked: false,
last_post_id: 9787684,
poll: None,
post_count: 3,
title: "那 个osu论坛要怎么发图片啊",
topic_type: "normal",
updated_at: "2025-01-20T15:15:18+00:00",
user_id: 28845615
}, ForumTopic {
created_at: "2025-01-15T13:24:21+00:00",
deleted_at: None,
first_post_id: 9782356,
forum_id: 25,
id: 2027958,
is_locked: false,
last_post_id: 9785082,
poll: None,
post_count: 3,
title: "关于游戏内mania编辑器的问题",
topic_type: "normal",
updated_at: "2025-01-18T07:14:34+00:00",
user_id: 36062474
}, ForumTopic {
created_at: "2022-06-14T08:51:34+00:00",
deleted_at: None,
first_post_id: 8671261,
forum_id: 25,
id: 1593938,
is_locked: false,
last_post_id: 9783841,
poll: None,
post_count: 49,
title: "劣质复读",
topic_type: "normal",
updated_at: "2025-01-17T02:00:19+00:00",
user_id: 14059135
}, ForumTopic {
created_at: "2025-01-10T06:23:16+00:00",
deleted_at: None,
first_post_id: 9776628,
forum_id: 25,
id: 2025805,
is_locked: false,
last_post_id: 9782338,
poll: None,
post_count: 2,
title: "求帮助",
topic_type: "normal",
updated_at: "2025-01-15T13:13:32+00:00",
user_id: 27242441
}, ForumTopic {
created_at: "2025-01-06T12:46:22+00:00",
deleted_at: None,
first_post_id: 9773362,
forum_id: 25,
id: 2024402,
is_locked: false,
last_post_id: 9776800,
poll: None,
post_count: 4,
title: "求帮助",
topic_type: "normal",
updated_at: "2025-01-10T10:30:33+00:00",
user_id: 37047453
}, ForumTopic {
created_at: "2024-09-22T06:29:24+00:00",
deleted_at: None,
first_post_id: 9676399,
forum_id: 25,
id: 1980727,
is_locked: false,
last_post_id: 9772326,
poll: None,
post_count: 5,
title: "000大约1小时游戏时间 建议打啥谱子",
topic_type: "normal",
updated_at: "2025-01-05T14:23:21+00:00",
user_id: 36498185
}, ForumTopic {
created_at: "2025-01-04T10:01:57+00:00",
deleted_at: None,
first_post_id: 9771178,
forum_id: 25,
id: 2023438,
is_locked: false,
last_post_id: 9771394,
poll: None,
post_count: 2,
title: "求助!osu登不上 一直显示请求超时",
topic_type: "normal",
updated_at: "2025-01-04T15:04:28+00:00",
user_id: 35798061
}, ForumTopic {
created_at: "2024-12-23T06:18:42+00:00",
deleted_at: None,
first_post_id: 9760220,
forum_id: 25,
id: 2018309,
is_locked: false,
last_post_id: 9763692,
poll: None,
post_count: 4,
title: "今天是考研后的第一天,打开OSU差点哭出 来",
topic_type: "normal",
updated_at: "2024-12-27T06:04:58+00:00",
user_id: 16228191
}, ForumTopic {
created_at: "2010-08-24T03:12:10+00:00",
deleted_at: None,
first_post_id: 513749,
forum_id: 25,
id: 36043,
is_locked: false,
last_post_id: 9761167,
poll: None,
post_count: 786,
title: "自爆生日吧 /w\\ (Post your birthday)",
topic_type: "normal",
updated_at: "2024-12-24T06:10:01+00:00",
user_id: 77537
}, ForumTopic {
created_at: "2024-12-18T11:58:20+00:00",
deleted_at: None,
first_post_id: 9756018,
forum_id: 25,
id: 2016406,
is_locked: false,
last_post_id: 9761055,
poll: None,
post_count: 4,
title: "关于作图rank的问题",
topic_type: "normal",
updated_at: "2024-12-24T02:14:58+00:00",
user_id: 28581798
}, ForumTopic {
created_at: "2024-12-21T02:55:55+00:00",
deleted_at: None,
first_post_id: 9758389,
forum_id: 25,
id: 2017410,
is_locked: false,
last_post_id: 9761054,
poll: None,
post_count: 2,
title: "问下各位o友们",
topic_type: "normal",
updated_at: "2024-12-24T02:12:56+00:00",
user_id: 31885898
}],
pinned_topics: [ForumTopic {
created_at: "2009-03-07T06:16:24+00:00",
deleted_at: None,
first_post_id: 95488,
forum_id: 25,
id: 10737,
is_locked: false,
last_post_id: 9884565,
poll: None,
post_count: 493,
title: "新手提问帖(附常见问题解答)",
topic_type: "announcement",
updated_at: "2025-04-28T05:43:29+00:00",
user_id: 13103
}, ForumTopic {
created_at: "2015-05-17T07:47:51+00:00",
deleted_at: None,
first_post_id: 4165302,
forum_id: 25,
id: 329503,
is_locked: false,
last_post_id: 9728231,
poll: None,
post_count: 172,
title: "华语 BN / NAT / GMT / Alumni 成员名单",
topic_type: "announcement",
updated_at: "2024-11-16T03:24:24+00:00",
user_id: 3143784
}, ForumTopic {
created_at: "2024-09-10T12:43:28+00:00",
deleted_at: None,
first_post_id: 9665951,
forum_id: 25,
id: 1975693,
is_locked: false,
last_post_id: 9675752,
poll: None,
post_count: 15,
title: "osu! Chinese Tournament Hub - 面向全球华人玩家的 比赛交流中枢",
topic_type: "announcement",
updated_at: "2024-09-21T16:05:39+00:00",
user_id: 13858681
}, ForumTopic {
created_at: "2015-04-17T05:54:40+00:00",
deleted_at: None,
first_post_id: 4060357,
forum_id: 25,
id: 320792,
is_locked: true,
last_post_id: 4061012,
poll: None,
post_count: 2,
title: "Report功能的使用方法",
topic_type: "announcement",
updated_at: "2015-04-17T12:18:29+00:00",
user_id: 1876867
}, ForumTopic {
created_at: "2012-12-17T12:35:59+00:00",
deleted_at: None,
first_post_id: 1986474,
forum_id: 25,
id: 109978,
is_locked: true,
last_post_id: 1986474,
poll: None,
post_count: 1,
title: "中文区精华/资料索引",
topic_type: "announcement",
updated_at: "2012-12-17T12:35:59+00:00",
user_id: 77537
}, ForumTopic {
created_at: "2025-01-21T05:04:13+00:00",
deleted_at: None,
first_post_id: 9788315,
forum_id: 25,
id: 2030373,
is_locked: false,
last_post_id: 9836920,
poll: None,
post_count: 16,
title: "[NPC 2025] 2025年 “新纸张杯” 作图比赛",
topic_type: "sticky",
updated_at: "2025-03-09T04:11:59+00:00",
user_id: 3076909
}, ForumTopic {
created_at: "2025-01-27T16:03:18+00:00",
deleted_at: None,
first_post_id: 9795475,
forum_id: 25,
id: 2033294,
is_locked: false,
last_post_id: 9801784,
poll: None,
post_count: 64,
title: "华人麻婆年度评语2024--A Year In Mapping 2024 (osu! Standard Chinese Mappers)",
topic_type: "sticky",
updated_at: "2025-02-02T17:37:14+00:00",
user_id: 16833061
}, ForumTopic {
created_at: "2025-01-28T09:57:14+00:00",
deleted_at: None,
first_post_id: 9796322,
forum_id: 25,
id: 2033610,
is_locked: false,
last_post_id: 9799191,
poll: None,
post_count: 37,
title: "华人麻婆年度总结2024 (osu!mania)——A Year In Mapping 2024 (Osu!mania Chinese Mappers)",
topic_type: "sticky",
updated_at: "2025-01-31T06:29:47+00:00",
user_id: 1653229
}, ForumTopic {
created_at: "2011-03-01T08:08:22+00:00",
deleted_at: None,
first_post_id: 733117,
forum_id: 25,
id: 47551,
is_locked: false,
last_post_id: 9764812,
poll: None,
post_count: 59,
title: "DC群、Q群、M群組織社團集中發表廣告區",
topic_type: "sticky",
updated_at: "2024-12-28T12:30:18+00:00",
user_id: 7824
}, ForumTopic {
created_at: "2015-06-17T14:17:53+00:00",
deleted_at: None,
first_post_id: 4257967,
forum_id: 25,
id: 338759,
is_locked: false,
last_post_id: 8202686,
poll: None,
post_count: 167,
title: "華語 Standard Mapping Academy (Mapper 歡迎前來報到/查詢!)",
topic_type: "sticky",
updated_at: "2021-07-19T11:21:29+00:00",
user_id: 1856463
}, ForumTopic {
created_at: "2017-03-01T16:50:16+00:00",
deleted_at: None,
first_post_id: 5851787,
forum_id: 25,
id: 564179,
is_locked: false,
last_post_id: 6287844,
poll: None,
post_count: 11,
title: "osu! 繁體 & 簡體中文翻譯綜合帖",
topic_type: "sticky",
updated_at: "2017-10-06T13:08:46+00:00",
user_id: 1856463
}]
}
*/