-
Notifications
You must be signed in to change notification settings - Fork 93
/
openlook_rules.html
1534 lines (1473 loc) · 118 KB
/
openlook_rules.html
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
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<div id="content">
<br>
<style>
#rulesheader_wrap,.rulehead_cat {
padding:10px;
}
#rulesheader_wrap li,.rulehead_cat li {
padding-left:5px;
padding-right:5px;
}
.rulebox {
padding:10px;
margin:10px;
}
</style>
<div class="thin">
<div id="rulesheader_wrap">
<ul>
<li class="thispage"><a href="rules.php">Basic/Security Rules</a></li>
<li><a href="rules.php?p=ratio">Ratio</a></li>
<li><a href="rules.php?p=upload">Upload</a></li>
<li><a href="rules.php?p=requests">Requests</a></li>
<li><a href="rules.php?p=clients">Allowed clients</a></li>
<li><a href="rules.php?p=forums">Forums</a></li>
<li><a href="rules.php?p=emails">Allowed emails</a></li>
</ul>
</div>
<div class="rulesmenu_info">
<span class="warning_text">Your account will be permanently banned if you violate the basic rules. If it is unclear whether there is a violation, please contact the staff via message.</span> </div>
</div>
<br>
<div class="thin rulepage">
<h3>Basic rules</h3>
<div class="rulebox">
<ul>
<li>The tracker is not for the purpose of monetization and the user is responsible for all actions in using the tracker.</li>
<li>Only one account per person is allowed, and blocked accounts are no exception.</li>
<li>Upload/download traffic must be logged within 72 hours of signing up.</li>
<li>Users should be familiar with the rules and fully follow the staff team's disposition for violations of the rules and other necessary actions.</li>
<li>If the staff requests a response from the user, the user must respond within 72 hours from the time of the first access after the time when the staff requested a response.</li>
<li>You must not discuss any information related to the tracker to the outside world.</li>
<li>You must not cheat, cheat or exploit bugs. If you find any bugs, please notify the staff immediately.</li>
<li>Access using virtual networks such as proxy, VPN, VPS, and cloud service is prohibited in principle. If necessary, you must ask for permission from the staff in advance, and when you ask for permission, you must prove that it is a service that is free from DMCA, does not record any logs, and is exclusively assigned an IP. For detailed acceptance criteria, please refer to the <a href="https://openlook.me/wiki.php?action=article&id=53">VPN Allowance</a> section of the Help.</li>
<li>Allow a maximum of 2 IPs per account. If multiple accounts access from one IP, all accounts will be blocked.</li>
<li>You must not share the same torrent on different devices at the same time.</li>
<li>If you do not log in for a long time, your account may be blocked. For more information, please refer to the <a href="/wiki.php?action=article&id=7">inactive account, inactive torrent</a> section of the Help.</li>
<li>The sale, exchange or public distribution of accounts or invitations is prohibited.</li>
<li>The invitees are solely responsible for the invited users. Please distribute your invitations carefully.</li>
<li>Your account will be blocked if the Beginner status is maintained for more than 8 weeks in a row. If you have been demoted to Beginner, you can apply for rating restoration from one week before the expiration of the warning period.</li>
<li>All members must use a designated email service provider, a list of which can be found in the Wiki.</li>
</ul>
</div>
</div>
</div>
<div id="ratio">
<div class="thin rulepage">
<h3>Ratio</h3>
<div class="rulebox">
<ul>
<li>The ratio watch (monitoring) is operated to automatically measure the contribution of members to the site based on the number of uploads/downloads of the site by the system and to identify bad users. When downloading a certain amount of data, you must upload it according to the criteria below. Please refer to the table below for detailed criteria.</li>
<li>If you do not meet the required ratio, you will be given a recovery period of 4 weeks. During this period, if you download more than 20GB or do not meet the required ratio, your account will be blocked.</li>
<li>In the case of Ratiowatch, <strong>up to 3</strong> are allowed. If you get caught by the 4th Ratiowatch, your account will be automatically blocked, and you will no longer be able to sign up for this tracker.</li>
<li>You can check the number of Ratiowatch in the [Personal] section by clicking on your ID.</li>
</ul>
<table>
<tbody><tr class="colhead">
<td>Download</td>
<td>Request ratio</td>
</tr>
<tr class="rowa">
<td>0 to 10GB</td>
<td>0.00</td>
</tr>
<tr class="rowb">
<td>10 to 20GB</td>
<td>0.10</td>
</tr>
<tr class="rowb">
<td>20-40GB</td>
<td>0.25</td>
</tr>
<tr class="rowb">
<td>40 to 60GB</td>
<td>0.40</td>
</tr>
<tr class="rowb">
<td>60 to 80GB</td>
<td>0.50</td>
</tr>
<tr class="rowb">
<td>80 ~ 100GB</td>
<td>0.60</td>
</tr>
<tr class="rowb">
<td>100GB or more</td>
<td>0.70</td>
</tr>
</tbody></table>
</div>
<h3>Upload credits and bonus points</h3>
<div class="rulebox">
<ul>
<li>Upload credits and bonus points that may affect the ratio must be managed carefully, and exchanges or sales through trading sites are strictly prohibited.</li>
<li>You cannot post content for uploading credits or bonus point gifts or hold events in any space other than this site and BitKorea.</li>
<li>Unconditional upload events are limited, even if they are meant to help other users. (eg reset event, etc.)</li>
</ul>
</div>
<h3>Limited to receive upload credits/bonus points as a gift</h3>
<div class="rulebox">
<ul>
<li>The level that can gift upload credits and bonus points is higher than the Member level.</li>
<li>There is no limit to the level of gifting of upload credits and bonus points, however, gifting is restricted in the following cases.
<ul>
<li>Your upload credit/bonus point gift is limited for 4 weeks after you sign up.</li>
<li>If receiving a gift is restricted 4 weeks prior to membership registration and it is not released even after 4 weeks, you must restore your ratio to 1.0 or higher and request the cancellation via a message from the management.</li>
<li>If receiving a gift is restricted by the Ratio Watch monitoring system, it will be released when the Ratio Watch is unlocked.</li>
<li>It will be unlocked every night at midnight if you recover the minimum required ratio through sponsorship while receiving limited gifts.</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div id="100">
<div class="rulebox pad">
<div class="date">Updated: <span class="time tooltip">2 years, 2 months ago</span></div>
<blockquote><strong>* Articles mentioned in the Classification Rules take precedence over those in the Classification Rules.<br>
* General rules are common to all classifications.<br>
* Compulsory comments in the input form of the upload menu have the same effect as rules.<br>
* Materials that do not conform to the upload rules may be deleted at the discretion of the staff.</strong></blockquote><br>
<br>
* <strong>Limit attachment size</strong><br>
o The maximum file size that can be attached on the upload page is <strong>up to 5MB</strong>.<br>
o The total file capacity refers to the capacity including all torrent seed files, snapshots, original screenshots, and execution screenshots.<br>
o The size of the torrent seed file should not exceed <strong>maximum 512KB</strong>.<br>
o If you exceed the maximum file size limit, please consult with the staff.<br>
<br>
* <strong>Rules related to data</strong><br>
o All uploaded data must not have any restrictions (DRM, LOCK, etc.) in execution.<br>
o If compressed files are allowed, <strong>rar, zip, 7z(7zip)</strong> only allow three compression methods.<br>
o Duplicate uploads are not allowed.<br>
- In principle, materials of similar quality are not allowed, but materials with different release groups or encoding information are not considered duplicates.<br>
- Even inactive torrents without seeds cannot be uploaded until they are completely deleted.<br>
o Data may be deleted if the file name or file information is tampered with or if the format is not appropriate.<br>
o If you download uploaded data and perform secondary production such as encoding or resizing, you must change the file name of the produced data and upload it.<br>
<br>
* <strong>Prohibited material</strong><br>
o In the case of uploading material that is being operated exclusively on another site, it may be deleted at the discretion of the management team if the grounds for claiming the exclusive claim are justified.<br>
o <span style="color: red;"><strong>If you leak data that is set to be leaked outside, your account and IP will be blocked immediately upon discovery.</strong></span><br>
o The downloader has a special responsibility for the management of prohibited materials, and does not have the right to re-upload it anywhere.<br>
<br>
* <strong>Trump</strong><br>
o When uploading pack data, duplicate individual episodes will be Trumped.<br>
o Pack Individual material of similar quality can be Trump.<br>
o Materials using unofficial sources will be deleted when materials using official sources are uploaded.<br>
- Unofficial sources to be deleted when uploading DVD-Rip, Blu-Ray: WORKPRINT, CAM, TC, TS, Screener, DVDSCR<br>
o The Game category is not subject to push rules.<br>
<br>
* <strong>Typographical rules</strong><br>
o Use only official names.<br>
o Materials registered later follow the name of the material registered earlier. (If it is unfair, you can request a change to the management team)<br>
o If the subtitle is clear, use a colon ( : ), including a space between the subject and sub-title. Yes. Bruce Lee: The Warrior's Journey<br>
o Always use a tilde (~) to indicate a section. Yes. Volumes 1 to 10 | E01~32<br>
o Notation according to language<br>
- All input characters are exactly case sensitive.<br>
- All input sentences and phrases are accurately separated by spaces.<br>
- When mixing, separate them with parentheses, and a space must be used between the parentheses and the words outside. <br>
Yes. Wonder Girls (X) ⇒ Wonder Girls (O)<br>
- In principle, the form of 'Hangul (original language)' is used, and if there is no Korean expression, it can be written in the form of 'English (original language)'.<br>
o Year and date notation<br>
- The year must be exactly four digits. Yes. <strong>09 (x) ⇒ 2009 (O)</strong><br>
- The date must be exactly six digits in the form of yymmdd, two digits each for the year, month, and day. Yes. <strong>20090128 (X) ⇒ 090128 (O)</strong><br>
- For year indication of data spanning multiple years, only enter the earliest year among data contents. Yes. <strong>2005-2009 (X) ⇒ 2005 (O)</strong><br>
<br>
* <strong>Portable Devices</strong><br>
o When uploading a portable device, select Other and enter the resolution directly. (Ex. 480X320)<br>
o Select Portable for the media source item.<br>
o Enter the device name in the Release Group field. (Ex. iphone, psp)<br>
<br>
* <strong>Enter image and encoding information</strong><br>
o You must attach a screenshot in its original size. (After Chapter 1, it is attached to the individual torrent information section using image hosting)<br>
o When attaching a screenshot [<a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/forums.php?action=viewthread&threadid=4936" You cannot attach screenshots that are prohibited in the >Information about images when uploading</a>] to this server.<br>
o Snapshots are recommended and are uploaded in the form of 4X4 when uploaded. <br>
o Encoding information is mandatory, and Media Info (BD Info for Blu-Ray originals) is strongly recommended as a tool to use. [<a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/wiki.php?action=article&id=17">See help</ a>]
</div>
</div>
<div id="1">
<div class="rulebox pad">
<div class="date">Updated: <span class="time tooltip">1 year, 1 month ago</span></div>
* <strong><span style="color: green;">Upload acceptance criteria</span></strong><br>
<br>
o You can upload only sound sources extracted from or sold from officially released albums in the market.<br>
- You cannot upload compilations or album bundles that are arbitrarily combined by an individual.<br>
ex) Best 100 ballads I recommend, a collection of dance songs for driving, Mun-se Lee's 1st to 5th albums, and Im Jae-beom's complete collection<br>
- Free music and non-for sale items can be uploaded if they are recognized as useful materials through inquiries from the management.<br>
<br>
o All music material can only be uploaded in the form of a complete composition.<br>
- Certain tracks must not be omitted from the original composition of the album, and if there are repertoire tracks, all repertoire tracks must also be included.<br>
- If some of the tracks of the album sold online are not serviced due to copyright issues, please inquire with the management team in advance whether it is possible to upload.<br>
<br>
o You can only upload with a bitrate of 192kbps (CBR) or V2 (VBR) or higher.<br>
- If 1 month has passed since the release date and no higher bitrate has been uploaded, an exception is allowed up to 128kbps or V5 (VBR).<br>
- However, if a sound source of 192kbps (CBR) or V2 (VBR) or higher is uploaded later, a trump replacing the existing material with a new material is allowed.<br>
<br>
o Lossless music can only be uploaded in FLAC.<br>
- You can upload any level of FLAC from Compress Levels 1 to 8 except for the uncompressed FLAC, and Compress Level 8 is recommended.<br>
- It means only individual FLACs, and whole-file FLACs are not allowed.<br>
- FLAC with 100% log score and cue file can trump all existing lossless sound sources.<br>
- log score is <strong><a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/logchecker.php">log checker</a> You can check before uploading at </strong>.<br>
- If 100% log + cue data is uploaded previously, all lossless sound sources uploaded after that, regardless of whether exclusive data is set, are duplicates.<br>
- If the CD itself is produced by lossless mastering and music sold online is produced by lossless mastering, even 100% of the log can coexist with the WEB.<br>
- If the CD itself is lossy mastering, or if lossless sound sources purchased online appear to be transcoded, you must be able to prove the source.<br>
- Even if the CD itself was produced by lossy mastering, no proof is required if it contains EAC/XLD log files containing the extraction process.<br>
<br>
o All sound sources must be tagged with the minimum number of tags (artist, album title, song title, release year).<br>
- Inserting artwork is optional, and inserting artwork is limited to a maximum of 512KB per track.<br>
- Materials that do not comply with the above are allowed to be trumped as material with tags supplemented.<br>
<br>
o Track names should be organized with minimal information (track number, song name) included.<br>
ex) 03. Gangnam Style, 03 - Gangnam Style, Psy - 03. Gangnam Style<br>
- Materials that do not comply with the above are allowed as trumps as the track name is supplemented.<br>
- The same applies to singles with only one song.<br>
<br>
o Do not enter personal information other than the musical part in the folder name, and uploading of files containing personal information or PR contents from other websites is prohibited.<br>
<br>
o <span style="color: red;"><strong>Do not upload transcode data</strong></span><br>
- Transcode material converted from lossy sound source to lossy/lossless sound source <strong><span style="text-decoration: underline;">Never allowed for any reason</span></strong>.<br>
ex) MP3 320kbps → MP3 192kbps, MP3 192kbps → MP3 320kbps, MP3 320kbps → FLAC<br>
- When converting bitrate, only data converted from lossless sound source to lossless sound source or from lossless sound source to lossy sound source is allowed.<br>
ex) APE → FLAC, WAV → FLAC, ALAC → FLAC, FLAC → MP3<br>
- <strong><span style="text-decoration: underline;">basic warning of 2 weeks</span></strong> is given when transcode upload is detected You may encounter situations that are not.<br>
- If you are unsure whether the material you want to upload is transcoded or not, it is strongly recommended that you learn how to determine transcode before uploading.<br>
<br>
o It is forbidden to modify the log file separately under any circumstances.<br>
- If the log file contains personal information and needs to be modified, the log file must be excluded and uploaded, or if you want to upload the log file, you must re-extract it.<br>
<br>
o Log files created while extracting FLAC from virtual image files (ISO, MDF) created from CD are not accepted and upload is prohibited.<br>
- It is possible to upload only FLAC without log files.<br>
- FLAC ripped from virtual image files created from SACD and DVD-Audio is irrelevant.<br>
<br>
o All tracks included in an album are only allowed to be extracted from the original album with the same settings on a single encoder.<br>
- Since one of the tracks in one of the compilation albums is empty, it is not allowed to take and interweave from another album.<br>
<br>
o The charts below can be uploaded.<br>
- The counting standard is weekly.<br>
- Melon/Bugs/M.net/Olleh Music: Music/Pop/Jpop Weekly Genre Chart<br>
- Billboard Hot 100 <br>
- UK Top 40 Singles Chart<br>
- Oricon Single Weekly Ranking Top 50<br>
- Minimum bitrate of 192kbps or higher, all sound sources must be configured with the same bitrate.<br>
- Enter your name in the artist column, “Year + Genre + (counting period)” in the album title column, and the day after the last counting date in the release year column.<br>
ex) Artist: Melon, Album Title: Weekly Domestic Comprehensive Chart TOP 100 (2021.03.22 ~ 2021.03.28), Release Year: 210328<br>
- In the case of chart upload, the artist must be included in the track name in addition to the track number and song name.<br>
ex) 001. Girls' Generation - I Got a Boy, 001-Girls' Generation-I Got a Boy<br>
- In order to be able to check the overall ranking of the chart, you must attach a screenshot or a URL with the ranking.<br>
- Other daily charts and comprehensive charts are not allowed.<br>
<br>
<br>
<br>
* <strong><span style="color: green;">Artist & Album title notation</span></strong><br>
<br>
o Only official names are used for artist names, and foreign artists are written only in English regardless of nationality.<br>
- If a Korean artist uses the same English name, a space is left after entering the Korean name and the English name is written in parentheses.<br>
ex) Girls' Generation, The One, Flower, Seoul Philharmonic Orchestra<br>
- Japanese artists are listed in the order of surname - first name as is commonly used in domestic portals.<br>
ex) Namie Amuro = Amuro Namie, Ayumi Hamasaki = Hamasaki Ayumi<br>
<br>
o In the case of an album with multiple artists, arbitrary “Various Artists” is prohibited, and all artists must be entered individually through the [+] button.<br>
- Each participating artist is selected according to the nature of the album.<br>
ex) If there is an artist A's 2nd album, A is Main, if singer B participated in the album featuring, etc., Guest, if he participated in a remix, Remixer, etc.<br>
- The main artist must exist, and in the case of a compilation in which various artists evenly participated or the corresponding OST, select it as Main.<br>
- For classical albums, select and input all participating artists as Main except for Conductor and Composer. In addition, conductors and composers enter each category according to their classification.<br>
ex) [Main] Berliner Philharmoniker, Maurizio Pollini [Composer] Ludwig van Beethoven [Conductor] Claudio Abbado<br>
- If it is an anthology of a specific performer, select that player as Main and other performers participating in the album as Guest.<br>
- You do not need to enter Composer unless it is a pure classic such as popera/crossover.<br>
<br>
o Album titles also use only official names, and other unnecessary inputs such as "2nd album", "(2CD)", "1997", and "XRCD" are not included.<br>
- If the title is written in Chinese or Japanese on the album cover, it will be written in Chinese or Japanese in the same way.<br>
ex) Toki no Silhouette(X), chronological sheet(O)<br>
- In the case of works widely used in Korean in Korea, the original language and Korean are written together, and after entering the Korean title, a space is left and the original title is entered in parentheses.<br>
ex) 1 Liter of Tears, The Girl Who Leapt Through Time, Death Smiles OST (Death Smiles Original Sound Track)<br>
<br>
o When entering artist and album titles in English, the first letter and the remaining letters are case-sensitive.<br>
- Even if the album cover is written only in uppercase or lowercase letters, it is case sensitive.<br>
ex) THE BEATLES - PLEASE PLEASE ME(X), The Beatles - Please Please Me(O)<br>
ex) TRANSFIXION - ROCK STAR(X), Trans Fixion - Rock Star(O)<br>
- For prepositions and articles, it is okay to write the first letter in lowercase.<br>
ex) John Barry - Out of Africa, Koda Kumi - Go to the Top<br>
- Exceptions are made only when capital letters must be written, or when the notation is rigid even in portal searches due to consistent use in the public.<br>
ex) BoA, AKB48, ave;new, GReeeeN, FreeTEMPO, KAT-TUN, m-flo, t.A.T.u.<br>
<br>
<br>
<br>
* <strong><span style="color: green;">Enter the year of release</span></strong><br>
<br>
o Enter the original release year and re-release year separately.<br>
- For the original album released in 1987, enter the year of 1987. For the 25th anniversary reissue, click the "Additional album information" column in the upload menu and enter the year 2012.<br>
<br>
<br>
<br>
* <strong><span style="color: green;">Choose a release</span></strong><br>
<br>
o Choose the exact release type that fits the nature of the album.<br>
- Regular Album = Album, Mini Album = EP, Live Album = Live Album, Best Album = Anthology, Soundtrack (OST, AST, etc.) = Soundtrack<br>
- Collections with multiple artists are selected as compilations.<br>
ex) Kang Su-yeon's Love Song, Pastel Music 5th Anniversary, Now That's What I Call Music!, I Love Disco Diamonds Collection<br>
<br>
<br>
<br>
* <strong><span style="color: green;">Select media</span></strong><br>
<br>
o Select the exact source from which the sound source was extracted.<br>
- WEB means only digitally downloaded sound sources from online stores such as Bugs, Melon, iTunes Store, and HDtracks.<br>
- WEB does not mean the material obtained from other websites, and if the source of the obtained material is unclear whether it is CD or WEB, select CD.<br>
- CD and WEB are not considered as duplicates.<br>
- SACD and Vinyl must describe the exact extraction process in the "Individual torrent information" section of the upload menu. <br>
- SACD extracted by Bit-Perfect method using Play Station 3 can be trumped by SACD material extracted by other methods.<br>
<br>
<br>
<br>
* <strong><span style="color: green;">Select tag</span></strong><br>
<br>
o You can select a tag that matches the album's personality, and duplicate tags that match the album's personality.<br>
- Domestic music = kpop, Japanese music = jpop, overseas pop = pop, dance = dance, metal = metal, hip-hop = hip.hop, R&B = rhythm.and.blues<br>
- Korean dance music = kpop, dance, Japanese hip-hop = jpop, hip.hop<br>
- Other arbitrary tags are not included.<br>
ex) hiphop, r&b, game, final fantasy, michael jackson, mfsl<br>
<br>
<br>
<br>
* <strong><span style="color: green;">Attach album cover</span></strong><br>
<br>
o You must attach an album cover in the upload menu.<br>
- Exceptions are allowed only when it is objectively judged that it is impossible to search through domestic portals or Google.<br>
<br>
<br>
<br>
* <strong><span style="color: green;">Attach log file</span></strong><br>
<br>
o When uploading a FLAC that includes a log file, you must attach a log file in the Log file attachment section of the upload menu so that the log score can be displayed.<br>
- Even if there are multiple log files, use the [+] button to attach all log files.<br>
- The log file attachment field is displayed when the format is selected as FLAC in the upload menu.<br>
<br>
<br>
<br>
* <strong><span style="color: green;">Enter album information</span></strong><br>
<br>
o "Group torrent information" <br>
- Enter the description of the original album, track list, YouTube video, etc. <br>
- Enter information that is commonly applied, not related to a specific re-release, such as remastering, 10th anniversary, repackage, and special edition.<br>
- Please do not leave it blank. Please enter at least a track list.<br>
- Recommended site<br>
+ kpop : <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.bugs.co.kr">Bugs!</a>, <a rel ="noreferrer" target="_blank" href="https://anonym.to/?http://www.maniadb.com">maniadb</a>, <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://music.daum.net">Daum</a>, <a rel="noreferrer" target="_blank" href="https://anonym. to/?http://hyangmusic.com">Hyang Music</a>, <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.izm .co.kr">IZM</a>, <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.weiv.co.kr">weiv </a>, <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.gaseum.co.kr">Chest Network</a>, <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.k-pop.or.kr">K-POP Archive</a><br>
+ jpop : <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://theqoo.net/main.php">theqoo</a>, <a rel= "noreferrer" target="_blank" href="https://anonym.to/?http://www.ilovejpop.com">I Love J-pop</a><br>
+ pop : <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.allmusic.com">allmusic</a><br>
+ classical : <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.classical.net">Classical Net</a>, <a rel=" noreferrer" target="_blank" href="https://anonym.to/?http://www.naxos.com">NAXOS</a><br>
+ <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.wikipedia.org">Wikipedia</a><br>
<br>
o "Individual torrent information" <br>
- Enter information related to the characteristics of a specific reissue, such as remastering, 10th anniversary, repackage, and special edition.<br>
- Entering individual torrent information is optional except for SACD and Vinyl uploads that require the extraction process to be described.<br>
<br>
<br>
<br>
* <strong><span style="color: green;">Criteria for uploading prohibited material</span></strong><br>
<br>
o You can register the material as a prohibited release only if you personally purchase, encode, produce, or participate in the material.<br>
- Applicable if you extracted the FLAC file and the EAC/XLD log file that recorded the unique extraction process together from the CD.<br>
- Loss sound sources downsampled from the above data can also be designated as exclusive materials without rating restrictions if the first uploader wishes.<br>
- The right to downsample from the above data can also be specified if the first uploader wishes.<br>
- If you have an exclusive setting of downsampled lossy sound sources and do not want other users to downsample, please use the Do not leak field.<br>
- The purpose of this is to protect rare materials, so please refrain from limiting the loss of sound sources that can be obtained from places such as Melon and Bugs.<br>
- WEB music purchased online by yourself can only be applied at the highest bitrate being serviced at that time.<br>
- If a higher bit rate sound source serviced by another company is uploaded as a material to be leaked later, the exclusive setting of the previous material will be lifted.<br>
ex) When Melon's highest bitrate (320kbps) sound source is uploaded with exclusive setting and then Bugs' highest bitrate (FLAC) sound source is uploaded with exclusive setting<br>
- In the case of a WEB sound source, a screenshot with download history must be attached to "Individual Torrent Information" to prove that you have purchased the sound source yourself.<br>
- When attaching a screenshot, <span style="text-decoration: underline;">Must</span> use an overseas image hosting server. Recommended site: <a rel="noreferrer" target="_blank" href="https://anonym.to/?https://myimg.me"><strong>MyIMG</strong></a>, <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://imgur.com"><strong>imgur</strong></a>, <a rel=" noreferrer" target="_blank" href="https://anonym.to/?http://www.imageshack.us"><strong>ImageShack</strong></a><br>
- The WEB chart sound source follows the chart sound source rules, and can be set exclusively if it is over 192kbps.<br>
- Regardless of whether or not the data to be leaked is set, if data in the same state is uploaded before, it is considered a duplicate.<br>
<br>
<br>
<br>
* <strong><span style="color: green;">Based on the limit on the number of uploads of data converted from FLAC to lossy sound source</span></strong><br>
<br>
o If you download FLAC from this tracker and convert it to a lossy sound source (MP3, AAC, Ogg) and upload it, it is limited to a maximum of five per user per day.<br>
- This does not apply to the uploader who uploaded the FLAC material.
</div>
</div>
<div id="2">
<div class="rulebox pad">
<div class="date">Updated: <span class="time tooltip">2 days, 22 hours ago</span></div>
* <strong>Production year ~ Group torrent information</strong><br>
o For the production year, enter the 'year of production', not the year of release<br>
o The 'next' link must be attached, and if there is not, the 'IMDb' link is attached<br>
o Enter the movie information of 'Next', if not, enter the information of 'IMDb'<br>
- For movies that are not listed on the two information sites, the URL created by reference must be indicated<br>
- Plots and reviews are recommended, and URLs are indicated when citations are made<br>
<br>
*<strong>Upload prohibited</strong><br>
o Compressed Upload<br>
o Pack<br>
- Some movies have uploaded bundles, please don't add any more formats<br>
- If the Blu-ray disc is divided into the main part and the bonus disc, please upload them separately<br>
o Other files such as trailer, sample, txt, poster, etc.<br>
- Only subtitles, nfo, and additional videos (making film, deleted scenes, etc.) can be included<br>
- Additional videos can be included only when they are in the same format as the main movie. If they are different, you can upload them separately.<br>
Ex) 1080p h264 main video + 1080p h264 additional video / Yes<br>
1080p h265 main video + 1080p h264 additional video / impossible<br>
1080p h264 main video + 720p h264 additional video / impossible<br>
o Duplicate data<br>
- Materials that are judged to be the same regardless of audio<br>
- As an exception, original discs from different release regions or WEB-DL reels with Korean dubbing are allowed<br>
- Even if it is a duplicate, the one uploaded first may be trumped for other reasons (refer to Trump)<br>
o Adult <br>
- Movies with Naver Series Adult Hall 19 <br>
- Movies that cannot be found on IMDb, or the genre of IMDb is Adult and contains Hardcore in Plot Keywords<br>
o Even if it is not written in the rules, it can be deleted if there is a defect in the file<br>
<br>
* <strong>Trump Matters</strong><br>
o When uploading DVD-Rip, Blu-Ray, WEB-DL, TVRip, delete target: CAM, TC, TS, WORKPRINT, Screener, R5<br>
o When only DVD (VOB) Blu-Ray (M2TS) is uploaded from the source<br>
o Video with dubbing in languages ​​other than Korean<br>
- Applied when the video is the same on the web reel<br>
- Priority (original language > original language + dubbing > dubbing)<br>
o Data modified to be different from the original <br>
- Watermark<br>
- Advertising<br>
- Editing, adding scenes<br>
- Custom Blu-ray<br>
- Modification of the original file that was originally released (add subtitles, add voice, etc.)<br>
o In case the frame and aspect ratio are different from the original encoding<br>
o Upscale video<br>
o RTM, JTC, BONE, SWTYBLZ (WEB-DL, SDR encoding), YTS. YIFY, GalaxyRG, NOGRP, iKiW, MT<br>
- Materials encoded with the above reels are also included in the trump<br>
<br>
* <strong>Quality-related acceptance criteria</strong><br>
o After uploading Blu-Ray and DVD sources, uploading of the same resolution BRRip, WEBRip, FHDRip, HDRip is prohibited.<br>
o If the editorial information is different, it is allowed regardless of the source type<br>
Ex) Director's cut BRRip<br> with only theatrical Blu-Ray uploaded
Ex) Unlike Blu-ray, WEBRip<br> with deleted or added scenes
<br>
* <strong>Screenshot and encoding information</strong><br>
o SD uploads a screenshot of the original ratio for output ratio HD or higher<br>
o Encoding information is uploaded by copying Media Info as it is<br>
- Unique ID is the most basic information to determine duplicate data, so it is not uploaded after deletion<br>
- You can delete your drive location in the complete name part, which can be called personal information<br>
- If an additional video is included in a format other than the original source, enter all media information<br>
- For split files such as 2in1 or 2CD, enter all information [<a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/wiki. php?action=article&id=17">See help</a>]<br>
<br>
* <strong>Upload Guide</strong><br>
<a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/forums.php?action=viewthread&threadid=29729">https://openlook .me/forums.php?action=viewthread&threadid=29729</a>
</div>
</div>
<div id="3">
<div class="rulebox pad">
<div class="date">Updated: <span class="time tooltip">2 years, 2 months ago</span></div>
<strong>* Title</strong><br>
o Program title is the official title displayed on the official website.<br>
* Commonly used titles can be used under the discussion of the management <br>
+ Ex) A quiz that changes the world ⇒ Three wheels <br>
o For domestic programs, only “Hangul” is displayed. However, if there is an official English title, it is written in the order of "Hangul (English)".<br>
o For foreign programs <strong><a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/rules.php?p=upload&category= 100">Follow the <strong><span style="color: green;">language-specific notation</span></strong> of 100">Upload General Rules</a></strong>.<br>
o The above naming standards apply in accordance with each of the following:<br>
+ Domestic: Program official website<br>
+ Overseas: <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.daum.net/">Daum</a><br>
o For sports video, the official game name is called the program title. (However, the number of sponsors is excluded)<br>
* World Cup, Olympics, and Asian Games are written in Korean.<br>
+ Ex) 2013 Korean Professional Baseball [O] <span style="text-decoration: line-through;"><span style="color: red;"><strong>2013 Seven Baseball Professional Baseball</strong></strong></span></span>[X]<br>
2014 FIFA Brazil <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.fifa.com/worldcup/index.html">World Cup</a>, 2016 Brazil <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.olympic.org/olympic-games">Olympic</a>, Sochi 2014 <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.olympic.org/olympic-games">Winter Olympics</a>, 2014 Incheon Asian Games< br>
2013 <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.formula1.com/races/">FIA Formula One World Championship</a>, 2012 -13 <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.uefa.com/index.html">UEFA Champions League</a> <br >
2012-13 <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.lfp.es">La Liga</a>, 2012-13 <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.bundesliga.de">Bundesliga</a>, 2012-13 <a rel="noreferrer" target ="_blank" href="https://anonym.to/?http://www.ligue1.com">Ligue 1</a>, 2012-13 <a rel="noreferrer" target="_blank" href ="https://anonym.to/?http://www.legasseriea.it">Serie A</a>, 2012-13 <a rel="noreferrer" target="_blank" href="https:/ /anonym.to/?http://www.premierleague.com/en-gb.html">Premier League</a><br>
2013 <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://mlb.mlb.com/home">MLB</a>, 2012-13 <a rel ="noreferrer" target="_blank" href="https://anonym.to/?http://www.nba.com/">NBA</a>, 2012-13 <a rel="noreferrer" target ="_blank" href="https://anonym.to/?http://www.nfl.com/">NFL</a>, 2013 <a rel="noreferrer" target="_blank" href=" https://anonym.to/?http://www.nhl.com/">NHL</a>, <a rel="noreferrer" target="_blank" href="https://anonym.to/ ?http://www.ufc.com/">UFC</a>, <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.sherdog .com/organizations/Ultimate-Fighting-Championship-2">UFC on Fox</a> (abbreviations are accepted when searching for abbreviations only)<br>
+ League and Cup related materials are grouped in <strong>season units</strong>.<br>
<br>
<br>
<strong>* Round/Season</strong><br>
o The episode and season names are based on the replay on the official website, but if the episode is not listed on the official website, <strong><span style="color: green;">first airing date</span></strong> is the name of the episode instead.<br>
+ The program divided into 1 and 2 parts due to the interim advertisement must also follow the schedule of the official website.<br>
o Season unit is 'S' for individual rounds, 'E' is used for sports events, and 'R' is used in the following format with basic two-digit numbers added to the end.<br>
Ex) E12 (No season division) | S03E11 (Seasonal episodes) | S03 (Season Bundle) | E01~13 (Bundled without season division)<br>
R01 (Sports Match Round) | R01-19 (Sports Rounds Bundle) <br>
o Programs specially organized once without related programs are entered as 'shorts'.<br>
o Sports video is as follows.<br>
+ Follow the name of the official website, but if the abbreviation is widely used, enter the abbreviation.<br>
cf) <span style="text-decoration: line-through;">LA Dodgers</span> -> <strong>LAD</strong> ,<a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.formula1.com/races/">Magyar Nagydíj< /a><br>
Ex) 2012-13 Premier League - <strong>Chelsea vs Everton</strong><br>
2013 MLB - NYY vs BAL<br>
2013 FIA Formula One World Championship - <strong>R10 : Magyar Nagydíj</strong><br>
UFC - 159 : Jones vs Sonnen, UFC on Fox - 7: Henderson vs Melendez <br>
+ The order of marking is as follows: [Baseball Away vs Home , Soccer Home vs Away , Basketball Away vs Home , Martial Arts vs Athletes].<br>
<br>
<br>
<strong>* Enter the same topic, split episodes</strong><br>
o In the case of the same broadcast (2 or more times) of the same subject within the program, individual uploads are allowed, but may be deleted if uploaded in a bundle later.<br>
+ The bundles here do not correspond to the pack materials. <span style="color: green;">Don't check Pack</span><br>
Example) Individual upload E320: Southern sun, Okinawa 1 copy / E323: Southern sun, Okinawa 4 copies<br>
Ex) Bundle upload E320~323: Southern sun, Okinawa<br>
+ However, in the case of documentaries, if you provide accurate information about the episode on the official website, you must follow the general name.<br>
+ In the case of material without episodes, the episodes are uploaded as 'n episodes'. Ex) Human Theater - n Trilogy: Episode Title [yymmdd]<br>
<br>
<br>
<strong>* Standard for uploading packs and organizing individual data</strong><br>
o Only one season unit bundle is allowed for works with season divisions, and multiple seasons must be uploaded one season at a time. Ex) S01, S02 ...<br>
+ <strong><span style="color: green;">All season bundles of the finished series are limited to the same resolution, the same release group, and the same media source.</span></strong> Ex) S01 ~05.Pack<br>
+ Bundles of materials with different resolutions will be deleted if the same bundle with better resolution is uploaded.<br>
+ <strong>Arbitrary edits and personal bundles are not allowed, and if you have to upload them, please consult with the management.</strong><br>
o Non-seasonal material can only be grouped into one completed series with the same subject. Ex) Planet Earth - E01~11<br>
o We accept incomplete batches only if:<br>
+ <strong>A series with more than 50 episodes can be grouped into 25 episodes.</strong><br>
(However, only <span style="color: red;">dramas only allow complete packs</span>, and <span style="color: green;">daily dramas (including sitcoms)</span> are limited to 50 episodes. You can tie them together.)<br>
o Sports materials can be uploaded in the following packs.<br>
Ex) 2014 FIFA World Cup Brazil - Korea<br>
Ex) 2014 FIFA World Cup Brazil - Round of 16 [group stage, etc.]<br>
Ex) 2013 Korean Professional Baseball - KIA Pannuntrace <br>
o Standards for deletion of individual data by pack<br>
+ <strong><a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/rules.php?p=upload&category=100">Upload Follow the <strong><span style="color: green;">Trump</span></strong> of the general rules</a></strong>.<br>
+ Uploading of individual data (individual sessions, etc.) is prohibited after deletion of individual data due to uploading of bundled data.<br>
<br>
<br>
<strong>* Enter image and encoding information</strong><br>
o Must have at least one <a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/wiki.php?action=article&id=16"> <strong><span style="text-decoration: underline;">You must attach a screenshot in its original size</span></strong></a>. (Use image hosting after Chapter 1)<br>
o When attaching a screenshot <a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/forums.php?action=viewthread&threadid=4936"> <strong><span style="text-decoration: underline;"><span style="color: green;">Information about images when uploading</span></span></strong></a> The prohibited screenshots cannot be attached to this server.<br>
o Snapshots are recommended and uploaded in 4X4 format.<br>
o You must not post screenshots and snapshots that can guess the content.<br>
o <a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/wiki.php?action=article&id=17"><span style= "text-decoration: underline;"><span style="color: red;">Encoding information</span></span></a> is mandatory.<br>
+ If any one of the codec, media source, video format, and release group is 'Mixed', you must select a representative video and enter encoding information for each type.<br>
<br>
<br>
<strong>* tags</strong><br>
o <span style="color: red;"><strong>The country must be entered.</strong></span> Ex) Korea, USA, Japan, UK, etc...<br>
o Titles and contents in the episode are not entered as tags. <br>
+ However, you can tag the main actor or representative person. (<a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.daum.net/">Daum</a> )<br>
+ For sports video, the name of the sport is written as a tag. Ex) Cycling, soccer, baseball, basketball, racing (motor sports), mixed martial arts, etc...<br>
o Follow the detailed rules of the upload form.<br>
o You must input the broadcasting station according to the input standard. (<a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/wiki.php?action=article&id=20"><span style= "text-decoration: underline;"><span style="color: red;">Broadcasting station input standard</span></span></a>)<br>
+ <strong>If the broadcasting station of the uploaded material does not meet the standard, a PM is sent to the TV management team.</strong><br>
<br>
<br>
<strong>* portable devices</strong><br>
o Follow the general rules for uploading.<br>
<br>
<strong>* Upload in compressed form (including subtitles) is not allowed.</strong><br>
<br>
<strong>* CF cannot be set to be leak-proof.</strong><br>
<br>
<strong>* New upload of sub-source material is prohibited</strong><br>
o After uploading the official source (Blu-ray, DVD), uploading of the same resolution sub-source (Webrip, BRRip, HDTV, IPTV, etc.) is prohibited.<br>
+ If there is an official source material that does not have Korean subtitles, it is possible to upload sub-sources with Korean subtitles. Even though there are Korean subtitles in the official source, if you want to upload a sub source for a special reason, you can upload it after contacting the management.<br>
o Different editions or WEB-DL (Netflix, Amazon, iTunes, Nstore, etc.) are acceptable.
</div>
</div>
<div id="4">
<div class="rulebox pad">
<div class="date">Updated: <span class="time tooltip">4 months, 2 weeks ago</span></div>
<strong>* Title</strong><br>
- <strong><a rel="noreferrer" target="_blank" href="https://anonym.to/?http://movie.daum.net/"><span style="color: blue;" >The following</span></a></strong> uses 'Hangul (original language)' notation<br>
- For TV series, theatrical version, OVA, etc. not in the following: '<strong><a rel="noreferrer" target="_blank" href="https://anonym.to/?http://anime.onnada.com /search.php"><span style="color: blue;">Only</span></a></strong>', '<strong><a rel="noreferrer" target="_blank" href ="https://anonym.to/?http://www.bestanimation.co.kr/"><span style="color: blue;">Best Anime</span></a></strong> Write with reference to '<br>
- Best Anime, Onnada, if it is not in Daum '<strong><a rel="noreferrer" target="_blank" href="https://anonym.to/?http://en.wikipedia.org/wiki /%EC%9C%84%ED%82%A4%EB%B0%B1%EA%B3%BC:%EB%8C%80%EB%AC%B8"><span style="color: blue;" >Wikipedia</span></a></strong>' or the referenced site, and then attach the referenced link<br>
<br>
o In case of individual data <br>
- When writing titles, write common titles and use individual notation for each season<blockquote> # Slayers - E01<br>
-> <span style="color: green;">Slayers (Slayers) – S01E01</span><br>
# Slayers Next (Slayers Next) - E01<br>
-> <span style="color: green;">Slayers - S02E01</span><br>
# Slayers Try (Slayers TRY) - E01<br>
-> <span style="color: green;">Slayers - S03E01</span><br>
# Slayers Revolution - E01<br>
-> <span style="color: green;">Slayers (Slayers) - S04E01</span><br>
# Slayers EVOLUTION-R - E01<br>
-> <span style="color: green;">Slayers (Slayers) – S05E01</span></blockquote><br>
o For Pack data<br>
- When writing titles, write common titles and organize them using season-specific group notation<blockquote> # 1st major (メジャー 第1 series)<br>
-> <span style="color: green;">Major (meja) – S01.Pack</span><br>
# 2nd major (メジャー 第2 series)<br>
-> <span style="color: green;">Major (meja) – S02.Pack</span></blockquote> <br>
o For OVA material <br>
- When writing titles, write common titles and organize additional titles other than common parts using group notation<blockquote> # Cyber Formula
-> <span style="color: green;">Cyber Formula (new world GPX cyberfumeura) - TV series.Pack</span><br>
# Cyber Formula Double One
-> <span style="color: green;">Cyber Formula (new world GPX cyberfomura) – Double One.Pack</span><br>
# Cyber Formula Zero
-> <span style="color: green;">Cyber Formula (new world GPX cyberfumeura) – Zero.Pack</span><br>
# Cyber Formula Saga
-> <span style="color: green;">Cyber Formula (New World GPX CYBAFォーミュラ) – Saga.Pack</span><br>
# Cyber Formula New
-> <span style="color: green;">Cyber Formula (New World GPX CYBAFォーミュラ) – New.Pack</span></blockquote><br>
o In case of short material <blockquote> (theater version) - Enter based on Korean (original language), and enter Movie in the episode<br>
-> <span style="color: green;">Beyond the clouds, the promised place (雲のむkou、約束の場所) - Movie</span><br>
(OVA) - Input based on Korean (original language), and write OVA in rounds<br>
-> <span style="color: green;">Star's Voice (ほshinokoe) - OVA</span></blockquote><br>
o Use of subtitles for season pack materials<br>
- Subtitles can be used together with season-specific group notation<blockquote> # ARIA The ANIMATION<br>
-> <span style="color: green;">Aria - S01 : The ANIMATION.Pack</span><br>
# ARIA The NATURAL<br>
-> <span style="color: green;">Aria - S02 : The NATURAL.Pack</span></blockquote> <br>
o Split season system, marked when aired separately
- If a season was aired separately, it is possible to mark the episodes tied to the season.<blockquote> # Attack on Titan 3rd Part.1<br>
-> <span style="color: green;">Attack on Titan (進撃の巨人) - S03(E01~12).Pack</span><br>
# Attack on Titan Season 3 Part.2<br>
-> <span style="color: green;">Attack on Titan (進撃の巨人) - S03(E13~22).Pack</span></blockquote> <br>
o Temporary Pack Marking (Temporary data bundle for currently airing works)<br>
- Episodes of unfinished works that have not been uploaded before are bundled with temporary packs and uploaded.<blockquote> # One Piece Episodes 911~925<br>
-> <span style="color: green;">One Piece (Wanpis) - E911~925</span><br>
# Black Clover Episodes 121~132<br>
-> <span style="color: green;">Black Clover (Lack Clover) - E121~132</span></blockquote> <br>
<strong>* Round/Season</strong><br>
- <span style="color: red;">Season unit uses ' S ' and individual episodes use ' E ', followed by two basic characters</span> as follows.<br >
- Only the title of the meeting can be indicated only for programs whose number of sessions is not clear. (Omission without reason may be subject to sanctions)<br>
- For feature-length materials, bundles other than season bundles are not allowed.<br>
- In the case of previously uploaded feature-length materials, only overlapping parts may be deleted when new episode-specific season bundle materials are uploaded<br>
<br>
o <span style="color: green;">Sequence notation</span><blockquote> # E01 (No season division)<br>
# S01E01 (Seasonal episodes)<br>
# E01~13.Pack (package without season division)<br>
# S01.Pack (Seasonal Pack)<br>
# Movie (Theatrical Version)<br>
# OVA (Original Video Animation)</blockquote><br>
o <span style="color: green;">If there is a season or theater title other than the series title for OVA, Movie, or TV-Series, enter the title</span><blockquote> # Sword of the Wind - Characters (星霜編).Pack -> For OVA <br>
# Afro Samurai - RESURRECTION -> For the theatrical version<br>
# If there is well-organized DB episode and season information other than Best Anime, uploading is allowed in the format of the DB episode and season as an exception.</blockquote><br>
<strong>* subcategory</strong><br>
- TV-Series - TV series <br>
- TV-Movie - Short film-style TV broadcast <br>
- Movie – Animation made for theatrical release<br>
- OVA (Original Video Animation) – Animation released only in video format<br>
- Other – Selected when there is no special category such as special filming, live-action, etc.<br>
<br>
<strong>* About group torrents</strong><br>
- Write information about the material, and be sure to attach a link to the information source. <strong><a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/forums.php?action=viewthread&threadid=19528&post=1 #post138875"><span style="color: blue;">[Help]</span></a></strong><br>
<br>
<strong>* Individual torrent information</strong><br>
o Screenshots & Snapshot<blockquote> # Screenshots must contain at least one <span style="color: red;">original resolution size image</span>. <strong><a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/wiki.php?action=article&id=16"><span style="color: blue;">[Help]</span></a></strong><br>
# Screenshots must capture a video screen that can determine the resolution, and captures of title screens and ending credits are not recognized as screenshots. <strong><a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/forums.php?action=viewthread&threadid=4936"><span style="color: blue;">[Rules Guide]</span></a></strong><br>
# Snapshots are recommended. (Only 4X4 size is allowed for input)</blockquote> o Encoding information <blockquote> # <span style="color: red;">Encoding information must be entered</span>, and media info is recommended for the tool used. (Blu-Ray original is BD Info).<br>
+ If any one of the codec, media source, video format, and release group is 'Mixed', you can select a representative video and input encoding information for each type.<br>
# How to check video information <strong><a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/wiki.php?action=article&id= 17"><span style="color: blue;">[Help]</span></a></strong><br>
# If there is an nfo file, it is recommended to attach the content.</blockquote><br>
<strong>* tags</strong><br>
- <span style="color: red;">In the case of country of origin and genre, enter as mandatory</span><br>
- Tags other than the production country, genre, broadcasting station, and production company are not allowed (in the case of the theatrical version, person name tags are allowed)<br>
- In the case of a special film or live-action video, be sure to enter the ‘special film’ and ‘live-action’ tags <br>
- Genre tag should be written based on where the animation information was obtained, but check <strong><span style="color: blue;">[standard tag]</span></strong> in the tag part of the upload page to enter.<br>
- Broadcasting station tags: Anibox Anione Animax Aniplus Touniverse Champ Cartoon Network Disney.Junior Disney.Channel <br>
jei Talent.tv Daekyo Children.tv cbeebies ebsu kbs.kids kids.tv kid1.tv nickelodeon <br>
- If Korean audio is included, you can enter Korean dubbing tags. -> <strong>Korean dubbing</strong> (If the original language is Korean, do not enter it.)<br>
<br>
<strong>* Based on Pack upload</strong><br>
- Only complete series can be bundled (Pack) of all series<br>
- Only a single season unit bundle is allowed for works with season divisions<br>
- Works without season division can only be grouped into one completed series with the same theme<br>
- For yearly pack data, enter “Year YYYY broadcasts”<br>
- Pack data of TV-Series+OVA+Theatrical version randomly bundled by the uploader is not allowed<br>
- When a new episode is added to Blu-ray or DVD, enter it in <span style="color: red;">Edition information</span> without creating a separate pack.<br>
- Season pack data for works that have been aired separately can be uploaded according to the composition of the release medium<br>
- A set that is re-released with a different configuration can be uploaded as a pack material (eg Blu-ray Box, Complete Box, Trilogy, HD Remaster)<br>
<br>
<strong>* Completeness and completeness of the material</strong><br>
- Uploading in compressed form (including subtitles) is not allowed.<br>
- You must not modify the material name or folder (directory) of the released release video.<br>
- Uploading of sound source files (OST) arbitrarily included by the uploader is not allowed.<br>
- Upload is allowed for <span style="color: red;">bonus sound source</span> included in the first edition or Blu-ray box.<br>
- It is prohibited to separate works that have been aired and upload them continuously as individual episodes.<br>
- Pack material may be deleted if there is a problem with its integrity. (Can be uploaded as temporary pack data)<br>
- When the completed pack data is uploaded, the temporary pack and episode data are <strong><a rel="noreferrer" target="_blank" href="https://anonym.to/?https://openlook.me/ rules.php?p=upload&category=100">Upload general rules</a></strong> to <span style="color: red;">Trump</span>.<br >
- If the title of the existing work and the localization title are different, you can apply for a double artist for the pack material.<br>
<br>
<strong>* Temporary pack data and upload prohibition standards</strong><br>
- Previous episodes that have not been uploaded will be uploaded as temporary packs, including the latest ones. (Example: E01~04, S04E11~16)<br>
- If you continuously upload material that can be uploaded as a temporary pack as individual episodes, it will be judged as <strong>for the purpose of filling up the up torrent</strong> and uploading will be restricted with a warning.<br>
- Continuously uploading episodes of works that have been aired for a long time or that have ended, or unilaterally filling the number of uploads is prohibited.<br>
- If you inevitably need to upload episodes continuously, you must write the corresponding content in the individual torrent information.<br>
- Uploaders are prohibited from arbitrarily dividing and uploading the combined pack data.<br>
<br>
<strong>* Based on uploading of Lil Group's integrated materials (ALL.Pack)</strong><br>
- The integrated materials distributed by the reel group can be uploaded in ALL.Pack format.<br>
- Materials arbitrarily integrated by the uploader are prohibited, and materials integrated in the release medium must be uploaded according to the existing rules. (Example: BD-BOX.Pack, S01~14.Pack, E001~201.Pack)<br>
- The uploader should write the composition and detailed information of the consolidated material together with the release date in <strong>Individual Torrent Information</strong>.<br>
- ALL.Pack materials can be requested for free-rich and half-rich through revision request. <br>
<br>
<strong>* Convenience Upload</strong><br>
- Only for newly aired or currently airing materials, start uploading according to the form below and you can easily upload the next episode with the [Add Format] function.<br>
- Convenience Upload can be started anew by season, year, or course.<br>
- Previous episodes that have already aired are bundled and uploaded. (Example: E01~04, S02E03~07)<br>
<br>
o <span style="color: green;">Example of upload start material for convenience</span><blockquote>Program title: A certain science super-electromagnetic cannon
Episode / Season: S03E01~<br>
Aired Date / Year: 2020<br>
Release Group: Ohys-Raws<br>
Editorial information: E01</blockquote><br>
o <span style="color: green;">Data that has been aired can be uploaded together with additional formats except for duplicated data.</span><blockquote>Program title: Super Electronic Cannons of Certain Science (and <br><br>
Episode / Season: S03E01~<br>
Aired Date / Year: 2020<br>
Release Group: Ohys-Raws<br>
Editorial information: E02~06</blockquote><br>
o <span style="color: green;">If the reel group contains other materials, please mark it as Mixed.</span><blockquote>Program title: Super-electromagnetic cannon of a certain science< br>
Episode / Season: S03E01~<br>
Aired Date / Year: 2020<br>
Release group: Mixed<br>
Editorial information: E07-11</blockquote>
</div>
</div>
<div id="5">
<div class="rulebox pad">
<div class="date">Updated: <span class="time tooltip">3 years, 2 months ago</span></div>
* <strong>Upload criteria</strong><br>
<br>
o Music video: A professionally produced music video for commercial, publicity, promotion, etc. <br>
o Video clip: Performance video divided by artist without discontinuous random editing<br>
o Fancam: Temporarily prohibit direct use and upload via video clip<br>
o Concert: Live performance of music that was aired as an official release or provisionally organized <br>
o Musical, Opera: A performance art video in which musical elements dominate the work<br>
o Others: If you do not meet the above requirements, but you believe that you are the best fit for the Music Video category<br>
<br>
o <span style="color: yellow;">Caution!</span> By default, all music television programs <span style="text-decoration: underline;">temporary (irregular)</span> are Music Video Belongs to a category.<br>
<strong>?</strong>: <a href="javascript:void(0);" onclick="if (!window.__cfRLUnblockHandlers) return false; BBCode.spoiler(this);">Show</a><blockquote class="hidden spoiler">Temporary formations do not follow the regular schedule and include commemorative events, specials, etc. It means to make a change to the basic arrangement by abruptly placing the . Temporary programming is divided into special features and events. Special features can be further subdivided into regular specials and irregular specials, and events can be further subdivided into relay broadcasts and special broadcasts (Lee Kun-se, 1991).<br>
<br>
Periodic specials (specials by season) refer to special features that can be organized and planned in advance, such as national holidays, holidays, year-end and New Year holidays, and founding days, etc. Irregular specials are planned specials, and although they are not regularized, they refer to special features that are organized as needed in order to generate new public interest, to improve the station image, and to break the rigid fixed structure.<br>
<br>
<div style="text-align: right;">Broadcasting Strategy, 2012, Communication Books</div></blockquote><br>
<br>
o For materials whose media source is WebRip or Unknown, the number of uploads per account is allowed up to 3 within 23 hours<br>
<br>
<br>
* <strong>Basic input method</strong><br>
<br>
o Artist, Title<br>
<br>
#1 Performer<br>
- Artist name according to Music artist input rule<br>
- Opera singers, ballet troupes and leading dancers are registered as main artists<br>
- In the case of a direct cam filmed with a focus on a specific individual, even if the performance was performed under a group name, the individual name is used<br>
<br>
#2 Song Name<br>
- Priority is given to notation of album booklets containing sound sources, but popular names are also possible<br>
However, if there is a previously registered song name on the tracker and it does not violate the rules, it follows the notation.<br>
- <span style="text-decoration: underline;">Two songs</span> consecutive videos should be written in order, but separated by putting '_+_' between the song names<br>
However, in the case of a short intro inserted for a performance without singing on a comeback stage, etc., it is not treated as a single song.<br>
<br>
#3 Television program: Program name according to the TV title input rule<br>
<br>
#4 Performance name, event name, product name<br>
<br>
o Date<br>
<br>
- TV broadcasts: Scheduled airing date <br>
- Other than that, only allowed when the actual performance date information is clearly known<br>
- Music video release date, product release date, etc. are not applicable, so leave them blank.<br>
<br>
o Year of performance / Year of release <br>
<br>
- Enter the year in which the actual performance was performed, but only if it is unknown, replace it with the year of airing or release<br>
- When performances from multiple years are grouped into one group like a video clip, the earliest year is indicated<br>
- <span style="color: yellow;">Caution!</span> If necessary when adding a format to an existing group, be sure to correct it through [Edit group information]<br>
<br>
o Additional Information<br>
<br>
- If the media source is Web, indicate the source in the additional information section <span style="text-decoration: underline;">Foremost</span><br>
example. 'Melon', 'Bugs', 'GOM TV', 'Naver', 'YouTube'<br>
- Subsequent entries are separated by '_/_'<br>
<br>
o tag<br>
<br>
- Unofficially filmed video: 'Fancam' <br>
- Standard performance genre: 'Opera', 'Musical', 'Ballet'<br>
- Full TV program broadcast: standard station tag of TV rule [[wiki=20] station input standard table[/wiki]]<br>
- <span style="color: yellow;">Caution!</span> When adding a format to an existing group, be sure to use the tag add function after uploading <br>
<br>
o Screenshots in original size<br>
<br>
- Basically follow the upload general rules, but only for Music Video category with the following added.<br>
- Scenes and angles of view that allow the performer to be recognized (required, except for videos in which no person appears)<br>
example. <strong>Invalid screenshot</strong>: <a href="javascript:void(0);" onclick="if (!window.__cfRLUnblockHandlers) return false; BBCode.spoiler(this);">Show</a><blockquote class="hidden spoiler"><img class="scale_image" onclick="if (!window .__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/XUcNtTr.jpg" src="https://myimg.me/images/2013/09/04/XUcNtTr.jpg"> <img class ="scale_image" onclick="if (!window.__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/rVKb3Jc.jpg" src="https://myimg.me/images/2013/09/04/rVKb3Jc.jpg"> <img class ="scale_image" onclick="if (!window.__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/7pDf8w.jpg" src="https://myimg.me/images/2013/09/04/7pDf8w.jpg"> <img class ="scale_image" onclick="if (!window.__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/IMDFA1J.jpg" src="https://myimg.me/images/2013/09/04/IMDFA1J.jpg"> <img class ="scale_image" onclick="if (!window.__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/WoIpeM.jpg" src="https://myimg.me/images/2013/09/04/WoIpeM.jpg"> <img class ="scale_image" onclick="if (!window.__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/0bZ9kc3YG.jpg" src="https://myimg.me/images/2013/09/04/0bZ9kc3YG.jpg"></blockquote ><br>
- If there are multiple performers, capture them all as much as possible (recommended)<br>
example. <strong>Exemplary screenshot</strong>: <a href="javascript:void(0);" onclick="if (!window.__cfRLUnblockHandlers) return false; BBCode.spoiler(this);">Show</a><blockquote class="hidden spoiler"><img class="scale_image" onclick="if (!window .__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/3xpnHTyat.jpg" src="https://myimg.me/images/2013/09/04/3xpnHTyat.jpg"> <img class ="scale_image" onclick="if (!window.__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/LNlj7.jpg" src="https://myimg.me/images/2013/09/04/LNlj7.jpg"> <img class ="scale_image" onclick="if (!window.__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/aYZ9GbW.jpg" src="https://myimg.me/images/2013/09/04/aYZ9GbW.jpg"> <img class ="scale_image" onclick="if (!window.__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/TLOb5.jpg" src="https://myimg.me/images/2013/09/04/TLOb5.jpg"> <img class ="scale_image" onclick="if (!window.__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/TGNUQF26.jpg" src="https://myimg.me/images/2013/09/04/TGNUQF26.jpg"> <img class ="scale_image" onclick="if (!window.__cfRLUnblockHandlers) return false; lightbox.init(this, $(this).width());" alt="https://myimg.me/images/2013/09/04/Opw9U.jpg" src="https://myimg.me/images/2013/09/04/Opw9U.jpg"></blockquote ><br>
- Images added through the hosting service are not subject to the above rules.<br>
<br>
o Poster / Cover<br>
<br>
- Be sure to attach it unless it is not easy even with a web search<br>
<br>
o About group torrents<br>
<br>
- Basically, it is possible to describe the overall description of a song or performance in a free format<br>
- It is forbidden to leave blank or content that may not be common to all individual torrents in the group<br>
<br>
o <span style="color: yellow;">Caution!</span> The notation presented in single quotation marks (') follows Korean/English, uppercase and lowercase letters, and spaces (_). <span style="text-decoration: underline ;">As is</span>.<br>
<br>
<br>
* <strong>How to apply artist, title, and tags by subcategory</strong><br>
<br>
o Music Videos, Video Clips<br>
<br>
- Artist : #1<br>
- General Title : #2<br>
example. <span style="font-style: italic;">Psy - Gangnam Style + GENTLEMAN [Inkigayo] [2012]</span><br>
- More than three songs / Although there are two songs, the title of the video with long conversations, such as interviews, is inserted: #3 or #4<br>
example. <span style="font-style: italic;">Sung Si-kyung - Yoon Do-hyun's love letter [video clip] [2002]</span><br>
example. <span style="font-style: italic;">Oasis - Massachusetts Institute of Technology [Videoclip] [2002]</span><br>
- Additional information: Default blank in case of music broadcasting by 3 companies / Abbreviation of broadcasting station in English <br>
#3 or #4<br> for non-music broadcasts with detailed classification
- Default tag: standard music genre<br>
<br>
o Artist-led concerts, a collection of officially released video clips<br>
<br>
- Artist : #1<br>
- Title: #3 or #4<br>
example. <span style="font-style: italic;">The Black Eyed Peas - The E.N.D World Tour [Concert] [2010]</span><br>
example. <span style="font-style: italic;">Hamasaki Ayumi - A 50 SINGLES ~LIVE SELECTION~ [OTHER] [2011]</span><br>
- Default tag: standard music genre<br>
<br>
o Concerts, music festivals, and awards ceremony hosted by broadcasting companies or organizations<br>
<br>
- Artist: #3 or #4 / Enter all recognizable performers #1 as Guest<br>
- Title: Episodes according to TV input rules (if unclear, replace with year)<br>
example. <span style="font-style: italic;">DMZ Peace Concert with Sinawi... - 2013 [Concert] [2013]</span><br>
example. <span style="font-style: italic;">Grammy Awards with Taylor Swift... - E55 [OTHER] [2013]</span><br>
- Default tag: standard music genre<br>
<br>
o Classical concerts, performing arts (opera, ballet)<br>
<br>
- Artist: #1 / Temporarily, Conductor is Guest, Composer is input to Remixer<br>
- Title: #4<br>
example. <span style="font-style: italic;">Seoul Philharmonic Orchestra... with Myeong-Hoon Jeong - Mozart: Idomeneo [Opera] [2010]</span><br>
- Default tags: standard music genre, standard performance genre<br>
<br>
o Performing Arts (Musical)<br>
<br>
- Artist: Director / Composer (optional, temporarily input Remixer)<br>
- Title: #4<br>
example. <span style="font-style: italic;">Lawrence Connor - Jesus Christ Superstar [Musical] [2012]</span><br>
- Default tag: standard performance genre, lead actor (optional)<br>
<br>
o Other<br>
<br>
- After uploading, be sure to directly request review from the Music Video management team through <span style="text-decoration: underline;">Request correction</span><br>
example. <span style="font-style: italic;">BoA - Comeback Show BOA4354 (Come Back BOA4354) [Other] [120728]</span><br>
example. <span style="font-style: italic;">Girls' Generation - Girls' Generation's Christmas fairy tale [Other] [111224]</span>
</div>
</div>
<div id="6">
<div class="rulebox pad">
<div class="date">Updated: <span class="time tooltip">2 years, 1 month ago</span></div>
(Please note that the part marked with <span style="color: red;"><strong>red</strong></span> is revised and added this time.)<br>
<br>
* <strong>Writer</strong> (Note: <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.comixest.com/">Comicist </a> | <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://kyobobook.co.kr/index.laf">Kyobo Books</a> | <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.kcomics.net/">Manga Gyujanggak</a> | <a rel="noreferrer " target="_blank" href="https://anonym.to/?http://www.yes24.com/main/default.aspx">YES24</a>)<br>
o Main, as an illustrator, takes the pseudonym of <strong><span style="color: green;">Comicist</span></strong> as a criterion first, and if there is none, the name of another site or the original language is used. <br>
o For western writers, use the original language. Yes. Art Spielgman<br>
o If the author is not known even after thorough research, it can be written as 'unknown' after consulting with the operator in charge.<br>
o If there is a separate author, enter the author in Guest.<br>
<br>
* <strong>title of work and completed/serialized/unfinished</strong> (Note: <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.comixest .com/">Comicist</a> | <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://kyobobook.co.kr/index.laf" >Kyobo Library</a> | <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.kcomics.net/">Manga Gyujanggak</a> | <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.yes24.com/main/default.aspx">YES24</a>)<br >
o For domestic and Japanese comics, officially published titles must be used, and it is recommended to mix both languages together.<br>
* Yes. Head (HEADS) | NANA | Fist of Heaven (蒼天の拳)<br>
o For western comics, the original title must be written.<br>
o Among Japanese manga, if it is not officially published, use the original title. (For well-known works, a common title may be used.)<br>
o For <strong>Completed/Serialized/Unfinished</strong>, you can select either Completed, Serialized or Unfinished.<br>
*Completion criterion is not the completion of the application, but the upload time of the officially published book.<br>
*In the case of finalization of a translation that has not been officially published, it can be uploaded as an exception.<br>
<br>
* <strong>Published</strong> (Note: <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.comixest.com/">Comixest </a> | <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://kyobobook.co.kr/index.laf">Kyobo Books</a> | <a rel="noreferrer" target="_blank" href="https://anonym.to/?http://www.kcomics.net/">Manga Gyujanggak</a> | <a rel="noreferrer " target="_blank" href="https://anonym.to/?http://www.yes24.com/main/default.aspx">YES24</a>)<br>
o The publication date item is the sorting criteria for detailed torrents, and the year, month, and day are XXXX, XX, XX (4, 2, 2 digits) respectively, <strong><span style="color: green;">Number of digits</span ></strong> must be entered correctly.<br>
* Yes. In the case of February 4, 2008, 2 is 02 and 4 is 04 ===> (2008), (02) month (04) day (=> Do not write (04), which is "day" in volume units.)<br>
o The publication date is the publication date of the <span style="color: green;">last volume</span></strong> of the <strong> bundled materials at the time of upload. For one volume, the year and month of issue.<br>
* Yes. When uploading 8~15 volumes, the 15th issue year and month (=> Volume unit is up to <strong>month</strong>)<br>
* Yes. When uploading episodes 1 to 10, issue year, month, and day of episode 10 (=> up to <strong>day</strong>)<br>
o In the case of <strong>script</strong>, <strong>classic</strong>, <strong>translated cartoon</strong>, if it is difficult to find out the date even if you research it, <strong>0000</strong> year <strong>00 </strong>You can also enter the month.<br>
<br>
* <strong>Year of original publication</strong><br>
o Indicate the year in which the first official publication of the work was published in Korea. If it is not officially published, enter the year of publication in another country.<br>
o In the case of a favorite version, a trial, etc., be especially careful as the first official publication already exists before.<br>
<br>
* <strong>Format</strong><br>
o Scanned hair is <strong>haircut</strong>, if it is straight haired carbon, it is <strong>digital</strong>, personal translation is <strong>translated</strong>, pirated version is <strong>pirate</strong>, <strong>Application</strong><br>
If you have mixed haircuts, digital cameras, and pirates, select <strong>mix</strong> and display the number of volumes corresponding to each torrent information box.<br>
o Applications and translations must be uploaded separately, and bundled uploads with other formats are prohibited.<br>
<br>
* <strong>Type</strong><br>
o According to the type, be sure to <span style="color: red;"><strong>choice</strong></span>. (Must be filled in)<br>
<br>
* <strong>Number of volumes and other details</strong><br>
o The order of entry is (division), (subtitle), number of volumes, and (separate matter).<br>
o The number of volumes is entered by inserting a tilde (~) in the upload range. Yes. Volumes 8-24 | Episodes 12-31 <br>
o Division and subtitles are more comprehensive bundles and sub-titles than '3 copies', and are written before the number of volumes. If there is a division, it is recommended to divide it.<br>
* Yes. Part 1 Volumes 1-23<br>
* Yes. For part 1 of JoJo's Bizarre Adventure ===> Part 1 'Phantom Blood' Volumes 1 to 5 (Single quotation marks ( ' ) are used for subtitles for visual distinction)<br>
o Separate information refers to special information such as a favorite version, reprint, or re-scan version, a side story, or a collection of short stories.
* Yes. For the rose of Versailles favorite version ===> Books 1-3 - Favorite version ( - Gaiden, - Collection of short stories, - Epilogue)<br>
<br>
* <strong>tag</strong><br>
o Only <span style="color: red;"><strong>country</strong></span> and <strong>genre</strong> tags are allowed and must be filled in.<br>
* <span style="color: red;"><strong>Application</strong></span> tag is prohibited.<br>
o For the genre, you can transfer the genre of the comicsist as it is.<br>
<br>
* <strong>Based on image attachment</strong><br>
o In general, one <strong>page scan image</strong> must be attached to the <strong>page image shot</strong>.<br>
* Image shots are allowed only on pages with this content, not on the cover or table of contents.<br>
o When one part of the bundled data is in a heterogeneous format (<strong><span style="color: green;">mixed</span></strong>), images in different formats <strong><span style=" color: green;">Attach 2 or more</span></strong>. (Up to 2 attachments are supported in the tracker)<br>
o You can use an image hosting site to upload more than 2 images.<br>
o Be sure to attach the cover image to the group information unless it is specifically available.<br>
<br>
<span style="color: red;">* <strong>Trump and Unity Rules</strong></span><br>
o <span style="color: red;"><strong>Trump</strong></span> is in the order of haircut>digital>translation>application. Hairdressing can also be truncated by quality and capacity in some cases.<br>
o <span style="color: red;"><strong>integration</strong></span> can be done according to the criteria below when the number of detailed torrents increases based on uploads per volume. (However, unification of compressed file names is the default)<br>
* If the detailed torrent is a book ===> If there are more than 6, it can be integrated<br>
* If the detailed torrent is a serial version ===> Integration based on 10 episodes (eg 21~30 episodes)<br>
o Anyone can <span style="color: red;">integrate</span> when the <span style="color: red;">last finale</span> of a comic strip is released.<br>
* If proprietary material is included, specify the reel group information of the original source (or whether it is exclusive to T) in <strong>individual torrent information</strong> and set it as an exclusive material.<br>
* When combining general data and proprietary data, if there is a download rating limit that exceeds the user rating, it cannot be combined.<br>
* In case of merging materials that contain proprietary material, the uploader of the exclusive material has priority for one week. <br>
<br>
* <strong> other important rules</strong><br>
o Uploading of multiple authors or multiple works is not permitted.<br>
o <span style="color: green;"><strong>per volume</strong> or <strong>compressed upload per page only</strong></span> is allowed. (<strong>Exception</strong> : <strong><span style="color: green;">Script</span></strong>, <strong><span style="color: green;">Webtoon< /span></strong> allows full compression only for completion)<br>
* <span style="color: red;">Files and folders must be named <strong>must be</strong> distinguishable from other works. <strong>Yes)</strong> 700.zip(X), One Piece 700.zip(O)</span><br>
o Be sure to check <span style="color: green;"><strong>Preserve file order</strong></span>. At this time, please note that if the compressed file names are not unified, they will not be sorted.<br>
o Weekly serial edition collections uploaded in general format, except for translations of original books, may be modified or deleted without notice.<br>
o If you upload consecutive episodes individually, it will be judged for the purpose of filling <strong>up torrent</strong>, and may result in warnings and deletions.
</div>
</div>
<div id="7">
<div class="rulebox pad">
<div class="date">Updated: <span class="time tooltip">3 years, 2 months ago</span></div>
<strong>* The information of the material uploaded to this category has priority over the information (About...) or Help (Help...) of the application.<br>
* Also, for exceptions, we aim to unify the previously uploaded information for the same product group.</strong><br>
<br>
* <strong>Producer</strong><br>
o Inc. It does not include unnecessary information such as indicating the form of company establishment.<br>
<br>
* <strong>Product name</strong><br>
o Include the year in the product name, but write other version information in the additional information box.<br>
o If there are too many individual grouped data, it can be grouped by including the version in the product name at the discretion of the management team, and subsequently uploaded data must follow the grouped form. <br>
<br>
* <strong>More information</strong><br>
o Enter the version information, language information, Add-on, etc. of the product in the classification name.<br>
o Each item of the delimited name is separated by "/", and a space is used between the front and back for better visibility.<br>
o When grouped together with existing materials, it is necessary to refer to the additional information of existing materials to ensure regularity.<br>
<br>
o Product family / version information / operating system version information / language information<br>
<br>
o Product Family: Fill out the edition information such as Pro, Enterprise, etc.<br>
<br>
o Version information: It must start with a lowercase letter v, and build information is written after the version information. (v1.00.00.0000) (recommended to write the build name)<br>
- When entering only build information in the version information field, write it as "Build 0000".<br>
<br>
o Compatibility according to operating system version: If there is no distinction, omit it. If there is a distinction, write x86 for 32-bit only and x64 for 64-bit only.<br>
<br>
o Language information: Write the language in English only if it is not English or the language of the country of release. If multiple languages are supported, write Multilingual.<br>
<br>
<br>
* <strong>Package shot</strong><br>
o Upload the package shot of manufacturers and sellers, and if there is no relevant data, upload the icon image.<br>
<br>
* <strong>Group torrent information</strong><br>
o The group torrent information must contain the full description of the product or the manufacturer's description, not the version information.<br>
<br>
* <strong>Individual torrent information</strong><br>
o The features of the version program and how to install and activate it should be described.<br>
o Installation and activation methods must be accurately and detailed Step by Step.<br>
- However, if it is included as an attached document in the data, such as NFO, it can be replaced with that guide.<br>
- If no action is required other than installation, it can be omitted, and if it is not specified, up to <strong>upload rights</strong> may be taken.<br>
<br>
* <strong>Software distributed as freeware cannot be uploaded. In the following cases, it can be uploaded with prior permission from the operator.</strong><br>
o In case it is usefully processed by the user (eg minimum installed version | portable version | MOD)<br>
o When it is difficult to obtain, such as when the distribution site disappears<br>
o If it is convenient to use with this program as it is an added form<br>
<br>
* <strong>Cracks, patches, and serials with only genuine registration function cannot be registered alone, only those included in this program.</strong><br>