<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>りょうへいのブログ</title>
<link>https://ameblo.jp/revrev256/</link>
<atom:link href="https://rssblog.ameba.jp/revrev256/rss20.xml" rel="self" type="application/rss+xml" />
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
<description>ブログの説明を入力します。</description>
<language>ja</language>
<item>
<title>あ</title>
<description>
<![CDATA[ <div>#include &lt;Misc.au3&gt;</div><div>#include &lt;WindowsConstants.au3&gt;</div><div><br></div><div>HotKeySet("{ESC}", "Quit")</div><div><br></div><div>While 1</div><div>&nbsp; &nbsp; If _IsPressed("11") Then ; 11 is the virtual key code for Ctrl</div><div>&nbsp; &nbsp; &nbsp; &nbsp; _BlockInputEx(1) ; Block keyboard input</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Sleep(100) ; Wait for 100 milliseconds</div><div>&nbsp; &nbsp; &nbsp; &nbsp; _BlockInputEx(0) ; Unblock keyboard input</div><div>&nbsp; &nbsp; EndIf</div><div>WEnd</div><div><br></div><div>Func Quit()</div><div>&nbsp; &nbsp; Exit</div><div>EndFunc</div><div><br></div>
]]>
</description>
<link>https://ameblo.jp/revrev256/entry-12828213041.html</link>
<pubDate>Sat, 11 Nov 2023 10:59:45 +0900</pubDate>
</item>
<item>
<title>ま</title>
<description>
<![CDATA[ <div>// 二次元配列データ</div><div>let data = [</div><div>&nbsp; ["オフライン", "101号室", "ネット"],</div><div>&nbsp; ["オフライン", "101号室", "電話"],</div><div>&nbsp; ["オフライン", "102号室", "ネット"],</div><div>&nbsp; ["オフライン", "103号室", "電話"],</div><div>&nbsp; ["オフライン", "103号室", "テレビ"]</div><div>];</div><div><br></div><div>// 世帯数の断の数をカウントし、マンションの状態を判定する関数</div><div>function checkStatus(data) {</div><div>&nbsp; // オンラインの世帯数を初期化</div><div>&nbsp; let onlineCount = 0;</div><div>&nbsp; // 配列の長さを取得</div><div>&nbsp; let length = data.length;</div><div>&nbsp; // 配列をループしてオンラインの世帯数をカウント</div><div>&nbsp; for (let i = 0; i &lt; length; i++) {</div><div>&nbsp; &nbsp; // 配列の要素を取得</div><div>&nbsp; &nbsp; let element = data[i];</div><div>&nbsp; &nbsp; // オンラインかどうか判定</div><div>&nbsp; &nbsp; if (element[0] === "オンライン") {</div><div>&nbsp; &nbsp; &nbsp; // オンラインならカウントアップ</div><div>&nbsp; &nbsp; &nbsp; onlineCount++;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }</div><div>&nbsp; // マンションの状態を初期化</div><div>&nbsp; let status = "";</div><div>&nbsp; // オンラインの世帯数によってマンションの状態を判定</div><div>&nbsp; if (onlineCount === 0) {</div><div>&nbsp; &nbsp; // オンラインの世帯数が0なら全断</div><div>&nbsp; &nbsp; status = "マンション全断";</div><div>&nbsp; } else if (onlineCount === length) {</div><div>&nbsp; &nbsp; // オンラインの世帯数が配列の長さと同じなら復旧</div><div>&nbsp; &nbsp; status = "復旧";</div><div>&nbsp; } else {</div><div>&nbsp; &nbsp; // オンラインの世帯数がそれ以外なら一部断</div><div>&nbsp; &nbsp; status = "一部断";</div><div>&nbsp; }</div><div>&nbsp; // コンソールに結果を表示</div><div>&nbsp; console.log("オンラインの世帯数: " + onlineCount);</div><div>&nbsp; console.log("マンションの状態: " + status);</div><div>}</div><div><br></div><div>// 関数を実行</div><div>checkStatus(data);</div><div><br></div>
]]>
</description>
<link>https://ameblo.jp/revrev256/entry-12822042026.html</link>
<pubDate>Tue, 26 Sep 2023 14:23:52 +0900</pubDate>
</item>
<item>
<title>ゆ</title>
<description>
<![CDATA[ <div>こんにちは、こちらはBingです。ご質問にお答えします。😊</div><div><br></div><div>ご希望のJavaScriptコードを生成しました。以下のコードをご覧ください。</div><div><br></div><div>// テーブルをjson形式で定義する</div><div>var table = [</div><div>&nbsp; {status: "オフライン", room: "101号室", service: "ネット"},</div><div>&nbsp; {status: "オフライン", room: "101号室", service: "電話"},</div><div>&nbsp; {status: "オフライン", room: "102号室", service: "ネット"},</div><div>&nbsp; {status: "オフライン", room: "103号室", service: "電話"},</div><div>&nbsp; {status: "オフライン", room: "103号室", service: "テレビ"}</div><div>];</div><div><br></div><div>// 世帯数の断の数をカウントする関数を定義する</div><div>function countOfflineHouseholds(table) {</div><div>&nbsp; // 世帯ごとにオンラインかオフラインかを判定する</div><div>&nbsp; var households = {};</div><div>&nbsp; for (var i = 0; i &lt; table.length; i++) {</div><div>&nbsp; &nbsp; var row = table[i];</div><div>&nbsp; &nbsp; var room = row.room;</div><div>&nbsp; &nbsp; var status = row.status;</div><div>&nbsp; &nbsp; // オンラインの場合はtrue、オフラインの場合はfalseとする</div><div>&nbsp; &nbsp; if (status == "オンライン") {</div><div>&nbsp; &nbsp; &nbsp; households[room] = true;</div><div>&nbsp; &nbsp; } else if (status == "オフライン" &amp;&amp; !households[room]) {</div><div>&nbsp; &nbsp; &nbsp; households[room] = false;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }</div><div>&nbsp; // オフラインの世帯数をカウントする</div><div>&nbsp; var offlineCount = 0;</div><div>&nbsp; for (var room in households) {</div><div>&nbsp; &nbsp; if (!households[room]) {</div><div>&nbsp; &nbsp; &nbsp; offlineCount++;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }</div><div>&nbsp; return offlineCount;</div><div>}</div><div><br></div><div>// マンションの状態を判定する関数を定義する</div><div>function judgeMansionStatus(table) {</div><div>&nbsp; // 世帯数の断の数を取得する</div><div>&nbsp; var offlineCount = countOfflineHouseholds(table);</div><div>&nbsp; // 状態を判定する</div><div>&nbsp; var status = "";</div><div>&nbsp; if (offlineCount == Object.keys(households).length) {</div><div>&nbsp; &nbsp; status = "マンション全断";</div><div>&nbsp; } else if (offlineCount &gt; 0) {</div><div>&nbsp; &nbsp; status = "一部断";</div><div>&nbsp; } else {</div><div>&nbsp; &nbsp; status = "復旧";</div><div>&nbsp; }</div><div>&nbsp; return status;</div><div>}</div><div><br></div><div>// マンションの状態を表示する</div><div>console.log(judgeMansionStatus(table));</div>
]]>
</description>
<link>https://ameblo.jp/revrev256/entry-12822039640.html</link>
<pubDate>Tue, 26 Sep 2023 14:00:31 +0900</pubDate>
</item>
<item>
<title>あう</title>
<description>
<![CDATA[ <div>&lt;?php</div><div>// PHPExcelライブラリを読み込む</div><div>require_once 'PHPExcel.php';</div><div><br></div><div>// xlsxファイルを読み込む</div><div>$excel = PHPExcel_IOFactory::load('sample.xlsx');</div><div><br></div><div>// アクティブなシートを取得する</div><div>$sheet = $excel-&gt;getActiveSheet();</div><div><br></div><div>// 二次元配列を定義する</div><div>$array = array(</div><div>&nbsp; &nbsp; array(1, 2, 3, 4, 5),</div><div>&nbsp; &nbsp; array(6, 7, 8, 9, 10),</div><div>&nbsp; &nbsp; array(11, 12, 13, 14, 15),</div><div>&nbsp; &nbsp; array(16, 17, 18, 19, 20)</div><div>);</div><div><br></div><div>// B3からT列の最後までセルに入力する</div><div>$sheet-&gt;fromArray($array, null, 'B3', true);</div><div><br></div><div>// ファイルに保存する</div><div>$writer = PHPExcel_IOFactory::createWriter($excel, 'Excel2007');</div><div>$writer-&gt;save('sample.xlsx');</div><div>?&gt;</div><div><br></div>
]]>
</description>
<link>https://ameblo.jp/revrev256/entry-12821587744.html</link>
<pubDate>Sat, 23 Sep 2023 07:40:19 +0900</pubDate>
</item>
<item>
<title>い</title>
<description>
<![CDATA[ <div>&lt;?php</div><div>// PHPExcelライブラリを読み込む</div><div>require_once 'PHPExcel.php';</div><div><br></div><div>// xlsxファイルを読み込む</div><div>$excel = PHPExcel_IOFactory::load('sample.xlsx');</div><div><br></div><div>// アクティブなシートを取得する</div><div>$sheet = $excel-&gt;getActiveSheet();</div><div><br></div><div>// セルの値を編集する</div><div>$sheet-&gt;setCellValue('A1', 'Hello');</div><div>$sheet-&gt;setCellValue('B1', 'World');</div><div><br></div><div>// 列を削除する</div><div>$sheet-&gt;removeColumn('C');</div><div><br></div><div>// ファイルに保存する</div><div>$writer = PHPExcel_IOFactory::createWriter($excel, 'Excel2007');</div><div>$writer-&gt;save('sample.xlsx');</div><div>?&gt;</div><div><br></div>
]]>
</description>
<link>https://ameblo.jp/revrev256/entry-12821586660.html</link>
<pubDate>Sat, 23 Sep 2023 07:28:01 +0900</pubDate>
</item>
<item>
<title>う</title>
<description>
<![CDATA[ <div>&lt;html&gt;</div><div>&lt;head&gt;</div><div>&lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"&gt;&lt;/script&gt;</div><div>&lt;script&gt;</div><div>// リンクをクリックしたときのイベントハンドラを登録する</div><div>$(document).on("click", "a", function(e) {</div><div>&nbsp; // デフォルトの動作（リンク先に移動する）をキャンセルする</div><div>&nbsp; e.preventDefault();</div><div>&nbsp; // クリックしたリンクのhref属性を取得する</div><div>&nbsp; var href = $(this).attr("href");</div><div>&nbsp; // クリックしたリンクのid属性を取得する</div><div>&nbsp; var id = $(this).attr("id");</div><div>&nbsp; // id属性が指定されたものだけコピーする</div><div>&nbsp; if (id == "copy1" || id == "copy2" || id == "copy3") {</div><div>&nbsp; &nbsp; // href属性をコピーするための一時的なテキストエリアを作成する</div><div>&nbsp; &nbsp; var textarea = document.createElement("textarea");</div><div>&nbsp; &nbsp; // テキストエリアにhref属性をセットする</div><div>&nbsp; &nbsp; textarea.value = href;</div><div>&nbsp; &nbsp; // テキストエリアを画面外に配置する</div><div>&nbsp; &nbsp; textarea.style.position = "absolute";</div><div>&nbsp; &nbsp; textarea.style.left = "-9999px";</div><div>&nbsp; &nbsp; // テキストエリアをbody要素に追加する</div><div>&nbsp; &nbsp; document.body.appendChild(textarea);</div><div>&nbsp; &nbsp; // テキストエリアの内容を選択する</div><div>&nbsp; &nbsp; textarea.select();</div><div>&nbsp; &nbsp; // コピー実行</div><div>&nbsp; &nbsp; document.execCommand("copy");</div><div>&nbsp; &nbsp; // テキストエリアを削除する</div><div>&nbsp; &nbsp; document.body.removeChild(textarea);</div><div>&nbsp; &nbsp; // コピーしたことをユーザーに知らせる</div><div>&nbsp; &nbsp; alert("コピーしました: " + href);</div><div>&nbsp; }</div><div>});</div><div>&lt;/script&gt;</div><div>&lt;/head&gt;</div><div>&lt;body&gt;</div><div>&lt;h1&gt;リンクコピーサンプル&lt;/h1&gt;</div><div>&lt;p&gt;以下のリンクをクリックしてみてください。&lt;/p&gt;</div><div>&lt;ul&gt;</div><div>&lt;li&gt;&lt;a id="copy1" href="https://www.bing.com/"&gt;Bing&lt;/a&gt;&lt;/li&gt;</div><div>&lt;li&gt;&lt;a id="copy2" href="https://www.google.com/"&gt;Google&lt;/a&gt;&lt;/li&gt;</div><div>&lt;li&gt;&lt;a id="copy3" href="https://www.yahoo.com/"&gt;Yahoo&lt;/a&gt;&lt;/li&gt;</div><div>&lt;li&gt;&lt;a id="no-copy" href="https://www.amazon.com/"&gt;Amazon&lt;/a&gt;&lt;/li&gt;</div><div>&lt;/ul&gt;</div><div>&lt;/body&gt;</div><div>&lt;/html&gt;</div><div><br></div>
]]>
</description>
<link>https://ameblo.jp/revrev256/entry-12821581303.html</link>
<pubDate>Sat, 23 Sep 2023 06:09:24 +0900</pubDate>
</item>
<item>
<title>あ</title>
<description>
<![CDATA[ <div>&lt;html&gt;</div><div>&lt;head&gt;</div><div>&lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"&gt;&lt;/script&gt;</div><div>&lt;script&gt;</div><div>// リンクをクリックしたときのイベントハンドラを登録する</div><div>$(document).on("click", "a", function(e) {</div><div>&nbsp; // デフォルトの動作（リンク先に移動する）をキャンセルする</div><div>&nbsp; e.preventDefault();</div><div>&nbsp; // クリックしたリンクのhref属性を取得する</div><div>&nbsp; var href = $(this).attr("href");</div><div>&nbsp; // href属性をコピーするための一時的なテキストエリアを作成する</div><div>&nbsp; var textarea = document.createElement("textarea");</div><div>&nbsp; // テキストエリアにhref属性をセットする</div><div>&nbsp; textarea.value = href;</div><div>&nbsp; // テキストエリアを画面外に配置する</div><div>&nbsp; textarea.style.position = "absolute";</div><div>&nbsp; textarea.style.left = "-9999px";</div><div>&nbsp; // テキストエリアをbody要素に追加する</div><div>&nbsp; document.body.appendChild(textarea);</div><div>&nbsp; // テキストエリアの内容を選択する</div><div>&nbsp; textarea.select();</div><div>&nbsp; // コピー実行</div><div>&nbsp; document.execCommand("copy");</div><div>&nbsp; // テキストエリアを削除する</div><div>&nbsp; document.body.removeChild(textarea);</div><div>&nbsp; // コピーしたことをユーザーに知らせる</div><div>&nbsp; alert("コピーしました: " + href);</div><div>});</div><div>&lt;/script&gt;</div><div>&lt;/head&gt;</div><div>&lt;body&gt;</div><div>&lt;h1&gt;リンクコピーサンプル&lt;/h1&gt;</div><div>&lt;p&gt;以下のリンクをクリックしてみてください。&lt;/p&gt;</div><div>&lt;ul&gt;</div><div>&lt;li&gt;&lt;a href="https://www.bing.com/"&gt;Bing&lt;/a&gt;&lt;/li&gt;</div><div>&lt;li&gt;&lt;a href="https://www.google.com/"&gt;Google&lt;/a&gt;&lt;/li&gt;</div><div>&lt;li&gt;&lt;a href="https://www.yahoo.com/"&gt;Yahoo&lt;/a&gt;&lt;/li&gt;</div><div>&lt;/ul&gt;</div><div>&lt;/body&gt;</div><div>&lt;/html&gt;</div><div><br></div>
]]>
</description>
<link>https://ameblo.jp/revrev256/entry-12821580088.html</link>
<pubDate>Sat, 23 Sep 2023 05:42:29 +0900</pubDate>
</item>
<item>
<title>hukusu</title>
<description>
<![CDATA[ <div>&lt;?php</div><div>// テキストボックスに入力された文字列を取得</div><div>$search = $_POST['search'];</div><div><br></div><div>// 文字列をスペースで区切って配列に格納</div><div>$keywords = explode(" ", $search);</div><div><br></div><div>// データベースに接続</div><div>$db = new PDO("mysql:host=localhost;dbname=test", "root", "");</div><div><br></div><div>// SQL文の基本部分を作成</div><div>$sql = "SELECT * FROM products WHERE ";</div><div><br></div><div>// 配列の要素をループして条件を追加</div><div>foreach ($keywords as $key =&gt; $value) {</div><div>&nbsp; // 最初の要素以外はANDを付ける</div><div>&nbsp; if ($key &gt; 0) {</div><div>&nbsp; &nbsp; $sql .= " AND ";</div><div>&nbsp; }</div><div>&nbsp; // LIKE演算子とワイルドカードを使って部分一致検索</div><div>&nbsp; $sql .= "name LIKE '%$value%'";</div><div>}</div><div><br></div><div>// SQL文を実行して結果を取得</div><div>$stmt = $db-&gt;query($sql);</div><div>$result = $stmt-&gt;fetchAll(PDO::FETCH_ASSOC);</div><div><br></div><div>// 結果を表示</div><div>foreach ($result as $row) {</div><div>&nbsp; echo $row['name'] . "&lt;br&gt;";</div><div>}</div><div>?&gt;</div><div><br></div>
]]>
</description>
<link>https://ameblo.jp/revrev256/entry-12817895312.html</link>
<pubDate>Sun, 27 Aug 2023 06:35:57 +0900</pubDate>
</item>
<item>
<title>ばーじょんｗ</title>
<description>
<![CDATA[ <div>&lt;!DOCTYPE html&gt;</div><div>&lt;html&gt;</div><div>&lt;head&gt;</div><div>&nbsp; &nbsp; &lt;title&gt;Date Input&lt;/title&gt;</div><div>&lt;/head&gt;</div><div>&lt;body&gt;</div><div>&nbsp; &nbsp; &lt;button onclick="setToday()"&gt;今日&lt;/button&gt;</div><div>&nbsp; &nbsp; &lt;button onclick="setLastWeek()"&gt;1週間前&lt;/button&gt;&lt;br&gt;&lt;br&gt;</div><div>&nbsp; &nbsp; Starttime: &lt;input type="text" id="starttime"&gt;&lt;br&gt;</div><div>&nbsp; &nbsp; Endtime: &lt;input type="text" id="endtime"&gt;</div><div>&nbsp; &nbsp; &lt;script&gt;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; function setToday() {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let today = new Date();</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let month = (today.getMonth() + 1).toString().padStart(2, '0');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let date = today.getDate().toString().padStart(2, '0');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; document.getElementById('starttime').value = today.getFullYear() + '/' + month + '/' + date + ' 00:00';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; document.getElementById('endtime').value = today.getFullYear() + '/' + month + '/' + date + ' 23:59';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; function setLastWeek() {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let lastWeek = new Date();</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lastWeek.setDate(lastWeek.getDate() - 7);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let month = (lastWeek.getMonth() + 1).toString().padStart(2, '0');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let date = lastWeek.getDate().toString().padStart(2, '0');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; document.getElementById('starttime').value = lastWeek.getFullYear() + '/' + month + '/' + date + ' 00:00';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let today = new Date();</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; month = (today.getMonth() + 1).toString().padStart(2, '0');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; date = today.getDate().toString().padStart(2, '0');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; document.getElementById('endtime').value = today.getFullYear() + '/' + month + '/' + date + ' 23:59';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &lt;/script&gt;</div><div>&lt;/body&gt;</div><div>&lt;/html&gt;</div><div><br></div>
]]>
</description>
<link>https://ameblo.jp/revrev256/entry-12808722490.html</link>
<pubDate>Tue, 20 Jun 2023 22:37:53 +0900</pubDate>
</item>
<item>
<title>へじぇ</title>
<description>
<![CDATA[ <div>&lt;!DOCTYPE html&gt;</div><div>&lt;html&gt;</div><div>&lt;head&gt;</div><div>&nbsp; &nbsp; &lt;title&gt;Date Input&lt;/title&gt;</div><div>&lt;/head&gt;</div><div>&lt;body&gt;</div><div>&nbsp; &nbsp; &lt;button onclick="setToday()"&gt;今日&lt;/button&gt;</div><div>&nbsp; &nbsp; &lt;button onclick="setLastWeek()"&gt;1週間前&lt;/button&gt;&lt;br&gt;&lt;br&gt;</div><div>&nbsp; &nbsp; Starttime: &lt;input type="text" id="starttime"&gt;&lt;br&gt;</div><div>&nbsp; &nbsp; Endtime: &lt;input type="text" id="endtime"&gt;</div><div>&nbsp; &nbsp; &lt;script&gt;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; function setToday() {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let today = new Date();</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let date = today.getFullYear() + '/' + (today.getMonth() + 1) + '/' + today.getDate();</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; document.getElementById('starttime').value = date + ' 00:00';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; document.getElementById('endtime').value = date + ' 23:59';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; function setLastWeek() {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let lastWeek = new Date();</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lastWeek.setDate(lastWeek.getDate() - 7);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; let date = lastWeek.getFullYear() + '/' + (lastWeek.getMonth() + 1) + '/' + lastWeek.getDate();</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; document.getElementById('starttime').value = date + ' 00:00';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; document.getElementById('endtime').value = date + ' 23:59';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &lt;/script&gt;</div><div>&lt;/body&gt;</div><div>&lt;/html&gt;</div><div><br></div>
]]>
</description>
<link>https://ameblo.jp/revrev256/entry-12808721647.html</link>
<pubDate>Tue, 20 Jun 2023 22:31:57 +0900</pubDate>
</item>
</channel>
</rss>
