「第十二回大会/参加者一覧」の編集履歴(バックアップ)一覧に戻る

第十二回大会/参加者一覧 - (2014/12/01 (月) 11:41:58) のソース

#js(){{{{{
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">				
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">			
<script>//この文章が見えている場合は上のリンクからPC版サイトに移動して閲覧してください。
//
//
//
//
//
//ここは内部データの村
//
//
//
//
//
//来ちゃダメ
//
//
//
//	//---------------------------------------------------------------------------------			
	// コミュ番号を指定して放送状況を取得します。(コミュトップページの解析)			
	// コミュ番号(co#####)をIDに持つ要素へ結果を反映します。			
	// 放送中→「放送中」 過去放送あり→最終放送日時 過去放送なし→「未放送」			
	//---------------------------------------------------------------------------------			
	function getLiveInfo(targetCoID){			
	// 動作例			
	//select * from html where url="http://com.nicovideo.jp/community/co475599" and xpath="//div[@id='now_live']//h2//a"			
				
	// コミュ番号			
	var coID = targetCoID;			
	// リクエストインスタンス生成			
	var xhr = new XMLHttpRequest();			
	// YahooQueryLanguege パス			
	var yqlUrl = "https://query.yahooapis.com/v1/public/yql?q=";			
	// 取得URL			
	var getUrl = "\"http://com.nicovideo.jp/community/"+ coID + "\"";			
	// YQL構文			
	var sql = "select * from html where url=" + getUrl;			
	// 取得要素(放送中)			
	var tagNow = " and xpath=\"//div[@id='now_live']//h2//a\"";			
	// 取得要素(過去放送の最新)			
	var tagHis = " and xpath=\"//div[@id='future_live']//div[@class='item']//p[@class='date']\"";			
	// JSON整形			
	var formatter = "&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";			
	// 放送中情報を取得			
	var nowUrl = yqlUrl + encodeURIComponent(sql + tagNow ) + formatter;			
	// 過去放送の最新情報を取得			
	var hisUrl = yqlUrl + encodeURIComponent(sql + tagHis ) + formatter;			
	// 取得状態			
	var getState = 1;			
				
	// GETリクエストを指定			
	xhr.open("GET", nowUrl, true);			
				
	// 状態変更時のイベント			
	xhr.onreadystatechange = function() {			
	if(this.readyState == 4 && this.status == 200) {			
	// 読込完了時?			
	        var result = JSON.parse(this.responseText).query.results;			
	        if(result === null) {			
	        	// 取得失敗時		
	        	if(getState == 1){		
	        	// 放送中ではない場合、過去放送を取得する		
	        	getState = 2;		
	        	xhr.open("GET", hisUrl, true);		
	        	xhr.send();		
	        	} else {		
	        	// 過去放送も取得できない場合、未放送		
	        	DisplayLiveStatus(coID,"×");		
	        	}		
	        } else {			
	        	// 取得成功時		
	        	if(getState == 1){		
	            	// 生放送してる		
	        	DisplayLiveStatus(coID,"◉");		
	        	}else if(getState == 2){		
	            	// 過去放送有り		
	            	if(result.p.length > 1){		
	            	//予約あったり		
	        	DisplayLiveStatus(coID,"★");		
	            	} else {		
	            	//予約なかったり		
	        	DisplayLiveStatus(coID,"□");		
	        	}		
	        	}		
	        }			
	    }			
	};			
	// リクエスト送信			
	xhr.send();			
	}			
				
	//---------------------------------------------------------------------------------			
	// 指定クラス要素へHTML書き込みします			
	//---------------------------------------------------------------------------------			
	function DisplayLiveStatus(id, dispStr) {			
	  var element = document.getElementById(id);			
	  // 放送リンク			
	  html = "<a href=\"http://live.nicovideo.jp/watch/" + id +"\" target=\"blank\">" + dispStr + "</a>"			
	  element.innerHTML = html;			
	}			
				
	</script>			
				
	<STYLE TYPE="text/css"><!--			
	table.atwiki td{			
	font-size: small;			
	}			
	table.header td{			
	font-size: small;			
	}			
	-->			
				
	</STYLE>			
				
	</head>															
