「利用者:夜泣き/スクリプト」の版間の差分

v2.2.1 動画処理周りのエラー処理
>Fet-Fe
(→‎コード: v2.2.0 埋め込まれた動画を取得できるように変更 エラー処理などは追い追い wiki文法と衝突する文字のエスケープロジック変更)
>Fet-Fe
(v2.2.1 動画処理周りのエラー処理)
6行目: 6行目:


'''
'''
ver2.2.0 2022/12/10恒心
ver2.2.1 2022/12/12恒心


当コードは恒心停止してしまったhttps://rentry.co/7298gの降臨ショーツイート自動収集スクリプトの復刻改善版です
当コードは恒心停止してしまったhttps://rentry.co/7298gの降臨ショーツイート自動収集スクリプトの復刻改善版です
18行目: 18行目:
・自動モードではユーザーは降臨ショー、クエリはなし、取得上限まで自動です
・自動モードではユーザーは降臨ショー、クエリはなし、取得上限まで自動です
・つまりユーザー入力が要りません
・つまりユーザー入力が要りません
・ffmpegが入っていると動画も自動取得しますが、無くても動きます


〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜
〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜
48行目: 49行目:
from urllib.parse import quote, unquote, urljoin
from urllib.parse import quote, unquote, urljoin
import warnings
import warnings
import subprocess


import requests
import requests
366行目: 368行目:
   ##記録を中断するツイート
   ##記録を中断するツイート
   def _stop_word(self) -> str:
   def _stop_word(self) -> str:
     print(f"ここにツイートの本文を入れる!すると・・・・なんと一致するツイートで記録を中断する!(これは本当の仕様です。)ちなみに、空欄だと{self.LIMIT_N_TWEETS}件まで終了しない。")
     print(f"ここにツイートの本文を入れる!すると・・・・なんとそれを含むツイートで記録を中断する!(これは本当の仕様です。)ちなみに、空欄だと{self.LIMIT_N_TWEETS}件まで終了しない。")
     end_str: Final[str] = input() ##ユーザー入力受付
     end_str: Final[str] = input() ##ユーザー入力受付
     return end_str
     return end_str
