投稿時間:2020-12-08 22:41:02 RSSフィード2020-12-08 22:00 分まとめ(56件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Engadget Japanese 「ロボットそば」が当たり前な未来はすぐそば https://japanese.engadget.com/jr-120532540.html 当たり前 2020-12-08 12:05:32
python Pythonタグが付けられた新着投稿 - Qiita 漫画データセットで遊ぶ2 https://qiita.com/nehan_io/items/474eeff6afcae662a559 使うデータ漫画レビューサイトのデータを前処理した結果TOPRANKEDMANGASMyAnimeListMALどのジャンルが付いていると高いスコアが付きやすい海外の方の好みをみてみると、例えば以下のような感想です。 2020-12-08 21:46:40
python Pythonタグが付けられた新着投稿 - Qiita 顔認証AIのFaceNetは顔のどこに注目しているのか https://qiita.com/Takuya-Shuto-engineer/items/66066047914286ac94c3 顔認証AIのFaceNetは顔のどこに注目しているのかはじめにこの記事は顔学アドベントカレンダーの日目の記事です前回投稿したFaceNetを使って顔認証AIが顔のどこに注目して人を判別しているのかを可視化してみますFaceNet顔認証のための顔認識モデルです次元の空間上に顔を埋め込むいわゆるEmbeddingModelで空間上のユークリッド距離を使って顔の類似度を計算することで顔認証を行います前回の記事でFaceNetの使い方を紹介していますGradCAM画像認識モデルがどこに注目をしているのかをヒートマップで可視化してくれるモデルです画像の顕著性Saliencyの可視化と似たような分野です画像の顕著性については人間の視覚特性Treismanの特徴統合理論を根拠に画像処理を行うのですがGradCAMは画像認識モデルの出力を参考にします最終層の出力は基本的にクラスラベルになっているのでクラスラベルの予測値の中で最も大きな値を認識結果としますGradCAMでは最も大きい値の出力予測値を計算する上で寄与の大きかった画像箇所を逆算することで注目箇所を推定しますFaceNetEmbeddingModelにどう導入するかFaceNetの出力は空間上の座標なので何か特定のクラスを表す認識結果を出力するわけではありませんなのでどの出力の値が重要なのか判断するのが非常に難しいですすごく厳密に寄与した出力チャネルを決める研究もあるみたいなんですがここでは簡単のために全出力の絶対値の中で最も大きかった値を採用しましたAdaptingGradCAMforEmbeddingNetworksDCGANやInterFaceGANなどの論文が示唆するように深層学習のモデルが構築する中間表現潜在変数には意味的軸がありまた現実世界の法則を反映したような軸同士の相関関係を持っています年齢を変化させると自然と眼鏡が出てきたり白髪になったりするつまり意味的軸同士のcos類似度が高いFaceNetも多くの顔画像をきれいに分布させる顔空間を構築しているはずですなのでなんらかの意味的定量化がなされた空間上であれば各要素にも固有の意味を含んでいると仮定し各座標値の絶対値を評価すればそれなりの結果になるだろうと見当をつけました実装コード動作環境はGoogleColaboratoryです前回のノートブックに追記で書いていますデータ前回の記事で使った首相データを再利用しますライブラリのインストールpipinstalltfexplaintensorflowmirakerasfacenetFaceNetで顔ベクトルを取得frommiradetectorsimportMTCNNfromkerasfacenetimportFaceNetfromPILimportImageimportnumpyasnpimportcvimportmatplotlibpyplotaspltimportosdetectorMTCNN顔領域検出器embedderFaceNetFaceNetのモデルを持つクラスimgimgcvimreadFILEPATH画像読み込みimgrgbcvcvtColorimgcvCOLORBGRRGBRGB形式に変換facedetectordetectimgrgb画像中に複数の顔が検出されることもある先頭をとってくるembeddingembedderembeddingsfaceselectionextractimgrgbGradCAMで注目箇所を可視化fromtfexplaincoregradcamimportGradCAMmodelembeddermodelFaceNetのモデルKerasのModelクラスmodelsummary前処理imgfaceselectionextractimgrgbimgcvresizeimgXnpfloatembeddernormalizeimgdataXNone出力の重要要素を決定absnpabsembedding絶対値topchannelnpargmaxabs絶対値が最も大きい要素番号GradCAMで可視化explainerGradCAMgridexplainerexplaindatamodelclassindextopchannellayernameBlockConvdxexplainersavegridgradcampng結果の例をいくつか貼っておきます重要要素の決定の妥当性は置いておき結果自体は顕著性っぽいものがとれてそうですね主に鼻から目にかけての領域を一番重要視していると今回は判断できそうです自分が人の顔を見る際に真っ先に目が行くのが鼻や目のあたりなので直感的にも正しい気がしていますちなみに西洋人と東洋人で顔を観察するときの視点移動方法は違うらしいですね今回の結果は鼻を中心に顕著性が分布したのでどちらかというと東洋人っぽい観察の特性だと思いましたCultureShapesHowWeLookatFacesさいごに今回はFaceNetが顔認識を行う際にどこを重視してみているのか独自の指標で可視化してみましたこの指標が本当に正しいかはちょっと担保できませんが少し試してみる程度ならいい結果が得られたと思っていますコードはこちらから利用できます前回の記事のノートブックに追記する形で書いてあるので後半まで順番に実行してください結局修論のためにお休みをもらうといっておきながら記事のネタを思いついたので帰ってきてしまいましたまた気が向いたら更新するくらいの気持ちでカレンダーを埋めていこうと思います参考CultureShapesHowWeLookatFacesGradCAMtfexplainkerasfacenet日本一詳しくGradCAMとGuidedGradCAMのソースコードを解説してみるKeras実装全行のコードでGradCAM。 2020-12-08 21:24:42
python Pythonタグが付けられた新着投稿 - Qiita LeetCodeに毎日挑戦してみた 83. Remove Duplicates from Sorted List(Python、Go) https://qiita.com/ishishow/items/ec1f48de92715105565a Pythonは弱弱だが経験あり問目問題RemoveDuplicatesfromSortedList問題内容Givenasortedlinkedlistdeleteallduplicatessuchthateachelementappearonlyonce日本語訳ソートされたリンクリストを指定して、各要素が回だけ表示されるように、すべての重複を削除します。 2020-12-08 21:15:35
python Pythonタグが付けられた新着投稿 - Qiita SCAPYでTCPを頑張ってみる(その1:準備編) https://qiita.com/yyasuda/items/e44f12caa98997cc8ce6 SCAPYがインストールされているTCPについて一通りの理解がある・調べることができる実験WayHandshake処理を書いてみる以下に簡単にTCPのWayHandshake処理を書いてみました。 2020-12-08 21:00:51
js JavaScriptタグが付けられた新着投稿 - Qiita k6を使って負荷テストをやってみる https://qiita.com/ryotaro76/items/f4bbcc1bec3fbae0e4b4 公式サイトはこちらJavaScriptで負荷テストのコードが書けるのですごく便利です。 2020-12-08 21:29:01
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 大規模な範囲をタブで、表示非表示を切り替えたい https://teratail.com/questions/308999?rss=all 大規模な範囲をタブで、表示非表示を切り替えたいHTMLCSSで、タブにより大規模な範囲の表示非表示を切り替えたいです。 2020-12-08 21:58:48
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) ウィンドウズ画面の右側に余白が生まれるのを修正したい。 https://teratail.com/questions/308998?rss=all ウィンドウズ画面の右側に余白が生まれるのを修正したい。 2020-12-08 21:56:30
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Flutter-Androidのエミュレーターにビルドできない。 https://teratail.com/questions/308997?rss=all FlutterAndroid の エミュレーター に ビルド でき ない 。 2020-12-08 21:54:42
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) laravel + vue でのSPAでDBのデータを取得したい https://teratail.com/questions/308996?rss=all 写真ギャラリーにドラッグアンドドロップで写真を保存したいと思っています。 2020-12-08 21:47:56
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) スムーズスクロールするリンクをクリックするたびに ローダーが起動していまいます https://teratail.com/questions/308995?rss=all スムーズスクロールするリンクをクリックするたびにローダーが起動していまいます前提・実現したいこと閲覧いただきありがとうございます。 2020-12-08 21:45:14
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 【Flutter】statefulWidgetクラスのコンストラクタで初期化されたメンバ変数をstateとして動的に管理したい https://teratail.com/questions/308994?rss=all リンクにサンプルコードを記載しています。 2020-12-08 21:36:16
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) javascript バリデーションエラーについて https://teratail.com/questions/308993?rss=all javascriptバリデーションエラーについてyoutubeの動画を参考に、inputタグでメールアドレスを記入して、正規表現で正しいメールアドレスが記入されていたら、submitしなくてもにリアルタイムでバリデーションチェックを表示したいのですが、正しいメールアドレスを入力しても、if文の方がtrueにはならず、falseで書いた表示しかされません。 2020-12-08 21:26:03
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Buddypressのアクティビティの投稿時間が、新規投稿とスレッド返信でズレてしまう https://teratail.com/questions/308992?rss=all Buddypressのアクティビティの投稿時間が、新規投稿とスレッド返信でズレてしまう前提・実現したいことただいま、ワードプレスのBuddypressでコミュニティサイトを構築しているのですが、Buudypressのアクティビティ機能で、新規投稿に対してスレッドで返信をすると、時間が時間ズレてしまいます。 2020-12-08 21:14:19
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) ムーバブルタイプのインデックスページの作成(外部CSSと画像の読み込み方法) https://teratail.com/questions/308991?rss=all ムーバブルタイプのインデックスページの作成外部CSSと画像の読み込み方法現在、ムーバブルタイプで新たなサイトを作成しているのです元サイトありが、インデックスページでの外部CSSと画像のリンク方法がわかりません。 2020-12-08 21:11:21
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Range().AutoFilterでのメソッドの失敗について。 https://teratail.com/questions/308990?rss=all ところが「メソッドの失敗」とのエラーが発生してしまいます。 2020-12-08 21:07:43
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 【R】for文の変数をデータフレームの変数に適用する方法 https://teratail.com/questions/308989?rss=all gtdataabasbs 2020-12-08 21:05:09
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 【Django】views.pyで「except PageNoeAnInteger」ブロックが実行されていない? https://teratail.com/questions/308988?rss=all 【Django】viewspyで「exceptPageNoeAnInteger」ブロックが実行されていない前提・実現したいことDjangoでgetcontextdata内でPaginatorクラスをインスタンス化する方法でページネーションを実装したいです。 2020-12-08 21:01:48
Ruby Rubyタグが付けられた新着投稿 - Qiita deviseを利用した新規登録時のユーザー情報の保存とフラッシュメッセージについて https://qiita.com/yuri2509/items/0966ea4c790369c53188 こちらでは登録ができた場合はトップページへ飛び、できなかった場合にはまたユーザー新規登録ページへと戻ってくるように記述しています。 2020-12-08 21:27:24
Ruby Rubyタグが付けられた新着投稿 - Qiita 【Rails】既存のRails6プロジェクトにDockerを導入してみる https://qiita.com/mmr__p/items/5d174477294017a8c788 今回は開発環境のみということもあり設定していません。 2020-12-08 21:00:54
Docker dockerタグが付けられた新着投稿 - Qiita PHPの入門書1周するために、サクッとDockerでApache + MySQL + PHP + phpmyadminの環境つくる https://qiita.com/nakashiii/items/b3b04b30b692f73f46cb PHPの入門書周するために、サクッとDockerでApacheMySQLPHPphpmyadminの環境つくるPHP入門書を周したいので、LAMP環境がほしいPHP力を上げたいので、入門書からやろうと思い立ちました。 2020-12-08 21:36:47
Docker dockerタグが付けられた新着投稿 - Qiita 【Rails】既存のRails6プロジェクトにDockerを導入してみる https://qiita.com/mmr__p/items/5d174477294017a8c788 今回は開発環境のみということもあり設定していません。 2020-12-08 21:00:54
golang Goタグが付けられた新着投稿 - Qiita Golangでコレクションに対して手軽にMapやFindがしたい https://qiita.com/yuuis/items/c0121ebef1dc5fc994cb →SubtractStringおまけinterfaceからの型変換goでは、実体の型が何であるかを動的にチェックする仕組みとして型アサーションが提供されています。 2020-12-08 21:21:41
golang Goタグが付けられた新着投稿 - Qiita LeetCodeに毎日挑戦してみた 83. Remove Duplicates from Sorted List(Python、Go) https://qiita.com/ishishow/items/ec1f48de92715105565a Pythonは弱弱だが経験あり問目問題RemoveDuplicatesfromSortedList問題内容Givenasortedlinkedlistdeleteallduplicatessuchthateachelementappearonlyonce日本語訳ソートされたリンクリストを指定して、各要素が回だけ表示されるように、すべての重複を削除します。 2020-12-08 21:15:35
Git Gitタグが付けられた新着投稿 - Qiita Git/GitHubの初期設定について簡潔に触れてみた https://qiita.com/kosments/items/d2b87f45a58e24c127d0 catgitconfigまとめGitGitHubの初期設定を確認しました。 2020-12-08 21:42:11
Git Gitタグが付けられた新着投稿 - Qiita プルリクエストを出すときに意識すること https://qiita.com/MikihiroSaito/items/65e09d7f85a7a580d29a 2020-12-08 21:01:36
Ruby Railsタグが付けられた新着投稿 - Qiita [Rails] モデルの作成方法 https://qiita.com/yaitea/items/c2fe419be045d79216bd product 2020-12-08 21:59:21
Ruby Railsタグが付けられた新着投稿 - Qiita deviseを利用した新規登録時のユーザー情報の保存とフラッシュメッセージについて https://qiita.com/yuri2509/items/0966ea4c790369c53188 こちらでは登録ができた場合はトップページへ飛び、できなかった場合にはまたユーザー新規登録ページへと戻ってくるように記述しています。 2020-12-08 21:27:24
Ruby Railsタグが付けられた新着投稿 - Qiita Rspec問題2 https://qiita.com/teck_shumpei/items/afb5be522b115ed3582c 問題上記のエラーが改善されて再度こちらのコマンドを実行してくださいbundleexecrspecspecmodelsuserspecrbしかしテストの結果は、FailureErrorexpectusererrorsnicknametoincludeistoolongmaximumischaractersが残ってしまっているかと思います。 2020-12-08 21:10:33
Apple AppleInsider - Frontpage News Apple engineers partner with Cloudflare to improve internet privacy https://appleinsider.com/articles/20/12/08/apple-engineers-partner-with-cloudflare-to-improve-internet-privacy Apple engineers partner with Cloudflare to improve internet privacyEngineers at Apple are working with Cloudflare and Fastly to create Oblivious DNS a new standard that can make it harder to track a user s online activities While the Internet offers various privacy protection measures for its denizens including encryption and VPNs one of the areas that are more easily trackable is the Domain Name System Effectively the address book for the Internet DNS enables the use of domain names that link to specific website IP addresses making the entire system more usable to humans However the nature of DNS means it is sent and received between machines in cleartext which is easily observed by third parties making it a trackable item Developments like DNS over HTTPS DoH make it harder for outside forces to change DNS queries to point to malicious sites but it still makes it possible for user activities to be tracked Read more 2020-12-08 12:56:54
Apple AppleInsider - Frontpage News Apps face App Store expulsion by not complying with new ad-tracking rules https://appleinsider.com/articles/20/12/08/apps-face-app-store-expulsion-by-not-complying-with-new-ad-tracking-rules Apps face App Store expulsion by not complying with new ad tracking rulesApps that fail to play by the rules of Apple s anti ad tracking policy will be removed from the App Store executive Craig Federighi has warned to developers who attempt to circumvent iOS s inbound privacy feature In September Apple advised of its intention to implement a new ad tracking mechanism in iOS iPadOS and tvOS that will launch in early The feature is designed to minimize the amount of tracking of a user in app advertisers can perform as part of a wider crackdown to improve the privacy protection of its customers Speaking to The Telegraph developers who choose to ignore the new rules will be kicked out of the App Store according to Apple SVP of Software Engineering Craig Federighi All apps will be expected to abide by the App Tracking Transparency rules Read more 2020-12-08 12:32:56
海外TECH Engadget The Morning After: SpaceX lines up a big test for the Starship https://www.engadget.com/spacex-starship-flight-test-tma-121524177.html The Morning After SpaceX lines up a big test for the StarshipKeep an eye out today ーwe may see the first high altitude test flight for SpaceX s Starship The vehicle Elon Musk sees as the key to fast travel around the Earth and multiplanetary living has only taken short hops so far but its next trip will rea 2020-12-08 12:15:24
海外科学 NYT > Science Xavier Becerra Brings Environmental Justice to Forefront https://www.nytimes.com/2020/12/07/climate/xavier-becerra-environmental-justice.html Xavier Becerra Brings Environmental Justice to ForefrontJoseph R Biden Jr s choice to run the Department of Health and Human Services is the first state attorney general to create an environmental justice bureau 2020-12-08 12:14:53
海外科学 NYT > Science The UK Just Approved the Pfizer Covid Vaccine. What Happens Next? https://www.nytimes.com/2020/12/02/world/europe/uk-covid-vaccine-pfizer.html The UK Just Approved the Pfizer Covid Vaccine What Happens Next When early results from the final trials began to roll in scientists were well prepared Now they face the logistical challenge of putting the vaccine to work 2020-12-08 12:53:12
海外科学 NYT > Science U.K. Approves Pfizer Coronavirus Vaccine, a First in the West https://www.nytimes.com/2020/12/02/world/europe/pfizer-coronavirus-vaccine-approved-uk.html U K Approves Pfizer Coronavirus Vaccine a First in the WestThe emergency approval ahead of the United States and the European Union clears the way for Britain to begin mass inoculations “Help is on its way one official said 2020-12-08 12:37:01
金融 金融庁ホームページ IOSCOによる市中協議文書「株式の流通市場におけるマーケットデータ」について掲載しました。 https://www.fsa.go.jp/inter/ios/20201207.html iosco 2020-12-08 13:38:00
ニュース @日本経済新聞 電子版 「老舗の弱点が露呈した。これも認めざるを得ない事実」「先延ばしにしてきたツケが回った」「コロナが気付かせてくれた」。井筒八ッ橋本舗(京都市)のトップが語りました。 https://t.co/mf8TYL8k1Z https://twitter.com/nikkei/statuses/1336289202598793216 「老舗の弱点が露呈した。 2020-12-08 12:39:07
海外ニュース Japan Times latest articles Does Trump have power to pardon himself? It’s complicated. https://www.japantimes.co.jp/news/2020/12/08/world/donald-trump-self-pardon/ clear 2020-12-08 22:49:59
海外ニュース Japan Times latest articles South Korea to consider joining TPP trade pact, Moon says https://www.japantimes.co.jp/news/2020/12/08/business/economy-business/south-korea-trade-tpp/ South Korea to consider joining TPP trade pact Moon saysThe remarks were the first time the South Korean leader had raised the possibility of Asia s fourth largest economy joining the member trade pact 2020-12-08 22:21:00
海外ニュース Japan Times latest articles Five years on, summit aims to breathe life into Paris deal https://www.japantimes.co.jp/news/2020/12/08/world/paris-accord-five-years/ Five years on summit aims to breathe life into Paris dealDespite the pledges in the landmark pact carbon pollution has continued its steady rise as temperature records tumble with increasing regularity 2020-12-08 21:38:11
海外ニュース Japan Times latest articles Giants ace Tomoyuki Sugano made available to MLB teams https://www.japantimes.co.jp/sports/2020/12/08/baseball/japanese-baseball/giants-tomoyuki-sugano-mlb-3/ Giants ace Tomoyuki Sugano made available to MLB teamsThe two time Sawamura Award winner is the fourth Japanese player to be posted this offseason and perhaps the biggest prize with the Yankees and Red 2020-12-08 22:02:26
海外ニュース Japan Times latest articles Athletes’ time at Olympic Village to be restricted during Tokyo Games https://www.japantimes.co.jp/sports/2020/12/08/olympics/athletes-olympic-village-tokyo-coronavirus/ Athletes time at Olympic Village to be restricted during Tokyo GamesThe decision by the IOC intended to limit the risk of coronavirus infections will reduce the number of athletes participating in the event s opening and 2020-12-08 21:43:17
海外ニュース Japan Times latest articles Breakdancing becomes latest Olympic sport, will debut at Paris 2024 https://www.japantimes.co.jp/sports/2020/12/08/olympics/breakdancing-olympic-sport-paris-2024/ Breakdancing becomes latest Olympic sport will debut at Paris Breakdancing became an official Olympic sport on Monday The International Olympic Committee s pursuit of urban events to lure a younger audience saw street dance battles officially 2020-12-08 21:04:55
ニュース BBC News - Home Covid-19 vaccine: First person receives Pfizer jab in UK https://www.bbc.co.uk/news/uk-55227325 Covid vaccine First person receives Pfizer jab in UKMargaret Keenan who turns next week becomes the first person in the world to get the jab as part of a mass vaccination programme calling it the best early birthday present 2020-12-08 12:43:33
ニュース BBC News - Home Brexit: PM says 'sweet reason' can get UK and EU to trade deal https://www.bbc.co.uk/news/uk-politics-55228490 commission 2020-12-08 12:07:41
ニュース BBC News - Home Covid: Christmas comes early as grocery sales 'hit record' in November https://www.bbc.co.uk/news/business-55227645 figures 2020-12-08 12:04:13
ニュース BBC News - Home Covid: Royal visit during pandemic questioned by minister https://www.bbc.co.uk/news/uk-wales-55229410 unnecessary 2020-12-08 12:40:07
ニュース BBC News - Home Rob Burrow: Kevin Sinfield marathon fundraiser passes £2m for Motor Neurone Disease research https://www.bbc.co.uk/sport/rugby-league/55231830 Rob Burrow Kevin Sinfield marathon fundraiser passes £m for Motor Neurone Disease researchMoney raised by Leeds Rhinos legend Kevin Sinfield for team mate Rob Burrow and the Motor Neurone Disease Association passes £m 2020-12-08 12:22:35
ニュース BBC News - Home Steve Diamond: Sale Sharks director of rugby leaves for personal reasons https://www.bbc.co.uk/sport/rugby-union/55228532 reasons 2020-12-08 12:46:18
ビジネス 不景気.com 福岡「ザ・クイーンズヒルゴルフクラブ」が民事再生、負債168億円 - 不景気.com https://www.fukeiki.com/2020/12/queens-hill-golf.html 株式会社 2020-12-08 12:29:39
LifeHuck ライフハッカー[日本版] 元軍用アパレルメーカーが手がけた「タフすぎる」バッグを使ってみた https://www.lifehacker.jp/2020/12/225667machi-ya-davejr2-0-review.html amabilis 2020-12-08 22:00:00
北海道 北海道新聞 ニセコの現状と今後の北海道観光を展望 北大院と道新、討論会 https://www.hokkaido-np.co.jp/article/489694/ 公共政策大学院 2020-12-08 21:19:00
北海道 北海道新聞 帯南商女子、春高バレーへ 相次ぐ主力のけが乗り越え 10年ぶり、勝利へ意欲 https://www.hokkaido-np.co.jp/article/489692/ 帯広南商 2020-12-08 21:18:00
北海道 北海道新聞 針に感謝し供養 札幌の専門学校 1500本を奉納 https://www.hokkaido-np.co.jp/article/489626/ 北海道文化 2020-12-08 21:14:43
北海道 北海道新聞 保育士、複数女性の後をつけたか 女児わいせつ事件でも捜査 https://www.hokkaido-np.co.jp/article/489690/ 東京都豊島区 2020-12-08 21:08:00
IT 週刊アスキー 「チーズおかき」にマヨ七味をのせて温めると激ウマ!お酒のつまみに https://weekly.ascii.jp/elem/000/004/036/4036681/ 酒のつまみ 2020-12-08 21:20:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2024-02-12 22:08:06 RSSフィード2024-02-12 22:00分まとめ(7件)