-
Notifications
You must be signed in to change notification settings - Fork 1
/
innings.html
1879 lines (1879 loc) · 75.4 KB
/
innings.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
class="ds-w-full ds-bg-fill-content-prime ds-overflow-hidden ds-rounded-xl ds-border ds-border-line ds-mb-4"
>
<div
class="ds-flex ds-px-4 ds-border-b ds-border-line ds-py-3 ds-bg-ui-fill-translucent-hover"
>
<div class="ds-flex ds-flex-col ds-grow ds-justify-center">
<span class="ds-text-title-xs ds-font-bold ds-text-typo-title"
><span class="ds-text-title-xs ds-font-bold ds-capitalize"
>Mumbai Indians</span
><span class="ds-text-compact-xs ds-font-regular"
> <!-- --> <!-- -->(20 ovs maximum)</span
></span
>
</div>
</div>
<div class="ds-p-0">
<table
class="ds-w-full ds-table ds-table-md ds-table-auto ci-scorecard-table"
>
<thead class="ds-bg-fill-content-alternate ds-text-left">
<tr class="ds-text-right">
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-left">
BATTING
</th>
<th class="ds-min-w-max"> </th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">R</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">B</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-hidden">M</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">4s</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">6s</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">SR</th>
</tr>
</thead>
<tbody class="">
<tr class="">
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">
<a
href="/player/rohit-sharma-34102"
title="Rohit Sharma"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
><span>Rohit Sharma<!-- --> <span>(c)</span></span></span
></a
>
</td>
<td class="ds-min-w-max !ds-pl-[100px]">
<span class="ds-flex ds-cursor-pointer ds-items-center"
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary ds-inline-flex ds-items-center"
></i
><span>c Curran b Chawla</span></span
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
<strong>12</strong>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
10
</td>
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right ds-hidden"
>
-
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
2
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
120.00
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="8"></td>
</tr>
<tr class="">
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">
<a
href="/player/quinton-de-kock-379143"
title="Quinton de Kock"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
><span>Quinton de Kock<!-- --> <span>†</span></span></span
></a
>
</td>
<td class="ds-min-w-max !ds-pl-[100px]">
<span class="ds-flex ds-cursor-pointer ds-items-center"
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary ds-inline-flex ds-items-center"
></i
><span>c Watson b Curran</span></span
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
<strong>33</strong>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
20
</td>
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right ds-hidden"
>
-
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
5
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
165.00
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="8"></td>
</tr>
<tr class="">
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">
<a
href="/player/suryakumar-yadav-446507"
title="Suryakumar Yadav"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
><span>Suryakumar Yadav<!-- --> </span></span
></a
>
</td>
<td class="ds-min-w-max !ds-pl-[100px]">
<span class="ds-flex ds-cursor-pointer ds-items-center"
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary ds-inline-flex ds-items-center"
></i
><span>c Curran b Chahar</span></span
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
<strong>17</strong>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
16
</td>
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right ds-hidden"
>
-
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
2
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
106.25
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="8"></td>
</tr>
<tr class="">
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">
<a
href="/player/saurabh-tiwary-35390"
title="Saurabh Tiwary"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
><span>Saurabh Tiwary<!-- --> </span></span
></a
>
</td>
<td class="ds-min-w-max !ds-pl-[100px]">
<span class="ds-flex ds-cursor-pointer ds-items-center"
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary ds-inline-flex ds-items-center"
></i
><span>c du Plessis b Jadeja</span></span
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
<strong>42</strong>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
31
</td>
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right ds-hidden"
>
-
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
3
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
1
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
135.48
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="8"></td>
</tr>
<tr class="">
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">
<a
href="/player/hardik-pandya-625371"
title="Hardik Pandya"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
><span>Hardik Pandya<!-- --> </span></span
></a
>
</td>
<td class="ds-min-w-max !ds-pl-[100px]">
<span class="ds-flex ds-cursor-pointer ds-items-center"
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary ds-inline-flex ds-items-center"
></i
><span>c du Plessis b Jadeja</span></span
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
<strong>14</strong>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
10
</td>
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right ds-hidden"
>
-
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
2
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
140.00
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="8"></td>
</tr>
<tr class="">
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">
<a
href="/player/kieron-pollard-230559"
title="Kieron Pollard"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
><span>Kieron Pollard<!-- --> </span></span
></a
>
</td>
<td class="ds-min-w-max !ds-pl-[100px]">
<span class="ds-flex ds-cursor-pointer ds-items-center"
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary ds-inline-flex ds-items-center"
></i
><span>c †Dhoni b Ngidi</span></span
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
<strong>18</strong>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
14
</td>
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right ds-hidden"
>
-
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
1
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
1
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
128.57
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="8"></td>
</tr>
<tr class="">
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">
<a
href="/player/krunal-pandya-471342"
title="Krunal Pandya"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
><span>Krunal Pandya<!-- --> </span></span
></a
>
</td>
<td class="ds-min-w-max !ds-pl-[100px]">
<span class="ds-flex ds-cursor-pointer ds-items-center"
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary ds-inline-flex ds-items-center"
></i
><span>c †Dhoni b Ngidi</span></span
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
<strong>3</strong>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
3
</td>
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right ds-hidden"
>
-
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
100.00
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="8"></td>
</tr>
<tr class="">
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">
<a
href="/player/james-pattinson-272465"
title="James Pattinson"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
><span>James Pattinson<!-- --> </span></span
></a
>
</td>
<td class="ds-min-w-max !ds-pl-[100px]">
<span class="ds-flex ds-cursor-pointer ds-items-center"
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary ds-inline-flex ds-items-center"
></i
><span>c du Plessis b Ngidi</span></span
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
<strong>11</strong>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
8
</td>
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right ds-hidden"
>
-
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
2
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
137.50
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="8"></td>
</tr>
<tr class="">
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-border-line-primary ci-scorecard-player-notout"
>
<a
href="/player/rahul-chahar-1064812"
title="Rahul Chahar"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
><span>Rahul Chahar<!-- --> </span></span
></a
>
</td>
<td class="ds-min-w-max !ds-pl-[100px]">not out</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
<strong>2</strong>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
4
</td>
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right ds-hidden"
>
-
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
50.00
</td>
</tr>
<tr class="">
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max">
<a
href="/player/trent-boult-277912"
title="Trent Boult"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
><span>Trent Boult<!-- --> </span></span
></a
>
</td>
<td class="ds-min-w-max !ds-pl-[100px]">
<span class="ds-flex ds-cursor-pointer ds-items-center"
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary ds-inline-flex ds-items-center"
></i
><span> b Chahar</span></span
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
<strong>0</strong>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
1
</td>
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right ds-hidden"
>
-
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0.00
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="8"></td>
</tr>
<tr class="">
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-border-line-primary ci-scorecard-player-notout"
>
<a
href="/player/jasprit-bumrah-625383"
title="Jasprit Bumrah"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
><span>Jasprit Bumrah<!-- --> </span></span
></a
>
</td>
<td class="ds-min-w-max !ds-pl-[100px]">not out</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
<strong>5</strong>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
3
</td>
<td
class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right ds-hidden"
>
-
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
166.66
</td>
</tr>
<tr class="ds-text-tight-s">
<td class="ds-min-w-max" colspan="1">Extras</td>
<td class="ds-min-w-max !ds-pl-[100px]">(lb 1, w 4)</td>
<td class="ds-min-w-max ds-text-right" colspan="1">
<strong>5</strong>
</td>
<td class="ds-text-right" colspan="7"></td>
</tr>
<tr class="">
<td
class="ds-font-bold ds-bg-fill-content-alternate ds-text-tight-m ds-min-w-max"
colspan="1"
>
TOTAL
</td>
<td
class="ds-font-bold ds-bg-fill-content-alternate ds-text-tight-m ds-min-w-max ds-flex ds-items-center !ds-pl-[100px]"
>
<span class="ds-font-regular">20 Ov</span
><span class="ds-font-regular ds-text-tight-s"
> <!-- -->(RR: 8.10)</span
>
</td>
<td
class="ds-font-bold ds-bg-fill-content-alternate ds-text-tight-m ds-min-w-max ds-text-right"
colspan="1"
>
162<!-- -->/9
</td>
<td
class="ds-font-bold ds-bg-fill-content-alternate ds-text-tight-m ds-text-right !ds-font-regular"
colspan="7"
>
<div></div>
</td>
</tr>
<tr class="">
<td class="" colspan="8">
<div class="ds-text-tight-s ds-font-regular ds-leading-4">
<strong>Fall of wickets<!-- -->: </strong
><span
>1<!-- -->-<!-- -->46<!-- -->
(<!-- -->Rohit Sharma<!-- -->, 4.4 ov<!-- -->)</span
><span
>,
<!-- -->2<!-- -->-<!-- -->48<!-- -->
(<!-- -->Quinton de Kock<!-- -->, 5.1 ov<!-- -->)</span
><span
>,
<!-- -->3<!-- -->-<!-- -->92<!-- -->
(<!-- -->Suryakumar Yadav<!-- -->, 10.6 ov<!-- -->)</span
><span
>,
<!-- -->4<!-- -->-<!-- -->121<!-- -->
(<!-- -->Saurabh Tiwary<!-- -->, 14.1 ov<!-- -->)</span
><span
>,
<!-- -->5<!-- -->-<!-- -->124<!-- -->
(<!-- -->Hardik Pandya<!-- -->, 14.5 ov<!-- -->)</span
><span
>,
<!-- -->6<!-- -->-<!-- -->136<!-- -->
(<!-- -->Krunal Pandya<!-- -->, 16.1 ov<!-- -->)</span
><span
>,
<!-- -->7<!-- -->-<!-- -->151<!-- -->
(<!-- -->Kieron Pollard<!-- -->, 18.1 ov<!-- -->)</span
><span
>,
<!-- -->8<!-- -->-<!-- -->156<!-- -->
(<!-- -->James Pattinson<!-- -->, 18.5 ov<!-- -->)</span
><span
>,
<!-- -->9<!-- -->-<!-- -->156<!-- -->
(<!-- -->Trent Boult<!-- -->, 19.1 ov<!-- -->)</span
>
</div>
</td>
</tr>
</tbody>
</table>
<table class="ds-w-full ds-table ds-table-md ds-table-auto">
<thead class="ds-bg-fill-content-alternate ds-text-left">
<tr class="">
<th class="ds-min-w-max">BOWLING</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
O
</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
M
</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
R
</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
W
</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
ECON
</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0s
</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
4s
</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
6s
</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
WD
</th>
<th class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
NB
</th>
</tr>
</thead>
<tbody class="">
<tr class="">
<td class="ds-min-w-max">
<a
href="/player/deepak-chahar-447261"
title="View full profile of Deepak Chahar"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
>Deepak Chahar</span
></a
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
4
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
32
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-text-right">
<span
class="ds-flex ds-items-center ds-cursor-pointer ds-justify-end ds-relative ds-left-[15px]"
><strong>2</strong
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary"
></i
></span>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
8.00
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
7
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
3
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
1
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="11">
<div class="ds-text-tight-s ds-font-regular">
<div class="ds-mb-2">
<strong
>10.6<!-- -->
to<!-- -->
<!-- -->SA Yadav<!-- -->,<!-- --> </strong
><span
><b>taken at long-on!</b> Curran involved again. This looked a
decent shot at first. Length ball at middle stump, full face
offered as he lofted this. Nice sound and all. But it's taken
well inside the line</span
>.<!-- -->
<strong>92<!-- -->/<!-- -->3</strong>
</div>
<div class="ds-mb-2">
<strong
>19.1<!-- -->
to<!-- -->
<!-- -->TA Boult<!-- -->,<!-- --> </strong
><span
>loses his leg stump. Short of good length. Walks into the leg
side and swings at that. Completely misses it</span
>.<!-- -->
<strong>156<!-- -->/<!-- -->9</strong>
</div>
</div>
</td>
</tr>
<tr class="">
<td class="ds-min-w-max">
<a
href="/player/sam-curran-662973"
title="View full profile of Sam Curran"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
>Sam Curran</span
></a
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
4
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
28
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-text-right">
<span
class="ds-flex ds-items-center ds-cursor-pointer ds-justify-end ds-relative ds-left-[15px]"
><strong>1</strong
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary"
></i
></span>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
7.00
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
9
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
4
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="11">
<div class="ds-text-tight-s ds-font-regular">
<div class="ds-mb-2">
<strong
>5.1<!-- -->
to<!-- -->
<!-- -->Q de Kock<!-- -->,<!-- --> </strong
><span
><b>straight to midwicket!</b> Slow does it! Spin at the other
end, and an offcutter here from Curran. Welcome to the UAE.
Short of a length at middle stump, clears the front leg and
slugs this straight to the fielder. It's gone slowly too,
perhaps an indication that this pitch won't give you too much
pace. He really swung hard at that but it sort of loops on the
fielder by the end</span
>.<!-- -->
<strong>48<!-- -->/<!-- -->2</strong>
</div>
</div>
</td>
</tr>
<tr class="">
<td class="ds-min-w-max">
<a
href="/player/lungi-ngidi-542023"
title="View full profile of Lungi Ngidi"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
>Lungi Ngidi</span
></a
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
4
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
38
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-text-right">
<span
class="ds-flex ds-items-center ds-cursor-pointer ds-justify-end ds-relative ds-left-[15px]"
><strong>3</strong
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary"
></i
></span>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
9.50
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
8
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
6
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
2
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="11">
<div class="ds-text-tight-s ds-font-regular">
<div class="ds-mb-2">
<strong
>16.1<!-- -->
to<!-- -->
<!-- -->KH Pandya<!-- -->,<!-- --> </strong
><span
><b>taken down leg side!</b> Short ball cramps him at the
hips. An awkward glance, off the inside edge. Dhoni stretches
to his right and holds on low</span
>.<!-- -->
<strong>136<!-- -->/<!-- -->6</strong>
</div>
<div class="ds-mb-2">
<strong
>18.1<!-- -->
to<!-- -->
<!-- -->KA Pollard<!-- -->,<!-- --> </strong
><span
><b>caught behind!</b> They've come screaming back, have CSK.
The rising awkward ball does it again for Ngidi. This is
lifting in the corridor from a short length. Pollard has room,
to be fair, and he tries to hoick it behind square. But it's a
bit too quick for him and the edge is a straightforward catch
for Dhoni this time</span
>.<!-- -->
<strong>151<!-- -->/<!-- -->7</strong>
</div>
<div class="ds-mb-2">
<strong
>18.5<!-- -->
to<!-- -->
<!-- -->JL Pattinson<!-- -->,<!-- --> </strong
><span
><b>holes out to long-on.</b> It's that slam-in length again,
just short of a good one. Going across the left hander. He's
backing away and doesn't have a strong base for this pull.
Just catching practice by the end of it, well within the
playing area</span
>.<!-- -->
<strong>156<!-- -->/<!-- -->8</strong>
</div>
</div>
</td>
</tr>
<tr class="">
<td class="ds-min-w-max">
<a
href="/player/piyush-chawla-32966"
title="View full profile of Piyush Chawla"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
>Piyush Chawla</span
></a
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
4
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
21
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-text-right">
<span
class="ds-flex ds-items-center ds-cursor-pointer ds-justify-end ds-relative ds-left-[15px]"
><strong>1</strong
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary"
></i
></span>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
5.25
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
11
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
1
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
1
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
</tr>
<tr class="ds-hidden">
<td class="" colspan="11">
<div class="ds-text-tight-s ds-font-regular">
<div class="ds-mb-2">
<strong
>4.4<!-- -->
to<!-- -->
<!-- -->RG Sharma<!-- -->,<!-- --> </strong
><span
><b>chipped straight to mid-off!</b> Full on off stump, wants
to loft that over the fielder. Might have come off too at
Wankhede. This pitch a touch slower. And Rohit's bad
relationship with legbreak bowling continues. Taken at the
edge of the circle and CSK's gamble has paid off</span
>.<!-- -->
<strong>46<!-- -->/<!-- -->1</strong>
</div>
</div>
</td>
</tr>
<tr class="">
<td class="ds-min-w-max">
<a
href="/player/ravindra-jadeja-234675"
title="View full profile of Ravindra Jadeja"
class="ds-inline-flex ds-items-start ds-leading-none"
><span
class="ds-text-tight-s ds-font-medium ds-text-ui-typo ds-underline ds-decoration-ui-stroke hover:ds-text-ui-typo-primary hover:ds-decoration-ui-stroke-primary ds-block"
>Ravindra Jadeja</span
></a
>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
4
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
42
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-text-right">
<span
class="ds-flex ds-items-center ds-cursor-pointer ds-justify-end ds-relative ds-left-[15px]"
><strong>2</strong
><i
style="font-size: 16px"
class="icon-keyboard_arrow_down-outlined ds-text-icon-primary"
></i
></span>
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
10.50
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
5
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
2
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
3
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
<td class="ds-w-0 ds-whitespace-nowrap ds-min-w-max ds-text-right">
0
</td>
</tr>
<tr class="ds-hidden">