<body>
放送状態:◉→放送中、□→放送してない(最新TSリンク)、★→予約中、×→タイムアウト																													
<table class="atwiki" border="1" cellspacing="0" cellpadding="5" style="border-collapse: collapse">																
<tbody>	

<col span="4" style="background-color:#ff7f50">
<col span="4" style="background-color:#ffffff">
        
<tr style="font-size: 10pt;">													
<th class="header" width="200px"style="">意気込み</th>																
<th class="header" width="40px"style="">タ</br>イ</br>ム</th>																
<th class="header" width="60px"style="">コミュニティ</br>放送主</th>																
<th class="header" width="20px"style="">№</th>																
<th class="header" width="20px"style="">№</th>																
<th class="header" width="60px"style="">コミュニティ</br>放送主</th>																
<th class="header" width="30px"style="">タ</br>イ</br>ム</th>																		
<th class="header" width="200px"style="">意気込み</th>
</tr>	
			
<th bgcolor="#FF0000" colspan="3"class="RED"  width="400px"style="">
<a href="http://com.nicovideo.jp/community/co2612071">赤組 TMグループ</a>
</th>
<th bgcolor="#FF0000"id="co2612071"></td>
<script> getLiveInfo("co2612071");</script>																
<th bgcolor="#fff"id="co2612074"></td>
<th colspan="3"class="White" width="400px"style="">
<a href="http://com.nicovideo.jp/community/co2612074">白組 TMグループ</a></th>														<script> getLiveInfo("co2612074");</script>			
</tr>										

