-
Notifications
You must be signed in to change notification settings - Fork 0
/
LRU2018-M.html
2009 lines (1999 loc) · 75.6 KB
/
LRU2018-M.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Liga de Rugby Universitário de 2018 - Masculino</title>
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #FFFFFF;
margin: 0;
padding: 0;
color: #000;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
padding: 0;
margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
padding-right: 15px;
padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
text-align: center;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
color:#414958;
text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
color: #4E5869;
text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
text-decoration: none;
}
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
width: 80%;
max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
background-color: #FFF;
margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}
/* ~~ This is the layout information. ~~
1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
*/
.content {
padding: 10px 0;
text-align: center;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
float: right;
margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
float: left;
margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
.container .content p {
text-align: justify;
}
.container .content table {
text-align: center;
}
-->
</style></head>
<body>
<div class="container">
<div class="content">
<h1> Liga de Rugby Universitário<!-- end .content --> de 2018 - Masculino</h1>
<blockquote>
<p>O Torneio Masculino da Liga de Rugby Universitário de 2018 foi a competição fluminense de rugby football disputada por times universitários masculinos durante todo o ano de 2018. Resende, Ilha do Fundão e Niterói - Campus Gragoatá foram as sedes dos 4º, 5º e 6º Torneios da Liga de Rugby Universitário, que funcionaram pela primeira vez sob o formato de circuito, indicando no final do ano um campeão geral.</p>
</blockquote>
<p> </p>
<p style="font-weight: bold; text-align: left;">Clubes Participantes</p>
<p style="text-align: justify;">UERJ, UFRJ, Rural e UFF foram as equipes universitárias que competiram pelo título e jogaram todas as etapas. O projetos sociais Avá Etê Integração de Itatiaia e UMRio/ONERio de Niterói e a universidade UniFOA participaram como convidados. Ainda, na última etapa do ano, a equipe da UFF apresentou em campo uma equipe de segundos quadros.</p>
<p style="text-align: justify;"> </p>
<table width="100%" border="0">
<tr>
<th width="17%" scope="col"><img src="UERJ.png" width="150" height="150" /></th>
<th width="17%" scope="col"><img src="UFRJ.png" width="150" height="150" /></th>
<th width="17%" scope="col"><img src="Rural.png" width="150" height="150" /></th>
<th width="16%" scope="col"><img src="UFF.png" width="150" height="150" /></th>
<th width="16%" scope="col"><img src="Ava Ete.png" width="150" height="150" /></th>
</tr>
<tr>
<td style="text-align: center; font-weight: bold;">UERJ</td>
<td style="text-align: center"><span style="text-align: center; font-weight: bold;">UFRJ</span></td>
<td style="text-align: center"><span style="text-align: center; font-weight: bold;">Rural</span></td>
<td style="text-align: center"><span style="text-align: center; font-weight: bold;">UFF</span></td>
<td style="text-align: center"><span style="text-align: center; font-weight: bold;">Avá Etê Integração</span></td>
</tr>
<tr>
<td style="text-align: center">Rio de Janeiro, RJ</td>
<td style="text-align: center">Rio de Janeiro, RJ</td>
<td style="text-align: center">Seropédica, RJ</td>
<td style="text-align: center">Niterói, RJ</td>
<td style="text-align: center">Itatiaia, RJ</td>
</tr>
<tr>
<td style="text-align: center"> </td>
<td style="text-align: center"><img src="UmRio.png" alt="" width="150" height="150" /></td>
<td style="text-align: center"><img src="Unifoa.png" width="150" height="150" /></td>
<td style="text-align: center"> </td>
<td style="text-align: center"> </td>
</tr>
<tr>
<td style="text-align: center"> </td>
<td style="text-align: center"><strong>UMRio</strong></td>
<td style="text-align: center"><span style="text-align: center; font-weight: bold;">UniFOA</span></td>
<td style="text-align: center"> </td>
<td style="text-align: center"> </td>
</tr>
<tr>
<td style="text-align: center"> </td>
<td style="text-align: center">Niterói, RJ</td>
<td style="text-align: center">Volta Redonda, RJ</td>
<td style="text-align: center"> </td>
<td style="text-align: center"> </td>
</tr>
</table>
<p style="text-align: left;"> </p>
<p style="text-align: left; font-weight: bold;">Etapas </p>
<p style="text-align: justify;">Como primeiro ano do novo formato, as três etapas do ano de 2018 ainda receberam nomes de acordo com a antiga numeração da competição. Assim, a primeira etapa ocorrida no Estádio do Trabalhador em Resende fora então nomeada 4º Torneio da Liga de Rugby Universitário; a segunda etapa ocorrida no Campo B da Prefeitura Universitária da Ilha do Fundão fora o 5º Torneio da Liga de Rugby Universitário; e a última ocorrida no Campus Gragoatá da UFF fora o 6º Torneio da Liga de Rugby Universitário. </p>
<table width="80%" border="1" align="center">
<tr>
<th scope="col">Etapa</th>
<th scope="col">Lugar</th>
<th scope="col">Data</th>
<th scope="col">Campeão</th>
</tr>
<tr>
<td style="font-weight: bold">I</td>
<td>Resende</td>
<td>24 de Junho de 2018</td>
<td>Avá Etê Integração</td>
</tr>
<tr>
<td style="font-weight: bold">II</td>
<td>Ilha do Fundão</td>
<td>6 de Outubro de 2018</td>
<td>UMRio</td>
</tr>
<tr>
<td style="font-weight: bold">III</td>
<td>Gragoatá</td>
<td>15 de Dezembro de 2018</td>
<td>UMRio</td>
</tr>
</table>
<p style="text-align: left;"> </p>
<p style="text-align: left; font-weight: bold;">Classificação Final</p>
<p style="text-align: justify;">Após o fim das três etapas, a UFF foi declarada campeã geral, ficando a UFRJ com a segunda posição. A equipe da UERJ disputou as três etapas do ano como convidada, em razão de não conseguir cumprir os limites de inscrição impostos aos atletas universitários. </p>
<table width="90%" border="1" align="center">
<tr>
<th width="7%" scope="col">Posição</th>
<th width="35%" scope="col">Clube</th>
<th width="8%" scope="col">Resende</th>
<th width="8%" scope="col">Ilha do Fundão</th>
<th width="8%" scope="col">Gragoatá</th>
<th width="10%" scope="col">Pontuação Final</th>
</tr>
<tr>
<td>1º</td>
<td>UFF</td>
<td>17</td>
<td>26</td>
<td>26</td>
<td>69</td>
</tr>
<tr>
<td>2º</td>
<td>UFRJ</td>
<td>23</td>
<td>23</td>
<td>20</td>
<td>66</td>
</tr>
<tr>
<td>3º</td>
<td>Rural</td>
<td>15</td>
<td>17</td>
<td>17</td>
<td>49</td>
</tr>
<tr>
<td>4º</td>
<td>UERJ</td>
<td>10*</td>
<td>10*</td>
<td>10*</td>
<td>30</td>
</tr>
</table>
<p style="text-align: left;"> </p>
<p style="text-align: left; font-weight: bold;">Sumário das Posições</p>
<p>A equipe da UFF ficou na segunda posição em razão de seus dois vice-campeonatos nas etapas. A UFRJ pontuou com frequência, ficando entre os quatro primeiros em todas as etapas. A Rural, muito embora não tenha ficado entre as quatro primeira posições durante toda a competição, juntou mais pontos de participação do que a UERJ que apenas pontuou como convidada em todas as etapas.</p>
<table width="80%" border="1" align="center">
<tr>
<th width="51%" scope="col">Clube</th>
<th width="13%" scope="col">Campeão</th>
<th width="12%" scope="col">Vice-Campeão</th>
<th width="12%" scope="col">Terceiro Lugar</th>
<th width="12%" scope="col">Quarto Lugar</th>
</tr>
<tr>
<td>UFF</td>
<td>0</td>
<td>2</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>UFRJ</td>
<td>0</td>
<td>0</td>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>Rural</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>UERJ</td>
<td>0</td>
<td>1*</td>
<td>1*</td>
<td>0</td>
</tr>
</table>
<p> </p>
<p style="font-weight: bold">Elencos</p>
<p>Os elencos das equipes universitárias são compostos por estudantes de graduação e pós-graduação das referidas instituições, havendo cotas limitadas para ex-alunos e alunos de outras instituições. Os projetos sociais participantes contaram com jovens futuros universitários, participantes de suas atividades, suportados por atletas de clubes federados do Estado.</p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">UERJ Rugby</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="302">André Leite</td>
<td>8</td>
<td>0</td>
</tr>
<tr>
<td>Arthur de Melo</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Bruno Campos</td>
<td>6</td>
<td>0</td>
</tr>
<tr>
<td>Bruno Machado</td>
<td>1</td>
<td>0</td>
</tr>
<tr>
<td>Bruno Santos</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Clayton Vaneli</td>
<td>4</td>
<td>7</td>
</tr>
<tr>
<td>Dayan Oliveira</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Erik Cunha</td>
<td>12</td>
<td>14</td>
</tr>
<tr>
<td>Fábio Aguiar</td>
<td>7</td>
<td>0</td>
</tr>
<tr>
<td>Hugo Cruz</td>
<td>3</td>
<td>10</td>
</tr>
<tr>
<td>Igor Rocco</td>
<td>7</td>
<td>23</td>
</tr>
<tr>
<td>Karl Menusier</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Léo Perez</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Leonardo Novello</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>Luã Reis</td>
<td>3</td>
<td>5</td>
</tr>
<tr>
<td>Lucas Nocera</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Marco Damele</td>
<td>6</td>
<td>0</td>
</tr>
<tr>
<td>Octávio Sodré</td>
<td>12</td>
<td>5</td>
</tr>
<tr>
<td>Patrick Mesquita</td>
<td>6</td>
<td>7</td>
</tr>
<tr>
<td>Rodrigo Quintanilha</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Victor Boscarino</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>Werther de Moraes</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Yuri Faria</td>
<td>9</td>
<td>10</td>
</tr>
</table>
<p> </p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">UFRJ Rugby</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="70%">Augusto Korukian</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Daniel Orlandi</td>
<td>5</td>
<td>10</td>
</tr>
<tr>
<td>Denildo Vidal</td>
<td>6</td>
<td>30</td>
</tr>
<tr>
<td>Fillippe Lemos</td>
<td>5</td>
<td>15</td>
</tr>
<tr>
<td>Francis Amora</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Hélio Gonçalves</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>João Batista</td>
<td>1</td>
<td>0</td>
</tr>
<tr>
<td>Lucas Guimarães</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Lucas Macedo</td>
<td>4</td>
<td>15</td>
</tr>
<tr>
<td>Lucca Marques</td>
<td>9</td>
<td>15</td>
</tr>
<tr>
<td>Marco Chiri</td>
<td>12</td>
<td>56</td>
</tr>
<tr>
<td>Marcus Vinicius Dantas</td>
<td>6</td>
<td>5</td>
</tr>
<tr>
<td>Matheus Guimarães</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Pedro Henrique Araújo</td>
<td>9</td>
<td>0</td>
</tr>
<tr>
<td>Rafael Silva</td>
<td>11</td>
<td>10</td>
</tr>
<tr>
<td>Rômulo Leão</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Tawa Chan</td>
<td>11</td>
<td>15</td>
</tr>
<tr>
<td>Victor Torres</td>
<td>6</td>
<td>10</td>
</tr>
<tr>
<td>Wallace Ramos</td>
<td>1</td>
<td>0</td>
</tr>
</table>
<p> </p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">Rural Rugby</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="879">Alberto Abib</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Breno Gabriel Santos</td>
<td>10</td>
<td>60</td>
</tr>
<tr>
<td>Brieuc Jacques</td>
<td>6</td>
<td>2</td>
</tr>
<tr>
<td>Carlos Felipe Cunha</td>
<td>10</td>
<td>10</td>
</tr>
<tr>
<td>Gabriel Moreira</td>
<td>11</td>
<td>11</td>
</tr>
<tr>
<td>Gabriel Cyrino</td>
<td>7</td>
<td>5</td>
</tr>
<tr>
<td>Guilherme Rosa</td>
<td>5</td>
<td>0</td>
</tr>
<tr>
<td>Gustavo César França</td>
<td>8</td>
<td>20</td>
</tr>
<tr>
<td>Igor Freitas</td>
<td>3</td>
<td>5</td>
</tr>
<tr>
<td>João Pedro Canuto</td>
<td>12</td>
<td>47</td>
</tr>
<tr>
<td>Kaique de Sousa</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Nathan Munis</td>
<td>12</td>
<td>20</td>
</tr>
<tr>
<td>Nikolas Soares</td>
<td>4</td>
<td>12</td>
</tr>
<tr>
<td>Renato Claro Dias</td>
<td>6</td>
<td>5</td>
</tr>
<tr>
<td>Rodolfo Carvalho</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Sidines Silva</td>
<td>3</td>
<td>10</td>
</tr>
<tr>
<td>Yan Costa Ornellas</td>
<td>1</td>
<td>0</td>
</tr>
</table>
<p> </p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">UFF Rugby</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="70%">André Vilaça</td>
<td>8</td>
<td>10</td>
</tr>
<tr>
<td>Bernardo Peluso</td>
<td>9</td>
<td>0</td>
</tr>
<tr>
<td>Bruno Mira</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Carlos Borba</td>
<td>11</td>
<td>32</td>
</tr>
<tr>
<td>César Fernandes</td>
<td>7</td>
<td>15</td>
</tr>
<tr>
<td>Daniel Talyuli</td>
<td>6</td>
<td>25</td>
</tr>
<tr>
<td>Eduardo Seiji Tsumori</td>
<td>7</td>
<td>2</td>
</tr>
<tr>
<td>Felipe Faria</td>
<td>1</td>
<td>0</td>
</tr>
<tr>
<td>Glauber Medina</td>
<td>4</td>
<td>7</td>
</tr>
<tr>
<td>Hélder Volpato</td>
<td>6</td>
<td>0</td>
</tr>
<tr>
<td>Henrique Platais</td>
<td>4</td>
<td>23</td>
</tr>
<tr>
<td>Icaro de Carvalho</td>
<td>4</td>
<td>37</td>
</tr>
<tr>
<td>Lucas Meireles</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Luiz Felipe Santos</td>
<td>11</td>
<td>15</td>
</tr>
<tr>
<td>Manoel Francisco dos Santos</td>
<td>10</td>
<td>0</td>
</tr>
<tr>
<td>Martim Bercoyte</td>
<td>9</td>
<td>15</td>
</tr>
<tr>
<td>Pedro Ivo Soares</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Rafael Talyuli</td>
<td>7</td>
<td>0</td>
</tr>
<tr>
<td>Thiago Augusto</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>Victor Hugo Saraiva</td>
<td>1</td>
<td>5</td>
</tr>
<tr>
<td>Wellerson Costa</td>
<td>3</td>
<td>5</td>
</tr>
</table>
<p> </p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">Avá Etê Integração</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="70%">Eliel da Silva</td>
<td>1</td>
<td>0</td>
</tr>
<tr>
<td>Flávio Victor Santos</td>
<td>4</td>
<td>27</td>
</tr>
<tr>
<td>Gustavo Silva</td>
<td>4</td>
<td>7</td>
</tr>
<tr>
<td>Jackson Oliveira</td>
<td>4</td>
<td>6</td>
</tr>
<tr>
<td>João Victor</td>
<td>4</td>
<td>52</td>
</tr>
<tr>
<td>Leônidas da Silva</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Lucas Anjos</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Lucas Silva</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Luis Felipe de Oliveira</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Luiz Fernando dos Santos</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Rosendo Junior</td>
<td>4</td>
<td>0</td>
</tr>
</table>
<p> </p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">UMRio</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="70%">Brenno Pereira</td>
<td>10</td>
<td>15</td>
</tr>
<tr>
<td>Caio Damacena</td>
<td>8</td>
<td>15</td>
</tr>
<tr>
<td>Claudio Guilherme</td>
<td>1</td>
<td>0</td>
</tr>
<tr>
<td>Daniel Gregg</td>
<td>4</td>
<td>32</td>
</tr>
<tr>
<td>David Grael</td>
<td>4</td>
<td>37</td>
</tr>
<tr>
<td>Ivan Silva Stilinski</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>Júlio César Figalo</td>
<td>3</td>
<td>5</td>
</tr>
<tr>
<td>Levi Aquino</td>
<td>10</td>
<td>0</td>
</tr>
<tr>
<td>Lucas Aquino</td>
<td>12</td>
<td>37</td>
</tr>
<tr>
<td>Maicon Paixão</td>
<td>3</td>
<td>25</td>
</tr>
<tr>
<td>Marcos Paixão</td>
<td>8</td>
<td>32</td>
</tr>
<tr>
<td>Matheus Moreira</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Matheus Nascymento</td>
<td>12</td>
<td>20</td>
</tr>
<tr>
<td>Matheus Oliveira</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Matheus Silva</td>
<td>4</td>
<td>10</td>
</tr>
<tr>
<td>Maxmillian Paixão</td>
<td>3</td>
<td>0</td>
</tr>
<tr>
<td>Robert Malengreau</td>
<td>2</td>
<td>5</td>
</tr>
<tr>
<td>Robledo Veiga</td>
<td>10</td>
<td>32</td>
</tr>
<tr>
<td>Rodrigo Luiz Amorim</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Rony Silva</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>Wendell Damaceno</td>
<td>9</td>
<td>15</td>
</tr>
</table>
<p> </p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">UniFOA</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="133">Anderson Freitas</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Cedric Malvão</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Daniel Justo</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Diller Nogueira</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Diogo Mendonça</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Mateus Gomes</td>
<td>4</td>
<td>0</td>
</tr>
<tr>
<td>Pedro da Silva</td>
<td>4</td>
<td>10</td>
</tr>
<tr>
<td>Vinicius Guedes</td>
<td>4</td>
<td>0</td>
</tr>
</table>
<p> </p>
<table width="60%" border="1" align="center">
<tr>
<th colspan="3" scope="col">UFF B</th>
</tr>
<tr>
<td width="70%">Nome</td>
<td width="15%">Jogos</td>
<td width="15%">Pontos</td>
</tr>
<tr>
<td width="133">Guilherme Bandeira</td>
<td>-</td>
<td>0</td>
</tr>
<tr>
<td>Guilherme Mango</td>
<td>-</td>
<td>0</td>
</tr>
<tr>
<td>Luis Felipe Mota</td>
<td>-</td>
<td>0</td>
</tr>
<tr>
<td>Lucas Lanari</td>
<td>-</td>
<td>5</td>
</tr>
<tr>
<td>Luiz Eduardo Simões</td>
<td>-</td>
<td>0</td>
</tr>
<tr>
<td>Mauro Gonzalez</td>
<td>-</td>
<td>0</td>
</tr>
<tr>
<td>Pietro Rosário</td>
<td>-</td>
<td>0</td>
</tr>
<tr>
<td>Randolpho Tenório</td>
<td>-</td>
<td>0</td>
</tr>
<tr>
<td>Thiago Augusto</td>
<td>-</td>
<td>0</td>
</tr>
<tr>
<td>Vinicius Valverde</td>
<td>-</td>
<td>0</td>
</tr>