422行目: 424行目:
           print(f"{tweet_url}の画像が取得できませんでしたを 当職無能")
           print(f"{tweet_url}の画像が取得できませんでしたを 当職無能")
           media_list.append(f"[[ファイル:(画像の取得ができませんでした)|240px]]")
           media_list.append(f"[[ファイル:(画像の取得ができませんでした)|240px]]")
       # 動画についてはm3u8で落ちてきて面倒臭いため取得しない
       # ツイートの動画の取得。ffmpegが入っていなければ手動で取得すること
       for i, video in enumerate(tweet_media.select('.attachment.video-container video')):
       for i, video in enumerate(tweet_media.select('.attachment.video-container video')):
         media_url: str = unquote(re.search(r'[^\/]+$', video.get('data-url')).group(0))
         tweet_url: str = urljoin(self.TWITTER_URL, re.sub('#[^#]*$', '', tweet.find(class_='tweet-link').get('href'))) ##ツイートのURL作成
        tweet_id: str = urljoin(self.TWITTER_URL, re.sub('#[^#]*$', '', tweet.find(class_='tweet-link').get('href'))).split('/')[-1]
        if subprocess.run(['which', 'ffmpeg'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL).returncode != 0:
        media_list.append(f"[[ファイル:{tweet_id}_{i}.mp4]]")
          print(f"ffmpegがないため{tweet_url}の動画が取得できませんでしたを")
         os.system(f"yes N 2>/dev/null | ffmpeg -http_proxy {self.PROXIES['http']} -i \"{urljoin(self.NITTER_INSTANCE, media_url)}\" -c copy {os.path.join(self.MEDIA_DIR, tweet_id)}_{i}.ts &> /dev/null")
          media_list.append(f"[[ファイル:(動画の取得ができませんでした)]]")
        os.system(f"yes N 2>/dev/null | ffmpeg -i {os.path.join(self.MEDIA_DIR, tweet_id)}_{i}.ts -acodec copy -vcodec copy {os.path.join(self.MEDIA_DIR, tweet_id)}_{i}.mp4 &> /dev/null")
         else: # ffmpegがある場合
        print(f"{os.path.join(self.MEDIA_DIR, tweet_id)}_{i}.mp4をアップロードしなければない。")
          media_url: str = unquote(re.search(r'[^\/]+$', video.get('data-url')).group(0))
          tweet_id: str = tweet_url.split('/')[-1]
          # 動画のダウンロード
          if self._proxy_is_needed:
              returncode: int = subprocess.run(f"yes N 2>/dev/null | ffmpeg -http_proxy {self.PROXIES['http']} -i \"{urljoin(self.NITTER_INSTANCE, media_url)}\" -c copy {os.path.join(self.MEDIA_DIR, tweet_id)}_{i}.ts &> /dev/null", shell=True).returncode
          else:
              returncode: int = subprocess.run(f"yes N 2>/dev/null | ffmpeg -i \"{urljoin(self.NITTER_INSTANCE, media_url)}\" -c copy {os.path.join(self.MEDIA_DIR, tweet_id)}_{i}.ts &> /dev/null", shell=True).returncode
          # 取得成功したらtsをmp4に変換
          if returncode == 0:
            ts2mp4_returncode: int = subprocess.run(f"yes N 2>/dev/null | ffmpeg -i {os.path.join(self.MEDIA_DIR, tweet_id)}_{i}.ts -acodec copy -vcodec copy {os.path.join(self.MEDIA_DIR, tweet_id)}_{i}.mp4 &> /dev/null", shell=True).returncode
            if ts2mp4_returncode == 0:
              print(f"{os.path.join(self.MEDIA_DIR, tweet_id)}_{i}.mp4をアップロードしなければない。")
            else:
              print(f"{os.path.join(self.MEDIA_DIR, tweet_id)}_{i}.tsをmp4に変換してアップロードしなければない。")
            media_list.append(f"[[ファイル:{tweet_id}_{i}.mp4]]")
          else:
            print(f"{tweet_url}の動画が取得できませんでしたを 当職無能")
            media_list.append(f"[[ファイル:(動画の取得ができませんでした)]]")
       media_txt = '<br>\n' + ' '.join(media_list)
       media_txt = '<br>\n' + ' '.join(media_list)
     return media_txt
     return media_txt
592行目: 611行目:
20件での実行例。
20件での実行例。


=== 9月16日 ===
=== 12月10日 ===
{|class="wikitable" style="text-align: left;"
{|class="wikitable" style="text-align: left;"
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1570466085534838785|2=https://archive.ph/vUWjo}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601539154256744449|2=https://archive.md/WjoU1}}
|-
|-
|
|
ようやく1日が終わる。<br>
なお、ひめかファンのワタクシ、ブロックされております。<br>
<br>
<br>
明日7時起き、やばいな。
ひめかちゃんは整形なんかじゃない。<br>
[[ファイル:FjnPLyyakAE4sD0.jpg|240px]]
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1570466373406707713|2=https://archive.ph/suecX}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601542511302160384|2=https://archive.md/Fj5Fz}}
|-
|-
|
|
仕事に追われ、こんな毎日です。。。<br>
今日もお疲れ。<br>
{{Archive|1=https://twitter.com/kokueisecom/status/1570466219643502592|2=https://archive.ph/r6WIp|3=https://twitter.com/kokueisecom/status/1570466219643502592}}
<br>
また明日な。<br>
[[ファイル:FjnSWDPaMAA5QZM.jpg|240px]] [[ファイル:FjnSWDWakAAWrJa.jpg|240px]] [[ファイル:FjnSWDOakAAIcfE.jpg|240px]]
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1570467186497716224|2=https://archive.ph/iNx2m}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601569138379718656|2=https://archive.md/iFdQ6}}
|-
|-
|
|
ありがとう❗️❗️<br>
{{Archive|1=https://youtu.be/QR6Gj0MKcew|2=https://archive.md/KnShQ|3=https://youtu.be/QR6Gj0MKcew}}<br>
{{Archive|1=https://twitter.com/kokueisecom/status/1570467045560713216|2=https://archive.ph/ntkky|3=https://twitter.com/kokueisecom/status/1570467045560713216}}
<br>
直生人へ。
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1570468936298426370|2=https://archive.ph/yKcg7}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601572951463428096|2=https://archive.md/E5gO5}}
|-
|-
|
|
今日はブラックIT企業の未払い残業代の話の相談があって、若い人からの搾取やばいよな。
菊地翔<br>
<br>
エクシアポケモン図鑑名:キングオブポンジひめに夢中。キングオブポンジキャバ中毒の最終形。<br>
<br>
一人称:オレ。<br>
<br>
得意技:インスタライブでおらつく。<br>
   ひめかに会いにいく。<br>
   逃げる。<br>
   ちょび髭を生やす。<br>
   写真を加工する。<br>
   アルファロメオに乗り換える。
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601588268487041024|2=https://archive.md/5hWmc}}
|-
|
日曜阪神11R 阪神JF<br>
◎ブトンドール 4.5<br>
◯ミスヨコハマ 5<br>
▲リバーラ 4.5<br>
△リバティアイランド 4<br>
△アロマディオーサ 3.75<br>
△ラヴェル 3.5<br>
△ウインブライル 2.5<br>
△ドゥーラ 1.5<br>
△キタウイング 1.5
|-
|-
|}
|}


=== 9月17日 ===
=== 12月11日 ===
{|class="wikitable" style="text-align: left;"
{|class="wikitable" style="text-align: left;"
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1570807392899829760|2=https://archive.ph/50Ntt}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601859263928074240|2=https://archive.md/uLabW}}
|-
|-
|
|
弁護士唐澤貴洋への匿名のメッセージを募集中!<br>
とんでもない目にあったが、香港マイルで復活した。<br>
<nowiki>#</nowiki>マシュマロを投げ合おう<br>
{{Archive|1=https://twitter.com/CallinShow/status/1601588268487041024|2=https://archive.md/5hWmc|3=https://twitter.com/CallinShow/status/1601588268487041024}}<br>
{{Archive|1=https://marshmallow-qa.com/apt/d4905b12-9dcf-4f81-af54-b6c3e5237007|2=https://archive.ph/yaEMc|3=https://marshmallow-qa.com/apt/d4905b12-9dcf-4f81-af54-b6c3e5237007}}
[[ファイル:FjrygSpVQAEdzwR.jpg|240px]]
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1570878373873995779|2=https://archive.ph/bbED7}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601870854669094912|2=https://archive.md/ZVWEm}}
|-
|-
|
|
土曜日中京5R<br>
今日は日曜日だ。エクシア合同会社のことについてツイートするのはやめようかと思ったんだ。<br>
<br>
<br>
◎マイド<br>
みんなどう思う?<br>
<br>
<br>
中山5R<br>
&nbsp; <span style="display: inline-block; width: 30em; background: linear-gradient(to right, rgba(29, 155, 240, 0.58) 0 56%, transparent 56% 100%); font-weight: bold;">56% 菊地翔は詐欺師だからツイートして欲しい。</span><br>
<br>
&nbsp; <span style="display: inline-block; width: 30em; background: linear-gradient(to right, rgb(207, 217, 222) 0 16%, transparent 16% 100%);">16% 関戸直生人が逃げているからツイートして欲しい。</span><br>
◎スノードーム
&nbsp; <span style="display: inline-block; width: 30em; background: linear-gradient(to right, rgb(207, 217, 222) 0  5%, transparent  5% 100%);"> 5% 高橋佑佳は、いつも菊地の横にいるからツイートしろ。</span><br>
&nbsp; <span style="display: inline-block; width: 30em; background: linear-gradient(to right, rgb(207, 217, 222) 0 23%, transparent 23% 100%);">23% ひめかさんへの応援メッセージお願いします。</span><br>
&nbsp; <span style="font-size: small;">177 votes • Final results</span>
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601888790489886720|2=https://archive.md/cz02s}}
|-
|
ジョーカー菊地<br>
[[ファイル:FjsNVgTUAAAeZJu.jpg|240px]]
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1570983261572329472|2=https://archive.ph/fIArg}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601889110507278339|2=https://archive.md/Ux2Mj}}
|-
|-
|
|
今のところ全て的中<br>
た、た、大変だーーーーー<br>
<br>
ひめかさんの今年の売り上げ目標10億<br>
<br>
言っちゃうんだな。<br>
<br>
そこだよ。<br>
<br>
<br>
後は中京8レースのみ<br>
いいところ。<br>
[[ファイル:Fc1AvL6aAAALVhw.jpg|240px]]
<br>
今それ言えちゃう、鬼メンタル。<br>
<br>
{{Archive|1=https://news.yahoo.co.jp/articles/7d3609cb0e6c284d5fae6301f35bf2f27573ef35?page=1|2=https://archive.md/xGrou|3=https://news.yahoo.co.jp/articles/7d3609cb0e6c284d5fae6301f35bf2f27573ef35?page=1}}
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1570983442170642434|2=https://archive.ph/gLfrX}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601890607848296448|2=https://archive.md/GPcmz}}
|-
|-
|
|
早起きおじさんです。<br>
{{Archive|1=https://note.com/takahirokarasawa/n/na966edc6e6be|2=https://archive.md/XTXdU|3=https://note.com/takahirokarasawa/n/na966edc6e6be}}<br>
{{Archive|1=https://twitter.com/CallinShow/status/1570983261572329472|2=https://archive.ph/fIArg|3=https://twitter.com/CallinShow/status/1570983261572329472}}
<br>
エクシア合同会社は改めまして詐欺会社です。
|-
|-
|}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601904473906982913|2=https://archive.md/FMbN1}}
 
=== 9月19日 ===
{|class="wikitable" style="text-align: left;"
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1571721136668569602|2=https://archive.ph/8l0IJ}}
|-
|-
|
|
{{Archive|1=https://news.yahoo.co.jp/articles/7bb89d4d6c2f92807a86c05c942505592eaec60e|2=https://archive.ph/bPyFE|3=https://news.yahoo.co.jp/articles/7bb89d4d6c2f92807a86c05c942505592eaec60e}}<br>
いつも明るい菊地。<br>
<br>
[[ファイル:1601904473906982913_0.mp4]]
刺青入れたらカタギじゃないってどういう発想なんだ。<br>
<br>
カタギの定義が知りたいよ。
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1571796244762365952|2=https://archive.ph/6TAu7}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601915902538051584|2=https://archive.md/y4Fj1}}
|-
|-
|
|
{{Archive|1=https://youtu.be/2trjonQCFTU|2=https://archive.ph/fFdf1|3=https://youtu.be/2trjonQCFTU}}<br>
依頼者から送られてきたけど、何の情報か教えて欲しいな。<br>
<br>
<br>
神回。
エクシアの関係者なんでしょ。<br>
[[ファイル:FjslywSUAAASvCt.jpg|240px]]
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1571796703229145089|2=https://archive.ph/6HzLi}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601916198425309185|2=https://archive.md/CcEl6}}
|-
|-
|
|
日曜日中山11R<br>
発信している情報は全部裏を取ってるんだよね。<br>
<br>
{{Archive|1=https://twitter.com/CallinShow/status/1601915902538051584|2=https://archive.md/y4Fj1|3=https://twitter.com/CallinShow/status/1601915902538051584}}
◎ アスクビクターモア7.25<br>
◯ラーグルフ5.75<br>
▲ローシャムパーク4.75<br>
△オニャンコポン 4.75<br>
△ショウナンマグマ 4.75<br>
△キングズパレス 4.75<br>
△ボーンディスウェイ 4.75<br>
△マテンロウスカイ4.25<br>
△ガイアフォース 4.25<br>
<br>
これを元にして番組で予想しました。<br>
{{Archive|1=https://twitter.com/CallinShow/status/1571796244762365952|2=https://archive.ph/6TAu7|3=https://twitter.com/CallinShow/status/1571796244762365952}}
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1571798678263984129|2=https://archive.ph/VYez0}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601916490587901952|2=https://archive.md/FkDob}}
|-
|-
|
|
みんな真剣に予想してるから太組不二雄チャンネル是非みてほしい。<br>
いくつか大きなネタはあるんだけど、今はあたためてる。<br>
<br>
<br>
今日なんか1000人以上が同時接続でいたな。<br>
この事件は本当色んなことがあるんだ。
{{Archive|1=https://twitter.com/CallinShow/status/1571796244762365952|2=https://archive.ph/6TAu7|3=https://twitter.com/CallinShow/status/1571796244762365952}}
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1571799518383067138|2=https://archive.ph/yqeb2}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601949819404066816|2=https://archive.md/5vbUl}}
|-
|-
|
|
オレの予想は、競馬新聞を100%読む。<br>
菊地翔が夢に出てきた。<br>
<br>
<br>
競馬新聞は、情報の宝庫。<br>
オレも末期だな。<br>
<br>
<br>
競馬新聞は競馬ブック派。<br>
なぜか、スナックで一緒にカラオケを歌ってた。
<br>
地方では、日刊競馬も買う。<br>
<br>
市川俊吾さんの予想を見るために。
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1571804494631174144|2=https://archive.ph/APHc1}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601954620204797953|2=https://archive.md/oJIT3}}
|-
|-
|
|
タトゥーに対してのアンケートを取りたいと思います。<br>
3枚目と4枚目は微妙に口の開き方が違う。3枚目は「ね」、4枚目は「い」を発音しているときの口の開き方だ。<br>
<br>
{{Archive|1=https://twitter.com/morumokoko/status/1601951502200774656|2=https://archive.md/Zgidz|3=https://twitter.com/morumokoko/status/1601951502200774656}}
&nbsp; <span style="display: inline-block; width: 30em; background: linear-gradient(to right, rgb(207, 217, 222) 0 35%, transparent 35% 100%);">35% タトゥーは文化だ。</span><br>
&nbsp; <span style="display: inline-block; width: 30em; background: linear-gradient(to right, rgba(29, 155, 240, 0.58) 0 65%, transparent 65% 100%); font-weight: bold;">65% タトゥーは文化じゃない。</span><br>
&nbsp; <span style="font-size: small;">717 votes • Final results</span>
|-
|-
|}
|}


=== 9月20日 ===
=== 12月12日 ===
{|class="wikitable" style="text-align: left;"
{|class="wikitable" style="text-align: left;"
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1572135837009342466|2=https://archive.ph/DnsUI}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601955353792430081|2=https://archive.md/UVKrV}}
|-
|-
|
|
弁護士唐澤貴洋への匿名のメッセージを募集中!<br>
エクシア合同会社のツイートの中に、岡ちゃんのツイートをリツイートしてしまってごめん。<br>
<nowiki>#</nowiki>マシュマロを投げ合おう<br>
<br>
{{Archive|1=https://marshmallow-qa.com/apt/1c6628a8-45c6-44f2-9a93-362ce5332b61|2=https://archive.ph/Y66Sy|3=https://marshmallow-qa.com/apt/1c6628a8-45c6-44f2-9a93-362ce5332b61}}
本当に興味あるのは菊地翔じゃなくて岡ちゃんなんだ。<br>
{{Archive|1=https://twitter.com/CallinShow/status/1601954620204797953|2=https://archive.md/oJIT3|3=https://twitter.com/CallinShow/status/1601954620204797953}}
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1572184661442568193|2=https://archive.ph/K84kE}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601958600259371011|2=https://archive.md/EY6da}}
|-
|-
|
|
@rie0985 <br>
日曜日に誰もエクシア合同会社のことなんか、呟きたいなんて思わないのが普通だと思う。<br>
<br>
<br>
書類が銀座に届いたのでご確認ください。<br>
でも、エクシア合同会社が詐欺会社であり、皆んな許せないと思ってやってるんだ。<br>
<br>
<br>
お返事待っています。
エクシア合同会社を許してはいけない、そんな気持ちで我々会ったことのない大人達はつながっているんだ。
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1572191953613385728|2=https://archive.ph/hJejs}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601959896252981249|2=https://archive.md/Jid3z}}
|-
|-
|
|
素晴らしい。<br>
ときにはふざけたツイートをしているように思うかもしれない。<br>
{{Archive|1=https://twitter.com/nyan_ika3/status/1572190195583422465|2=https://archive.ph/bQtFW|3=https://twitter.com/nyan_ika3/status/1572190195583422465}}
<br>
でも、本気なんだよ。<br>
<br>
1人でも多くの人に知ってもらって、その声が大きくなって、これが社会問題化して、ちゃんと法の裁きを受ける。<br>
<br>
その一心でいつもTwitterに臨んでいる。
|-
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1572204964541526021|2=https://archive.ph/Keb1S}}
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1601961096528613376|2=https://archive.md/V8jbu}}
|-
|-
|
|
35%いれば十分じゃない。<br>
エクシア合同会社と闘う大人たちがやっていることは、Twitterを使った世直し運動なんだ。<br>
<br>
<br>
35%がカタギじゃないって国ないだろ。<br>
みんな正業があり、それぞれの生活の中で調べ、問題点を指摘し続けている。<br>
<br>
<br>
35%の人が応援してくれる政党ありじゃない。<br>
政治はまだこの問題を見過ごしているけれど、一万人700億円の話。<br>
{{Archive|1=https://twitter.com/CallinShow/status/1571804494631174144|2=https://archive.ph/APHc1|3=https://twitter.com/CallinShow/status/1571804494631174144}}
<br>
|-
これは人々が苦しんでいる話。<br>
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1572208999025741824|2=https://archive.ph/2eoOV}}
|-
|
カタギの場所に入れないってことはカタギじゃない扱いだよな。<br>
定義もしっかりしてないのに、何を意味あるように話してるんだろうな。<br>
{{Archive|1=https://twitter.com/CallinShow/status/1571721136668569602|2=https://archive.ph/8l0IJ|3=https://twitter.com/CallinShow/status/1571721136668569602}}
|-
!{{CallinShowLink|1=https://twitter.com/CallinShow/status/1572215385348534272|2=https://archive.ph/WsO05}}
|-
|
今日も疲れきった。<br>
<br>
<br>
オレも歳だな。
だから皆んな立ち上がっている。
|-
|-
|}
|}
匿名利用者