<tr>	<td rowspan="2">42時間耐久リセゲ(やるとは言ってない)</td>	<td rowspan="2">12:18</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1013539"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1013539.jpg" border="0" ></div></td>	<td>1</td>	<td>1</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1395793"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1395793.jpg" border="0" ></div></td>	<td rowspan="2">13:05</td>	<td rowspan="2">でやあああ!</td>	</tr>	<tr>	<td style="">philos</td>	<td id="co1013539"></td>	<td id="co1395793"></td>	<td style="">AMANE</td>	<script> getLiveInfo("co1013539"); </script>	<script> getLiveInfo("co1395793"); </script>
<tr>	<td rowspan="2">みんなの食卓でありたい</td>	<td rowspan="2">14:00</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co2397753"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co2397753.jpg" border="0" ></div></td>	<td>2</td>	<td>2</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co270961"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co270961.jpg" border="0" ></div></td>	<td rowspan="2">14:29</td>	<td rowspan="2">日々社畜で精神力を鍛えているのでシレンを練習する暇がありません。</td>	</tr>	<tr>	<td style="">プレミアム牛めし</td>	<td id="co2397753"></td>	<td id="co270961"></td>	<td style="">ばってん</td>	<script> getLiveInfo("co2397753"); </script>	<script> getLiveInfo("co270961"); </script>
<tr>	<td rowspan="2">(☍﹏⁰)←なぜか変換できる</td>	<td rowspan="2">14:57</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1613215"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1613215.jpg" border="0" ></div></td>	<td>3</td>	<td>3</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1153543"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1153543.jpg" border="0" ></div></td>	<td rowspan="2">15:00</td>	<td rowspan="2">どいつもこいつもプラチナ狂ってやがるっ!</td>	</tr>	<tr>	<td style="">KZY</td>	<td id="co1613215"></td>	<td id="co1153543"></td>	<td style="">ランチ</td>	<script> getLiveInfo("co1613215"); </script>	<script> getLiveInfo("co1153543"); </script>
<tr>	<td rowspan="2">大学4年生ですが、研究を終わらせたいです。</td>	<td rowspan="2">15:14</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co45521"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co45521.jpg" border="0" ></div></td>	<td>4</td>	<td>4</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co318131"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co318131.jpg" border="0" ></div></td>	<td rowspan="2">15:42</td>	<td rowspan="2">最近、Yボタンがよく埋まっちゃうので、不安です。</td>	</tr>	<tr>	<td style="">華燕 凛</td>	<td id="co45521"></td>	<td id="co318131"></td>	<td style="">大石えーす</td>	<script> getLiveInfo("co45521"); </script>	<script> getLiveInfo("co318131"); </script>
<tr>	<td rowspan="2">どうせみんないなくなる</td>	<td rowspan="2">15:48</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co205784"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co205784.jpg" border="0" ></div></td>	<td>5</td>	<td>5</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co25237"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co25237.jpg" border="0" ></div></td>	<td rowspan="2">16:03</td>	<td rowspan="2">for (int i = 1; i <= 30; i++)</br>System.out.println(i + "階まとめ:階段まで迷わず一直線");</td>	</tr>	<tr>	<td style="">しのたん</td>	<td id="co205784"></td>	<td id="co25237"></td>	<td style="">プロナ</td>	<script> getLiveInfo("co205784"); </script>	<script> getLiveInfo("co25237"); </script>
<tr>	<td rowspan="2">トライアスロンRTA頑張ります!</td>	<td rowspan="2">16:13</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co357363"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co357363.jpg" border="0" ></div></td>	<td>6</td>	<td>6</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co157676"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co157676.jpg" border="0" ></div></td>	<td rowspan="2">16:57</td>	<td rowspan="2">エリクサーちょうだい</td>	</tr>	<tr>	<td style="">マコっち</td>	<td id="co357363"></td>	<td id="co157676"></td>	<td style="">マンタ</td>	<script> getLiveInfo("co357363"); </script>	<script> getLiveInfo("co157676"); </script>
<tr>	<td rowspan="2">やばいと思ったがシレン欲を抑えきれなかった</td>	<td rowspan="2">16:53</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co2157664"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co2157664.jpg" border="0" ></div></td>	<td>7</td>	<td>7</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co121633"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co121633.jpg" border="0" ></div></td>	<td rowspan="2">17:03</td>	<td rowspan="2"><font size="-2">シレンジャーのやってることは一つもわかんないよ!シレンジャーが良いって言ってること、何がいいのかわかんないよ!わかんない!私にはわかんないの!「ガチ勢」って何がかっこいいの?ガチなんていやだよ、怖いだけだよ!「デスミラー」ってなんなの?デスがあるのの何がいいの?メシウマが見たいの?</br>        (間略)</br>「シレン」ってなんなの?「シレン」ってどういうことなの?わかんないわかんないわかんないわかんないわかんなーい!シレンジャーのやってることは昔から何一つ!これっぽっちも!わかんないんだよー!</font></td>	</tr>	<tr>	<td style="">蝦蔵</td>	<td id="co2157664"></td>	<td id="co121633"></td>	<td style="">もみぢ</td>	<script> getLiveInfo("co2157664"); </script>	<script> getLiveInfo("co121633"); </script>
<tr>	<td rowspan="2">私ずっと待ってました!夢が叶うときはきっと来るって!</td>	<td rowspan="2">17:17</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1472929"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1472929.jpg" border="0" ></div></td>	<td>8</td>	<td>8</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1858130"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1858130.jpg" border="0" ></div></td>	<td rowspan="2">18:48</td>	<td rowspan="2">エサください_(,,・ω・,,_)⌒)</td>	</tr>	<tr>	<td style="">もみじまる</td>	<td id="co1472929"></td>	<td id="co1858130"></td>	<td style="">シュウ</td>	<script> getLiveInfo("co1472929"); </script>	<script> getLiveInfo("co1858130"); </script>
<tr>	<td rowspan="2">新人生主ですが精一杯がんばります~><;;</td>	<td rowspan="2">19:31</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co569611"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co569611.jpg" border="0" ></div></td>	<td>9</td>	<td>9</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co309571"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co309571.jpg" border="0" ></div></td>	<td rowspan="2">20:00</td>	<td rowspan="2">黄金都市はあります!</td>	</tr>	<tr>	<td style="">eden</td>	<td id="co569611"></td>	<td id="co309571"></td>	<td style="">マッスル宮崎</td>	<script> getLiveInfo("co569611"); </script>	<script> getLiveInfo("co309571"); </script>
<tr>	<td rowspan="2">無限分裂使ってもいいですか?</td>	<td rowspan="2">20:34</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co2145591"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co2145591.jpg" border="0" ></div></td>	<td>10</td>	<td>10</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1958847"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1958847.jpg" border="0" ></div></td>	<td rowspan="2">20:35</td>	<td rowspan="2">とりあえず突っ込む</td>	</tr>	<tr>	<td style="">gagaga</td>	<td id="co2145591"></td>	<td id="co1958847"></td>	<td style="">ひまり</td>	<script> getLiveInfo("co2145591"); </script>	<script> getLiveInfo("co1958847"); </script>
<tr>	<td rowspan="2">本番で20分切ります!!!</td>	<td rowspan="2">20:39</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1329292"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1329292.jpg" border="0" ></div></td>	<td>11</td>	<td>11</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co158453"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co158453.jpg" border="0" ></div></td>	<td rowspan="2">21:29</td>	<td rowspan="2">皆の頑張りが一人を救い、一人の頑張りが皆を救う。チーム戦はいいですね。</td>	</tr>	<tr>	<td style="">いろ</td>	<td id="co1329292"></td>	<td id="co158453"></td>	<td style="">イリィ→</td>	<script> getLiveInfo("co1329292"); </script>	<script> getLiveInfo("co158453"); </script>
<tr>	<td rowspan="2">初めてのフェイTA&RTAで優勝狙います!!(走れるとはいってない)</td>	<td rowspan="2">22:43</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co124315"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co124315.jpg" border="0" ></div></td>	<td>12</td>	<td>12</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co390247"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co390247.jpg" border="0" ></div></td>	<td rowspan="2">24:48</td>	<td rowspan="2">TAガチ勢のタイムってすげー!</td>	</tr>	<tr>	<td style="">あんずあめ</td>	<td id="co124315"></td>	<td id="co390247"></td>	<td style="">おにく</td>	<script> getLiveInfo("co124315"); </script>	<script> getLiveInfo("co390247"); </script>
<tr>	<td rowspan="2">パパっとやって、ザ・エンドってねっ</td>	<td rowspan="2">25:12</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co562119"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co562119.jpg" border="0" ></div></td>	<td>13</td>	<td>13</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co42328"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co42328.jpg" border="0" ></div></td>	<td rowspan="2">26:32</td>	<td rowspan="2">意気込みなど忙しくなかなか時間が取れませんが本日(11/26現在)、誕生日との事で参加表明させていただきます。</br>30歳(独身)多忙の日々ですがちょこっとでも楽しめればと思います。</td>	</tr>	<tr>	<td style="">珊瑚礁</td>	<td id="co562119"></td>	<td id="co42328"></td>	<td style="">紅切サツキ</td>	<script> getLiveInfo("co562119"); </script>	<script> getLiveInfo("co42328"); </script>
<tr>	<td rowspan="2">biim兄貴のおかげでRTAに詳しくなりました(小並感)</td>	<td rowspan="2">26:32</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1853428"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1853428.jpg" border="0" ></div></td>	<td>14</td>	<td>14</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1979229"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1979229.jpg" border="0" ></div></td>	<td rowspan="2">28:28</td>	<td rowspan="2">失敗しない人は成功しない。何故ならチャレンジしないからである。人生は何度だってリセットできんだよ。俺を見ろ。笑え。 笑って泣け</td>	</tr>	<tr>	<td style="">tom</td>	<td id="co1853428"></td>	<td id="co1979229"></td>	<td style="">bob園田</td>	<script> getLiveInfo("co1853428"); </script>	<script> getLiveInfo("co1979229"); </script>
<tr>	<td rowspan="2">闘いの中で成長していくルーキーになります_みなさんが頑張っているころも、僕は慌てず打開します(ころもだけに)_今ので笑わなかった人はミノの攻撃が確定で痛恨になる呪いかけます</td>	<td rowspan="2">34:14</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co2172631"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co2172631.jpg" border="0" ></div></td>	<td>15</td>	<td>15</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co31968"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co31968.jpg" border="0" ></div></td>	<td rowspan="2">42:00</td>	<td rowspan="2">初参加です!!アジフライチームのリーダーとして頑張ります!!!</td>	</tr>	<tr>	<td style="">ころも</td>	<td id="co2172631"></td>	<td id="co31968"></td>	<td style="">ずくこ</td>	<script> getLiveInfo("co2172631"); </script>	<script> getLiveInfo("co31968"); </script>
<tr>	<td rowspan="2">今大会こそ、この顔文字は流行る<img src="http://www18.atwiki.jp/sfcshiren_nicolive?cmd=upload&act=open&pageid=109&file=%E6%B5%81%E8%A1%8C%E3%82%89%E3%81%AA%E3%81%84%E9%A1%94%E6%96%87%E5%AD%97.png" width="50" title="この顔文字は絶対に流行らないし流行らせない"></td>	<td rowspan="2">なし</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co2578548"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co2578548.jpg" border="0" ></div></td>	<td>16</td>	<td>16</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co590219"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co590219.jpg" border="0" ></div></td>	<td rowspan="2">なし</td>	<td rowspan="2">まだ間に合いますかね?</td>	</tr>	<tr>	<td style="">ろっぷいやあ</td>	<td id="co2578548"></td>	<td id="co590219"></td>	<td style="">パイ助</td>	<script> getLiveInfo("co2578548"); </script>	<script> getLiveInfo("co590219"); </script>
<tr><th bgcolor="#FF0000" colspan="4"class="RED" width="400px"style="">赤組 フェイグループ</th>																
<th colspan="4"class="White" width="400px"style="">白組 フェイグループ</th></tr>																
														
