-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathevents.json
1188 lines (1187 loc) · 71.5 KB
/
events.json
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
[
{
"name": "Malang",
"tagline": "Choreography Meets Chemistry at Malang!",
"event_type": "Team",
"event_category": "Dance",
"description": "Malang is a duo dance competition that spotlights the synergy between two talented dancers.In this event, participants perform intricately choreographed routines that blend a variety of dance styles, including Bollywood, contemporary, and more.,It's a captivating showcase of creativity, coordination, and chemistry between dance partners, offering a visual and emotional spectacle that leaves the audience spellbound.,Join us for Malang and witness the magic that unfolds when two dancers become one through the language of dance!",
"reg_fees": "400",
"max_participants": "2",
"min_participants": "2",
"event_date": "Nov 4, 2023",
"event_time": "2:00 PM",
"org_club": "Aavartan",
"duration": "3 hours approx.",
"instructions": [
"Fill Registration google form (within deadline).",
"Must have Tarang Pass.",
"All the participant members must have their registration card/institute card.",
"All forms of dance are allowed.",
"Duration: 2 to 4 minutes.",
"Penalized points for exceeding time limits.",
"Props can be used.They need to be brought by the team itself.However, the organizing team holds the discretion of not allowing it on the stage.",
"The obscenity of any kind is not allowed and will lead to immediate disqualification.",
"The decision of the judges and the organizing team shall be final and binding."
],
"judging_criteria": [
"Synchronization",
"Stage Utilization",
"Creativity",
"Choreography",
"Coordination",
"Energy Level",
"Expression",
"Costumes and Props",
"Presentation",
"The overall Impact on the crowd"
],
"coordinators": [
{ "name": "Ashish Chaudhary", "pno": "9991689805" },
{ "name": "Bhavika Sehgal", "pno": "8726788999" }
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641458/Final%20Event%20images/banner/Malang_banner.jpeg_w2xyjk.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641458/Final%20Event%20images/banner/Malang_banner.jpeg_w2xyjk.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641424/Final%20Event%20images/card/Malang_card_bjbzmp.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641424/Final%20Event%20images/card/Malang_card_bjbzmp.webp"
},
"prize_pool": "7000"
},
{
"name": "Breakin Battles",
"tagline": "Dance, Clash, Conquer: Join the Battle!",
"event_type": "Solo",
"event_category": "Dance",
"description": "Breakin Battles is a solo dance battle where dancers of diverse backgrounds and styles unleash their raw talent and creativity.\n\n In the competition, contestants must first improvise and adapt to randomly selected music during the Prelims, testing their creativity.\n\n Then, in the Battle Round, we create thrilling face-offs where dancers showcase their best moves, innovation, and stage presence, challenging opponents in real time.\n\n It offers a platform for dancers to impress judges, push their limits, and captivate the audience with their freestyle dance artistry, celebrating individuality and self-expression.\n\n \"Step into the spotlight and join us for Breakin’ Battles, where the dance floor becomes your battlefield!\"",
"reg_fees": "300",
"max_participants": "1",
"min_participants": "1",
"event_date": "Nov 5, 2023",
"event_time": "2:00 PM",
"org_club": "Aavartan",
"duration": "4 hours approx.",
"instructions": [
"It is a solo dance battle.",
"There are two rounds for this competition as listed below:\n 1.Prelims: Contestants will have to perform freestyle on the songs which will be played on the Spot.\n 2. Battle round: A face-off round, your opponent will be selected by the judges and you have to do freestyle battle.",
" All forms of dance are allowed.",
"Duration: Will be assigned on spot.",
"Must have Tarang Pass",
"The participant must have their registration card/institute card",
"The obscenity of any kind is not allowed and will lead to immediate disqualification.",
"The decision of the judges and the organizing team shall be final and binding."
],
"judging_criteria": [
"Synchronization",
"Stage Utilization",
"Creativity",
"Choreography",
"Coordination",
"Energy Level",
"Expression",
"Costumes and Props",
"Presentation",
"The overall Impact on the crowd"
],
"coordinators": [
{ "name": "Nithin Adepu", "pno": "7729054812" },
{ "name": "Sriram Gone", "pno": "7075669396" }
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696761876/eventPage/header/bbh11-65228791b5a75_r8yck0.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696761876/eventPage/header/bbh1-65228791012b8_sqn5fi.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696761849/eventPage/main/breakingbattle-1-652286e05b7af_tagudh.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696761848/eventPage/main/breaking-battles-652286dede035_hx2uho.webp"
},
"prize_pool": "8000"
},
{
"name": "Ciniverse",
"tagline": "Script Your Story, Shoot for Stardom at Ciniverse!",
"event_type": "Solo",
"event_category": "Photography",
"description": "Ciniverse is a Film making competition, that can be presented in a genre of tour personal choice and will be judged based on cinematography, lighting, editing and color grading.",
"reg_fees": "200",
"max_participants": "50",
"min_participants": "20",
"event_date": "Nov 3, 2023",
"event_time": "",
"org_club": "Shutter Box",
"duration": "3 days online event",
"instructions": [
"Film should be a minimum of 5mins, and must not exceed 30 mins.",
"Films can be from any language of your choice.",
"Judgment prioritization is based on technical features of film:\na. Cinematography\nb. Editing\nc. Lighting\nd. Color grading"
],
"coordinators": [{ "name": "Darsi Manjith", "pno": "9346485364" }],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536432/eventPage/header/Ciniverse_vb4wf4.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536433/eventPage/header/ciniverse_1_vspfme.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701006/eventPage/main/ciniverse_yx04ep.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701006/eventPage/main/ciniverse_1_wsds6u.webp"
},
"prize_pool": "8000"
},
{
"name": "Pixcellence",
"tagline": "Picture-Perfect Moments Await at Pixcellence!",
"event_type": "Solo",
"event_category": "Photography",
"description": "All you photographers! Get ready to show your creativity! If you've got a camera or a phone and love taking pictures, this is for you. We're hosting a cool online photo contest called \"Pixcellence\" and it's your chance to showcase your photography skills and creativity. The themes for the contests are Macro, Monochrome, Street photography.",
"reg_fees": "50",
"max_participants": "250",
"min_participants": "100",
"event_date": "Nov 3, 2023",
"event_time": "",
"org_club": "Shutter Box",
"duration": "all 3 days online",
"instructions": [
"Submission Limit: You can submit a maximum of three photo per theme.",
"Theme Flexibility: You're not obligated to submit photos for every theme; you can choose which themes you want to participate in.",
"Post-Processing Allowed: You are allowed to edit or enhance your photos before submitting them.",
"Title Requirement: Every photo you submit must have a title.",
"File Naming Convention: While saving your photos, use the format \"Photo title_Name of\nparticipant\" for the filenames.",
"Avoid Additional Elements: Do not include borders, frames, watermarks, or filters in your photos.",
"Original Work: All photos you submit must be your own original creations."
],
"judging_criteria": [],
"coordinators": [{ "name": "K L Praseeda Keerthi", "pno": "9866246733" }],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536429/eventPage/header/pixl_nozsut.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536436/eventPage/header/pixl_1_jug3hj.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701004/eventPage/main/sunglasses_1_tiyseh.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701005/eventPage/main/sunglasses_1_1_rbf88y.webp"
},
"prize_pool": "3000"
},
{
"name": "Odyssey",
"tagline": "The Dance Odyssey Begins Here!",
"event_type": "Solo",
"event_category": "Dance",
"description": "Odyssey is a Solo Dance competition that puts individual dancers in the spotlight, allowing them to shine and exhibit their exceptional skills, technique, and performance abilities.\n\n Dancers from various genres and backgrounds take the stage to express themselves through their unique dance styles.\n\n It's a thrilling showcase of talent, passion, and the artistry of dance.\n\n Prepare to be captivated by the solo dancers as they embark on an unforgettable journey of movement and expression!",
"reg_fees": "200",
"max_participants": "1",
"min_participants": "1",
"event_date": "Nov 4, 2023",
"event_time": "8:30 AM",
"org_club": "Aavartan",
"duration": "3 hours approx.",
"instructions": [
"Only solo performances are allowed.",
"Participants need to bring their own soundtrack in .mp3 format in a pen drive only.",
" Must Have Tarang Pass.",
"All the participant members must have their registration card/institute card.",
"All forms of dance are allowed.",
"Duration: 1.5 to 2.5 minutes.",
"Penalized points for exceeding time limits.",
" Participants may use multiple songs.",
"Props can be used.They need to be brought by the team itself.However, the organizing team holds the discretion of not allowing it on the stage.",
"The obscenity of any kind is not allowed and will lead to immediate disqualification.",
"The decision of the judges and the organizing team shall be final and binding."
],
"judging_criteria": [
"Synchronization",
"Stage Utilization",
"Creativity",
"Choreography",
"Coordination",
"Energy Level",
"Expression",
"Costumes and Props",
"Presentation",
"The overall Impact on the crowd"
],
"coordinators": [
{ "name": "Vansh Vyas", "pno": "7987529916" },
{ "name": "Samarth Yadav", "pno": "7017565239" }
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641458/Final%20Event%20images/banner/Odyssey_banner_roi41f.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641458/Final%20Event%20images/banner/Odyssey_banner_roi41f.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641424/Final%20Event%20images/card/Odyssey_card_it6swh.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641424/Final%20Event%20images/card/Odyssey_card_it6swh.webp"
},
"prize_pool": "7000"
},
{
"name": "Jhankaar",
"tagline": "Feel the Beat, Join the Heat - Jhankaar's Elite!",
"event_type": "Team",
"event_category": "Dance",
"description": "Jhankaar is a group dance competition that pits diverse dance groups against each other in a battle of rhythm and creativity. Dance enthusiasts from various backgrounds and styles, including Bollywood, hip hop, jazz, and more, come together to showcase their talent and passion on one vibrant stage. It's a celebration of movement, music, and the infectious energy that dance brings, promising an unforgettable experience for both participants and spectators. Get ready to witness the power of unity in dance!",
"reg_fees": "200",
"max_participants": "500",
"min_participants": "8",
"event_date": "Nov 3, 2023",
"event_time": "4:00 PM",
"org_club": "Aavartan",
"duration": "3 hours approx.",
"instructions": [
"Only group performances are allowed and all members should be equally involved throughout the performance.",
"Minimum participants: 8 members",
"All participants of a team should be of the same Institute.",
"At any given time, a minimum of 5 members should be on the stage.",
"Participants need to bring their own soundtrack in .mp3 format in a pen drive only.",
" Must have Tarang Pass at the time of Event.",
"All the participant members must have their registration card/institute card.",
"All forms of dance are allowed.",
"Duration: 8 to 11 minutes",
"Penalized points for exceeding time limits",
" Participants may use multiple songs.",
"Props can be used.They need to be brought by the team itself.However, the organizing team holds the discretion of not allowing it on the stage.",
"The obscenity of any kind is not allowed and will lead to immediate disqualification.",
" The decision of the judges and the organizing team shall be final and binding."
],
"judging_criteria": [
"Synchronization",
"Stage Utilization",
"Creativity",
"Choreography",
"Coordination",
"Energy Level",
"Expression",
"Costumes and Props",
"Presentation",
"The overall Impact on the crowd"
],
"coordinators": [
{ "name": "Rakshit Goel", "pno": "8941842574" },
{ "name": "Priyank Bhaskar", "pno": "6232997288" }
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641456/Final%20Event%20images/banner/Jhankaar_banner_s7dtve.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641456/Final%20Event%20images/banner/Jhankaar_banner_s7dtve.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641424/Final%20Event%20images/card/Jhankaar_card_grfs5p.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641424/Final%20Event%20images/card/Jhankaar_card_grfs5p.webp"
},
"prize_pool": "40000"
},
{
"name": "Rangmanch",
"tagline": "Solo Acts, Infinite Expressions: Rangmanch Chronicles!",
"event_type": "Solo",
"event_category": "Drama",
"description": "Colour the stage with the shades of your expressions! Rangmanch, the Mono Act competition, is THE canvas to paint your emotions on, THE rock to carve your name into and the PERFECT opportunity to flaunt your creativity, unveiling your self-written pieces for the world to see!",
"reg_fees": "50",
"max_participants": "1",
"min_participants": "1",
"event_date": "11/4/2023",
"event_time": "11:30 AM",
"org_club": "Jazbaat",
"duration": "2-3 min",
"instructions": [
"1st Round- Participants are required to choose any one emotion and prepare their act based on it.",
"2nd Round- Participants are required to choose two contrasting emotions and create their performance (with a focus on smooth transitioning between them and ensuring an equal expression of both emotions throughout the act).",
"Duration:- 2-3 minutes.",
"Rules:-\n a) No use of abusive language or words.\nb) Nuditiy/Vulgarity is strictly proihibited.\nc) No use of direct comments on any religion/community/ company/institution.\nd) No other person's involvement is allowed in the whole act.\ne)Penalized for exceeding time limits"
],
"judging_criteria": [],
"coordinators": [
{ "name": "Reishabh Rathore", "pno": "9315137833" },
{ "name": "Uttara Kamat", "pno": "9869261132" }
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641457/Final%20Event%20images/banner/Rangmanch_banner_xkc0qe.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641457/Final%20Event%20images/banner/Rangmanch_banner_xkc0qe.webp`p",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641425/Final%20Event%20images/card/Rangmanch_Card_zzzdt0.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641425/Final%20Event%20images/card/Rangmanch_Card_zzzdt0.webp"
},
"prize_pool": "14000"
},
{
"name": "Nukkad: Ek Goonj",
"tagline": "Raise Your Voice, Create a Scene at Nukkad: Ek Goonj!",
"event_type": "Team",
"event_category": "Drama",
"description": "Offo! What’s all that ruckus about? Looks like it’s not just any ruckus, it’s a Nukkad! Give voice to the important messages that YOU want others to hear in Jazbaat’s Nukkad ki Nautanki! Empty that glass of haldi-doodh the night before, you’ll need it to shout your message LOUD and CLEAR! Get the best of your Hulla-Gulla for the one big tamasha that is the Nukkad Naatak Competition.",
"reg_fees": "2000",
"max_participants": "25",
"min_participants": "18",
"event_date": "Nov 3, 2023",
"event_time": "9:00 AM",
"org_club": "Jazbaat",
"duration": "15 minutes ",
"instructions": [
"Teams should keep the time limit in mind.",
"Mics/ microphones/ speakers will not be allowed during the play, even if the teams will bring their own.",
"You can bring your own musical instruments like harmonium,flute,clapbox or any other physically playable instruments.",
"The content of your nukkad natak should be socially relevant and thought-provoking.It should address important issues or convey a meaningful message.",
"Use of any abusive/obscene language is prohibited.",
"Usage of props is allowed,teams have to bring their own props.",
"Use of any inflammable/ hazardous elements are strictly prohibited.",
"Teams are requested to confirm the validity of props before bringing them.",
"After the performance,clean up the area and leave it in the same condition as before the play.",
"The decision of judges will be final and binding."
],
"judging_criteria": [],
"coordinators": [
{ "name": "Uday Shakya", "pno": "7017474241" },
{ "name": "Shivansh Shukla", "pno": "7895043346" }
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641458/Final%20Event%20images/banner/nukkad_banner_mctwmw.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641458/Final%20Event%20images/banner/nukkad_banner_mctwmw.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641424/Final%20Event%20images/card/nukkad_card_kvhh6a.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641424/Final%20Event%20images/card/nukkad_card_kvhh6a.webp"
},
"prize_pool": "40000"
},
{
"name": "Theatre Wars",
"tagline": "Your Story Your Stage, From Laughter to Tears, Theatre Wars Inspires",
"event_type": "Team",
"event_category": "Drama",
"description": "PRESENTING your chance to set the stage ablaze in a glorious stage-act competition!\n\n Gather your friends and set the satge ablaze, because this competition is group performances only!\n\n And don't restrict yourselves, your act can be on ANY topic and theme!\n\n Mela-Drama is THE opportunity to showcase your group's dramatic flair.",
"reg_fees": "1500",
"max_participants": "20",
"min_participants": "10",
"event_date": "11/5/2023",
"event_time": "5:00 PM",
"org_club": "Jazbaat",
"duration": "20-45 minutes",
"instructions": [
"1. Team Size: Each team can have a maximum of 15 on-stage performers and 3 backstage support members for sound, lighting, and spot operations.",
"2. Script: Original or adapted scripts are accepted.",
"3. Submission Deadline: Submit your play's synopsis and script by 29 October 2023, 11:59 PM.",
"4. Entry Fee: There's a participation fee of Rs. 1500 per team.",
"5. Team Composition: Only intra-college teams are allowed. Please provide your college name, Point of Contact (POC) name, and at least two contact numbers with your submissions.",
"6. Performance Length: Performances should range from 20 to 45 minutes. The timer starts when your team is announced on stage until the crew members leave the stage. Going beyond the time limit will result in point deductions. Each team gets a 15-minute tech rehearsal before the event.",
"7. Language: Plays can be in Hindi, English, or a mix of both. Catchphrases in other languages are allowed",
"8. Play Details: Send the play title, approximate duration, and any specific requirements from the host institute (if available).",
"9. Credits: If your play is self-written or includes material from other plays, provide due credit. Use the subject line format: STAGEPLAY_COLLEGENAME.",
"10. Stage Damage: Causing damage to the stage will result in penalties.",
"11. Substances: Avoid using flammable substances or liquids. Special requirements must be pre-approved.",
"Vulgarity is strictly prohibited and can lead to disqualification.",
"12. Vulgarity: Obscene content is not allowed and may lead to disqualification.",
"13. Professional Assistance: Only certified students of the institute can participate. Bring your identity cards. Using fake identities or fraud may lead to disqualification",
"14. Hazardous Elements: Use of hazardous props is strictly prohibited.",
"15. Technical Support: Teams will receive technical support to operate lighting consoles.",
"16. Respect and Inclusivity: Respect cultural, social, and political sensitivities. Offensive content will result in disqualification.",
"17. Audience-Friendly: Performances must be suitable for a general audience without offensive or inappropriate content.",
"18. Judging: The judging panel's decision is final. Criteria: a. Script and Direction (30%), b. Acting (35%), c. Lights and Music (15%), d. Production (20%).",
"19. Conduct: Misbehavior with organizers, teams, judges, or event staff may lead to disqualification."
],
"judging_criteria": [],
"coordinators": [
{ "name": "Shanu Priya Garg", "pno": "8660761323" },
{ "name": "Priyanshu Bujethia", "pno": "9352816482" }
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641458/Final%20Event%20images/banner/Theatre_War_Banner_acptw5.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641458/Final%20Event%20images/banner/Theatre_War_Banner_acptw5.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641427/Final%20Event%20images/card/Theatre_wars_card_vcxx9s.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641427/Final%20Event%20images/card/Theatre_wars_card_vcxx9s.webp"
},
"prize_pool": "45000"
},
{
"name": "Frame-by-Frame Fockery",
"tagline": "Video Wizards, Unite at Frame-by-Frame Fockery!",
"event_type": "Solo",
"event_category": "Fine Arts",
"description": "“Frame-by-Frame Fockery” is a platform provided to showcase the abilities of video editors and Animators.\n\n Make a stop motion animation to Compete with a talented pool from all over India, where your creativity takes the center of stage! make your team of 1-3 like-minded visionaries for an exciting 1–3-minute animation journey.\n\n The file format accepted will be MP4 only, Adding your personal touch to claim your shot at fame and fortune is a notable point.\n\n You are free to prefer ready-made props or love crafting your own.\n\n Amaze the platform out.",
"reg_fees": "200",
"max_participants": "3",
"min_participants": "1",
"event_date": "Oct 30, 2023",
"event_time": "11:59 PM",
"org_club": "Abhivyakti",
"duration": "-",
"instructions": [
" Start with a strong concept.",
"Keep it simple.",
"Plan your animation carefully.",
"Use high-quality materials.",
"Pay attention to detail.",
"Don't be afraid to experiment"
],
"judging_criteria": [
"Creativity: The animation should be original and imaginative, with a unique concept and execution.",
"Technical skill: The animation should be well-crafted, consistent lighting, and a high level of technical detail.",
"Storytelling: The animation should have a clear and engaging story that is well-paced and executed.",
"Personal touch: The animation should reflect the unique style and personality of the creators.",
"Sound Design: The animation will also be judged on the basis of the attention given to sound design and the detail of the sounds used.",
"Teams can be 1-3 people in size.",
"Animations should be 1-3 minutes long.",
"Animations must be in MP4 format (resolution: atleast 1080p).",
"Animations must be original and created specifically for the competition.",
"The completed video should have a physical watermark (on the bottom left) in every scene, to prove originality. (e.g. adding a small card with your name on it on the bottom left of every scene.) The watermark shouldn’t hinder the video in any way or form.",
"Animations must not contain any copyrighted material, including music, sound effects, or footage.",
"Animations must be suitable for all ages.",
"Explicit content is not allowed."
],
"coordinators": [{ "name": "Madhavjith", "pno": "7994922406" }],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536422/eventPage/header/fbf_aej23j.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536427/eventPage/header/fbf_1_o9syj2.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701002/eventPage/main/fbf_h4xuev.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701002/eventPage/main/fbf_1_xom2r3.webp"
},
"prize_pool": "TBD"
},
{
"name": "ArtLabs",
"tagline": "From Raw Materials to Masterpieces: ArtLabs Journey!",
"event_type": "Solo",
"event_category": "Fine Arts",
"description": "Attend the awaited creative workshops for Bamboo Furniture crafting and pottery.\n\n Attend this one-of-a-kind session to learn the basic fundamentals of these crafts and get hands-on experience while implementing and performing the fascinating and fun tasks .",
"reg_fees": "100",
"max_participants": "1",
"min_participants": "1",
"event_date": "Nov 3, 2023",
"event_time": "5:00 PM",
"org_club": "Abhivyakti",
"duration": "Event is for two days, 3/11/23 and 5/11/23. One type of workshop will be held on each day.",
"instructions": [
"Materials: Participants will be provided with the necessary materials and tools for the workshops. A list of recommended materials will be provided in advance.",
"Workshop Sessions: Participants will have the opportunity to attend workshops conducted by experienced instructors in both bamboo furniture crafting and pottery. Attendance at these sessions is mandatory for competition entry.",
"Safety: Safety measures, including the use of protective gear and following workshop safety guidelines, must be strictly adhered to during the crafting process.",
"Display: All completed pieces will be displayed for exhibition during the event. Participants are responsible for setting up their displays.",
"Ownership: Participant retain ownership of their bamboo furniture and pottery pieces. However, they grant permission for thrir work to be displayed during event. Ensure that these criteria, rules, and guidlines are communicated clearly to all participants before the event to ensure a fair and successful comprtetion. Goodluck with your Art Labs Event! "
],
"judging_criteria": [],
"coordinators": [{ "name": "Aditya Raj", "pno": "9472016042" }],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536419/eventPage/header/artlab_nu4kia.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536425/eventPage/header/artlab_1_z7uhbc.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701003/eventPage/main/artlab_crfx4w.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701004/eventPage/main/artlab_1_ozmza5.webp"
},
"prize_pool": "TBD"
},
{
"name": "Cassiopeia",
"tagline": "Face the Gods and Goddesses in Cassiopeia's Realm!",
"event_type": "Team",
"event_category": "Fine Arts",
"description": "Step into a world of enchantment with the dynamic face painting and cosplay adventure, a mesmerizing 3-hour Warfare.\n\n The theme decided is “Greek gods and goddesses”.\n\n Reveal your creative self and let your imaginations run wild, but First and the most prior rule is, we appreciate tasteful elegance, so leave the inappropriate costumes at home.\n\n Bring your own clothes and materials, and assemble on the sight.\n\n And to top it all off, a dazzling ramp walk awaits, to showcase your gracious walk with on-the-spot created costumes.\n\n Show the plans you got, stage is waiting for you.",
"reg_fees": "200",
"max_participants": "2",
"min_participants": "2",
"event_date": "Nov 4, 2023",
"event_time": "4:30 PM",
"org_club": "Abhivyakti",
"duration": "3 hours + Rampwalk",
"instructions": [
"Creativity: The model should creatively represent the chosen god or goddess.",
"Essence: The costume and face painting should capture explicitly or implicitly portray the trait of the god or goddess chosen.",
"Costume: The costume should include the colours or style of greek drapery.",
"Face Painting: The level of skill and representation of elements in the face painting will be judged.",
"Novelty: The costume and face painting should have an artistic flair and uniqueness of the artist.",
"Tips for Creating a winning Entry: \n1. Accessories - Accessoriese your way to victory. \n2. Draping styles - Learn various ways to drape clothes and use multiple layer. \n3. Practise-Practice in the set time-frame before competing to help finish on time. \n4. Relevance-Addition of relevant modern-day scenarios can gain extra points."
],
"judging_criteria": [
"Rules:\n1. This is a Face painting and Cosplay competition.\n2. Participants will work in Teams of 2: One person will be the model and the other will be the artist.\n3. The Theme of the event is Greek Gods and Goddesses.\n4. The competition is of 3 hours which includes the costume and face painting.\n5. Inappropriate costumes will be disqualified.\n6. Paints, materials and clothes will have to be brought by participants.\n7. The entire ensemble should be prepared on sight.\n8. A ramp walk of all the participants will be held.\n9. Participants will have to explain their concept to the judges."
],
"coordinators": [{ "name": "Swamini Gawad", "pno": "7758095513" }],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536417/eventPage/header/cassiopia_kffqr2.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536421/eventPage/header/cassiopia_1_k0ovny.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696700999/eventPage/main/cassiopia_sumwtc.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701000/eventPage/main/cassiopia_1_fc6auf.webp"
},
"prize_pool": "TBD"
},
{
"name": "Artful Alteration",
"tagline": "Paint the Past, Define the Future at Artful Alteration!",
"event_type": "Team",
"event_category": "Fine Arts",
"description": "Got the mad skills with brush and paints? Get ready for an electrifying three-hour challenge!\n\n Gather your dream team of five to convert the blank canvas into an unparalleled masterpiece.\n\n But here is the twist – you will have to reimagine any legendary painting in a known art style.\n\nFor the first 30 minutes, the internet is allowed for getting inspiration from various resources, but remember – originality is your ace. Plagiarism is strictly not allowed!\n\nReady to unleash your creativity?",
"reg_fees": "500",
"max_participants": "5",
"min_participants": "5",
"event_date": "Nov 4, 2023",
"event_time": "10:00 AM",
"org_club": "Abhivyakti",
"duration": "3 hours",
"instructions": [
"Originality- The final product must be original and free of any plagiarism.",
"Creativity- The final piece must be creative and interesting and must beat the preconceived notions attached to the painting as well as the style.",
"Composition- The painting must be well composed and should look artistic rather than cluttered.",
"Technique- The painting style and technique must be visually appealing and should be upheld to a certain standard of professionalism.",
"Use of color- The color choices made must be accurate to a degree to both the original painting and the new art style."
],
"judging_criteria": [
"Rules:\n*Participants must work in a group of 5.\n*Participants will be given a famous painting and an art style. They must then recreate the painting in the art style on a 1 x 2 meter canvas sheet.\n* The painting and the art style will be given to each team through randomized card picking. Changing or re-selecting your prompts is not allowed\n* Duration of the competition is 3 hours.\n*A 1 x 2 metre canvas sheet, acrylic paint and paintbrushes will be provided to each team.\n* The Internet is allowed for the first 30 minutes only for getting inspiration. Your time will start after the first 30 minutes are up.\n* Plagiarism is strictly not allowed.\n*Political or offensive submissions will be disqualified.\n* All team members must participate actively.\n* The painting must be completed within the allotted time."
],
"coordinators": [{ "name": "Paridhi Bisht", "pno": "9910054931" }],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536414/eventPage/header/artfulalt_gfd0kk.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536416/eventPage/header/artfulalt_1_raz6h6.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696700998/eventPage/main/artful_ovw8ii.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696700999/eventPage/main/artful_1_euoqxk.webp"
},
"prize_pool": "TBD"
},
{
"name": "Off The Wall",
"tagline": "Make Your Mark on the Nescafe Wall!",
"event_type": "Solo",
"event_category": "Fine Arts",
"description": "\"Off the Wall\" is an online mural design competition which enables participants to freely express their artistic abilities and have a chance at setting free their inner Michelangelo!\n\n The submission for the same will be done before the fest.\n\n The winning design will be featured on the Nescafe wall in the campus during the fest!",
"reg_fees": "200",
"max_participants": "1",
"min_participants": "1",
"event_date": "Oct 17, 2023",
"event_time": "11:59 PM",
"org_club": "Abhivyakti",
"duration": "Online competition submission till 17/10/2023.",
"instructions": [
"Originality- The final product must be original and free of any plagiarism.",
"Creativity- The artwork should be original and imaginative, with a unique concept and execution.",
"Composition- There should be quality of artistic composition and overall design.",
"Technical skill- The design should be well crafted, consistent styling and maintaining technical detail.",
"Use of color- The color and tone should be chosen wisely, maintaining balance of image within its space."
],
"judging_criteria": [
"Rules:\n* Participants must work individually.\n* The work must be submitted in High quality png/pdf format.\n* Theme: Fantasy\n* The dimension of the artwork should be 3000 x 2200 pixels\n* The work can be handmade or digitally done.\n* Plagiarism is strictly not allowed.\n* The last date of submission for the event is October 17th, 2023.\n*Submissions and registration will be done through a Google form."
],
"coordinators": [{ "name": "Ananya Aggrawal", "pno": "8429337823" }],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536413/eventPage/header/off_wall_cr04fq.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536424/eventPage/header/off_wall_1_r2wuiz.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701001/eventPage/main/otw_ndetmi.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701002/eventPage/main/otw_1_rvezab.webp"
},
"prize_pool": "8500"
},
{
"name": "Shutter Stories",
"tagline": "Journey Through Pixels at the Shutter Stories Exhibition!",
"event_type": "Solo",
"event_category": "Photography",
"description": "Get ready to be captivated by the creativity of our college community!\n\n Our upcoming photo exhibition will showcase a diverse range of visually stunning and thought-provoking images captured by students, faculty, and staff. From breathtaking landscapes to candid moments, this exhibit promises to be a celebration of talent and artistic expression. \n\nJoin us for an immersive visual experience that reflects the spirit and creativity of our college community.",
"reg_fees": "0",
"max_participants": "0",
"min_participants": "0",
"event_date": "Nov 3, 2023",
"event_time": "12:00:00 AM",
"org_club": "Shutter Box",
"duration": "full day",
"instructions": ["no guidelines"],
"coordinators": [{ "name": "Pulivarthi Mahesh", "pno": "9392816922" }],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536444/eventPage/header/peb_xmrn6j.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536440/eventPage/header/peb_1_f4o5zk.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701010/eventPage/main/photoexb_mysq7d.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701010/eventPage/main/photoexb_1_bhqfm7.webp"
},
"prize_pool": "TBD"
},
{
"name": "Canon Workshop",
"tagline": "Shutter Speed to Creative Vision with Canon",
"event_type": "Solo",
"event_category": "Photography",
"description": "Join us for a captivating Canon Workshop at our cultural festival!\n\n Discover the art of photography as we explore Canon's cutting-edge technology and techniques.\n\n Unlock your creative potential, from capturing stunning moments to unleashing your inner artist.\n\n Don't miss this opportunity to sharpen your photography skills and ignite your passion for visual storytelling with Canon.",
"reg_fees": "0",
"max_participants": "200",
"min_participants": "50",
"event_date": "Nov 4, 2023",
"event_time": "4:00 PM",
"org_club": "Shutter Box",
"duration": "2 and half hours",
"instructions": [
"Be open to new learning experiences and follow the instructions given during the workshop.",
"Don't hesitate to ask questions and engage in discussions with other participants.",
"Be mindful of other participants' space and experience. If you wish to photograph other attendees, always ask for their permission first.",
"Take the opportunity to connect with other photography enthusiasts and professionals. You can learn from their experiences and even collaborate on future projects.",
"After the workshop, reflect on your learning experience. Think about how you can apply the skills and techniques learned during the workshop in your future photography projects.",
"Before attending the workshop, prepare a list of questions you'd like answered. If there are specific topics you're interested in, make sure to note them down. The more prepared you are, the more you'll get out of the workshop.",
"If you're bringing your own camera or other equipment, make sure you know how to operate them. This way, you can focus on learning new skills and techniques during the workshop, rather than figuring out how to use your equipment.",
"The instructors at the workshop are experts in their field. Make sure to follow their advice and practice the techniques they demonstrate. This will help you get the most out of the workshop.",
"If there are feedback sessions during the workshop, make sure to participate. This is a great opportunity to receive constructive criticism on your work and learn from others' perspective.",
"Identify specific techniques or skills you want to improve during the workshop. Having clear goals will help you stay focused and motivated throughout the event.",
"The workshop will likely follow a planned schedule. Be punctual and respect the timing of each session to ensure a smooth and productive workshop experience.",
"If there's something you don't understand, don't hesitate to ask questions. The instructors are there to help you learn and grow."
],
"coordinators": [{ "name": "M Hemanth", "pno": "7995232738" }],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536437/eventPage/header/cannon_b6snpt.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696536442/eventPage/header/cannon_1_xutugc.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701009/eventPage/main/cw_iohgis.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696701009/eventPage/main/cw__aegcyf.webp"
},
"prize_pool": "TBD"
},
{
"name": "Micmagic booth",
"tagline": "Our mic, your magic!",
"event_type": "Solo",
"event_category": "Music",
"description": "Step into a world where every voice is a star and every note is pure magic. Stop by at the MicMagic booth and unleash your inner superstar! Sing your heart out, vibe with your friends and create great memories. It's your stage, your song, and your moment to shine! Whether you're a karaoke enthusiast or a shy shower singer, this event is your chance to become the star.",
"reg_fees": "0",
"max_participants": "60",
"min_participants": "10",
"event_date": "Nov 3, 2023",
"event_time": "11:00 AM",
"org_club": "Saaz",
"duration": "3 Hours",
"instructions": [
"Take Turns. Do not put several songs in a row for yourself.",
"Avoid making negative comments about other singers' performances.",
"Avoid screaming or shouting into the microphone.",
"Have your song selection ready before your turn.",
"Check the lyrics screen for cues and timing.",
"Handle mic with care. Don't drop or mishandle the mic.",
"Do not block the view of the karaoke screen for the singer.",
"Avoid having loud conservations that distract the singer or drown out the backing track.",
"Make sure to have fun!!!!"
],
"judging_criteria": [],
"coordinators": [
{
"name": "Shreya Varshney",
"pno": "9897660046"
}
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765562/saaz/header/frame-276-65229035cf03a_yefji7.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765547/saaz/header/frame-344-6522903ec55ee_izyrmm.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765474/saaz/mian/frame-303-652290ecb73ed_ve4hmq.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765484/saaz/mian/frame-315-652290f456a6a_r5pj3l.webp"
},
"prize_pool": "0"
},
{
"name": "Beatbox Battle",
"tagline": "Let the beat drop and the battle begin!",
"event_type": "Solo",
"event_category": "Music",
"description": "All registered participants will have to give prelims of about 1.5-2 minutes. Selected participants will have to pay Rs. 300/- as registration fee. They will give their solo performances of 2 minutes and top 4 among these will move to the quarter finals, Semi Finals and Final round where participants will face each other in a fierce battle.",
"reg_fees": "300",
"max_participants": "35",
"min_participants": "25",
"event_date": "Nov 4, 2023",
"event_time": "11:00 AM",
"org_club": "Saaz",
"duration": "2 hours approx.",
"instructions": [
"1. 25-35 Participants ",
"2. Battle order:",
"Eliminations ",
"Quarterfinals",
"Semifinals ",
"Finals ",
"3. Round Times:",
"2 minutes solo round",
"2 * 90 seconds for solo battle round."
],
"judging_criteria": [],
"coordinators": [
{
"name": "Utkarsh Raj",
"pno": "9508566947"
}
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765564/saaz/header/frame-277-65229038643be_un8axz.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765548/saaz/header/frame-345-6522903f4bac4_gcwrkc.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765476/saaz/mian/frame-306-652290f0771da_zjp191.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765487/saaz/mian/frame-318-652290f62f9ef_vhlkud.webp"
},
"prize_pool": "15,000"
},
{
"name": "Clash of melodies",
"tagline": "Where Rythm meets competition",
"event_type": "Solo",
"event_category": "Music",
"description": "Are you ready to take center stage and let your voice soar? Get ready for a musical showdown like no other as Clash of Melodies is here for an unforgettable solo singing festival! This is your chance to shine as a soloist, captivating the audience with your melodic prowess and unique artistry. Bringing you a celebration of solo singing talent where every note, every lyric, and every emotion come together to create breathtaking performances. Whether you're a seasoned vocalist or a rising star, this festival is your platform to showcase your vocal abilities, creativity, and stage presence.",
"reg_fees": "300",
"max_participants": "60",
"min_participants": "40",
"event_date": "Nov 3, 2023",
"event_time": "10:00 AM",
"org_club": "Saaz",
"duration": "3 hours",
"instructions": [
"Open to solo singers of all ages.",
"No duets or groups shall be entertained. Participants can, however, have a maximum of 2 instrumentalists if they do wish so.",
"Participants can choose any genre of music.",
"Pre-registration is required for participation. The contestants must qualify in the preliminary round to continue further.",
"After qualification, the participants need to pay a registration fees of Rs. 300/- to participate in the following rounds.",
"Each participant is allowed a maximum performance time of 3 minutes.",
"Time will be strictly enforced. Setup and soundcheck shall be done beforehand.",
"Participants are responsible for providing their own backing tracks or live accompaniment, if any.",
"Performances will be judged on vocal skill, stage presence, originality, and audience engagement.",
"The event schedule, including performance order, will be shared in advance."
],
"judging_criteria": [],
"coordinators": [
{
"name": "Divyanshi Dhiman",
"pno": "9717955760"
}
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765556/saaz/header/frame-272-6522902de720d_euanar.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765567/saaz/header/frame-339-65229039d651d_zt7tbx.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765461/saaz/mian/frame-302-652290e971b61_usqo5s.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765482/saaz/mian/frame-314-652290f2d1140_ctgtwi.webp"
},
"prize_pool": "15000"
},
{
"name": "Showcase",
"tagline": "Saaz Ke Suro Ka Jashn",
"event_type": "Team",
"event_category": "Music",
"description": "Prepare to be serenaded by the melodious tunes and soulful harmonies of our talented musicians, as they showcase their exceptional skills and passion for music. From classical melodies to contemporary hits, Saaz promises a diverse repertoire that will captivate your senses. Don't miss this opportunity to witness the magic of Music Club Saaz at IIITDMJ. Mark your calendars, invite your friends and family, and join us for a musical journey like no other. Get ready to be moved by the power of music!",
"reg_fees": "0",
"max_participants": "40",
"min_participants": "10",
"event_date": "Nov 3, 2023",
"event_time": "6:00 PM",
"org_club": "Saaz",
"duration": "2 hours",
"instructions": ["It consists of performances of Saaz Club Members"],
"judging_criteria": [],
"coordinators": [
{
"name": "Kaustubh Upadhyay",
"pno": "6260595371"
}
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765559/saaz/header/frame-274-65229031acceb_khcioa.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765543/saaz/header/frame-342-6522903c8e697_lxkbfa.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765456/saaz/mian/frame-297-652290e657d5c_ugqve9.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765478/saaz/mian/frame-309-652290f017058_dtc1nz.webp"
},
"prize_pool": "0"
},
{
"name": "Dard-e-disco",
"tagline": "Lights, Camera, Quizzing !",
"event_type": "Team",
"event_category": "Quizzing",
"description": "This event is all about celebrating the rich and vibrant world of Indian cinema and its music. We plan to engage our participants with a quiz that covers a broad spectrum of Bollywood. The quiz questions will challenge participants' knowledge of iconic movie songs, legendary musicians, and their glamorous music. They'll have to identify hit songs, match them to their respective movies, and relive the magic of these timeless tunes. Our goal is to make this event inclusive and entertaining for both avid Bollywood fans and music listeners. We have exciting prizes and Saaz merch in store for the participants!",
"reg_fees": "10",
"max_participants": "100",
"min_participants": "5",
"event_date": "Nov 3, 2023",
"event_time": "02:00 PM",
"org_club": "Saaz",
"duration": "Full day for 3 days",
"instructions": [
" No media will be used during the event to maintain a level playing field.",
"Participants will be organized into groups of four. The order of answering will be determined by a buzzer system. The first person to buzz in gets the opportunity to answer the question. If someone manages to answer all 20 questions correctly, they will receive a token or a prize of similar value. Additionally, a token or prize will also be awarded to participants who correctly answer at least 70% of the questions in their set.",
"Group formation will be totally random unless the contestants come with their own group of 4."
],
"judging_criteria": [],
"coordinators": [
{
"name": "Aiman Aslam",
"pno": "9004934919"
}
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765561/saaz/header/frame-275-652290346a8c1_piybn8.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765545/saaz/header/frame-343-6522903d15bc5_oitp3p.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765459/saaz/mian/frame-300-652290e96a868_kic0gj.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765481/saaz/mian/frame-312-652290f248814_e1ohaz.webp"
},
"prize_pool": "Tokens and Merch"
},
{
"name": "Symphony Cascade",
"tagline": "Where music speaks without words!",
"event_type": "Team",
"event_category": "Music",
"description": "Prepare to be mesmerised by the sheer artistry of musical instruments at Tarang! We proudly present Instrumental Harmony, where instrumentalists from near and far will converge to showcase their exceptional talent in an instrumental competition like no other",
"reg_fees": "300",
"max_participants": "35",
"min_participants": "25",
"event_date": "Nov 5, 2023",
"event_time": "10:00 AM",
"org_club": "Saaz",
"duration": "3 Hours ",
"instructions": [
"Every kind of musical instrument is allowed",
"You can either perform in a group or as an individual ",
"Groups can contain a maximum of 4 members",
"The performance duration for a solo performance is a maximum of 3 minutes whereas for a group performance it is 5 minutes ",
"A preliminary round will be held, a video(2-3 min long) is to be submitted for judgement ",
"The preliminary round is free of charges, After qualification, you will have to pay the registration fees to participate in the following rounds.",
"The selected participants will be called to perform on the stage in IIITDMJ Campus."
],
"coordinators": [
{
"name": "Arnav Puri",
"pno": "9001989979"
}
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765554/saaz/header/frame-271-6522902df1ebc_kf8aex.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765542/saaz/header/frame-341-6522903b720dc_jsvlcs.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765458/saaz/mian/frame-299-652290e686ac9_bcwxan.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765479/saaz/mian/frame-311-652290f16f601_lpqqyx.webp"
},
"prize_pool": "15000"
},
{
"name": "KURUKSHETRA",
"tagline": "KURUKSHETRA-YE YUDHH HAI SURO KA",
"event_type": "Team",
"event_category": "Music",
"description": "The Mahabharata featured warriors with diverse skills and abilities, and so will our KURUKSHETRA. Bands of all genres – from rock to classical, folk to hip-hop – will converge on this grand arena to showcase their musical talent. Expect the clash of styles and the fusion of genres, just like the complex alliances and rivalries in the Mahabharata.",
"reg_fees": "2000",
"max_participants": "70",
"min_participants": "30",
"event_date": "Nov 5, 2023",
"event_time": "5:00 PM",
"org_club": "Saaz",
"duration": "3 hours Approx.",
"instructions": [
"You need at least one singer on stage.",
"Your performance video for the first round should be no longer than 3 minutes, and it must be a live recording.",
"You can't use backing tracks",
"team size should consist a minimum of 4 to a maximum of 10 participant.",
"If there are multiple singers on stage, they shouldn't outnumber the total participants.",
"You need at least one string player, one percussionist, and one keyboard player.",
"Participants can bring their own instruments.",
"Participants can perform in any genre."
],
"judging_criteria": [],
"coordinators": [
{
"name": "Virag Jain",
"pno": "8421345464"
}
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765553/saaz/header/image-7-652290416f123_geoy3i.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765566/saaz/header/frame-338-652290387e621_iltccv.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765456/saaz/mian/image-10-652290f8dfa43_v6spqa.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765454/saaz/mian/frame-308-652290f68a6cb_tegvdx.webp"
},
"prize_pool": "60,000"
},
{
"name": "Drop The Mic",
"tagline": "It's an open mic, come and drop it!",
"event_type": "Team",
"event_category": "Informal",
"description": "If you've got killer poems and stories to share, mad rap skills, stand-up, oor just a burning desire to rock the stage, this is your moment! Raps? Stand Ups ? Stories ? Think you got it? ",
"reg_fees": 0,
"max_participants": 70,
"min_participants": 5,
"event_date": "Nov 4, 2023",
"event_time": "5:00 PM",
"org_club": "Samvaad",
"duration": "3 hours approx.",
"instructions": [
"As long as you are not singing..there are NO RULES!!(no profanity of course!)"
],
"coordinators": [
{
"name": "Mettu Varun Aditya",
"pno": 7013584990
}
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641460/Final%20Event%20images/banner/Drop_the_mic-banner_lt7zld.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641460/Final%20Event%20images/banner/Drop_the_mic-banner_lt7zld.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641423/Final%20Event%20images/card/Drop_the_mic_card_ks5f3n.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641423/Final%20Event%20images/card/Drop_the_mic_card_ks5f3n.webp"
},
"prize_pool": 0
},
{
"name": "Quizzeria: General",
"tagline": "Quizzeria: General - Catch 'em All in the World of Words!",
"event_type": "Team",
"event_category": "Quizzing",
"description": "A fun event where we will ask the questions. Can you catch 'em all?",
"reg_fees": 200,
"max_participants": 70,
"min_participants": 5,
"event_date": "Nov 3, 2023",
"event_time": "10:30 AM",
"org_club": "Samvaad",
"duration": "1.5 hours approx.",
"instructions": [
"Teams of max 3 members will be allowed, based on prior registration and feepayment.",
"Multiple different phases of the quiz : Textual, Visual and maybe Auditory",
"Different phases can have different scoring system.",
"Quiz will follow standard rules of Direct, Pounce, Pass and will be explained at the start or whenever necessary"
],
"coordinators": [
{
"name": "Advait Manke",
"pno": 9340614865
}
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641457/Final%20Event%20images/banner/Quizzeria_General_banner_jswcoh.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641457/Final%20Event%20images/banner/Quizzeria_General_banner_jswcoh.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765291/samvad/main/frame-220-652292e5dd490_mkytfs.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765298/samvad/main/frame-231-652292ecf0117_oa9jum.webp"
},
"prize_pool": "11,500"
},
{
"name": "Quizzeria : SPENT",
"tagline": "Quizzeria: SPENT - Where Words Bridge the Gap Between Stadiums and Silver Screens!",
"event_type": "Team",
"event_category": "Quizzing",
"description": "Sports and entertainment quiz. Come and test your knowledge of best of worlds.",
"reg_fees": 200,
"max_participants": 50,
"min_participants": 5,
"event_date": "Nov 4, 2023",
"event_time": "11:00 AM",
"org_club": "Samvaad",
"duration": "2 hours approx.",
"instructions": [
"Teams of max 3 members will be allowed, based on prior registration and feepayment.",
" Multiple different phases of the quiz : Textual, Visual and maybe Auditory",
"Different phases can have different scoring system.",
"Quiz will follow standard rules of Direct, Pounce, Pass and will be explained at the start or whenever necessary"
],
"coordinators": [
{
"name": "Advay Sagarkar",
"pno": 9152539747
}
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641460/Final%20Event%20images/banner/Quizzing_Spent-banner_imkqr0.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641460/Final%20Event%20images/banner/Quizzing_Spent-banner_imkqr0.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765291/samvad/main/frame-221-652292e6d3c3c_btoqal.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696765291/samvad/main/frame-221-1-652292e7c545c_x5j95h.webp"
},
"prize_pool": "11,500"
},
{
"name": "Kavyanchal",
"tagline": "Shabdon ke iss shehar mein apna bhi ghar banao!",
"event_type": "Solo",
"event_category": "Informal",
"description": "Kavyanchal is a Hindi Poetry competition where you are given a stand to present your best shayris and nazms in front of people that want to listen. ",
"reg_fees": 75,
"max_participants": 60,
"min_participants": 5,
"event_date": "Nov 4, 2023",
"event_time": "9:00 AM",
"org_club": "Samvaad",
"duration": "4 hours approx.",
"instructions": [
"Present your own Hindi poetry.",
"It should not be copied from anywhere else.",
"It should have a duration of minimum 1 minute and maximum 4 minutes."
],
"judging_criteria": [],
"coordinators": [
{
"name": "Kushagra Yadav",
"pno": 7509855423
}
],
"images": {
"headerDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696766039/samvad/header/poetry_veinbu.webp",
"headerPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1696766037/samvad/header/Frame_251_uoltrz.webp",
"mainDesktop": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641424/Final%20Event%20images/card/kavyanchal_card_obehua.webp",
"mainPhone": "https://res.cloudinary.com/dxcjzquen/image/upload/v1697641424/Final%20Event%20images/card/kavyanchal_card_obehua.webp"
},
"prize_pool": 7000
},
{
"name": "Verses v/s Verses",
"tagline": "Verses v/s Verses: Weave the Fabric of Emotion Through Rhymes!",
"event_type": "Solo",
"event_category": "Informal",
"description": "Verses v/s Verses is an English Poetry competition where you can flex your rhymes and weave the fabric of your reality to tell tales that move the heart.",
"reg_fees": 75,
"max_participants": 60,
"min_participants": 5,