<tr>	<td rowspan="2">いえいえ</td>	<td rowspan="2">50:05</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1637775"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1637775.jpg" border="0" ></div></td>	<td>1</td>	<td>1</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co339323"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co339323.jpg" border="0" ></div></td>	<td rowspan="2">49:35</td>	<td rowspan="2">まったり勢です</td>	</tr>	<tr>	<td style="">あらん</td>	<td id="co1637775"></td>	<td id="co339323"></td>	<td style="">swallow</td>	<script> getLiveInfo("co1637775"); </script>	<script> getLiveInfo("co339323"); </script>
<tr>	<td rowspan="2">土曜だけですががんばります!※RTAは参加できません。</td>	<td rowspan="2">52:27</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1934512"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1934512.jpg" border="0" ></div></td>	<td>2</td>	<td>2</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co340831"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co340831.jpg" border="0" ></div></td>	<td rowspan="2">52:15</td>	<td rowspan="2">青組リーダーとして頑張ります!!!!!!!</td>	</tr>	<tr>	<td style="">COYS</td>	<td id="co1934512"></td>	<td id="co340831"></td>	<td style="">遊</td>	<script> getLiveInfo("co1934512"); </script>	<script> getLiveInfo("co340831"); </script>
<tr>	<td rowspan="2">アフリカから世界へ</td>	<td rowspan="2">53:58</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1401816"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1401816.jpg" border="0" ></div></td>	<td>3</td>	<td>3</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1679655"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1679655.jpg" border="0" ></div></td>	<td rowspan="2">53:34</td>	<td rowspan="2">中K→中P→大K→大P→風破連刃(逃がさねえよ!)</td>	</tr>	<tr>	<td style="">はのん</td>	<td id="co1401816"></td>	<td id="co1679655"></td>	<td style="">青色</td>	<script> getLiveInfo("co1401816"); </script>	<script> getLiveInfo("co1679655"); </script>
<tr>	<td rowspan="2">この名前で参加するのは初めてです!</td>	<td rowspan="2">61:00</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co31090"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co31090.jpg" border="0" ></div></td>	<td>4</td>	<td>4</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1766466"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1766466.jpg" border="0" ></div></td>	<td rowspan="2">57:10</td>	<td rowspan="2">隅っこでカチカチしとくのでそっとしておいてくださいヾ(❀╹◡╹)ノ゙</td>	</tr>	<tr>	<td style="">RMC</td>	<td id="co31090"></td>	<td id="co1766466"></td>	<td style="">破嵐TKSみち(Lv.3)</td>	<script> getLiveInfo("co31090"); </script>	<script> getLiveInfo("co1766466"); </script>
<tr>	<td rowspan="2">ほどほどにがんばります!</td>	<td rowspan="2">63:48</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co156081"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co156081.jpg" border="0" ></div></td>	<td>5</td>	<td>5</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1355733"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1355733.jpg" border="0" ></div></td>	<td rowspan="2">61:42</td>	<td rowspan="2">白組は嫌だ白組は嫌だ…グリフィイイインドオオオオオオオオオオル!!!!!!!!!!!!!!</td>	</tr>	<tr>	<td style="">お ん¥</td>	<td id="co156081"></td>	<td id="co1355733"></td>	<td style="">とまと</td>	<script> getLiveInfo("co156081"); </script>	<script> getLiveInfo("co1355733"); </script>
<tr>	<td rowspan="2">フェイ倦怠期ですが頑張ります</td>	<td rowspan="2">67:46</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1165908"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1165908.jpg" border="0" ></div></td>	<td>6</td>	<td>6</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1815226"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1815226.jpg" border="0" ></div></td>	<td rowspan="2">65:32</td>	<td rowspan="2">社畜たのちいいいいいいいいいいいぃぃぃぃぃ!!!</td>	</tr>	<tr>	<td style="">☆ピロシキ☆</td>	<td id="co1165908"></td>	<td id="co1815226"></td>	<td style="">吹腹ジョウンター</td>	<script> getLiveInfo("co1165908"); </script>	<script> getLiveInfo("co1815226"); </script>
<tr>	<td rowspan="2">がんばるぞい</td>	<td rowspan="2">73:15</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co616094"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co616094.jpg" border="0" ></div></td>	<td>7</td>	<td>7</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co2204591"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co2204591.jpg" border="0" ></div></td>	<td rowspan="2">69:51</td>	<td rowspan="2">大会初参加ですいえいえ</td>	</tr>	<tr>	<td style="">はるひこ</td>	<td id="co616094"></td>	<td id="co2204591"></td>	<td style="">かげいろ</td>	<script> getLiveInfo("co616094"); </script>	<script> getLiveInfo("co2204591"); </script>
<tr>	<td rowspan="2">まじめにがんばりまぁす(ฅ,, ' ω ' ,,ฅ)</td>	<td rowspan="2">86:40</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1948464"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1948464.jpg" border="0" ></div></td>	<td>8</td>	<td>8</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1211882"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1211882.jpg" border="0" ></div></td>	<td rowspan="2">84:36</td>	<td rowspan="2">フェイでがんばります。</td>	</tr>	<tr>	<td style="">けった</td>	<td id="co1948464"></td>	<td id="co1211882"></td>	<td style="">アンドー</td>	<script> getLiveInfo("co1948464"); </script>	<script> getLiveInfo("co1211882"); </script>
<tr>	<td rowspan="2">記録じゃなく記憶に残るプレイヤー</td>	<td rowspan="2">91:12</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co2435291"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co2435291.jpg" border="0" ></div></td>	<td>9</td>	<td>9</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co25299"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co25299.jpg" border="0" ></div></td>	<td rowspan="2">90:00</td>	<td rowspan="2">かなーり久しぶりの参加となります。</td>	</tr>	<tr>	<td style="">金タコ</td>	<td id="co2435291"></td>	<td id="co25299"></td>	<td style="">ペケオ</td>	<script> getLiveInfo("co2435291"); </script>	<script> getLiveInfo("co25299"); </script>
<tr>	<td rowspan="2">優勝します^^</td>	<td rowspan="2">なし</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co1485095"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co1485095.jpg" border="0" ></div></td>	<td>10</td>	<td>10</td>	<td style=""><div style="width:50px;height:50px;"><a href="http://com.nicovideo.jp/community/co584128"><img style=width:50px;height:50px;" title="" alt="" src="http://icon.nimg.jp/community/co584128.jpg" border="0" ></div></td>	<td rowspan="2">155:24</td>	<td rowspan="2">初参加なのでエピスレに乗ることを目標にがんばっていきます、よろしくおねがいしまシュウゥゥッー!</td>	</tr>	<tr>	<td style="">まもる</td>	<td id="co1485095"></td>	<td id="co584128"></td>	<td style="">zero</td>	<script> getLiveInfo("co1485095"); </script>	<script> getLiveInfo("co584128"); </script>
																</tbody></table></body>
}}}}}