diff --git a/README.md b/README.md index daae5ea374f6ac3b19fc75c6f8f78cc13a74f42d..63bf679b2646c1e048859a39d9a0a4166d5773cf 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,8 @@ ---- -title: Assignment 1 JeffeuxMartin -emoji: 📉 -colorFrom: red -colorTo: red -sdk: streamlit -sdk_version: 1.10.0 -app_file: app.py -pinned: false ---- +# PTT 搜尋分析工具 ver 0.1 (modified from **`ckip-cwn-app`**) -Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference +[![Open in Visual Studio Code](https://classroom.github.com/assets/open-in-vscode-c66648af7eb3fe8bc4f294546bfd86ef473780cde1dea487d3c4ff354943c9ae.svg)](https://classroom.github.com/online_ide?assignment_repo_id=8767745&assignment_repo_type=AssignmentRepo) + +## Basic Information +* 學號:R09942097 +* 姓名:陳建成 +* Streamlit cloud link: https://jeffeuxmartin-assignment-1-jeffeuxmartin-twnlp-appsrcapp-8mil4y.streamlitapp.com/ diff --git a/crawler_jeff/jeff_crawler_ver1.py b/crawler_jeff/jeff_crawler_ver1.py new file mode 100644 index 0000000000000000000000000000000000000000..71ab70de7ef3dc0fbf67e1fae67a93bc03713124 --- /dev/null +++ b/crawler_jeff/jeff_crawler_ver1.py @@ -0,0 +1,99 @@ + +# -*- coding: utf-8 -*- +""" +Created on Fri May 29 00:38:13 2020 +@author: ASUS +""" + + +# 導入 模組(module) +import requests +# 導入 BeautifulSoup 模組(module):解析HTML 語法工具 +import bs4 + +# 文章連結 +# URL = "https://www.ptt.cc/bbs/Gossiping/M.1590678355.A.246.html" +URL = """https://www.ptt.cc/bbs/Gossiping/index.html""" + + + +from urllib.parse import urlparse + +def get_host(URL): + parsed_uri = urlparse(URL) + result = "{uri.scheme}://{uri.netloc}/".format(uri=parsed_uri) + return result + + +def proc(ch, HOSTNAME): + try: + [title_a] = ch.select('.title' )[0].select('a') + except ValueError as err: + return + + return dict( + title= title_a.getText(), + link= HOSTNAME + '/' + title_a.attrs['href'], + author=ch.select('.author')[0].getText(), + date= ch.select('.date' )[0].getText(), + ) + + +def getall(URL): + HOSTNAME = get_host(URL) + + + # 設定Header與Cookie + # my_headers = {'cookie': 'over18=1;'} + cookies = { + 'over18': '1' +} + + # 發送get 請求 到 ptt 八卦版 + response = requests.get(URL, + # headers = my_headers + cookies=cookies + ) + + + # 把網頁程式碼(HTML) 丟入 bs4模組分析 + soup = bs4.BeautifulSoup(response.text,"html.parser") + + all_articles = soup.find("div", class_="r-list-container action-bar-margin bbs-screen") + mu = [] + for ch in all_articles.children: # .select('div'): + if isinstance(ch, bs4.element.Tag): + if ch.attrs['class'] == ['r-ent']: + output = proc(ch, HOSTNAME) + if output: + mu.append(output) + elif ch.attrs['class'] == ['r-list-sep']: + break + + + buttons = soup.select('a.btn.wide') + prev_page, next_page = None, None + for button in buttons: + if '上頁' in button.getText(): + if 'disabled' not in button.attrs['class']: + prev_page = HOSTNAME + '/' + button.attrs['href'] + else: + prev_page = None + if '下頁' in button.getText(): + if 'disabled' not in button.attrs['class']: + next_page = HOSTNAME + '/' + button.attrs['href'] + else: + next_page = None + + return mu, prev_page, next_page + + +URL = """https://www.ptt.cc/bbs/Gossiping/index.html""" +RR = [] +from tqdm import tqdm +for iiii in tqdm(range(100)): + res, prev_, next_ = getall(URL) + print(res[0]["date"], end='\t') + print(res[-1]["date"]) + URL = prev_ + RR.extend(res) \ No newline at end of file diff --git a/crawler_jeff/jeff_crawler_ver2.py b/crawler_jeff/jeff_crawler_ver2.py new file mode 100644 index 0000000000000000000000000000000000000000..8eff449e18017c76289319b6444691febd57d37a --- /dev/null +++ b/crawler_jeff/jeff_crawler_ver2.py @@ -0,0 +1,44 @@ +from PyPtt import PTT +ptt_bot = PTT.API() +ptt_bot.login('jeffchen111', 'ntuee111') + +def cc(RESRES): + def crawl_handler(post_info): + + if post_info.delete_status != PTT.data_type.post_delete_status.NOT_DELETED: + if post_info.delete_status == PTT.data_type.post_delete_status.MODERATOR: + # print(f"[板主刪除][{post_info.author}]") + pass + elif post_info.delete_status == PTT.data_type.post_delete_status.AUTHOR: + # print(f"[作者刪除][{post_info.author}]") + pass + elif post_info.delete_status == PTT.data_type.post_delete_status.UNKNOWN: + # print(f"[不明刪除]") + pass + return + + # print(f"[{post_info.aid}][{post_info.title}]") + # return post_info + PP = dict( + aid=post_info.aid, + index=post_info.index, + web_url=post_info.web_url, + title=post_info.title, + ) + RESRES.append(PP) + return crawl_handler + + +boardname = "Gossiping" +newest = ptt_bot.get_newest_index(PTT.data_type.index_type.BBS, boardname) +RESRES = [] +error_post_list, del_post_list = ptt_bot.crawl_board( + PTT.data_type.crawl_type.BBS, + # crawl_handler, + cc(RESRES), + boardname, + start_index=newest - 1000 * 2, + end_index=newest, # - 100 * 2, + # Optional + query=True, +) diff --git a/data/corpus.json b/data/corpus.json new file mode 100644 index 0000000000000000000000000000000000000000..9807ef6eaf3d587167adf5d3d130399370bb6d67 --- /dev/null +++ b/data/corpus.json @@ -0,0 +1,11624 @@ +[ + { + "aid": "1ZHHEmtg", + "index": 780347, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665471408.A.DEA.html", + "title": "R: [新聞] 遭點名缺席立院會議 鄭運鵬:因選舉質詢" + }, + { + "aid": "1ZHHF1aj", + "index": 780348, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665471425.A.92D.html", + "title": "[新聞] 快訊/國台辦回應蔡英文雙十演說:這篇" + }, + { + "aid": "1ZHHGYvu", + "index": 780349, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665471522.A.E78.html", + "title": "R: [問卦] 為啥日男上班族做得到台男做不到" + }, + { + "aid": "1ZHHH8_g", + "index": 780350, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665471560.A.FEA.html", + "title": "[問卦] 政治系最頂的薪水是多少?" + }, + { + "aid": "1ZHHIEOJ", + "index": 780351, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665471630.A.613.html", + "title": "[問卦] 世紀帝國2好玩 但一場好久 怎辦?" + }, + { + "aid": "1ZHHJtgB", + "index": 780352, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665471735.A.A8B.html", + "title": "[問卦] 研1一學期修18學分是不是天才" + }, + { + "aid": "1ZHHJuvC", + "index": 780353, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665471736.A.E4C.html", + "title": "R: [問卦] 請問這真的是警政署的簡訊?" + }, + { + "aid": "1ZHHKb-e", + "index": 780354, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665471781.A.FA8.html", + "title": "R: [問卦] 為啥日本橘高校做得到北一女做不到" + }, + { + "aid": "1ZHHKe9J", + "index": 780355, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665471784.A.253.html", + "title": "R: [問卦] 花粉裡竟吃到員工腳皮?" + }, + { + "aid": "1ZHHPQbz", + "index": 780356, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472090.A.97D.html", + "title": "R: [問卦] 台灣確定不升息?" + }, + { + "aid": "1ZHHPmUG", + "index": 780357, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472112.A.790.html", + "title": "[問卦] 假設美國爸爸真的要炸台積" + }, + { + "aid": "1ZHHQ7IX", + "index": 780358, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472135.A.4A1.html", + "title": "R: [問卦] 為什麼七年級,會這麼愛抱怨?" + }, + { + "aid": "1ZHHQvSA", + "index": 780359, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472185.A.70A.html", + "title": "R: [問卦] 為啥日男上班族做得到台男做不到" + }, + { + "aid": "1ZHHRfyQ", + "index": 780360, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472233.A.F1A.html", + "title": "[問卦] 一個晚上就瘦了1kg會太快嗎" + }, + { + "aid": "1ZHHS49e", + "index": 780361, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472260.A.268.html", + "title": "R: [新聞] 吸引百萬名「高端客」 日本旅宿:訂房免" + }, + { + "aid": "1ZHHSLik", + "index": 780362, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472277.A.B2E.html", + "title": "[問卦] 張大人說的獨創性與普遍性?" + }, + { + "aid": "1ZHHTPLW", + "index": 780363, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472345.A.560.html", + "title": "[問卦] 怒!! 日本機票什麼時候才會降價" + }, + { + "aid": "1ZHHVmtZ", + "index": 780364, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472496.A.DE3.html", + "title": "[問卦] 飛彈殺人效率也太差了吧?!" + }, + { + "aid": "1ZHHV-iI", + "index": 780365, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472510.A.B12.html", + "title": "R: [新聞] 遭點名缺席立院會議 鄭運鵬:因選舉質詢" + }, + { + "aid": "1ZHHWKHb", + "index": 780366, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472532.A.465.html", + "title": "[問卦] 祝八卦板的朋友 金城武49歲生日快樂?" + }, + { + "aid": "1ZHHWqft", + "index": 780368, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472564.A.A77.html", + "title": "[新聞] 男下屬與女經理婚外情怕錯頻 全叫「親愛" + }, + { + "aid": "1ZHHYdsh", + "index": 780369, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472679.A.DAB.html", + "title": "[問卦] Yuri、林襄、孟潔、河北 都幾勒正?" + }, + { + "aid": "1ZHHY_Fm", + "index": 780371, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472703.A.3F0.html", + "title": "R: [新聞] 遭點名缺席立院會議 鄭運鵬:因選舉" + }, + { + "aid": "1ZHHZCU_", + "index": 780372, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472716.A.7BF.html", + "title": "[問卦] 黃老師484大獲全勝了?" + }, + { + "aid": "1ZHHa2Hu", + "index": 780373, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472770.A.478.html", + "title": "[問卦] 館長真愛b17即將回歸八卦板? (錢)" + }, + { + "aid": "1ZHHaZaB", + "index": 780374, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472803.A.90B.html", + "title": "R: [新聞] 黃珊珊動怒「怎不討論蔣孝嚴站台?」 蔣" + }, + { + "aid": "1ZHHbRwM", + "index": 780375, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665472859.A.E96.html", + "title": "R: [問卦] 怒!! 日本機票什麼時候才會降價" + }, + { + "aid": "1ZHHdok5", + "index": 780376, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473010.A.B85.html", + "title": "[問卦] 日本橘高校吹奏部JK大部分都留長髮?" + }, + { + "aid": "1ZHHdvVJ", + "index": 780377, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473017.A.7D3.html", + "title": "[問卦] =.= 機器人量產後低端人口要幹嘛?!" + }, + { + "aid": "1ZHHeFVN", + "index": 780378, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473039.A.7D7.html", + "title": "[問卦] 有沒有妹子香味到底是什麼味的八卦?" + }, + { + "aid": "1ZHHfL2v", + "index": 780379, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473109.A.0B9.html", + "title": "R: [新聞] 後備部隊前推守灘岸 將成炮灰" + }, + { + "aid": "1ZHHfNlz", + "index": 780380, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473111.A.BFD.html", + "title": "[問卦] 聽說樂器吹嘴都臭到靠北" + }, + { + "aid": "1ZHHfXtQ", + "index": 780381, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473121.A.DDA.html", + "title": "R: [新聞] 黃珊珊動怒「怎不討論蔣孝嚴站台?」 蔣" + }, + { + "aid": "1ZHHh9Ji", + "index": 780382, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473225.A.4EC.html", + "title": "R: [問卦] 台積電若被炸掉 台灣還剩什麼?" + }, + { + "aid": "1ZHHhPLg", + "index": 780383, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473241.A.56A.html", + "title": "[問卦] 嘉偉老蘇有買機器人嗎?" + }, + { + "aid": "1ZHHk-Be", + "index": 780385, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473470.A.2E8.html", + "title": "[問卦] 去醫院探病不戴口罩怎麼辦" + }, + { + "aid": "1ZHHl4nP", + "index": 780386, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473476.A.C59.html", + "title": "[問卦] 快受不了啦 美國收回多少刀了" + }, + { + "aid": "1ZHHlTGR", + "index": 780387, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473501.A.41B.html", + "title": "R: [問卦] 為什麼七年級,會這麼愛抱怨?" + }, + { + "aid": "1ZHHlgOP", + "index": 780388, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473514.A.619.html", + "title": "[問卦] 為什麼板上這麼多說北一女樂儀旗隊表現不" + }, + { + "aid": "1ZHHmx8_", + "index": 780389, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473595.A.23F.html", + "title": "[新聞] 總統喊和平解決兩岸問題 柯文哲嗆「平常" + }, + { + "aid": "1ZHHoM9m", + "index": 780390, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473686.A.270.html", + "title": "[問卦] 屏鵝公路如果不是到鵝鑾鼻而是鵝城 會怎樣" + }, + { + "aid": "1ZHHsTnj", + "index": 780391, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473949.A.C6D.html", + "title": "[問卦] 竹北現在是在塞幾點的?" + }, + { + "aid": "1ZHHsZqp", + "index": 780392, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473955.A.D33.html", + "title": "[問卦] LED燈管 VS LED燈泡,換哪個比較好?= =" + }, + { + "aid": "1ZHHsys0", + "index": 780393, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665473980.A.D80.html", + "title": "[問卦] 林襄又調皮開抖了 肥仔扛得住? 卦" + }, + { + "aid": "1ZHHtIuo", + "index": 780394, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474002.A.E32.html", + "title": "[問卦] 日本在幹什麼!開放什麼觀光客!不怕死嗎" + }, + { + "aid": "1ZHHtbk6", + "index": 780395, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474021.A.B86.html", + "title": "[新聞] 《台灣三部曲》受阻 魏德聖因一本書找" + }, + { + "aid": "1ZHHtmGS", + "index": 780396, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474032.A.41C.html", + "title": "[問卦] 捷運站出口的乞丐" + }, + { + "aid": "1ZHHtx21", + "index": 780397, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474043.A.081.html", + "title": "[問卦] 京都橘高校JK沒有到台灣的京都-台南一遊?" + }, + { + "aid": "1ZHHuO_K", + "index": 780398, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474072.A.FD4.html", + "title": "[問卦] 隔壁每天都在喊大爆V?" + }, + { + "aid": "1ZHHuOED", + "index": 780399, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474072.A.38D.html", + "title": "[問卦] 拍個台北男子圖鑑會怎樣" + }, + { + "aid": "1ZHHvCA-", + "index": 780400, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474124.A.2BE.html", + "title": "[問卦] 曾閃到腰過的人進來一下" + }, + { + "aid": "1ZHHw-da", + "index": 780401, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474238.A.9E4.html", + "title": "[問卦] 台灣這麼愛引進外勞?是不是也該引進蜜蜂?" + }, + { + "aid": "1ZHHzbrN", + "index": 780402, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474405.A.D57.html", + "title": "[問卦] 京都橘高校JK沒有到台灣的岡山-岡山一遊?" + }, + { + "aid": "1ZHHzlqq", + "index": 780403, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474415.A.D34.html", + "title": "R: [問卦] 日本橘高校吹奏部JK大部分都留長髮?" + }, + { + "aid": "1ZHHzxAR", + "index": 780404, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474427.A.29B.html", + "title": "[問卦] 觀察不同航線的台女 歐洲線最優的八卦?" + }, + { + "aid": "1ZHH-BMl", + "index": 780405, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474443.A.5AF.html", + "title": "R: [新聞] 後備部隊前推守灘岸 將成炮灰" + }, + { + "aid": "1ZHH_0rm", + "index": 780406, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474496.A.D70.html", + "title": "[新聞] 老闆撿屍泥醉女同事 爽完喊「打電話叫你" + }, + { + "aid": "1ZHI02pe", + "index": 780407, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474562.A.CE8.html", + "title": "R: [問卦] 拍個台北男子圖鑑會怎樣" + }, + { + "aid": "1ZHI0Uyh", + "index": 780408, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474590.A.F2B.html", + "title": "R: [問卦] 竹北現在是在塞幾點的?" + }, + { + "aid": "1ZHI0nmm", + "index": 780409, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474609.A.C30.html", + "title": "[新聞] 熱蘭遮城古蹟整合擬更名 安平古堡名稱暫" + }, + { + "aid": "1ZHI19G2", + "index": 780410, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474633.A.402.html", + "title": "[新聞] 民進黨要打假訊息 蔣萬安:蔡英文妳忘了" + }, + { + "aid": "1ZHI1_3v", + "index": 780411, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474687.A.0F9.html", + "title": "[問卦] 認真:怎問台女對約砲男女的看法?" + }, + { + "aid": "1ZHI41Hx", + "index": 780412, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474817.A.47B.html", + "title": "R: [問卦] Yuri、林襄、孟潔、河北 都幾勒正?" + }, + { + "aid": "1ZHI4Egt", + "index": 780413, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474830.A.AB7.html", + "title": "[新聞] 「菩薩指20次性交射精治病」 講師挨告性" + }, + { + "aid": "1ZHI4Wqg", + "index": 780414, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474848.A.D2A.html", + "title": "R: [新聞] 黃珊珊動怒「怎不討論蔣孝嚴站台?」 蔣" + }, + { + "aid": "1ZHI6ZSw", + "index": 780415, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474979.A.73A.html", + "title": "[新聞] 高雄輕軌剛通車路段設備異常 改採公車" + }, + { + "aid": "1ZHI6mrr", + "index": 780416, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665474992.A.D75.html", + "title": "[問卦] 日本社團活動很興盛?課業壓力不大?" + }, + { + "aid": "1ZHI7mm-", + "index": 780417, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475056.A.C3E.html", + "title": "[問卦] 全盛時期的台鐵有多風光?" + }, + { + "aid": "1ZHI7r_t", + "index": 780418, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475061.A.FF7.html", + "title": "[新聞] 雙十連假埔里傳母子墜樓送醫不治" + }, + { + "aid": "1ZHIBwSU", + "index": 780419, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475322.A.71E.html", + "title": "[新聞] 谷阿莫「被黑道玩弄的故事」非虛構 高院" + }, + { + "aid": "1ZHIBytT", + "index": 780420, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475324.A.DDD.html", + "title": "R: [新聞] 民進黨要打假訊息 蔣萬安:蔡英文妳忘了" + }, + { + "aid": "1ZHIEbUK", + "index": 780421, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475493.A.794.html", + "title": "R: [新聞] 高雄輕軌剛通車路段設備異常 改採公車" + }, + { + "aid": "1ZHIEi2F", + "index": 780422, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475500.A.08F.html", + "title": "[新聞] 韓國瑜重回高雄!演講20分「3金句」曝光" + }, + { + "aid": "1ZHIGsuQ", + "index": 780423, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475638.A.E1A.html", + "title": "[新聞] 得分啦!「湖人24號吉娃娃」上球場6步灌" + }, + { + "aid": "1ZHIH1gI", + "index": 780424, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475649.A.A92.html", + "title": "[問卦] 克里米亞大橋和北溪都被炸 反應為何不同?" + }, + { + "aid": "1ZHIHNK0", + "index": 780425, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475671.A.500.html", + "title": "[問卦] 台股萬五萬六開心喊越低越買的人去哪了?" + }, + { + "aid": "1ZHIHwPh", + "index": 780426, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475706.A.66B.html", + "title": "[問卦] 台灣為什麼沒有Blues型的John Mayer" + }, + { + "aid": "1ZHIIjbM", + "index": 780427, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475757.A.956.html", + "title": "R: [新聞] 總統喊和平解決兩岸問題 柯文哲嗆「平常" + }, + { + "aid": "1ZHIIuoU", + "index": 780428, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475768.A.C9E.html", + "title": "[問卦] 辣台妹到底是誰辣?" + }, + { + "aid": "1ZHIL3u4", + "index": 780429, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665475907.A.E04.html", + "title": "[新聞] 25歲女在家突然遭「100發子彈」射穿身亡" + }, + { + "aid": "1ZHINujQ", + "index": 780430, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665476088.A.B5A.html", + "title": "R: [新聞] 橘高校鞠躬感謝「幕後護花使者」松山工農" + }, + { + "aid": "1ZHIOnZZ", + "index": 780431, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665476145.A.8E3.html", + "title": "[新聞] 長知識了!「牛肉風味」串燒竟然吃到鴨" + }, + { + "aid": "1ZHIPRLk", + "index": 780432, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665476187.A.56E.html", + "title": "R: [新聞] 遭點名缺席立院會議 鄭運鵬:因選舉質詢" + }, + { + "aid": "1ZHIRbJn", + "index": 780433, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665476325.A.4F1.html", + "title": "[問卦] 日女問我士林夜市有什麼好吃的" + }, + { + "aid": "1ZHIUOWb", + "index": 780434, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665476504.A.825.html", + "title": "[問卦] 鄰國外交部長被人脫光光 是要羞恥PLAY嗎" + }, + { + "aid": "1ZHIU-Av", + "index": 780435, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665476542.A.2B9.html", + "title": "[爆卦] 次世代疫苗首例死亡「接種一日發生」" + }, + { + "aid": "1ZHIWaW1", + "index": 780436, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665476644.A.801.html", + "title": "[問卦] 隔離一整個月是啥感覺?" + }, + { + "aid": "1ZHIZd70", + "index": 780438, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665476839.A.1C0.html", + "title": "[問卦] 怎麼追旅館的老闆娘?" + }, + { + "aid": "1ZHIb3K3", + "index": 780439, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665476931.A.503.html", + "title": "[新聞]林耕仁宣布:擔任市長將庖除市政3弊端" + }, + { + "aid": "1ZHIdKIF", + "index": 780440, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477076.A.48F.html", + "title": "[問卦] 有沒有中信客服很難打進去的卦?" + }, + { + "aid": "1ZHIfSMu", + "index": 780442, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477212.A.5B8.html", + "title": "[問卦] 馬鈴薯帶皮吃才內行嗎?" + }, + { + "aid": "1ZHIf-Q6", + "index": 780443, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477246.A.686.html", + "title": "R: [新聞] 黃珊珊動怒「怎不討論蔣孝嚴站台?」 蔣" + }, + { + "aid": "1ZHIgf0W", + "index": 780444, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477289.A.020.html", + "title": "[問卦] 台灣如果全面開放觀光客自由行會來多少人" + }, + { + "aid": "1ZHIhFST", + "index": 780445, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477327.A.71D.html", + "title": "R: [新聞] 總統喊和平解決兩岸問題 柯文哲嗆「平常" + }, + { + "aid": "1ZHIhVsv", + "index": 780446, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477343.A.DB9.html", + "title": "R: [問卦] 台灣為什麼沒有Blues型的John Mayer" + }, + { + "aid": "1ZHIi0KN", + "index": 780447, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477376.A.517.html", + "title": "R: [新聞] 海歸牙醫等實習最久要10年 醫界大老" + }, + { + "aid": "1ZHIi31p", + "index": 780448, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477379.A.073.html", + "title": "[新聞] 蔣孝嚴未幫蔣萬安站台 柯文哲:他身上太" + }, + { + "aid": "1ZHIkEsi", + "index": 780449, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477518.A.DAC.html", + "title": "R: [新聞] 黃珊珊動怒「怎不討論蔣孝嚴站台?」 蔣" + }, + { + "aid": "1ZHIkXtF", + "index": 780450, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477537.A.DCF.html", + "title": "[問卦] 橘高校是負面榜樣吧...3點下課玩社團" + }, + { + "aid": "1ZHIl4iJ", + "index": 780451, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477572.A.B13.html", + "title": "[問卦] 手機除了電池是不是真的用不壞?" + }, + { + "aid": "1ZHImrzZ", + "index": 780452, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477685.A.F63.html", + "title": "[問卦] 在路上舉牌徵求女友有搞頭嗎" + }, + { + "aid": "1ZHImuFR", + "index": 780453, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477688.A.3DB.html", + "title": "[問卦] 有房有貓有女人是什麼感覺" + }, + { + "aid": "1ZHIobKf", + "index": 780454, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477797.A.529.html", + "title": "R: [問卦] 來自深淵 是怎樣的一部作品???" + }, + { + "aid": "1ZHIpJFL", + "index": 780455, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477843.A.3D5.html", + "title": "[問卦] 有天文奇觀?不然頂樓怎一堆人?" + }, + { + "aid": "1ZHIqDOu", + "index": 780456, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477901.A.638.html", + "title": "[問卦] 烏鴉拍的新片 有人看得懂嗎" + }, + { + "aid": "1ZHIqgyY", + "index": 780457, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477930.A.F22.html", + "title": "R: [新聞] 總統喊和平解決兩岸問題 柯文哲嗆「平常" + }, + { + "aid": "1ZHIqjKC", + "index": 780458, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477933.A.50C.html", + "title": "[新聞] 藍委問「沒有台積電怎麼辦」 蘇貞昌:台" + }, + { + "aid": "1ZHIq-dG", + "index": 780459, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477950.A.9D0.html", + "title": "[新聞] 邱國正:以前界定飛彈、砲彈是第一擊 現" + }, + { + "aid": "1ZHIrPoM", + "index": 780460, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477977.A.C96.html", + "title": "[問卦] PTT有哪些經典簽名檔" + }, + { + "aid": "1ZHIrhG4", + "index": 780461, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665477995.A.404.html", + "title": "[問卦] 說日本橘高校比北一女好算是父權遺毒嗎?" + }, + { + "aid": "1ZHIvGr3", + "index": 780462, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478224.A.D43.html", + "title": "[問卦] BSN是不是過譽了" + }, + { + "aid": "1ZHIvaC-", + "index": 780463, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478244.A.33E.html", + "title": "[問卦] 有沒有京都橘高校女子圖鑑" + }, + { + "aid": "1ZHIy04S", + "index": 780464, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478400.A.11C.html", + "title": "[問卦] 欸=w= 植物燈是不是很方便" + }, + { + "aid": "1ZHIymga", + "index": 780466, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478448.A.AA4.html", + "title": "[問卦] 你是否不適應台灣數學教育?" + }, + { + "aid": "1ZHIyp4i", + "index": 780467, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478451.A.12C.html", + "title": "[問卦] 女學生幾歲開始發育比較好?" + }, + { + "aid": "1ZHIzQNV", + "index": 780468, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478490.A.5DF.html", + "title": "R: [新聞] 韓國瑜重回高雄!演講20分「3金句」曝光" + }, + { + "aid": "1ZHIziX8", + "index": 780469, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478508.A.848.html", + "title": "[問卦] 為什麼置板凳不能直接置" + }, + { + "aid": "1ZHI_4wq", + "index": 780470, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478596.A.EB4.html", + "title": "[問卦] 胖幾公斤 從外觀看得出來" + }, + { + "aid": "1ZHI_J7J", + "index": 780471, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478611.A.1D3.html", + "title": "[新聞] 中山大學獼猴插吸管「暢飲手搖杯」 熟練" + }, + { + "aid": "1ZHI_XXe", + "index": 780472, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478625.A.868.html", + "title": "[問卦] 什麼樣的日子不好過" + }, + { + "aid": "1ZHJ1BVq", + "index": 780473, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478731.A.7F4.html", + "title": "[新聞] 深蹲換搭公車 蘇貞昌點出該考慮相對剝奪" + }, + { + "aid": "1ZHJ25NT", + "index": 780474, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478789.A.5DD.html", + "title": "[新聞] 陳其邁才喊:我承擔!高雄輕軌新段通車就" + }, + { + "aid": "1ZHJ2SqW", + "index": 780475, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478812.A.D20.html", + "title": "R: [問卦] 買股票是理財嗎?" + }, + { + "aid": "1ZHJ4K6V", + "index": 780476, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478932.A.19F.html", + "title": "R: [問卦] 彰化不二坊蛋黃酥好吃在哪裡?" + }, + { + "aid": "1ZHJ52mw", + "index": 780477, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665478978.A.C3A.html", + "title": "R: [新聞] 低薪衝擊…沒錢不生 少子缺工 惡性循環" + }, + { + "aid": "1ZHJ5il1", + "index": 780478, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479020.A.BC1.html", + "title": "[問卦] 台灣到底多皇民" + }, + { + "aid": "1ZHJ8axq", + "index": 780479, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479204.A.EF4.html", + "title": "[問卦] 沒人懷疑高中學的光學嗎?" + }, + { + "aid": "1ZHJ9_5c", + "index": 780480, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479295.A.166.html", + "title": "R: [問卦] 橘高校是負面榜樣吧...3點下課玩社團" + }, + { + "aid": "1ZHJBYSn", + "index": 780481, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479394.A.731.html", + "title": "R: [新聞] 後備部隊前推守灘岸 將成炮灰" + }, + { + "aid": "1ZHJBo11", + "index": 780482, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479410.A.041.html", + "title": "R: [問卦] 台灣到底多皇民" + }, + { + "aid": "1ZHJCaFD", + "index": 780483, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479460.A.3CD.html", + "title": "[問卦] 有什麼東西是漲價後你就不買了" + }, + { + "aid": "1ZHJDMqy", + "index": 780484, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479510.A.D3C.html", + "title": "R: [新聞] 陳其邁才喊:我承擔!高雄輕軌新段通車就" + }, + { + "aid": "1ZHJEEuB", + "index": 780485, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479566.A.E0B.html", + "title": "R: [問卦] 台灣到底多皇民" + }, + { + "aid": "1ZHJGG2P", + "index": 780486, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479696.A.099.html", + "title": "[問卦] 肥宅都剪什麼頭型阿?" + }, + { + "aid": "1ZHJHOyj", + "index": 780487, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479768.A.F2D.html", + "title": "[問卦] 看完邊緣行者很鬱悶怎麼辦(雷)" + }, + { + "aid": "1ZHJHVRP", + "index": 780488, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479775.A.6D9.html", + "title": "[問卦] 碩士念五年肄業,工作面試會被洗臉嗎?" + }, + { + "aid": "1ZHJKwy5", + "index": 780489, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665479994.A.F05.html", + "title": "[新聞] 罕見!高中生曠課100節 父動手管教反遭判" + }, + { + "aid": "1ZHJLGUs", + "index": 780490, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480016.A.7B6.html", + "title": "[問卦] 親戚不計較 以前到底有多紅?" + }, + { + "aid": "1ZHJMQQX", + "index": 780491, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480090.A.6A1.html", + "title": "[問卦] 花蓮麻糬最頂的是哪間啊?" + }, + { + "aid": "1ZHJMat6", + "index": 780492, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480100.A.DC6.html", + "title": "[問卦] 現在開露營區 有搞頭嗎?" + }, + { + "aid": "1ZHJMiFS", + "index": 780493, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480108.A.3DC.html", + "title": "[問卦] 為什麼沒人要推物價公定" + }, + { + "aid": "1ZHJNz0i", + "index": 780494, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480189.A.02C.html", + "title": "[問卦] 最古早版史艷文到底有沒有被復刻還原?" + }, + { + "aid": "1ZHJPdUw", + "index": 780495, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480295.A.7BA.html", + "title": "[新聞] 綠轟謝國樑涉洗錢、金流神祕 蔡適應:" + }, + { + "aid": "1ZHJQymB", + "index": 780496, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480380.A.C0B.html", + "title": "R: [爆卦] 德國訪台國會議員大讚台灣高鐵,暗酸" + }, + { + "aid": "1ZHJTgRD", + "index": 780497, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480554.A.6CD.html", + "title": "[問卦] 帥哥有可能是大魔法師嗎?" + }, + { + "aid": "1ZHJUwaF", + "index": 780498, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480634.A.90F.html", + "title": "[問卦] line是不是壞掉了" + }, + { + "aid": "1ZHJVLB-", + "index": 780499, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480661.A.2FE.html", + "title": "[問卦] 為什麼現在猴子越來越多?" + }, + { + "aid": "1ZHJVyoh", + "index": 780500, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480700.A.CAB.html", + "title": "R: [問卦] 為什麼沒人要推物價公定" + }, + { + "aid": "1ZHJXgfL", + "index": 780501, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480810.A.A55.html", + "title": "[新聞] 菲律賓通過手機門號實名制 用戶須限期註" + }, + { + "aid": "1ZHJX-vg", + "index": 780503, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480830.A.E6A.html", + "title": "[新聞] 疫苗證明取代「0+7」? 薛瑞元:卡在是" + }, + { + "aid": "1ZHJZHhZ", + "index": 780504, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665480913.A.AE3.html", + "title": "R: [新聞] 曹興誠籲制憲正名國號「台灣」 綠委:有" + }, + { + "aid": "1ZHJb3hs", + "index": 780505, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481027.A.AF6.html", + "title": "[問卦] 天氣冷還能運動嗎?" + }, + { + "aid": "1ZHJbHNx", + "index": 780506, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481041.A.5FB.html", + "title": "[問卦] 公園裸上半身跑步會被告嗎" + }, + { + "aid": "1ZHJbjVn", + "index": 780507, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481069.A.7F1.html", + "title": "[問卦] 如果把漫威電影發送到外太空" + }, + { + "aid": "1ZHJd4jg", + "index": 780508, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481156.A.B6A.html", + "title": "[新聞] 獨家》許淑華論文涉抄襲案 逢甲大學審定" + }, + { + "aid": "1ZHJeQyl", + "index": 780509, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481242.A.F2F.html", + "title": "[問卦] 大家醫療險都買幾張?" + }, + { + "aid": "1ZHJet9J", + "index": 780510, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481271.A.253.html", + "title": "R: [問卦] PTT有哪些經典簽名檔" + }, + { + "aid": "1ZHJg0HQ", + "index": 780511, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481344.A.45A.html", + "title": "[問卦] 現在是不是滿地鑽石了?0.0" + }, + { + "aid": "1ZHJgGK5", + "index": 780512, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481360.A.505.html", + "title": "R: [新聞] 疫苗證明取代「0+7」? 薛瑞元:卡在是" + }, + { + "aid": "1ZHJgrHl", + "index": 780513, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481397.A.46F.html", + "title": "[問卦] 蒸魚不放破布子 是不是等用白做了?" + }, + { + "aid": "1ZHJh6sS", + "index": 780514, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481414.A.D9C.html", + "title": "R: [問卦] 台中曉明女中很厲害嗎? 有沒有卦?" + }, + { + "aid": "1ZHJhCpq", + "index": 780515, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481420.A.CF4.html", + "title": "[新聞] 被問王世堅同框黃珊珊 柯文哲:符合陳時" + }, + { + "aid": "1ZHJjhcm", + "index": 780516, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481579.A.9B0.html", + "title": "[問卦] momo的東西都是正貨嗎?" + }, + { + "aid": "1ZHJnOoa", + "index": 780517, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481816.A.CA4.html", + "title": "R: [新聞] 曹興誠籲制憲正名國號「台灣」 綠委:有" + }, + { + "aid": "1ZHJoAl2", + "index": 780518, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481866.A.BC2.html", + "title": "[問卦] 鼎泰豐排骨炒飯155送到家是不是很便宜?" + }, + { + "aid": "1ZHJod3f", + "index": 780519, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481895.A.0E9.html", + "title": "[問卦] 影印雞雞要蓋蓋子嗎???" + }, + { + "aid": "1ZHJosvQ", + "index": 780520, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481910.A.E5A.html", + "title": "[問卦] 想創一個以jk為主軸的黨,該取名叫?" + }, + { + "aid": "1ZHJoxzn", + "index": 780521, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665481915.A.F71.html", + "title": "[新聞] 蔣萬安喊集中選票 柯文哲酸「只剩這招」" + }, + { + "aid": "1ZHJsQSt", + "index": 780522, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482138.A.737.html", + "title": "[問卦] 吃鯊魚煙為何不被譴責" + }, + { + "aid": "1ZHJswOJ", + "index": 780523, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482170.A.613.html", + "title": "[問卦] Google公車資訊準嗎" + }, + { + "aid": "1ZHJtRsO", + "index": 780524, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482203.A.D98.html", + "title": "[新聞] 高虹安赴中市考察 柯建銘︰假考察真蹭聲" + }, + { + "aid": "1ZHJvS2Z", + "index": 780526, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482332.A.0A3.html", + "title": "[新聞] 當台灣女孩遇上日本女孩!蔡英文:橘高" + }, + { + "aid": "1ZHJy1_t", + "index": 780527, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482497.A.FF7.html", + "title": "R: [新聞] 後備部隊前推守灘岸 將成炮灰" + }, + { + "aid": "1ZHJy90b", + "index": 780528, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482505.A.025.html", + "title": "[新聞] 投資人落跑!大戶數創9季新低 散戶比重" + }, + { + "aid": "1ZHJyNBG", + "index": 780529, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482519.A.2D0.html", + "title": "[問卦] 南韓有知名閃兵仔嗎" + }, + { + "aid": "1ZHJyo3t", + "index": 780530, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482546.A.0F7.html", + "title": "[問卦] 出社會後的話術" + }, + { + "aid": "1ZHJz1UP", + "index": 780531, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482561.A.799.html", + "title": "[問卦] 一堆建商都說秒殺物件?那怎麼還有廣告?" + }, + { + "aid": "1ZHJzANv", + "index": 780532, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482570.A.5F9.html", + "title": "[新聞] 被韓國瑜當面重提「切割愛情摩天輪」柯志" + }, + { + "aid": "1ZHJzSzi", + "index": 780533, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482588.A.F6C.html", + "title": "R: [問卦] 為什麼台灣訓練不出橘色惡魔?" + }, + { + "aid": "1ZHJ_EL9", + "index": 780534, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482702.A.549.html", + "title": "[問卦] 學生時期要不要辦信用卡(線上等" + }, + { + "aid": "1ZHJ_q2j", + "index": 780535, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482740.A.0AD.html", + "title": "[問卦] 小穹收假在想什麼0.0 (小穹陣線)" + }, + { + "aid": "1ZHK1own", + "index": 780536, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665482866.A.EB1.html", + "title": "R: [問卦] 板橋人看到耶誕城在想什麼" + }, + { + "aid": "1ZHK6pYy", + "index": 780537, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483187.A.8BC.html", + "title": "[問卦] 台灣那麼哈日 怎麼食品包裝都不抄?" + }, + { + "aid": "1ZHK7Rvz", + "index": 780538, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483227.A.E7D.html", + "title": "R: [新聞] 文化部決議!台南安平古堡以後要改叫這" + }, + { + "aid": "1ZHK7v--", + "index": 780539, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483257.A.FBE.html", + "title": "[問卦] 各位溫拿的等級是台北女子圖鑑第幾任男友" + }, + { + "aid": "1ZHK8PNc", + "index": 780540, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483289.A.5E6.html", + "title": "R: [問卦] 學生時期要不要辦信用卡(線上等" + }, + { + "aid": "1ZHKAu-J", + "index": 780541, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483448.A.F93.html", + "title": "R: [問卦] 按摩師傅很白目說人腎虧怎麼辦???" + }, + { + "aid": "1ZHKB64P", + "index": 780542, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483462.A.119.html", + "title": "R: [新聞] 疫苗證明取代「0+7」? 薛瑞元:卡在是" + }, + { + "aid": "1ZHKC15e", + "index": 780543, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483521.A.168.html", + "title": "[新聞] 台股狂跌500餘點 金管會宣布擴大限空令" + }, + { + "aid": "1ZHKCMx4", + "index": 780544, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483542.A.EC4.html", + "title": "[問卦] 現實有另一半,遊戲還能網戀嗎?" + }, + { + "aid": "1ZHKCqvp", + "index": 780545, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483572.A.E73.html", + "title": "R: [問卦] 南韓有知名閃兵仔嗎" + }, + { + "aid": "1ZHKF-rd", + "index": 780546, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483774.A.D67.html", + "title": "R: [新聞] 疫苗證明取代「0+7」? 薛瑞元:卡在是" + }, + { + "aid": "1ZHKGz4t", + "index": 780547, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483837.A.137.html", + "title": "[問卦] 日本JK單獨看還好,一整群就會覺得很香?" + }, + { + "aid": "1ZHKHUR9", + "index": 780548, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483870.A.6C9.html", + "title": "[問卦] 台積電明年甚至後年還能生出先進製程嗎?" + }, + { + "aid": "1ZHKIDRR", + "index": 780549, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483917.A.6DB.html", + "title": "R: [新聞] 台股狂跌500餘點 金管會宣布擴大限空令" + }, + { + "aid": "1ZHKIFcA", + "index": 780550, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665483919.A.98A.html", + "title": "[問卦] 曾經哈台的國家有哪些?" + }, + { + "aid": "1ZHKL2p7", + "index": 780551, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484098.A.CC7.html", + "title": "R: [新聞] 休假遇病患休克!醫師國道飆時速161趕救" + }, + { + "aid": "1ZHKL4aM", + "index": 780552, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484100.A.916.html", + "title": "[新聞] 晚2小時出生「多當8個月兵」元旦寶寶哭了" + }, + { + "aid": "1ZHKLYfw", + "index": 780553, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484130.A.A7A.html", + "title": "[新聞] 台灣邊境開放倒數 具價格優勢吸引越南旅" + }, + { + "aid": "1ZHKLi9G", + "index": 780554, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484140.A.250.html", + "title": "[問卦] 不讓我的眼淚陪我過夜?" + }, + { + "aid": "1ZHKM1GM", + "index": 780555, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484161.A.416.html", + "title": "R: [問卦] Google公車資訊準嗎" + }, + { + "aid": "1ZHKM6w9", + "index": 780556, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484166.A.E89.html", + "title": "[問卦] 柯震東入圍金馬獎最佳新導演" + }, + { + "aid": "1ZHKMkWs", + "index": 780558, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484206.A.836.html", + "title": "R: [問卦] 台灣那麼哈日 怎麼食品包裝都不抄?" + }, + { + "aid": "1ZHKO2RM", + "index": 780559, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484290.A.6D6.html", + "title": "R: [新聞] 綠轟謝國樑涉洗錢、金流神祕 蔡適應:" + }, + { + "aid": "1ZHKOPOI", + "index": 780560, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484313.A.612.html", + "title": "[新聞] 許淑華論文涉抄襲案 逢甲大學審定結果出" + }, + { + "aid": "1ZHKOXSK", + "index": 780561, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484321.A.714.html", + "title": "[問卦] 去教父牛排要怎麼點才專業" + }, + { + "aid": "1ZHKOy2Y", + "index": 780562, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484348.A.0A2.html", + "title": "R: [新聞] 普丁重大恥辱!生日隔天「克里米亞大橋被" + }, + { + "aid": "1ZHKSjhm", + "index": 780563, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484589.A.AF0.html", + "title": "[新聞] 新台幣大貶1.99角 央行盤中砸10億美元阻" + }, + { + "aid": "1ZHKT1SJ", + "index": 780564, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484609.A.713.html", + "title": "[問卦] 明天跟老闆提加薪有機會嗎" + }, + { + "aid": "1ZHKUMxY", + "index": 780565, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484694.A.EE2.html", + "title": "[問卦] 洗牙之類的技能需要六年牙醫訓練嗎" + }, + { + "aid": "1ZHKW9LO", + "index": 780566, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484809.A.558.html", + "title": "[新聞] 被誤會去黃珊珊的場子 王世堅:陳時中有打" + }, + { + "aid": "1ZHKW9jP", + "index": 780567, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484809.A.B59.html", + "title": "[問卦] 被說老了別人不會租房給你要怎麼回!" + }, + { + "aid": "1ZHKWW2G", + "index": 780568, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484832.A.090.html", + "title": "[新聞] 曝高虹安拿公費爽玩國外 牙醫診所被洗一" + }, + { + "aid": "1ZHKXaLL", + "index": 780569, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484900.A.555.html", + "title": "[問卦] 水豚君頭上被放橘子的時候都在想什麼?" + }, + { + "aid": "1ZHKYO_F", + "index": 780570, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665484952.A.FCF.html", + "title": "[問卦] 大埔鐵板燒店員問我要不要加菜什麼意思" + }, + { + "aid": "1ZHKZcIN", + "index": 780571, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665485030.A.497.html", + "title": "[問卦] 為什麼超商店員不請外勞" + }, + { + "aid": "1ZHKa7XC", + "index": 780572, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665485063.A.84C.html", + "title": "[新聞] 屏東潮州高中上演格鬥賽 學長學弟在合作" + }, + { + "aid": "1ZHKcIXQ", + "index": 780573, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665485202.A.85A.html", + "title": "[問卦] 等台灣芯片技術輸美,這糞島就沒用了吧?" + }, + { + "aid": "1ZHKcdwo", + "index": 780574, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665485223.A.EB2.html", + "title": "[問卦] 現在還缺電嗎?" + }, + { + "aid": "1ZHKeiXK", + "index": 780575, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665485356.A.854.html", + "title": "[問卦] 滿手股票的人現在在想什麼啊?" + }, + { + "aid": "1ZHKfLX2", + "index": 780577, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665485397.A.842.html", + "title": "R: [問卦] 洗牙之類的技能需要六年牙醫訓練嗎" + }, + { + "aid": "1ZHKfVVi", + "index": 780578, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665485407.A.7EC.html", + "title": "[問卦] 台灣人是有機的半有機還是化學的" + }, + { + "aid": "1ZHKhS4S", + "index": 780579, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665485532.A.11C.html", + "title": "[問卦] 為什麼不請外勞當保全?" + }, + { + "aid": "1ZHKkriW", + "index": 780580, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665485749.A.B20.html", + "title": "[新聞] 紫渝勁敵出現!她被封「最美里長參選人…" + }, + { + "aid": "1ZHKlEyo", + "index": 780581, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665485774.A.F32.html", + "title": "[問卦] 請問想約女同事又怕被打槍怎辦?" + }, + { + "aid": "1ZHKoYOH", + "index": 780582, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665485986.A.611.html", + "title": "R: [問卦] 去教父牛排要怎麼點才專業" + }, + { + "aid": "1ZHKotTx", + "index": 780583, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486007.A.77B.html", + "title": "[新聞]南投議長何勝豐論文涉抄襲未出席學倫會 亞" + }, + { + "aid": "1ZHKpiN1", + "index": 780584, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486060.A.5C1.html", + "title": "[問卦] 如果邀請金城武拍臺灣觀光局廣告?" + }, + { + "aid": "1ZHKpoNQ", + "index": 780585, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486066.A.5DA.html", + "title": "[新聞] 獨/「2022新北耶誕城」主題、日期曝光" + }, + { + "aid": "1ZHKqGwq", + "index": 780586, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486096.A.EB4.html", + "title": "[問卦] 台南騎車到嘉義爆幹遠的八卦?" + }, + { + "aid": "1ZHKqpyT", + "index": 780587, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486131.A.F1D.html", + "title": "[問卦] 憾!!!PttChrome快要不能用了" + }, + { + "aid": "1ZHKqu39", + "index": 780588, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486136.A.0C9.html", + "title": "[問卦] 幹,只會要求男生當兵,台女勒?" + }, + { + "aid": "1ZHKrRiJ", + "index": 780589, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486171.A.B13.html", + "title": "[問卦] 日本恥文化韓國恨文化台灣?" + }, + { + "aid": "1ZHKsZyC", + "index": 780590, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486243.A.F0C.html", + "title": "[問卦] 不會餐桌禮儀會被看不起嗎" + }, + { + "aid": "1ZHKseE8", + "index": 780591, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486248.A.388.html", + "title": "[新聞] 健美女網紅COS成「最壯彌豆子」肌肉炸裂" + }, + { + "aid": "1ZHKtcFG", + "index": 780592, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486310.A.3D0.html", + "title": "[新聞] 三立民調苗栗選情!鍾東錦支持度領先、" + }, + { + "aid": "1ZHKusAU", + "index": 780593, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486390.A.29E.html", + "title": "[新聞] 臭歸剛欸!誇張運豬車屎尿一路瀉 雲林" + }, + { + "aid": "1ZHKvPBk", + "index": 780595, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486425.A.2EE.html", + "title": "R: [問卦] 滿手股票的人現在在想什麼啊?" + }, + { + "aid": "1ZHKvvWh", + "index": 780596, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486457.A.82B.html", + "title": "[新聞] 歐洲備援電力系統不足,電信公司擔憂停電" + }, + { + "aid": "1ZHK-jru", + "index": 780597, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486765.A.D78.html", + "title": "R: [新聞] 台股狂跌500餘點 金管會宣布擴大限空令" + }, + { + "aid": "1ZHK--ul", + "index": 780598, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486782.A.E2F.html", + "title": "[轉錄] 台灣兵員數太少,不足以抗衡中國" + }, + { + "aid": "1ZHK_YAm", + "index": 780599, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486818.A.2B0.html", + "title": "[新聞]盧秀燕合體高虹安「十指緊扣」柯建銘︰怎" + }, + { + "aid": "1ZHK_iKd", + "index": 780600, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486828.A.527.html", + "title": "[問卦] 朋友找我去蘇里南賣魚 去嗎?" + }, + { + "aid": "1ZHL04QU", + "index": 780601, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486852.A.69E.html", + "title": "[問卦] 到底誰是陳子豪???" + }, + { + "aid": "1ZHL0Ix0", + "index": 780602, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486866.A.EC0.html", + "title": "[問卦] 新竹空軍基地戰機一直飛= =?" + }, + { + "aid": "1ZHL1WY6", + "index": 780603, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486944.A.886.html", + "title": "[問卦] 萬一把社長的女兒把走了怎麼辦" + }, + { + "aid": "1ZHL1a2C", + "index": 780604, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665486948.A.08C.html", + "title": "[問卦] 台北的天空有甚麼東西?" + }, + { + "aid": "1ZHL2TMX", + "index": 780605, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487005.A.5A1.html", + "title": "[問卦] 機車大燈自己拆可行嗎" + }, + { + "aid": "1ZHL2XIU", + "index": 780606, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487009.A.49E.html", + "title": "R: [問卦] 橘高校是負面榜樣吧...3點下課玩社團" + }, + { + "aid": "1ZHL2nWA", + "index": 780607, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487025.A.80A.html", + "title": "[新聞] 美女主播國慶才洩W深溝 凌晨5.9地震被嚇" + }, + { + "aid": "1ZHL3Tfi", + "index": 780608, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487069.A.A6C.html", + "title": "R: [新聞] 台股狂跌500餘點 金管會宣布擴大限空令" + }, + { + "aid": "1ZHL5JoH", + "index": 780609, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487187.A.C91.html", + "title": "R: [新聞] 新台幣大貶1.99角 央行盤中砸10億美元阻" + }, + { + "aid": "1ZHL7Ea2", + "index": 780610, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487310.A.902.html", + "title": "[新聞] 歡迎「8+9、屁孩」應徵 超狂布條" + }, + { + "aid": "1ZHL7ucL", + "index": 780611, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487352.A.995.html", + "title": "[問卦] 每天加班到晚上八點是什麼樣的人生?" + }, + { + "aid": "1ZHL8CC8", + "index": 780612, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487372.A.308.html", + "title": "R: [問卦] 不會餐桌禮儀會被看不起嗎" + }, + { + "aid": "1ZHL8uZ4", + "index": 780613, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487416.A.8C4.html", + "title": "[問卦] 中山站妹子跟我揮手對我笑什麼意思?" + }, + { + "aid": "1ZHLA8at", + "index": 780614, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487496.A.937.html", + "title": "[新聞] 蔣萬安批護航高端 蘇貞昌反擊:你2年前主" + }, + { + "aid": "1ZHLAl8w", + "index": 780615, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487535.A.23A.html", + "title": "[新聞] 日本首相:支持央行超寬鬆政策 直到薪資" + }, + { + "aid": "1ZHLArb8", + "index": 780616, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487541.A.948.html", + "title": "[問卦] 肥宅可以如何感謝橘色惡魔妹妹" + }, + { + "aid": "1ZHLBd-d", + "index": 780617, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487591.A.FA7.html", + "title": "[新聞] 高虹安仇恨值高?梁文傑:她思考路線跟" + }, + { + "aid": "1ZHLBnFa", + "index": 780618, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487601.A.3E4.html", + "title": "R: [新聞] 黃珊珊動怒「怎不討論蔣孝嚴站台?」 蔣" + }, + { + "aid": "1ZHLCo1M", + "index": 780619, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487666.A.056.html", + "title": "[問卦] 鄭成功跟鄭經 怎麼不蓋豪華王宮?" + }, + { + "aid": "1ZHLDDJW", + "index": 780620, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487693.A.4E0.html", + "title": "R: [問卦] 說到業界良心 大家第一個想到誰?" + }, + { + "aid": "1ZHLDWpY", + "index": 780621, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487712.A.CE2.html", + "title": "[問卦] 這樣是被女同事默許看奶了嗎" + }, + { + "aid": "1ZHLEVVU", + "index": 780622, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487775.A.7DE.html", + "title": "[問卦] 全聯的紙箱怎麼都被搶光了" + }, + { + "aid": "1ZHLF60W", + "index": 780623, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487814.A.020.html", + "title": "[新聞] 復興航空內線交易案 百順旅行社負責人無" + }, + { + "aid": "1ZHLFXld", + "index": 780625, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487841.A.BE7.html", + "title": "R: [新聞] 屏東潮州高中上演格鬥賽 學長學弟在合作" + }, + { + "aid": "1ZHLHlQG", + "index": 780626, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665487983.A.690.html", + "title": "R: [問卦] 日本恥文化韓國恨文化台灣?" + }, + { + "aid": "1ZHLIInU", + "index": 780627, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488018.A.C5E.html", + "title": "[問卦] 有沒有藍色惡魔的八卦(圖" + }, + { + "aid": "1ZHLIfG8", + "index": 780628, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488041.A.408.html", + "title": "[問卦] 人太多為何還要引進40萬外勞?" + }, + { + "aid": "1ZHLIkZO", + "index": 780629, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488046.A.8D8.html", + "title": "[問卦] 扣子掉了不會補要花多少錢" + }, + { + "aid": "1ZHLJFD6", + "index": 780630, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488079.A.346.html", + "title": "[問卦] 有人知道阿勞的香水是哪款嗎?" + }, + { + "aid": "1ZHLK5JI", + "index": 780631, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488133.A.4D2.html", + "title": "R: [問卦] 為什麼七年級,會這麼愛抱怨?" + }, + { + "aid": "1ZHLKpCb", + "index": 780632, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488179.A.325.html", + "title": "[問卦] 如果美國cpi開出來還是高怎麼辦" + }, + { + "aid": "1ZHLMBXr", + "index": 780633, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488267.A.875.html", + "title": "[問卦] 嘉義這地方有什麼發展性嗎?" + }, + { + "aid": "1ZHLRmeV", + "index": 780634, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488624.A.A1F.html", + "title": "R: [問卦] 嘉義這地方有什麼發展性嗎?" + }, + { + "aid": "1ZHLRtst", + "index": 780635, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488631.A.DB7.html", + "title": "R: [新聞] 紫渝勁敵出現!她被封「最美里長參選人…" + }, + { + "aid": "1ZHLRy04", + "index": 780636, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488636.A.004.html", + "title": "[新聞] 走不出ISIS恐攻創傷 比利時女獲准「安樂" + }, + { + "aid": "1ZHLTKz0", + "index": 780637, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488724.A.F40.html", + "title": "[新聞] 林佳龍被疑開芭樂票 呂家愷:母雞神隱小" + }, + { + "aid": "1ZHLTLKG", + "index": 780638, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488725.A.510.html", + "title": "[問卦] 現在買股票根本送分題吧" + }, + { + "aid": "1ZHLT_wE", + "index": 780639, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488767.A.E8E.html", + "title": "[問卦] 騎車開車至今沒出過事故的人有什麼特質?" + }, + { + "aid": "1ZHLUgcL", + "index": 780640, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488810.A.995.html", + "title": "[問卦] 新竹 自助餐 多少錢" + }, + { + "aid": "1ZHLVZKK", + "index": 780641, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488867.A.514.html", + "title": "R: [問卦] 機車大燈自己拆可行嗎" + }, + { + "aid": "1ZHLWe4b", + "index": 780642, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488936.A.125.html", + "title": "[問卦] 這麼冷 女同事穿這麼短 要怎幫他保暖?" + }, + { + "aid": "1ZHLWg7O", + "index": 780643, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488938.A.1D8.html", + "title": "R: [問卦] 幹,只會要求男生當兵,台女勒?" + }, + { + "aid": "1ZHLX9lK", + "index": 780644, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488969.A.BD4.html", + "title": "[新聞] 薪貧族「月底吃土」逼800萬人!近3" + }, + { + "aid": "1ZHLXC6b", + "index": 780645, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665488972.A.1A5.html", + "title": "R: [新聞] 被誤會去黃珊珊的場子 王世堅:陳時中有打" + }, + { + "aid": "1ZHLZciB", + "index": 780646, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665489126.A.B0B.html", + "title": "[問卦] 大清帝國怎麼做才能打贏中華民國?" + }, + { + "aid": "1ZHLd7R6", + "index": 780647, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665489351.A.6C6.html", + "title": "[問卦] 台灣遊樂園中最好玩的是哪一個?" + }, + { + "aid": "1ZHLe6e-", + "index": 780648, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665489414.A.A3E.html", + "title": "[問卦] 覺得0卡可樂好喝的都是什麼人?" + }, + { + "aid": "1ZHLe6bC", + "index": 780649, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665489414.A.94C.html", + "title": "[問卦] 一張圖跟新手解釋爬山迷路不要下探溪谷" + }, + { + "aid": "1ZHLgjoM", + "index": 780650, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665489581.A.C96.html", + "title": "R: [問卦] 大清帝國怎麼做才能打贏中華民國?" + }, + { + "aid": "1ZHLhIGx", + "index": 780651, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665489618.A.43B.html", + "title": "[新聞] 「晴天娃娃屋」求售!特註明已處理乾淨" + }, + { + "aid": "1ZHLibF4", + "index": 780652, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665489701.A.3C4.html", + "title": "R: [新聞] 台股狂跌500餘點 金管會宣布擴大限空令" + }, + { + "aid": "1ZHLj4dc", + "index": 780653, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665489732.A.9E6.html", + "title": "[問卦] 新!氣功炮!!!" + }, + { + "aid": "1ZHLjcZv", + "index": 780654, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665489766.A.8F9.html", + "title": "R: [問卦] 人太多為何還要引進40萬外勞?" + }, + { + "aid": "1ZHLkYJl", + "index": 780655, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665489826.A.4EF.html", + "title": "[新聞] 許淑華暫保逢甲碩士學位 蔡培慧:內容…" + }, + { + "aid": "1ZHLl89E", + "index": 780656, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665489864.A.24E.html", + "title": "[問卦] 這是什麼口味的奶酪?" + }, + { + "aid": "1ZHLnoSG", + "index": 780657, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490034.A.710.html", + "title": "[問卦] 沒有做愛的人生是黑白的嗎?" + }, + { + "aid": "1ZHLq1nK", + "index": 780658, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490177.A.C54.html", + "title": "[問卦] 高中生交女朋友會影響到課業嗎???" + }, + { + "aid": "1ZHLrHEu", + "index": 780659, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490257.A.3B8.html", + "title": "[問卦] 幹你媽高速公路車就很多逼車逼殺小啊?" + }, + { + "aid": "1ZHLrr-j", + "index": 780660, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490293.A.FAD.html", + "title": "[問卦] 多力多滋可以當主食吧?" + }, + { + "aid": "1ZHLuKpJ", + "index": 780661, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490452.A.CD3.html", + "title": "R: [問卦] 每天加班到晚上八點是什麼樣的人生?" + }, + { + "aid": "1ZHLuVJZ", + "index": 780662, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490463.A.4E3.html", + "title": "[新聞] 台積電為何是護國神山?前工程師揭密「…" + }, + { + "aid": "1ZHLvKIl", + "index": 780663, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490516.A.4AF.html", + "title": "[問卦] 有沒有檳榔的八卦" + }, + { + "aid": "1ZHLvcB6", + "index": 780664, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490534.A.2C6.html", + "title": "[問卦] 台灣有甚麼是可以在他國國慶上表演的?" + }, + { + "aid": "1ZHLxmHN", + "index": 780665, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490672.A.457.html", + "title": "[新聞] 被問是否還被大陸已讀不回 邱太三:有低" + }, + { + "aid": "1ZHLx_xO", + "index": 780666, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490687.A.ED8.html", + "title": "[問卦] 被拔掉兩個碩士學位很難嗎?是紀錄嗎?" + }, + { + "aid": "1ZHLyVyX", + "index": 780667, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490719.A.F21.html", + "title": "R: [問卦] 騎車開車至今沒出過事故的人有什麼特質?" + }, + { + "aid": "1ZHL-CKE", + "index": 780668, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490828.A.50E.html", + "title": "R: [問卦] 高中生有女朋友會影響到課業嗎???" + }, + { + "aid": "1ZHL_yJG", + "index": 780669, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490940.A.4D0.html", + "title": "[新聞] Q3全台推案量創新高 新竹房價狂漲66%" + }, + { + "aid": "1ZHM0HK_", + "index": 780670, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665490961.A.53F.html", + "title": "R: [問卦] 覺得0卡可樂好喝的都是什麼人?" + }, + { + "aid": "1ZHM14oe", + "index": 780671, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491012.A.CA8.html", + "title": "[問卦] 菲律賓人問 為啥台灣每天幾萬人確診?" + }, + { + "aid": "1ZHM4kyt", + "index": 780672, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491246.A.F37.html", + "title": "[問卦] 有在公園保暖的方法嗎?" + }, + { + "aid": "1ZHM5s6U", + "index": 780673, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491318.A.19E.html", + "title": "[問卦] 只要是人是不是就喜歡爭功諉過?" + }, + { + "aid": "1ZHM7oeN", + "index": 780674, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491442.A.A17.html", + "title": "[問卦] 武打動作帥的演員?" + }, + { + "aid": "1ZHM7pY_", + "index": 780675, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491443.A.8BF.html", + "title": "R: [問卦] 看書先看109頁" + }, + { + "aid": "1ZHM8GxC", + "index": 780676, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491472.A.ECC.html", + "title": "[新聞] 北區競總22日與韓國瑜合體? 張善政:適" + }, + { + "aid": "1ZHM8KtG", + "index": 780677, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491476.A.DD0.html", + "title": "[新聞] 彰化鹿港福靈宮違建惹議 縣府尊重民間信" + }, + { + "aid": "1ZHM8s58", + "index": 780678, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491510.A.148.html", + "title": "R: [新聞] 三立民調苗栗選情!鍾東錦支持度領先、" + }, + { + "aid": "1ZHMAFzE", + "index": 780679, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491599.A.F4E.html", + "title": "[問卦] 12682還會見面嗎" + }, + { + "aid": "1ZHMB2QY", + "index": 780680, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491650.A.6A2.html", + "title": "[問卦] 如果一開始就跟病毒共存 現在會怎樣?" + }, + { + "aid": "1ZHMCg74", + "index": 780681, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491754.A.1C4.html", + "title": "[問卦] 候選人很愛提營養午餐免費的政見= =" + }, + { + "aid": "1ZHMCp76", + "index": 780682, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491763.A.1C6.html", + "title": "[新聞] 前議員兒親抓通緝犯!大馬歌手「躲摩鐵吸" + }, + { + "aid": "1ZHMDdrL", + "index": 780683, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491815.A.D55.html", + "title": "[問卦] 鄰居在外面打架怎麼辦???" + }, + { + "aid": "1ZHMDj8E", + "index": 780684, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491821.A.20E.html", + "title": "[問卦] 大家以前都怎麼跟社團學姐互動?" + }, + { + "aid": "1ZHMECqk", + "index": 780685, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491852.A.D2E.html", + "title": "R: [新聞] 許淑華暫保逢甲碩士學位 蔡培慧:內容…" + }, + { + "aid": "1ZHMFYqm", + "index": 780686, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491938.A.D30.html", + "title": "R: [問卦]沒人發現台北女子圖鑑是反女權嗎!" + }, + { + "aid": "1ZHMFpgj", + "index": 780687, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491955.A.AAD.html", + "title": "[問卦] 女孩兒都不需要繫皮帶?" + }, + { + "aid": "1ZHMFtJ5", + "index": 780688, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665491959.A.4C5.html", + "title": "R: [問卦] 覺得0卡可樂好喝的都是什麼人?" + }, + { + "aid": "1ZHMH9Mg", + "index": 780689, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492041.A.5AA.html", + "title": "[新聞] 悲傷雙十連假!台中母子赴埔里旅遊 意外" + }, + { + "aid": "1ZHMHzSx", + "index": 780690, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492093.A.73B.html", + "title": "[問卦] 現在應該去槓桿還是加槓桿?" + }, + { + "aid": "1ZHMH-Ra", + "index": 780691, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492094.A.6E4.html", + "title": "[問卦] 有沒有現在回來要隔離到十五號" + }, + { + "aid": "1ZHMIn3h", + "index": 780692, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492145.A.0EB.html", + "title": "[問卦] 股市跟房價哪個腰斬會比較慘" + }, + { + "aid": "1ZHMJ1TL", + "index": 780693, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492161.A.755.html", + "title": "[問卦] 二頭彎舉能6kg8下算是有在練了嗎" + }, + { + "aid": "1ZHMJssQ", + "index": 780694, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492214.A.D9A.html", + "title": "[新聞] 無懼中國威脅!烏克蘭議員宣布月底訪台:" + }, + { + "aid": "1ZHMKpu-", + "index": 780695, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492275.A.E3E.html", + "title": "[問卦] 有沒有什麼一定要用腳踩過的食物、飲料" + }, + { + "aid": "1ZHMNEG6", + "index": 780696, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492430.A.406.html", + "title": "R: [問卦] 橘高校是負面榜樣吧...3點下課玩社團" + }, + { + "aid": "1ZHMNHoS", + "index": 780697, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492433.A.C9C.html", + "title": "[新聞] 長新冠「腸道微生態」失衡 港中大研究:" + }, + { + "aid": "1ZHMOWYk", + "index": 780698, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492512.A.8AE.html", + "title": "[新聞] 山西永濟市承認當地沒疫情也「封城」" + }, + { + "aid": "1ZHMOmTF", + "index": 780699, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492528.A.74F.html", + "title": "R: [新聞] 許淑華暫保逢甲碩士學位 蔡培慧:內容…" + }, + { + "aid": "1ZHMOtVc", + "index": 780700, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492535.A.7E6.html", + "title": "[新聞] 女星曝福原愛私下暖舉「試圖挽救名聲」" + }, + { + "aid": "1ZHMPFJ2", + "index": 780701, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492559.A.4C2.html", + "title": "[問卦] 18619會是下個10年的12682嗎?" + }, + { + "aid": "1ZHMR1U7", + "index": 780702, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492673.A.787.html", + "title": "[問卦] 都快2024了居住正義、房市三箭射去哪??" + }, + { + "aid": "1ZHMSAwQ", + "index": 780703, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492746.A.E9A.html", + "title": "[問卦] 第一憨插甘蔗去給會社磅 ,第二憨是什麼" + }, + { + "aid": "1ZHMSDYO", + "index": 780704, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492749.A.898.html", + "title": "[問卦] 紅茶店曾漲到1300,gg只有680,卦?" + }, + { + "aid": "1ZHMT_Fm", + "index": 780705, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492863.A.3F0.html", + "title": "[問卦] 為啥以前午休趴睡有時會抖一下驚醒?" + }, + { + "aid": "1ZHMUujf", + "index": 780706, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492920.A.B69.html", + "title": "R: [問卦] 為什麼超商店員不請外勞" + }, + { + "aid": "1ZHMV745", + "index": 780707, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492935.A.105.html", + "title": "R: [問卦] 大清帝國怎麼做才能打贏中華民國?" + }, + { + "aid": "1ZHMVCeC", + "index": 780708, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492940.A.A0C.html", + "title": "[新聞] 陳時中:有安倍晉三做靠山 日本贈420萬劑" + }, + { + "aid": "1ZHMW7fc", + "index": 780709, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665492999.A.A66.html", + "title": "[問卦]新詩---「日蝕」,寫的如何?請指教..." + }, + { + "aid": "1ZHMZA8V", + "index": 780710, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493194.A.21F.html", + "title": "[問卦] 台股大跌,那個700億勞退基金?" + }, + { + "aid": "1ZHMaKrh", + "index": 780712, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493268.A.D6B.html", + "title": "[問卦] 為什麼不徵招外勞當兵就好?" + }, + { + "aid": "1ZHMaRXe", + "index": 780713, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493275.A.868.html", + "title": "[問卦] 台灣根本不缺電吧??" + }, + { + "aid": "1ZHMbQ9A", + "index": 780714, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493338.A.24A.html", + "title": "[新聞] 快訊/新北男闖入山佳派出所襲警 27歲" + }, + { + "aid": "1ZHMbv0v", + "index": 780715, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493369.A.039.html", + "title": "[問卦] 進擊的巨人最終季.." + }, + { + "aid": "1ZHMcRFP", + "index": 780716, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493403.A.3D9.html", + "title": "R: [問卦] 嘉義這地方有什麼發展性嗎?" + }, + { + "aid": "1ZHMdrxf", + "index": 780717, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493493.A.EE9.html", + "title": "[問卦] ptt信箱不清理會怎樣?" + }, + { + "aid": "1ZHMdt3w", + "index": 780718, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493495.A.0FA.html", + "title": "[問卦] 不想當兵?生小孩呀!" + }, + { + "aid": "1ZHMeDMP", + "index": 780719, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493517.A.599.html", + "title": "[問卦] DEA到底強不強?" + }, + { + "aid": "1ZHMeq2p", + "index": 780720, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493556.A.0B3.html", + "title": "[問卦] 情侶一起外送的是不是特別白癡?" + }, + { + "aid": "1ZHMexx_", + "index": 780721, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493563.A.EFF.html", + "title": "R: [問卦] 都快2024了居住正義、房市三箭射去哪??" + }, + { + "aid": "1ZHMhAT6", + "index": 780723, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493706.A.746.html", + "title": "[問卦] 萬物皆漲 就罰單沒漲其實很佛心吧??" + }, + { + "aid": "1ZHMieUf", + "index": 780724, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493800.A.7A9.html", + "title": "[新聞] 男友進科技業變了人!硬來怪她沒反應想" + }, + { + "aid": "1ZHMj8lv", + "index": 780725, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493832.A.BF9.html", + "title": "[新聞] 英超》薩卡雙響、馬丁內利傳射 兵工廠3-" + }, + { + "aid": "1ZHMjAGm", + "index": 780726, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493834.A.430.html", + "title": "[新聞] 搶先道歉沒用!「選舉專組」查辦 周玉蔻" + }, + { + "aid": "1ZHMjZO7", + "index": 780727, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493859.A.607.html", + "title": "R: [問卦] 股市跟房價哪個腰斬會比較慘" + }, + { + "aid": "1ZHMjqLf", + "index": 780728, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665493876.A.569.html", + "title": "[問卦] 炸物放到湯裡是正常的嗎" + }, + { + "aid": "1ZHMmPGP", + "index": 780729, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494041.A.419.html", + "title": "R: [問卦] 高中生有女朋友會影響到課業嗎???" + }, + { + "aid": "1ZHMniaX", + "index": 780730, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494124.A.921.html", + "title": "[新聞] 貓熊「團團」罹惡性腫瘤恐活不過半年?" + }, + { + "aid": "1ZHMnv0U", + "index": 780731, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494137.A.01E.html", + "title": "[問卦] 外勞是怎麼忍耐不吃狗肉的?" + }, + { + "aid": "1ZHMrOz_", + "index": 780732, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494360.A.F7F.html", + "title": "[問卦] 連續四年在南部放國慶煙火?怎那爽?" + }, + { + "aid": "1ZHMrzMg", + "index": 780733, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494397.A.5AA.html", + "title": "[問卦] 台灣何時開始看不到南韓車尾燈" + }, + { + "aid": "1ZHMsIKg", + "index": 780734, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494418.A.52A.html", + "title": "[問卦] 美國運通卡推薦嗎" + }, + { + "aid": "1ZHMtONx", + "index": 780735, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494488.A.5FB.html", + "title": "[問卦] 水卜さくら和羽 \b\b咲 みはる 共演!?" + }, + { + "aid": "1ZHMvug9", + "index": 780736, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494648.A.A89.html", + "title": "[新聞] 解決月經散赤 立委籲學校全面提供免費衛…" + }, + { + "aid": "1ZHMxcRg", + "index": 780737, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494758.A.6EA.html", + "title": "R: [問卦] 請問想約女同事又怕被打槍怎辦?" + }, + { + "aid": "1ZHMxsQc", + "index": 780738, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494774.A.6A6.html", + "title": "R: [問卦] 為什麼七年級,會這麼愛抱怨?" + }, + { + "aid": "1ZHMxuwl", + "index": 780739, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494776.A.EAF.html", + "title": "R: [問卦] 高中生有女朋友會影響到課業嗎???" + }, + { + "aid": "1ZHMyPa7", + "index": 780740, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494809.A.907.html", + "title": "[新聞] 出席北市府升旗挨批寄生 黃珊珊:每天喊" + }, + { + "aid": "1ZHMybSH", + "index": 780741, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494821.A.711.html", + "title": "R: [問卦] 菲律賓人問 為啥台灣每天幾萬人確診?" + }, + { + "aid": "1ZHMzRjY", + "index": 780742, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494875.A.B62.html", + "title": "[問卦] 為什麼台灣理組做得出晶片做不出引擎?" + }, + { + "aid": "1ZHMza0S", + "index": 780743, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665494884.A.01C.html", + "title": "[問卦] 有IG推薦搜尋一堆蛇的八卦嗎" + }, + { + "aid": "1ZHN0Hty", + "index": 780744, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495057.A.DFC.html", + "title": "[問卦] 獵人連載再開該開心還難過啊?" + }, + { + "aid": "1ZHN0ulZ", + "index": 780745, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495096.A.BE3.html", + "title": "R: [新聞] 遲緩生遭痛毆!霸凌者囂張對話曝 基隆" + }, + { + "aid": "1ZHN34kh", + "index": 780746, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495236.A.BAB.html", + "title": "[問卦] 梁家輝電影神作是哪部?" + }, + { + "aid": "1ZHN6CEr", + "index": 780747, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495436.A.3B5.html", + "title": "R: [問卦] 有在公園保暖的方法嗎?" + }, + { + "aid": "1ZHN6L83", + "index": 780748, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495445.A.203.html", + "title": "[問卦] 店員裙子夾住了 該說嗎?" + }, + { + "aid": "1ZHN6dOM", + "index": 780749, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495463.A.616.html", + "title": "[新聞] 小孩尖叫管不動!星國餐廳規定「加收220…" + }, + { + "aid": "1ZHN6sIH", + "index": 780750, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495478.A.491.html", + "title": "R: [問卦] 紅茶店曾漲到1300,gg只有680,卦?" + }, + { + "aid": "1ZHN7kLv", + "index": 780751, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495534.A.579.html", + "title": "R: [問卦] 股市跟房價哪個腰斬會比較慘" + }, + { + "aid": "1ZHN8Ypw", + "index": 780752, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495586.A.CFA.html", + "title": "R: [問卦] 高中生有女朋友會影響到課業嗎???" + }, + { + "aid": "1ZHN9P6G", + "index": 780753, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495641.A.190.html", + "title": "[新聞] 三重警抓錯人綠營批治安堪憂 新北市警局" + }, + { + "aid": "1ZHNBON_", + "index": 780754, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495768.A.5FF.html", + "title": "[問卦] 俄羅斯宣布臉書META是恐怖份子(最新消息)" + }, + { + "aid": "1ZHNBjL9", + "index": 780755, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495789.A.549.html", + "title": "[問卦] 為啥app上外勞都不太理我?" + }, + { + "aid": "1ZHNEwW5", + "index": 780757, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665495994.A.805.html", + "title": "R: [新聞] 國境解封飯店鬧人力荒 勞部揭因:基層起" + }, + { + "aid": "1ZHNG6Tn", + "index": 780758, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496070.A.771.html", + "title": "[問卦] 大家準備搶明天的GG禮包了嗎" + }, + { + "aid": "1ZHNGIRq", + "index": 780759, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496082.A.6F4.html", + "title": "[新聞] 藍白合?盧秀燕、高虹安互動熱烈 柯建銘" + }, + { + "aid": "1ZHNGqed", + "index": 780760, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496116.A.A27.html", + "title": "[問卦] 開放外勞吃野狗會發生什麼事" + }, + { + "aid": "1ZHNHQhI", + "index": 780761, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496154.A.AD2.html", + "title": "[問卦] 辣哭天Girls誰最正啊?" + }, + { + "aid": "1ZHNILWU", + "index": 780762, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496213.A.81E.html", + "title": "R: [問卦] 覺得0卡可樂好喝的都是什麼人?" + }, + { + "aid": "1ZHNIMDu", + "index": 780763, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496214.A.378.html", + "title": "[問卦] 土地公托夢說台積電會大漲的卦" + }, + { + "aid": "1ZHNIp53", + "index": 780764, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496243.A.143.html", + "title": "[問卦] 黃家駒的歌曲神作是哪一首?" + }, + { + "aid": "1ZHNIr0P", + "index": 780765, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496245.A.019.html", + "title": "[新聞] 少子化壓力 國發會:盼每年新生兒15萬人" + }, + { + "aid": "1ZHNJVcI", + "index": 780766, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496287.A.992.html", + "title": "R: [新聞] 遲緩生遭痛毆!霸凌者囂張對話曝 基隆" + }, + { + "aid": "1ZHNJrnR", + "index": 780767, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496309.A.C5B.html", + "title": "[問卦] 哪裡吃得到美味蟹堡" + }, + { + "aid": "1ZHNKAQN", + "index": 780768, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496330.A.697.html", + "title": "R: [問卦] 台灣有甚麼是可以在他國國慶上表演的?" + }, + { + "aid": "1ZHNKFXm", + "index": 780769, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496335.A.870.html", + "title": "R: [問卦] 板橋人看到耶誕城在想什麼" + }, + { + "aid": "1ZHNKR3g", + "index": 780770, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496347.A.0EA.html", + "title": "[問卦] 有沒有10月11日的八卦?" + }, + { + "aid": "1ZHNLeDJ", + "index": 780771, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496424.A.353.html", + "title": "[新聞] 見加拿大國會議員 蔡英文:盼支持台灣加" + }, + { + "aid": "1ZHNMnlo", + "index": 780772, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496497.A.BF2.html", + "title": "[新聞] 「資產重分類」准了 南山人壽:淨值比可" + }, + { + "aid": "1ZHNNkGH", + "index": 780773, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496558.A.411.html", + "title": "[問卦] 美股今晚該飛天了吧?" + }, + { + "aid": "1ZHNOU2y", + "index": 780774, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496606.A.0BC.html", + "title": "R: [問卦] 為什麼七年級,會這麼愛抱怨?" + }, + { + "aid": "1ZHNOoS2", + "index": 780775, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496626.A.702.html", + "title": "[問卦] 洗學歷考上律師 卻被哥哥瞧不起:(" + }, + { + "aid": "1ZHNPIT9", + "index": 780776, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496658.A.749.html", + "title": "[問卦] 怎麼一堆人送石頭給玉石播主啊" + }, + { + "aid": "1ZHNPxSR", + "index": 780777, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496699.A.71B.html", + "title": "[新聞] 最新線索曝光!母遭國道彈飛鐵片重擊 女" + }, + { + "aid": "1ZHNQJyC", + "index": 780778, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496723.A.F0C.html", + "title": "R: [問卦] 板橋人看到耶誕城在想什麼" + }, + { + "aid": "1ZHNQRzn", + "index": 780779, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496731.A.F71.html", + "title": "[新聞]逾6成青年月收未達35K 民團籲訂最低工資法" + }, + { + "aid": "1ZHNQkVM", + "index": 780780, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496750.A.7D6.html", + "title": "[新聞] 打擊空方救市措施見效 金管會:外資借券" + }, + { + "aid": "1ZHNRMO6", + "index": 780781, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496790.A.606.html", + "title": "[問卦] 橘高校換成台灣銅學可以嗎" + }, + { + "aid": "1ZHNSZee", + "index": 780782, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496867.A.A28.html", + "title": "[問卦] 如果趙紫陽沒失勢中國現在會更猛嗎" + }, + { + "aid": "1ZHNS-we", + "index": 780783, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496894.A.EA8.html", + "title": "[新聞] 她肚子狂冒呱呱聲!醫照X光見「灌香腸」" + }, + { + "aid": "1ZHNUYXq", + "index": 780784, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665496994.A.874.html", + "title": "[問卦] 為什麼設計師都不PO我的造型到粉專" + }, + { + "aid": "1ZHNVKKi", + "index": 780785, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497044.A.52C.html", + "title": "[協尋] 國道3號 南下 約101K" + }, + { + "aid": "1ZHNVLE6", + "index": 780786, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497045.A.386.html", + "title": "R: [新聞] 疫苗證明取代「0+7」? 薛瑞元:卡在是" + }, + { + "aid": "1ZHNVqhK", + "index": 780787, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497076.A.AD4.html", + "title": "[新聞] 快訊/新北中和驚傳命案!男脖子、胸口多" + }, + { + "aid": "1ZHNWZyx", + "index": 780788, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497123.A.F3B.html", + "title": "[新聞] 不只垂直發射防空飛彈 海軍新型巡防艦將" + }, + { + "aid": "1ZHNXQQw", + "index": 780789, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497178.A.6BA.html", + "title": "[問卦] 體育老師借出的課?" + }, + { + "aid": "1ZHNY3aP", + "index": 780790, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497219.A.919.html", + "title": "[問卦] 福獅有辦法當高雄的吉祥物嗎" + }, + { + "aid": "1ZHNYAm7", + "index": 780791, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497226.A.C07.html", + "title": "[問卦] 淦!勞退去年賺的還不夠今年賠的?" + }, + { + "aid": "1ZHNatuE", + "index": 780792, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497399.A.E0E.html", + "title": "[問卦] 看到三姐弟共吃一碗麵,何解?" + }, + { + "aid": "1ZHNbKif", + "index": 780793, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497428.A.B29.html", + "title": "[問卦] 世界股市大跌難道是為了AGI GPT-4?" + }, + { + "aid": "1ZHNcsVc", + "index": 780794, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497526.A.7E6.html", + "title": "R: [問卦] 情侶一起外送的是不是特別白癡?" + }, + { + "aid": "1ZHNd5Qh", + "index": 780795, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497541.A.6AB.html", + "title": "[問卦] 賀一航有2個...內地也有一個" + }, + { + "aid": "1ZHNdykF", + "index": 780796, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497596.A.B8F.html", + "title": "[問卦] 欸欸Tg鎖下載怎咪辦==" + }, + { + "aid": "1ZHNd-fK", + "index": 780797, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497598.A.A54.html", + "title": "[爆卦] IMF預測台灣人均超過日本,義大利,韓國" + }, + { + "aid": "1ZHNfX3E", + "index": 780798, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497697.A.0CE.html", + "title": "[新聞] 批蔣萬安選戰應變對答不佳 柯文哲嘆:民…" + }, + { + "aid": "1ZHNfadJ", + "index": 780799, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497700.A.9D3.html", + "title": "[問卦] 台積電400元以下,大家真的敢接?" + }, + { + "aid": "1ZHNgFdq", + "index": 780800, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497743.A.9F4.html", + "title": "[新聞] NBA》追夢放話將離隊一段時間 勇士主帥:" + }, + { + "aid": "1ZHNgs8S", + "index": 780801, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497782.A.21C.html", + "title": "[問卦] 北一女中樂儀旗隊在想什麼?" + }, + { + "aid": "1ZHNhDT3", + "index": 780802, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497805.A.743.html", + "title": "[問卦] 竟還有人還沒把家裡的燈換成「感應式」?" + }, + { + "aid": "1ZHNieQR", + "index": 780803, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665497896.A.69B.html", + "title": "[問卦] 慟!明天GG要破400了" + }, + { + "aid": "1ZHNm27f", + "index": 780805, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498114.A.1E9.html", + "title": "[問卦] 散戶的真諦是甩!追!甩!追!甩!追!?" + }, + { + "aid": "1ZHNm9KN", + "index": 780806, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498121.A.517.html", + "title": "R: [問卦] 竟還有人還沒把家裡的燈換成「感應式」?" + }, + { + "aid": "1ZHNmHH0", + "index": 780807, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498129.A.440.html", + "title": "[問卦] 貓貓看空股市" + }, + { + "aid": "1ZHNnkOt", + "index": 780808, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498222.A.637.html", + "title": "[問卦] 男生生小孩為啥不能抵當兵" + }, + { + "aid": "1ZHNoVuV", + "index": 780809, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498271.A.E1F.html", + "title": "[新聞] 安平古堡改名「熱蘭遮堡」 台南人怒嗆文" + }, + { + "aid": "1ZHNrxZ_", + "index": 780811, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498491.A.8FF.html", + "title": "R: [新聞] 廢核時間不當 台電當冤大頭" + }, + { + "aid": "1ZHNsZUX", + "index": 780812, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498531.A.7A1.html", + "title": "R: [問卦] 台積電400元以下,大家真的敢接?" + }, + { + "aid": "1ZHNsxlQ", + "index": 780813, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498555.A.BDA.html", + "title": "[問卦] 喵喵唱歌真的都好聽嗎?" + }, + { + "aid": "1ZHNt4JQ", + "index": 780814, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498564.A.4DA.html", + "title": "[問卦] 高中生有男友會影響課業嗎?" + }, + { + "aid": "1ZHNtUzh", + "index": 780815, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498590.A.F6B.html", + "title": "[問卦] 所以婷婷的貓484真的生病?" + }, + { + "aid": "1ZHNtl24", + "index": 780816, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498607.A.084.html", + "title": "R: [爆卦] IMF預測台灣人均超過日本,義大利,韓國" + }, + { + "aid": "1ZHNuJqD", + "index": 780817, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498643.A.D0D.html", + "title": "[問卦] 女同事說要去相親??" + }, + { + "aid": "1ZHNuyLT", + "index": 780818, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498684.A.55D.html", + "title": "[新聞] 俄羅斯宣布:臉書母公司Meta是「恐怖份子" + }, + { + "aid": "1ZHNwXJ4", + "index": 780820, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665498785.A.4C4.html", + "title": "[問卦] 妹子跟我打賭說這不是大便" + }, + { + "aid": "1ZHN-D8s", + "index": 780823, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499021.A.236.html", + "title": "R: [新聞] 霸凌同學未受罰還說「老師人超好」 基隆" + }, + { + "aid": "1ZHN_6Qc", + "index": 780824, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499078.A.6A6.html", + "title": "R: [新聞] 遲緩生遭痛毆!霸凌者囂張對話曝 基隆" + }, + { + "aid": "1ZHN_6Z6", + "index": 780825, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499078.A.8C6.html", + "title": "[新聞] 盼增產原油不成 美國正「重新評估」與沙" + }, + { + "aid": "1ZHN_T9M", + "index": 780827, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499101.A.256.html", + "title": "R: [新聞] 安平古堡改名「熱蘭遮堡」 台南人怒嗆文" + }, + { + "aid": "1ZHN_Xto", + "index": 780828, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499105.A.DF2.html", + "title": "[問卦] 現在看人家戰 要改買什麼?" + }, + { + "aid": "1ZHO0HtO", + "index": 780829, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499153.A.DD8.html", + "title": "[新聞] 國慶焰火驚見「18禁圖案」?網狂想歪:" + }, + { + "aid": "1ZHO0f4v", + "index": 780830, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499177.A.139.html", + "title": "[問卦] 荷蘭人來台觀光都怎麼稱呼安平古堡??" + }, + { + "aid": "1ZHO1cDE", + "index": 780831, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499238.A.34E.html", + "title": "[問卦] 李銘順怎突然變得在台灣演藝圈曝光高阿?" + }, + { + "aid": "1ZHO2y1-", + "index": 780832, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499324.A.07E.html", + "title": "[問卦] 10年後是北一女還是橘高校過得比較好?" + }, + { + "aid": "1ZHO38ZB", + "index": 780833, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499336.A.8CB.html", + "title": "[新聞] 2024及2025年台灣燈會 台南、桃園舉辦" + }, + { + "aid": "1ZHO3A76", + "index": 780834, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499338.A.1C6.html", + "title": "R: [問卦] 新詩---「日蝕」,寫的如何?請指教..." + }, + { + "aid": "1ZHO3bMJ", + "index": 780835, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499365.A.593.html", + "title": "[新聞] 國泰世華當機補償出爐 民眾這5天ATM跨行…" + }, + { + "aid": "1ZHO3tUD", + "index": 780836, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499383.A.78D.html", + "title": "R: [問卦] 梁家輝電影神作是哪部?" + }, + { + "aid": "1ZHO6AH3", + "index": 780837, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499530.A.443.html", + "title": "R: [新聞] 霸凌同學未受罰還說「老師人超好」 基隆" + }, + { + "aid": "1ZHO78OW", + "index": 780838, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499592.A.620.html", + "title": "[問卦] 履歷表上專長可以寫讀稿嗎?" + }, + { + "aid": "1ZHO7IvR", + "index": 780839, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499602.A.E5B.html", + "title": "R: [爆卦] IMF預測台灣人均超過日本,義大利,韓國" + }, + { + "aid": "1ZHO82ih", + "index": 780840, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499650.A.B2B.html", + "title": "[問卦] 橘高校跳舞掉鞋子還繼續跳,是不是很敬業" + }, + { + "aid": "1ZHO9sv9", + "index": 780842, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499766.A.E49.html", + "title": "[問卦] 股票群組都不討論股票了" + }, + { + "aid": "1ZHOAFCf", + "index": 780843, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499791.A.329.html", + "title": "[問卦] 請問剛剛有地震嗎?" + }, + { + "aid": "1ZHOAGZw", + "index": 780844, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499792.A.8FA.html", + "title": "R: [爆卦] IMF預測台灣人均超過日本,義大利,韓國" + }, + { + "aid": "1ZHOATuv", + "index": 780845, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499805.A.E39.html", + "title": "[新聞] 美芯片禁令致北京跳腳 分析:正中中共軟肋" + }, + { + "aid": "1ZHOAd7J", + "index": 780846, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499815.A.1D3.html", + "title": "R: [問卦] 請問想約女同事又怕被打槍怎辦?" + }, + { + "aid": "1ZHOBk0s", + "index": 780847, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665499886.A.036.html", + "title": "R: [爆卦] IMF預測台灣人均超過日本,義大利,韓國" + }, + { + "aid": "1ZHODqN-", + "index": 780848, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500020.A.5FE.html", + "title": "[問卦] 有要怎麼爬奧林帕斯山的卦?" + }, + { + "aid": "1ZHOEe7T", + "index": 780849, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500072.A.1DD.html", + "title": "R: [問卦] 竟還有人還沒把家裡的燈換成「感應式」?" + }, + { + "aid": "1ZHOEhai", + "index": 780850, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500075.A.92C.html", + "title": "R: [問卦] 北一女中樂儀旗隊在想什麼?" + }, + { + "aid": "1ZHOEogm", + "index": 780851, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500082.A.AB0.html", + "title": "[問卦] 蔡司 V.S HOYA,斗幾?" + }, + { + "aid": "1ZHOG1hL", + "index": 780852, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500161.A.AD5.html", + "title": "[問卦] 鰩魚有尿騷味 韓國怎麼當寶?" + }, + { + "aid": "1ZHOGi3t", + "index": 780853, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500204.A.0F7.html", + "title": "[新聞] 14層都更大樓夾殺5層透天! 建商坦言:…" + }, + { + "aid": "1ZHOG-A_", + "index": 780854, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500222.A.2BF.html", + "title": "[新聞] 新北五股驚見浮屍 身分曝光竟是29歲行政" + }, + { + "aid": "1ZHOHFMu", + "index": 780855, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500239.A.5B8.html", + "title": "[問卦] 慟!舞台劇《間諜家家酒》安妮亞 人選未定" + }, + { + "aid": "1ZHOJb-F", + "index": 780856, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500389.A.F8F.html", + "title": "[問卦] 安平古堡都改了那紅毛城呢?" + }, + { + "aid": "1ZHOKva7", + "index": 780857, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500473.A.907.html", + "title": "R: [問卦] 板橋人看到耶誕城在想什麼" + }, + { + "aid": "1ZHOKzwl", + "index": 780858, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500477.A.EAF.html", + "title": "[問卦] 我彈琴談感情 讓妳慢慢的上癮" + }, + { + "aid": "1ZHOL5Xa", + "index": 780859, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500485.A.864.html", + "title": "[新聞] 新北五股驚見水流屍!29歲行政院職員「裸" + }, + { + "aid": "1ZHOLCo0", + "index": 780860, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500492.A.C80.html", + "title": "[問卦] 看過藤岡弘叢林冒險王的都幾歲了?" + }, + { + "aid": "1ZHOLbmp", + "index": 780861, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500517.A.C33.html", + "title": "[問卦] 欸幹 3:1九局的棒球比賽打4.5小時是怎樣" + }, + { + "aid": "1ZHOMhmi", + "index": 780862, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500587.A.C2C.html", + "title": "R: [問卦] 請問想約女同事又怕被打槍怎辦?" + }, + { + "aid": "1ZHOODml", + "index": 780864, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500685.A.C2F.html", + "title": "[新聞] 補少子化勞動缺口 政府盼8年引進40萬人" + }, + { + "aid": "1ZHOOrey", + "index": 780865, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500725.A.A3C.html", + "title": "[問卦] 原住民加分35%什麼時候取消??????" + }, + { + "aid": "1ZHOOsLv", + "index": 780866, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500726.A.579.html", + "title": "R: [問卦] 台積電400元以下,大家真的敢接?" + }, + { + "aid": "1ZHOPJFh", + "index": 780867, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500755.A.3EB.html", + "title": "[新聞] 氣瘋!不爽許淑華論文審定結果 綠粉出征" + }, + { + "aid": "1ZHOQ3dO", + "index": 780868, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500803.A.9D8.html", + "title": "[問卦] 驚!乙武洋匡巧扮安妮亞?!" + }, + { + "aid": "1ZHOQlRF", + "index": 780869, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665500847.A.6CF.html", + "title": "[問卦] 給客戶的報價單上面要寫些什麼的八卦" + }, + { + "aid": "1ZHOUBXK", + "index": 780871, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501067.A.854.html", + "title": "R: [問卦] 候選人很愛提營養午餐免費的政見= =" + }, + { + "aid": "1ZHOVHiu", + "index": 780872, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501137.A.B38.html", + "title": "[新聞] 曾是蘇貞昌幕僚!29歲行政院小編失蹤2天" + }, + { + "aid": "1ZHOWSBE", + "index": 780873, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501212.A.2CE.html", + "title": "[新聞] 快訊/桃園工廠晚間火警「全面燃燒」!" + }, + { + "aid": "1ZHOX2EJ", + "index": 780874, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501250.A.393.html", + "title": "R: [新聞] 淡水河岸驚見水流屍!男僅著內褲陳屍河" + }, + { + "aid": "1ZHOXlJW", + "index": 780875, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501295.A.4E0.html", + "title": "R: [新聞] Meta 社群平台 Horizon Worlds 有太多Bug" + }, + { + "aid": "1ZHOYEhA", + "index": 780876, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501326.A.ACA.html", + "title": "R: [新聞] 淨零議題交鋒 蔣萬安:深蹲20下換一次公" + }, + { + "aid": "1ZHOYXmJ", + "index": 780877, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501345.A.C13.html", + "title": "[問卦] 一整天都沒有優文" + }, + { + "aid": "1ZHOZj-e", + "index": 780878, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501421.A.FA8.html", + "title": "[問卦] 可樂果和樂事洋芋片,哪一個是零食一哥" + }, + { + "aid": "1ZHOZtCq", + "index": 780879, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501431.A.334.html", + "title": "R: [新聞] 無懼中國威脅!烏克蘭議員宣布月底訪台:" + }, + { + "aid": "1ZHOZ_d7", + "index": 780880, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501439.A.9C7.html", + "title": "[問卦] 網軍死了 輓聯寫什麼比較適合?" + }, + { + "aid": "1ZHObKwq", + "index": 780881, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501524.A.EB4.html", + "title": "R: [新聞] 補少子化勞動缺口 政府盼8年引進40萬人" + }, + { + "aid": "1ZHObjHj", + "index": 780882, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501549.A.46D.html", + "title": "R: [新聞] 淨零議題交鋒 蔣萬安:深蹲20下換一次公" + }, + { + "aid": "1ZHObwSm", + "index": 780883, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501562.A.730.html", + "title": "[新聞] 大陸CBA防疫防到「不能出賽」 聯盟裁定0" + }, + { + "aid": "1ZHOc0wz", + "index": 780884, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501568.A.EBD.html", + "title": "R: [問卦] 身為七年級覺得活著好累" + }, + { + "aid": "1ZHOcMk1", + "index": 780885, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501590.A.B81.html", + "title": "R: [爆卦] IMF預測台灣人均超過日本,義大利,韓國" + }, + { + "aid": "1ZHOdF-S", + "index": 780886, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501647.A.F9C.html", + "title": "[問卦] 如果台灣翻拍「跟拍到你家」" + }, + { + "aid": "1ZHOe1u4", + "index": 780887, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501697.A.E04.html", + "title": "[問卦] 這三位女生有達各位水準嗎?" + }, + { + "aid": "1ZHOe-MC", + "index": 780888, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501758.A.58C.html", + "title": "R: [新聞] 曾是蘇貞昌幕僚!29歲行政院小編失蹤2天" + }, + { + "aid": "1ZHOfGEI", + "index": 780889, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501776.A.392.html", + "title": "[新聞] 新北水流屍驚是「政院王牌小編」周家鴻!" + }, + { + "aid": "1ZHOg8GM", + "index": 780890, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501832.A.416.html", + "title": "[問卦] 父母看到女兒下海拍av 會怎麼想?" + }, + { + "aid": "1ZHOgS8H", + "index": 780891, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501852.A.211.html", + "title": "[問卦] 韓團Cover是歧視胖子嗎?" + }, + { + "aid": "1ZHOgTHl", + "index": 780892, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501853.A.46F.html", + "title": "[問卦] 有人用了WIN11覺得更好的嗎?" + }, + { + "aid": "1ZHOgZZE", + "index": 780893, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501859.A.8CE.html", + "title": "[問卦] 爸爸殺了霸凌女兒的同學有圖慎入" + }, + { + "aid": "1ZHOh2-v", + "index": 780894, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665501890.A.FB9.html", + "title": "[問卦] 歷史上最有名兔死狗烹的例子?" + }, + { + "aid": "1ZHOjOXF", + "index": 780895, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502040.A.84F.html", + "title": "[問卦] 愛抱院的西年級你們今天口罩戴的爽不爽?" + }, + { + "aid": "1ZHOjsh3", + "index": 780896, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502070.A.AC3.html", + "title": "R: [問卦] 為什麼七年級,會這麼愛抱怨?" + }, + { + "aid": "1ZHOk6Gi", + "index": 780897, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502086.A.42C.html", + "title": "[問卦] 有人沒有買Uniqlo的薄羽絨外套嗎?" + }, + { + "aid": "1ZHOmtE6", + "index": 780898, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502263.A.386.html", + "title": "[問卦] 明天幾點去廁所才有位子" + }, + { + "aid": "1ZHOnS2_", + "index": 780899, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502300.A.0BF.html", + "title": "R: [問卦] 為什麼七年級,會這麼愛抱怨?" + }, + { + "aid": "1ZHOoK--", + "index": 780900, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502356.A.FBE.html", + "title": "[新聞] 伊朗艾米尼之死示威延燒 能源產業工人加" + }, + { + "aid": "1ZHOoV0q", + "index": 780901, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502367.A.034.html", + "title": "[問卦] 服部半藏484古代的網軍頭子?" + }, + { + "aid": "1ZHOowLj", + "index": 780902, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502394.A.56D.html", + "title": "[問卦] 奶子季484到惹 o'_'o" + }, + { + "aid": "1ZHOpIEo", + "index": 780903, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502418.A.3B2.html", + "title": "R: [新聞] 勞保破產倒數計時 政院撥補450億搶救" + }, + { + "aid": "1ZHOsQ4Z", + "index": 780904, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502618.A.123.html", + "title": "R: [問卦] 蝦皮遇到這種賣家要怎麼辦?" + }, + { + "aid": "1ZHOsdkb", + "index": 780905, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502631.A.BA5.html", + "title": "R: [問卦] 台積電400元以下,大家真的敢接?" + }, + { + "aid": "1ZHOukr6", + "index": 780906, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502766.A.D46.html", + "title": "R: [新聞] 曹興誠籲制憲正名國號「台灣」 綠委:有" + }, + { + "aid": "1ZHOvBuw", + "index": 780907, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502795.A.E3A.html", + "title": "[新聞] 成本上升 高市住宅價格指數增幅冠六都" + }, + { + "aid": "1ZHOvSiT", + "index": 780908, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665502812.A.B1D.html", + "title": "R: [問卦] 為什麼七年級,會這麼愛抱怨?" + }, + { + "aid": "1ZHOywdC", + "index": 780909, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503034.A.9CC.html", + "title": "[新聞] 「呆萌女神」躺曬E級車頭燈 網友狂發私" + }, + { + "aid": "1ZHOz_63", + "index": 780910, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503103.A.183.html", + "title": "[問卦] 候選人認為耍猴戲=年輕人認同 邏輯在哪?" + }, + { + "aid": "1ZHO-8cu", + "index": 780911, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503112.A.9B8.html", + "title": "[新聞] 新北二重疏洪道驚見浮屍 身分是29歲行政" + }, + { + "aid": "1ZHO-BGm", + "index": 780912, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503115.A.430.html", + "title": "[新聞] 市場夜市發消費券 謝龍介按鈴控告黃偉哲" + }, + { + "aid": "1ZHO-dPZ", + "index": 780913, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503143.A.663.html", + "title": "[問卦] 連贏21口莊是不是賺翻了?" + }, + { + "aid": "1ZHO_120", + "index": 780914, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503169.A.080.html", + "title": "R: [新聞] 普丁重大恥辱!生日隔天「克里米亞大橋被" + }, + { + "aid": "1ZHO_UZZ", + "index": 780915, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503198.A.8E3.html", + "title": "[問卦] 橘高校來台在日本其實沒有引起話題?" + }, + { + "aid": "1ZHO_wO0", + "index": 780916, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503226.A.600.html", + "title": "R: [新聞] 國境解封飯店鬧人力荒 勞部揭因:基層起" + }, + { + "aid": "1ZHP0qY4", + "index": 780917, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503284.A.884.html", + "title": "[問卦] 威廉古堡要改什麼名?" + }, + { + "aid": "1ZHP17Jg", + "index": 780918, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503303.A.4EA.html", + "title": "[問卦] 台灣片商若聘日本退休AV女優顧問能拍好片" + }, + { + "aid": "1ZHP1AFb", + "index": 780919, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503306.A.3E5.html", + "title": "[新聞]遲緩兒開學15天被打4次 施暴者讚:老師人超" + }, + { + "aid": "1ZHP1OUd", + "index": 780920, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503320.A.7A7.html", + "title": "R: [新聞] 盼增產原油不成 美國正「重新評估」與沙" + }, + { + "aid": "1ZHP27Qa", + "index": 780921, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503367.A.6A4.html", + "title": "[問卦] 日本高度人才特別加分只有台大該怎麼辦??" + }, + { + "aid": "1ZHP2Em-", + "index": 780922, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503374.A.C3E.html", + "title": "[問卦] 工具人生日會收到女生什麼禮物呢" + }, + { + "aid": "1ZHP3Ik2", + "index": 780923, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503442.A.B82.html", + "title": "[問卦] 靈幻新隆vs King 誰會贏" + }, + { + "aid": "1ZHP3nRg", + "index": 780924, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503473.A.6EA.html", + "title": "[問卦] 越or台?" + }, + { + "aid": "1ZHP4W-u", + "index": 780926, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503520.A.FB8.html", + "title": "[新聞] 中共設置海外110警察站 歐洲兩國啟動調查" + }, + { + "aid": "1ZHP5IXR", + "index": 780927, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503570.A.85B.html", + "title": "R: [問卦] 網軍死了 輓聯寫什麼比較適合?" + }, + { + "aid": "1ZHP6HV5", + "index": 780928, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503633.A.7C5.html", + "title": "[問卦] 有沒有鏈鋸人的OP是不是很屌的八卦?" + }, + { + "aid": "1ZHP6efP", + "index": 780929, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503656.A.A59.html", + "title": "[新聞] 大膽貂民!太平山黃喉貂想偷遊客枴杖 網" + }, + { + "aid": "1ZHP7E6D", + "index": 780930, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503694.A.18D.html", + "title": "R: [問卦] 歷史上最有名兔死狗烹的例子?" + }, + { + "aid": "1ZHP7HED", + "index": 780931, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503697.A.38D.html", + "title": "[新聞] 天后宮參香 陳時中:疫情將潰散、生意逐" + }, + { + "aid": "1ZHP7YSr", + "index": 780932, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503714.A.735.html", + "title": "R: [問卦] 爸爸殺了霸凌女兒的同學有圖慎入" + }, + { + "aid": "1ZHP9Usq", + "index": 780933, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503838.A.DB4.html", + "title": "[新聞] 今晨5.9地震非918餘震 氣象局:餘震機率" + }, + { + "aid": "1ZHP9hmK", + "index": 780934, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503851.A.C14.html", + "title": "[問卦] 米玄律師最新的單曲大家給幾分?" + }, + { + "aid": "1ZHP9kgw", + "index": 780935, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503854.A.ABA.html", + "title": "R: [新聞] 勞保破產倒數計時 政院撥補450億搶救" + }, + { + "aid": "1ZHPAZt5", + "index": 780936, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503907.A.DC5.html", + "title": "[問卦] 台北子瑜有被超越嗎?" + }, + { + "aid": "1ZHPBgls", + "index": 780937, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665503978.A.BF6.html", + "title": "R: [問卦] 日本高度人才特別加分只有台大該怎麼辦??" + }, + { + "aid": "1ZHPDZ4k", + "index": 780938, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504099.A.12E.html", + "title": "[新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHPFbym", + "index": 780939, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504229.A.F30.html", + "title": "R: [問卦] 吃鯊魚煙為何不被譴責" + }, + { + "aid": "1ZHPFrgC", + "index": 780940, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504245.A.A8C.html", + "title": "[新聞] 莫德納次世代疫苗現2死通報 6旬長者接種1" + }, + { + "aid": "1ZHPIvZt", + "index": 780941, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504441.A.8F7.html", + "title": "[問卦] 有沒有動力火車的八卦?" + }, + { + "aid": "1ZHPJCIo", + "index": 780942, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504460.A.4B2.html", + "title": "[問卦] 拍個夜景 手機一直亂人臉對焦= =" + }, + { + "aid": "1ZHPJeb2", + "index": 780943, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504488.A.942.html", + "title": "[新聞] 香港中學生升旗不起立 被罰停課3天" + }, + { + "aid": "1ZHPK-8B", + "index": 780944, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504574.A.20B.html", + "title": "[問卦] 誰會只穿內褲輕生啊?" + }, + { + "aid": "1ZHPLuuq", + "index": 780945, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504632.A.E34.html", + "title": "[新聞] 美國空運包裹走私價值1千萬大麻膏 主嫌…" + }, + { + "aid": "1ZHPM_Rx", + "index": 780946, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504703.A.6FB.html", + "title": "[問卦] 喪屍末日請鬼差要多少錢啊" + }, + { + "aid": "1ZHPO6eM", + "index": 780947, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504774.A.A16.html", + "title": "[問卦] 推動女性不當兵就不能投票,如何?" + }, + { + "aid": "1ZHPQNEv", + "index": 780948, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504919.A.3B9.html", + "title": "[問卦] 外送費一單30為何就有種低賤的感覺" + }, + { + "aid": "1ZHPQkC5", + "index": 780949, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504942.A.305.html", + "title": "[新聞] 新北水流屍是「政院王牌小編」周家鴻!" + }, + { + "aid": "1ZHPRLx3", + "index": 780950, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504981.A.EC3.html", + "title": "R: [問卦] 台積電400元以下,大家真的敢接?" + }, + { + "aid": "1ZHPRd39", + "index": 780951, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665504999.A.0C9.html", + "title": "[問卦] 做夢夢到台積136" + }, + { + "aid": "1ZHPTYEn", + "index": 780952, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505122.A.3B1.html", + "title": "[新聞] 台灣設計展3天連假吸130萬人潮 高市府一" + }, + { + "aid": "1ZHPU7GO", + "index": 780953, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505159.A.418.html", + "title": "R: [新聞] 總統喊和平解決兩岸問題 柯文哲嗆「平常" + }, + { + "aid": "1ZHPWdL6", + "index": 780954, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505319.A.546.html", + "title": "[新聞] 《觀光股》柏文Q3營收登近7季高 Q4續穩步" + }, + { + "aid": "1ZHPY1MN", + "index": 780955, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505409.A.597.html", + "title": "R: [新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHPYsJM", + "index": 780956, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505462.A.4D6.html", + "title": "[問卦] 學長爽到跳起來了" + }, + { + "aid": "1ZHPaJ-N", + "index": 780957, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505555.A.F97.html", + "title": "[新聞] 拜登急了?美又出拳痛毆大陸晶片業 反遭" + }, + { + "aid": "1ZHPawQE", + "index": 780958, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505594.A.68E.html", + "title": "[問卦] 律政警察類韓劇的套路是什麼?" + }, + { + "aid": "1ZHPcEBl", + "index": 780959, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505678.A.2EF.html", + "title": "R: [問卦] 誰會只穿內褲輕生啊?" + }, + { + "aid": "1ZHPcW-k", + "index": 780960, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505696.A.FAE.html", + "title": "[問卦] ya~~~oh no~~~" + }, + { + "aid": "1ZHPd1nZ", + "index": 780961, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505729.A.C63.html", + "title": "R: [問卦] 洗牙之類的技能需要六年牙醫訓練嗎" + }, + { + "aid": "1ZHPezMw", + "index": 780962, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505853.A.5BA.html", + "title": "[問卦] 界門綱目科屬種 種屬科目綱門界 都幾" + }, + { + "aid": "1ZHPf6Wz", + "index": 780963, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505862.A.83D.html", + "title": "[問卦] 我的耳朵癢一下 代表妳在講我壞話" + }, + { + "aid": "1ZHPgO94", + "index": 780964, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665505944.A.244.html", + "title": "R: [新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHPheC2", + "index": 780965, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506024.A.302.html", + "title": "R: [問卦] 網軍死了 輓聯寫什麼比較適合?" + }, + { + "aid": "1ZHPi9ob", + "index": 780966, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506057.A.CA5.html", + "title": "[問卦] 該射了那個moment?" + }, + { + "aid": "1ZHPj4wk", + "index": 780967, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506116.A.EAE.html", + "title": "R: [問卦] 台灣最頂樂旗隊建中應該可贏橘惡魔?" + }, + { + "aid": "1ZHPjufs", + "index": 780968, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506168.A.A76.html", + "title": "[問卦] 喉嚨一直有痰耶 484中惹" + }, + { + "aid": "1ZHPkSSJ", + "index": 780969, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506204.A.713.html", + "title": "[問卦] 當公司小編會接觸到多深的內幕?" + }, + { + "aid": "1ZHPl7-V", + "index": 780971, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506247.A.F9F.html", + "title": "[問卦] 你自殺的時候會想脫光跳河嗎?" + }, + { + "aid": "1ZHPlrJJ", + "index": 780972, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506293.A.4D3.html", + "title": "R: [問卦] 為什麼七年級,會這麼愛抱怨?" + }, + { + "aid": "1ZHPn0Qz", + "index": 780974, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506368.A.6BD.html", + "title": "[問卦] 一整個宇宙換一顆紅豆?" + }, + { + "aid": "1ZHPnRw2", + "index": 780975, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506395.A.E82.html", + "title": "[新聞] 上月才持菜刀追高中生 男剛出院竟又衝派" + }, + { + "aid": "1ZHPoiWC", + "index": 780976, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506476.A.80C.html", + "title": "R: [問卦] 推動女性不當兵就不能投票,如何?" + }, + { + "aid": "1ZHPqsCL", + "index": 780977, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506614.A.315.html", + "title": "[新聞] 新北男身中10刀「血流乾」慘死家中 生前" + }, + { + "aid": "1ZHPq_1K", + "index": 780978, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665506623.A.054.html", + "title": "R: [新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHPy1kA", + "index": 780979, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665507073.A.B8A.html", + "title": "R: [新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHP_8gQ", + "index": 780980, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665507272.A.A9A.html", + "title": "[問卦] 月光騎士好看嗎?" + }, + { + "aid": "1ZHP_Ajt", + "index": 780981, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665507274.A.B77.html", + "title": "R: [新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHQ1L8P", + "index": 780982, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665507413.A.219.html", + "title": "[問卦] 通訊不佳怎麼確定誰的問題" + }, + { + "aid": "1ZHQ4Mfg", + "index": 780983, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665507606.A.A6A.html", + "title": "[問卦] 這個貓貓跑步機 有人有嗎" + }, + { + "aid": "1ZHQ4_t6", + "index": 780984, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665507647.A.DC6.html", + "title": "[問卦] 輕生有較委婉的說法嗎?" + }, + { + "aid": "1ZHQ7Nox", + "index": 780985, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665507799.A.CBB.html", + "title": "[問卦] 消夜吃三隻炸雞腿,是不是很棒?" + }, + { + "aid": "1ZHQ7tW8", + "index": 780986, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665507831.A.808.html", + "title": "[問卦] 這世界上 有殺手這一行業的存在嗎" + }, + { + "aid": "1ZHQCdWA", + "index": 780987, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665508135.A.80A.html", + "title": "[問卦] 電影搖擺狗是不是神作之一?" + }, + { + "aid": "1ZHQEfQ_", + "index": 780989, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665508265.A.6BF.html", + "title": "R: [新聞] 安平古堡改名「熱蘭遮堡」 台南人怒嗆文" + }, + { + "aid": "1ZHQF30g", + "index": 780990, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665508291.A.02A.html", + "title": "[問卦] 有跳樓的一律都改成不慎墜樓的卦嗎" + }, + { + "aid": "1ZHQI2vJ", + "index": 780991, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665508482.A.E53.html", + "title": "[問卦] 懶趴火的八卦" + }, + { + "aid": "1ZHQIaYW", + "index": 780992, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665508516.A.8A0.html", + "title": "[問卦] 想問,商科除了精算師和會計師這種很難考" + }, + { + "aid": "1ZHQM7yp", + "index": 780993, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665508743.A.F33.html", + "title": "[問卦] 黑嘉嘉日文唸法是摳哭咖咖?" + }, + { + "aid": "1ZHQPgpd", + "index": 780994, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665508970.A.CE7.html", + "title": "[問卦] 所以大家一天都用多少度電啊?有沒有量過" + }, + { + "aid": "1ZHQPk8p", + "index": 780995, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665508974.A.233.html", + "title": "[問卦] 看過阿鴻上菜的都幾歲了" + }, + { + "aid": "1ZHQQeD8", + "index": 780996, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665509032.A.348.html", + "title": "R: [新聞] 黃珊珊動怒「怎不討論蔣孝嚴站台?」 蔣" + }, + { + "aid": "1ZHQRvwW", + "index": 780997, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665509113.A.EA0.html", + "title": "[新聞] 蘇院長幕僚是網軍頭目 作圖神人周家鴻2年" + }, + { + "aid": "1ZHQS-UX", + "index": 780998, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665509182.A.7A1.html", + "title": "[問卦] 門外有三隻貓在遊蕩,怎麼辦?" + }, + { + "aid": "1ZHQUAcV", + "index": 780999, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665509258.A.99F.html", + "title": "R: [新聞] 安平古堡改名「熱蘭遮堡」 台南人怒嗆文" + }, + { + "aid": "1ZHQZPsM", + "index": 781000, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665509593.A.D96.html", + "title": "[問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHQbFwJ", + "index": 781001, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665509711.A.E93.html", + "title": "[問卦] ね" + }, + { + "aid": "1ZHQbG1E", + "index": 781002, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665509712.A.04E.html", + "title": "[問卦] 網軍小編怎麼不請外勞的八卦???" + }, + { + "aid": "1ZHQhKZt", + "index": 781003, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665510100.A.8F7.html", + "title": "[問卦] 王牌小編與wupirn08的關係?" + }, + { + "aid": "1ZHQmrqi", + "index": 781004, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665510453.A.D2C.html", + "title": "[問卦] 哇靠竟然有菲律賓來的茶" + }, + { + "aid": "1ZHQnZTx", + "index": 781005, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665510499.A.77B.html", + "title": "[問卦] 哪裡賣長的塑帶?脖子長度" + }, + { + "aid": "1ZHQoh1m", + "index": 781006, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665510571.A.070.html", + "title": "[問卦] 為何台灣泡麵沒韓國的口感好(づ・ω・)づ" + }, + { + "aid": "1ZHQptgb", + "index": 781007, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665510647.A.AA5.html", + "title": "R: [爆卦] IMF預測台灣人均超過日本,義大利,韓國" + }, + { + "aid": "1ZHQr9Rj", + "index": 781008, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665510729.A.6ED.html", + "title": "[問卦] 荀彧拿到空盒在想什麼?" + }, + { + "aid": "1ZHQrq-c", + "index": 781009, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665510772.A.FA6.html", + "title": "[問卦] 當處男到30歲VS幹妹無數30歲自殺" + }, + { + "aid": "1ZHQs8gq", + "index": 781010, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665510792.A.AB4.html", + "title": "[問卦] 風 沒有方向的吹來" + }, + { + "aid": "1ZHQwrDp", + "index": 781011, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665511093.A.373.html", + "title": "[問卦] 海水退了是不是就知道誰沒穿褲子= =" + }, + { + "aid": "1ZHQzfbu", + "index": 781012, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665511273.A.978.html", + "title": "R: [新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHQzmCc", + "index": 781013, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665511280.A.326.html", + "title": "[新聞] 批數位部伸手管控網路 高金素梅轟唐鳳官" + }, + { + "aid": "1ZHR095B", + "index": 781014, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665511433.A.14B.html", + "title": "R: [問卦] 淦!勞退去年賺的還不夠今年賠的?" + }, + { + "aid": "1ZHR0qjC", + "index": 781015, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665511476.A.B4C.html", + "title": "[問卦] 黃皓算是成功的人吧" + }, + { + "aid": "1ZHR3Z1P", + "index": 781016, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665511651.A.059.html", + "title": "[問卦] 為何太陽號吹奏的時候,要貼張紙在上面?" + }, + { + "aid": "1ZHR3Zg6", + "index": 781017, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665511651.A.A86.html", + "title": "[問卦] 月入九萬但活不到30歲" + }, + { + "aid": "1ZHR7kHU", + "index": 781018, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665511918.A.45E.html", + "title": "[問卦] 暗暝無名路" + }, + { + "aid": "1ZHRB5ol", + "index": 781019, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665512133.A.CAF.html", + "title": "[問卦] 肉體可以封存30年嗎?" + }, + { + "aid": "1ZHRCXHA", + "index": 781020, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665512225.A.44A.html", + "title": "[問卦] 如果你有9千萬,你會買在宮廟 \b\b☯ 附近嗎?" + }, + { + "aid": "1ZHRCeki", + "index": 781021, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665512232.A.BAC.html", + "title": "R: [新聞] 文化部決議!台南安平古堡以後要改叫" + }, + { + "aid": "1ZHRGOPT", + "index": 781022, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665512472.A.65D.html", + "title": "[問卦] 現在上班用手提公事包的人多嗎" + }, + { + "aid": "1ZHRPuiu", + "index": 781023, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665513080.A.B38.html", + "title": "[問卦] 以前「不要問,你會怕」怎麼流行的?" + }, + { + "aid": "1ZHRVHfU", + "index": 781024, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665513425.A.A5E.html", + "title": "[問卦] 高雄市區一晚上停電兩次是在幹你娘喔" + }, + { + "aid": "1ZHRaHaT", + "index": 781025, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665513745.A.91D.html", + "title": "R: [新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHRckDF", + "index": 781026, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665513902.A.34F.html", + "title": "R: [新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHRuK63", + "index": 781027, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665515028.A.183.html", + "title": "[問卦] 不是在此時不知在何時我想大約會是在冬季" + }, + { + "aid": "1ZHRzq4R", + "index": 781028, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665515380.A.11B.html", + "title": "[問卦] 為啥中國一定要研發晶片啊?" + }, + { + "aid": "1ZHR-pX9", + "index": 781029, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665515443.A.849.html", + "title": "[問卦]「王牌小編」 陳屍淡水河岸 誰要負責????" + }, + { + "aid": "1ZHS8B0N", + "index": 781030, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665516043.A.017.html", + "title": "[問卦] 中華凍豆腐缺貨?" + }, + { + "aid": "1ZHSAdHK", + "index": 781032, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665516199.A.454.html", + "title": "R: [新聞] 遲緩生遭痛毆!霸凌者囂張對話曝 基隆" + }, + { + "aid": "1ZHSFxwU", + "index": 781033, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665516539.A.E9E.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHSGUkf", + "index": 781034, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665516574.A.BA9.html", + "title": "[問卦] 我想當瑪琪瑪的狗。" + }, + { + "aid": "1ZHSP0bh", + "index": 781035, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665517120.A.96B.html", + "title": "[問卦] 德州人的槍是不是比一個連還多阿?" + }, + { + "aid": "1ZHSZKNS", + "index": 781036, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665517780.A.5DC.html", + "title": "[問卦] 帕瓦為什麼被mkm打死?" + }, + { + "aid": "1ZHSmBkB", + "index": 781038, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665518603.A.B8B.html", + "title": "R: [問卦] 為什麼七年級,會這麼愛抱怨?" + }, + { + "aid": "1ZHSt5np", + "index": 781039, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665519045.A.C73.html", + "title": "[問卦] 農舍或是小塊的空地一定要用買的嗎?" + }, + { + "aid": "1ZHS_UBs", + "index": 781040, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665519582.A.2F6.html", + "title": "R: [問卦] 中華凍豆腐缺貨?" + }, + { + "aid": "1ZHT0iGt", + "index": 781041, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665519660.A.437.html", + "title": "R: [問卦] 我想當瑪琪瑪的狗。" + }, + { + "aid": "1ZHTOZlS", + "index": 781042, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665521187.A.BDC.html", + "title": "[新聞] 公器私用?新北捷運官網「狂酸林佳龍」" + }, + { + "aid": "1ZHTSPTq", + "index": 781043, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665521433.A.774.html", + "title": "[問卦] 最近一堆小說改編動畫" + }, + { + "aid": "1ZHTX-L0", + "index": 781044, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665521790.A.540.html", + "title": "[新聞] 桃園深夜再傳火警…八德宮廟竄火光 消防" + }, + { + "aid": "1ZHU71Qo", + "index": 781045, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665524161.A.6B2.html", + "title": "R: [問卦] 為什麼七年級,會這麼愛抱怨?" + }, + { + "aid": "1ZHUBqJR", + "index": 781046, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665524468.A.4DB.html", + "title": "[新聞] 電動自行車 無牌上路可罰3600" + }, + { + "aid": "1ZHUDiKd", + "index": 781047, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665524588.A.527.html", + "title": "R: [新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHUOrcM", + "index": 781048, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665525301.A.996.html", + "title": "[問卦] 死者為大適用在製梗圖仔身上嗎?" + }, + { + "aid": "1ZHUh_Zd", + "index": 781049, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665526527.A.8E7.html", + "title": "[問卦] 我很宅,我都看鏈鋸人" + }, + { + "aid": "1ZHUllbh", + "index": 781050, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665526767.A.96B.html", + "title": "[新聞] 行政院「王牌小編」周家鴻失聯2天 陳屍淡" + }, + { + "aid": "1ZHUn_BR", + "index": 781051, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665526911.A.2DB.html", + "title": "R: [問卦] 這世界上 有殺手這一行業的存在嗎" + }, + { + "aid": "1ZHUrHKk", + "index": 781052, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665527121.A.52E.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHUsCfX", + "index": 781053, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665527180.A.A61.html", + "title": "[問卦] 小編出事,背後最大獲利者是誰" + }, + { + "aid": "1ZHUzsPI", + "index": 781054, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665527670.A.652.html", + "title": "R: [新聞] 電動自行車 無牌上路可罰3600" + }, + { + "aid": "1ZHV0c8u", + "index": 781055, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665527846.A.238.html", + "title": "[問卦] 安平追想曲竟然是被老外拋棄的台南女故事" + }, + { + "aid": "1ZHV3Z3R", + "index": 781056, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665528035.A.0DB.html", + "title": "[問卦] 小編的筆電手機會不見嗎?" + }, + { + "aid": "1ZHV5sv_", + "index": 781057, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665528182.A.E7F.html", + "title": "[問卦] 為啥中國偷技術,還說美國欺負他啊?" + }, + { + "aid": "1ZHV97FJ", + "index": 781058, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665528391.A.3D3.html", + "title": "[問卦] 高雄人同意嗎?" + }, + { + "aid": "1ZHVBWhh", + "index": 781059, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665528544.A.AEB.html", + "title": "[新聞] 警兼課苦讀考上法官 年資歸零聲請釋憲受" + }, + { + "aid": "1ZHVEwkz", + "index": 781060, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665528762.A.BBD.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHVIgOJ", + "index": 781061, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665529002.A.613.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHVItUf", + "index": 781062, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665529015.A.7A9.html", + "title": "[新聞] 詹雅雯終於認愛!發文告白「阻礙不了我" + }, + { + "aid": "1ZHVJ_ZN", + "index": 781063, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665529087.A.8D7.html", + "title": "[新聞] 立陶宛慶雙十 國父出席致意讚台灣是真民主" + }, + { + "aid": "1ZHVT1F6", + "index": 781064, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665529665.A.3C6.html", + "title": "[新聞] 百億元新竹大車站計畫 藍營議員籲暫緩留" + }, + { + "aid": "1ZHVUVJ7", + "index": 781065, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665529759.A.4C7.html", + "title": "R: [新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHVVfQJ", + "index": 781066, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665529833.A.693.html", + "title": "[問卦] 台灣的惡夢正在中國發生?" + }, + { + "aid": "1ZHVWkk6", + "index": 781067, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665529902.A.B86.html", + "title": "R: [新聞] 電動自行車 無牌上路可罰3600" + }, + { + "aid": "1ZHVca5Q", + "index": 781068, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665530276.A.15A.html", + "title": "[問卦] 30處男 還來的及加入社運圈嗎?" + }, + { + "aid": "1ZHVed7X", + "index": 781069, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665530407.A.1E1.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHVkMOt", + "index": 781070, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665530774.A.637.html", + "title": "[問卦] 等跌到11000買應該很安全吧?0.0" + }, + { + "aid": "1ZHVoc-K", + "index": 781071, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665531046.A.F94.html", + "title": "[問卦] 烏克蘭遇襲唱國歌?" + }, + { + "aid": "1ZHVq6jo", + "index": 781072, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665531142.A.B72.html", + "title": "[問卦] 權力是最好的春藥" + }, + { + "aid": "1ZHVrMsS", + "index": 781073, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665531222.A.D9C.html", + "title": "[新聞] 新北男身中多刀陳屍家中……警方調查無他" + }, + { + "aid": "1ZHVrjZa", + "index": 781074, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665531245.A.8E4.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHVtEPC", + "index": 781075, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665531342.A.64C.html", + "title": "R: [新聞] 安平古堡改名「熱蘭遮堡」 台南人怒嗆文" + }, + { + "aid": "1ZHVu1jy", + "index": 781076, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665531393.A.B7C.html", + "title": "[問卦] 今天我預言台積電一定有3字頭" + }, + { + "aid": "1ZHVwsa9", + "index": 781077, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665531574.A.909.html", + "title": "R: [新聞] 安平古堡改名「熱蘭遮堡」 台南人怒嗆文" + }, + { + "aid": "1ZHW2GS_", + "index": 781078, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665532048.A.73F.html", + "title": "[問卦] 少女的騎倒給我們什麼反思?" + }, + { + "aid": "1ZHW3sSb", + "index": 781079, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665532150.A.725.html", + "title": "R: [新聞] 安平古堡改名「熱蘭遮堡」 台南人怒嗆文" + }, + { + "aid": "1ZHW9HKq", + "index": 781080, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665532497.A.534.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHWAPo7", + "index": 781081, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665532569.A.C87.html", + "title": "[新聞] 挺「安倍晉三之友會」成立 陳時中:感謝" + }, + { + "aid": "1ZHWAl6_", + "index": 781082, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665532591.A.1BF.html", + "title": "[問卦] 屈原當年跳河有穿衣服嗎" + }, + { + "aid": "1ZHWDlYS", + "index": 781083, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665532783.A.89C.html", + "title": "[問卦] 要吃甚麼藥專燃內臟脂肪?" + }, + { + "aid": "1ZHWDpdx", + "index": 781084, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665532787.A.9FB.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHWDzmn", + "index": 781085, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665532797.A.C31.html", + "title": "[問卦] 有沒有有邊讀邊踩地雷的八卦?" + }, + { + "aid": "1ZHWHleV", + "index": 781086, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665533039.A.A1F.html", + "title": "R: [新聞] 挺「安倍晉三之友會」成立 陳時中:感謝" + }, + { + "aid": "1ZHWMt94", + "index": 781087, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665533367.A.244.html", + "title": "[問卦] 台灣浮屍=自殺? 香港浮屍=黑警幹得?" + }, + { + "aid": "1ZHWNOXP", + "index": 781088, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665533400.A.859.html", + "title": "[新聞] 海軍坦承輕快兵力耐波性不足 須建兩千噸" + }, + { + "aid": "1ZHWO5il", + "index": 781089, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665533445.A.B2F.html", + "title": "R: [新聞] 新北男身中多刀陳屍家中……警方調查無他" + }, + { + "aid": "1ZHWPjdX", + "index": 781090, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665533549.A.9E1.html", + "title": "[問卦] 米國爸爸 護國神山?" + }, + { + "aid": "1ZHWSmsA", + "index": 781091, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665533744.A.D8A.html", + "title": "[新聞] 媽脫口問「不是人妖吧」…Ella早道歉!小" + }, + { + "aid": "1ZHWSpA5", + "index": 781092, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665533747.A.285.html", + "title": "[問卦] 30處男公司聚餐女生不吃蔬菜問我要不要" + }, + { + "aid": "1ZHWXJCZ", + "index": 781093, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665534035.A.323.html", + "title": "[新聞] 「綠能你不能嘛」!總統喊話嚴防假消息" + }, + { + "aid": "1ZHWXv4u", + "index": 781094, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665534073.A.138.html", + "title": "[問卦] 五股浮屍找高大成驗過了嗎?" + }, + { + "aid": "1ZHWbkPQ", + "index": 781095, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665534318.A.65A.html", + "title": "[問卦] 張家輝電影神作是哪部?" + }, + { + "aid": "1ZHWcX8U", + "index": 781096, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665534369.A.21E.html", + "title": "[問卦] 30處男壓力大胖了3公斤沒有長高怎麼辦" + }, + { + "aid": "1ZHWcvJg", + "index": 781097, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665534393.A.4EA.html", + "title": "[問卦] 台積電高雄廠還要繼續蓋嗎" + }, + { + "aid": "1ZHWek4t", + "index": 781098, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665534510.A.137.html", + "title": "[問卦] 有什麼工作不用保勞健保的阿?" + }, + { + "aid": "1ZHWf_xi", + "index": 781099, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665534591.A.EEC.html", + "title": "[新聞] 中和男身中10刀「血快流乾」詭異拖行 檢" + }, + { + "aid": "1ZHWhRqO", + "index": 781100, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665534683.A.D18.html", + "title": "[問卦] 荷蘭算是有錢的國家嗎" + }, + { + "aid": "1ZHWimV9", + "index": 781102, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665534768.A.7C9.html", + "title": "[問卦] 台股為何亞洲最爛?" + }, + { + "aid": "1ZHWnCoG", + "index": 781103, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535052.A.C90.html", + "title": "[問卦] 只能活30年 要當8+9還是網路小編?" + }, + { + "aid": "1ZHWnM_H", + "index": 781104, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535062.A.FD1.html", + "title": "[問卦] 七年級女孩 交男友就好 不想婚生子?" + }, + { + "aid": "1ZHWnaLX", + "index": 781105, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535076.A.561.html", + "title": "R: [新聞] 百億元新竹大車站計畫 藍營議員籲暫緩留" + }, + { + "aid": "1ZHWorZv", + "index": 781106, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535157.A.8F9.html", + "title": "R: [問卦] 為啥中國偷技術爭霸,還說美國欺負他啊?" + }, + { + "aid": "1ZHWpEQK", + "index": 781107, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535182.A.694.html", + "title": "[問卦] 台北能去哪看專業鋼管舞" + }, + { + "aid": "1ZHWqKjj", + "index": 781108, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535252.A.B6D.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHWqYTJ", + "index": 781109, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535266.A.753.html", + "title": "R: [新聞] 百億元新竹大車站計畫 藍營議員籲暫緩留" + }, + { + "aid": "1ZHWsLTm", + "index": 781110, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535381.A.770.html", + "title": "[新聞] 46歲梁詠琪現在長這樣!超強「女王氣場」" + }, + { + "aid": "1ZHWvzee", + "index": 781111, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535613.A.A28.html", + "title": "[新聞] NASA宣布雙小行星改道測試成功!人類史上" + }, + { + "aid": "1ZHWwNKU", + "index": 781112, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535639.A.51E.html", + "title": "[問卦] 台gg劉德音沒誠信嘛" + }, + { + "aid": "1ZHWxM-X", + "index": 781113, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535702.A.FA1.html", + "title": "R: [新聞] 14層都更大樓夾殺5層透天! 建商坦言:…" + }, + { + "aid": "1ZHWxkHS", + "index": 781114, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535726.A.45C.html", + "title": "[問卦] 最近有過的比較節省嗎" + }, + { + "aid": "1ZHWy8c8", + "index": 781115, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535752.A.988.html", + "title": "R: [問卦] 台灣浮屍=自殺? 香港浮屍=黑警幹得?" + }, + { + "aid": "1ZHWz8cC", + "index": 781117, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535816.A.98C.html", + "title": "[問卦] 今天一人買一張GG嘎爆外資毫不好?" + }, + { + "aid": "1ZHW_zc6", + "index": 781118, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535997.A.986.html", + "title": "[新聞] 角頭趁遶境開槍殺人還沒入獄 又涉勒索建" + }, + { + "aid": "1ZHW_z9Q", + "index": 781119, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665535997.A.25A.html", + "title": "[問卦] 特別法醫搜查室台灣有辦法成立嗎" + }, + { + "aid": "1ZHX1Sef", + "index": 781120, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536092.A.A29.html", + "title": "[問卦] 請問有沒有人知道林正義老師在哪裡?" + }, + { + "aid": "1ZHX2lbu", + "index": 781121, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536175.A.978.html", + "title": "[問卦] 小編都穿什麼品牌跟類型的內褲?" + }, + { + "aid": "1ZHX3mI3", + "index": 781122, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536240.A.483.html", + "title": "[新聞] 蘇貞昌「王牌小編」猝逝 行政院證實" + }, + { + "aid": "1ZHX4MQ-", + "index": 781123, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536278.A.6BE.html", + "title": "[問卦] 同樣是死亡案件,定調速度卻不同的卦?" + }, + { + "aid": "1ZHX4xDJ", + "index": 781124, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536315.A.353.html", + "title": "[新聞] 蘇貞昌「王牌小編」輕生 代表作曝!1張" + }, + { + "aid": "1ZHX5hXb", + "index": 781125, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536363.A.865.html", + "title": "[新聞] 新制勞退慘賠 等績效好再領" + }, + { + "aid": "1ZHX85Gb", + "index": 781126, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536517.A.425.html", + "title": "[新聞] 直擊/陳時中7:50站路口初體驗 內湖居民" + }, + { + "aid": "1ZHX8qi-", + "index": 781127, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536564.A.B3E.html", + "title": "[爆卦] 台積電跌破400" + }, + { + "aid": "1ZHXBez3", + "index": 781128, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536744.A.F43.html", + "title": "[新聞] 日圓又刷24年新低 貶破146與當局上回出" + }, + { + "aid": "1ZHXCR7h", + "index": 781129, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536795.A.1EB.html", + "title": "R: [問卦] 為啥中國偷技術爭霸,還說美國欺負他啊?" + }, + { + "aid": "1ZHXCXsK", + "index": 781130, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536801.A.D94.html", + "title": "[問卦] 有沒有手機用左手非慣用手拿的八卦" + }, + { + "aid": "1ZHXDqxJ", + "index": 781131, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665536884.A.ED3.html", + "title": "R: [新聞] 安平古堡改名「熱蘭遮堡」 台南人怒嗆文" + }, + { + "aid": "1ZHXGNTG", + "index": 781132, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537047.A.750.html", + "title": "R: [新聞] 快訊/「王牌小編」周家鴻輕生 行政院證" + }, + { + "aid": "1ZHXGqo4", + "index": 781133, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537076.A.C84.html", + "title": "[問卦] 一群女高中生在庭院自製香腸要幹嘛?" + }, + { + "aid": "1ZHXHSCG", + "index": 781134, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537116.A.310.html", + "title": "[問卦] 類自殺算是自殺嗎?" + }, + { + "aid": "1ZHXIB2a", + "index": 781135, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537163.A.0A4.html", + "title": "[問卦] 高雄二仁溪能挖顯卡嗎?" + }, + { + "aid": "1ZHXL8Ie", + "index": 781136, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537352.A.4A8.html", + "title": "R: [爆卦] IMF預測台灣人均超過日本,義大利,韓國" + }, + { + "aid": "1ZHXLS2b", + "index": 781137, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537372.A.0A5.html", + "title": "[問卦] 中國反美,為何要用美國機台" + }, + { + "aid": "1ZHXLwpR", + "index": 781138, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537402.A.CDB.html", + "title": "[問卦] 女森要的的感覺到底是甚麼?" + }, + { + "aid": "1ZHXMxqL", + "index": 781139, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537467.A.D15.html", + "title": "[爆卦] 台股跌破萬三" + }, + { + "aid": "1ZHXNCFa", + "index": 781140, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537484.A.3E4.html", + "title": "[問卦] 四叉貓如果跳河輕生 會連內褲都不穿嗎?" + }, + { + "aid": "1ZHXPbcY", + "index": 781141, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537637.A.9A2.html", + "title": "[問卦] 萊德現在在做什麼?" + }, + { + "aid": "1ZHXPzIT", + "index": 781142, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537661.A.49D.html", + "title": "R: [新聞] 直擊/陳時中7:50站路口初體驗 內湖居民" + }, + { + "aid": "1ZHXQYW6", + "index": 781143, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537698.A.806.html", + "title": "[問卦] 幹你娘 沒廁所可以大便啦!" + }, + { + "aid": "1ZHXQYNO", + "index": 781144, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537698.A.5D8.html", + "title": "[問卦] 小編的代表作是哪張圖?" + }, + { + "aid": "1ZHXTbIi", + "index": 781145, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537893.A.4AC.html", + "title": "[新聞] 南部辦桌「超霸氣甜點」一人一桶! 阿" + }, + { + "aid": "1ZHXTePU", + "index": 781146, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665537896.A.65E.html", + "title": "R: [問卦] 台股為何亞洲最爛?" + }, + { + "aid": "1ZHXWoKZ", + "index": 781147, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538098.A.523.html", + "title": "[問卦] 女友說去澳洲要買二手奧迪,該買嗎" + }, + { + "aid": "1ZHXYLdC", + "index": 781148, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538197.A.9CC.html", + "title": "[問卦] 同行的死掉你會很爽的人是啥職業啊????" + }, + { + "aid": "1ZHXZ9gj", + "index": 781149, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538249.A.AAD.html", + "title": "[問卦] 國安雞精這次是不是要賺爛了?" + }, + { + "aid": "1ZHXZJJY", + "index": 781150, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538259.A.4E2.html", + "title": "[問卦] 有沒有臉書追蹤數被屠殺的八卦?" + }, + { + "aid": "1ZHXaRji", + "index": 781151, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538331.A.B6C.html", + "title": "[問卦] 所以到今天為止政府幫我賺了多少錢呢?" + }, + { + "aid": "1ZHXb2ix", + "index": 781152, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538370.A.B3B.html", + "title": "[問卦] 兒童台大哥哥跳河輕生 會連內褲都不穿??" + }, + { + "aid": "1ZHXcfiR", + "index": 781154, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538473.A.B1B.html", + "title": "[問卦] 原來周玉蔻的國文程度這麼差還能出書?" + }, + { + "aid": "1ZHXe96N", + "index": 781155, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538569.A.197.html", + "title": "[新聞] 民主糖衣包裝吃香喝辣特權?陳時中:民" + }, + { + "aid": "1ZHXeklh", + "index": 781156, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538606.A.BEB.html", + "title": "[問卦] 有沒有沈萬三的八卦???" + }, + { + "aid": "1ZHXfINT", + "index": 781157, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538642.A.5DD.html", + "title": "[新聞] 國軍防彈背心採購案混中國原料? 邱國正" + }, + { + "aid": "1ZHXfuTD", + "index": 781158, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538680.A.74D.html", + "title": "[問卦] 健檢報告,這樣算肥宅嗎" + }, + { + "aid": "1ZHXgqrH", + "index": 781159, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538740.A.D51.html", + "title": "[新聞] 韓國瑜昔成禁忌今又刮旋風 媒體人曝一" + }, + { + "aid": "1ZHXguba", + "index": 781160, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538744.A.964.html", + "title": "[問卦] 買低賣高怎麼還會賠錢?" + }, + { + "aid": "1ZHXi_kl", + "index": 781161, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538879.A.BAF.html", + "title": "[問卦] 老煙槍沒事一直狂咳嗽正常的嗎?" + }, + { + "aid": "1ZHXi_a9", + "index": 781162, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538879.A.909.html", + "title": "[新聞] 全面解封!日本開放自由行入境免隔 外" + }, + { + "aid": "1ZHXi_sn", + "index": 781163, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538879.A.DB1.html", + "title": "[問卦] 有人套在北極星嗎?" + }, + { + "aid": "1ZHXjEXi", + "index": 781164, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538894.A.86C.html", + "title": "[問卦] 垂坤的牛腱到底是蝦咪鬼阿" + }, + { + "aid": "1ZHXkYDt", + "index": 781165, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538978.A.377.html", + "title": "R: [問卦] 講一個把台灣拍的很厲害的廣告?" + }, + { + "aid": "1ZHXkt9E", + "index": 781166, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665538999.A.24E.html", + "title": "[問卦] 有人參加過鄉民宴嗎" + }, + { + "aid": "1ZHXl7W-", + "index": 781167, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539015.A.83E.html", + "title": "[問卦] 那些說台積600以下是禮物的分析師道歉嗎?" + }, + { + "aid": "1ZHXlRqd", + "index": 781168, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539035.A.D27.html", + "title": "[問卦] 永豐金取代台積電成為新護國神山?" + }, + { + "aid": "1ZHXlUtx", + "index": 781169, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539038.A.DFB.html", + "title": "R: [問卦] 嘉義這地方有什麼發展性嗎?" + }, + { + "aid": "1ZHXlVQB", + "index": 781170, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539039.A.68B.html", + "title": "[問卦] 大家都沒看股票了ㄇ?" + }, + { + "aid": "1ZHXmhlX", + "index": 781171, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539115.A.BE1.html", + "title": "R: [新聞] 新制勞退慘賠 等績效好再領" + }, + { + "aid": "1ZHXnEPP", + "index": 781172, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539150.A.659.html", + "title": "R: [新聞] 直擊/陳時中7:50站路口初體驗 內湖居民" + }, + { + "aid": "1ZHXnYV5", + "index": 781173, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539170.A.7C5.html", + "title": "[問卦] 女同事臉色很難看,發生了什麼" + }, + { + "aid": "1ZHXoJ92", + "index": 781174, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539219.A.242.html", + "title": "[問卦] 台股跌倒萬三了,可以進場了吧!" + }, + { + "aid": "1ZHXpD8u", + "index": 781175, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539277.A.238.html", + "title": "[問卦] 18歲公民權根本有毒吧?" + }, + { + "aid": "1ZHXpVZy", + "index": 781176, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539295.A.8FC.html", + "title": "[問卦] 日本前首相小泉純一郎兒子沒大泉洋紅?" + }, + { + "aid": "1ZHXs-Mp", + "index": 781178, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539518.A.5B3.html", + "title": "R: [問卦] 18歲公民權根本有毒吧?" + }, + { + "aid": "1ZHXt5z7", + "index": 781179, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539525.A.F47.html", + "title": "R: [新聞] 中山大學獼猴插吸管「暢飲手搖杯」 熟練" + }, + { + "aid": "1ZHXtXAl", + "index": 781180, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539553.A.2AF.html", + "title": "R: [新聞] 國軍防彈背心採購案混中國原料? 邱國正" + }, + { + "aid": "1ZHXt-7q", + "index": 781181, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539582.A.1F4.html", + "title": "[問卦] 股票慘賠要等績效好再領嗎" + }, + { + "aid": "1ZHXv4q9", + "index": 781183, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539652.A.D09.html", + "title": "R: [問卦] 18歲公民權根本有毒吧?" + }, + { + "aid": "1ZHXvCoL", + "index": 781184, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539660.A.C95.html", + "title": "[問卦] 瑪奇瑪感覺很像惡魔欸" + }, + { + "aid": "1ZHXxDfh", + "index": 781185, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539789.A.A6B.html", + "title": "[問卦] 勞保基金丟到2330是無腦賭博" + }, + { + "aid": "1ZHXxbi4", + "index": 781186, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539813.A.B04.html", + "title": "R: [新聞] 蘇貞昌「王牌小編」輕生 代表作曝!" + }, + { + "aid": "1ZHXxrc2", + "index": 781187, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539829.A.982.html", + "title": "[問卦] 公司廁所驚傳哭聲怎麼辦" + }, + { + "aid": "1ZHXy5Ux", + "index": 781188, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539845.A.7BB.html", + "title": "[問卦] 股價跟氣溫是不是有連動?" + }, + { + "aid": "1ZHXzfVW", + "index": 781189, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539945.A.7E0.html", + "title": "[問卦] 都教授怎麼這麼年輕長得像韓星的八卦?" + }, + { + "aid": "1ZHXzpIU", + "index": 781190, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665539955.A.49E.html", + "title": "[問卦] 打著民主18投票、卻幫18歲青年決定役期?" + }, + { + "aid": "1ZHX_6pe", + "index": 781191, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540038.A.CE8.html", + "title": "[新聞] 國民黨批華視「三立化」 李永得:媒體人" + }, + { + "aid": "1ZHX_NF0", + "index": 781192, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540055.A.3C0.html", + "title": "R: [問卦] 18歲公民權根本有毒吧?" + }, + { + "aid": "1ZHX_bJN", + "index": 781193, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540069.A.4D7.html", + "title": "R: [問卦] 18歲公民權根本有毒吧?" + }, + { + "aid": "1ZHY0ZPK", + "index": 781194, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540131.A.654.html", + "title": "[問卦] 台灣除了半導體之外沒其他產業能說嘴?" + }, + { + "aid": "1ZHY12_9", + "index": 781195, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540162.A.FC9.html", + "title": "[新聞] 國軍防彈衣爆弊案 邱國正:廠商用中國製" + }, + { + "aid": "1ZHY1UsR", + "index": 781196, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540190.A.D9B.html", + "title": "[問卦] 紙牌屋劇情是荒誕還是接近現實?" + }, + { + "aid": "1ZHY1s6T", + "index": 781197, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540214.A.19D.html", + "title": "[問卦] 股價下跌房價是不是會暴漲?" + }, + { + "aid": "1ZHY24jT", + "index": 781198, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540228.A.B5D.html", + "title": "[新聞] 真尷尬!陳時中7:50站路口被罵 住戶譙" + }, + { + "aid": "1ZHY2yda", + "index": 781199, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540284.A.9E4.html", + "title": "R: [問卦] 打著民主18投票、卻幫18歲青年決定役期?" + }, + { + "aid": "1ZHY321s", + "index": 781200, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540290.A.076.html", + "title": "R: [新聞] 國軍防彈背心採購案混中國原料? 邱國正" + }, + { + "aid": "1ZHY3t7M", + "index": 781201, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540343.A.1D6.html", + "title": "[問卦] 隔壁男廁一直傳來低吼聲 = =?" + }, + { + "aid": "1ZHY48Qv", + "index": 781202, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540360.A.6B9.html", + "title": "[問卦] 國安基金是不是變成國安GG" + }, + { + "aid": "1ZHY4Zal", + "index": 781203, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540387.A.92F.html", + "title": "R: [新聞] 廢核時間不當 台電當冤大頭" + }, + { + "aid": "1ZHY7HVJ", + "index": 781204, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540561.A.7D3.html", + "title": "[問卦] 香港送中需要法庭同意,當初有什麼好反" + }, + { + "aid": "1ZHY7NSi", + "index": 781205, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540567.A.72C.html", + "title": "[問卦] 賀!! 高端盤中漲停~" + }, + { + "aid": "1ZHY7W9I", + "index": 781206, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540576.A.252.html", + "title": "[問卦] 鄉民都不婚不生都是誰拚命買房?" + }, + { + "aid": "1ZHY8NDH", + "index": 781207, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540631.A.351.html", + "title": "[新聞] 台南安平古堡更名惹議 林智群:國民黨" + }, + { + "aid": "1ZHY8yY-", + "index": 781208, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540668.A.8BE.html", + "title": "[問卦] 打籃球的話是要找王祖賢還是熊熊??" + }, + { + "aid": "1ZHYAEdI", + "index": 781209, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540750.A.9D2.html", + "title": "R: [問卦] 公司廁所驚傳哭聲怎麼辦" + }, + { + "aid": "1ZHYCZuQ", + "index": 781210, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540899.A.E1A.html", + "title": "[新聞] 打高端赴日需PCR 綠委籲指揮中心「放寬…" + }, + { + "aid": "1ZHYDLxo", + "index": 781211, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540949.A.EF2.html", + "title": "[問卦] 國軍營站便宜是因為不用開發票嗎" + }, + { + "aid": "1ZHYDreR", + "index": 781212, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540981.A.A1B.html", + "title": "R: [問卦] GTA5小富買豪宅是不是很勵志?" + }, + { + "aid": "1ZHYE3dV", + "index": 781213, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665540995.A.9DF.html", + "title": "[問卦] 家裡常駐什麼零食最頂??" + }, + { + "aid": "1ZHYFGJb", + "index": 781214, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541072.A.4E5.html", + "title": "R: [問卦] 18歲公民權根本有毒吧?" + }, + { + "aid": "1ZHYFdcb", + "index": 781215, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541095.A.9A5.html", + "title": "[問卦] 新竹風好大?" + }, + { + "aid": "1ZHYFnPX", + "index": 781216, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541105.A.661.html", + "title": "R: [問卦] 公司廁所驚傳哭聲怎麼辦" + }, + { + "aid": "1ZHYGXvH", + "index": 781217, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541153.A.E51.html", + "title": "R: [新聞] 真尷尬!陳時中7:50站路口被罵 住戶譙" + }, + { + "aid": "1ZHYIA1s", + "index": 781218, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541258.A.076.html", + "title": "R: [問卦] 台積電高雄廠還要繼續蓋嗎" + }, + { + "aid": "1ZHYINaI", + "index": 781219, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541271.A.912.html", + "title": "[問卦] 今年有買股票損益還能持平多強阿" + }, + { + "aid": "1ZHYIqdg", + "index": 781220, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541300.A.9EA.html", + "title": "[問卦] 台灣能源政策會急轉彎嗎?" + }, + { + "aid": "1ZHYJj7W", + "index": 781221, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541357.A.1E0.html", + "title": "[新聞] 臉書又故障?她追蹤數「一夜蒸發6萬」" + }, + { + "aid": "1ZHYKRpp", + "index": 781222, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541403.A.CF3.html", + "title": "[問卦] 亞馬遜會員特賣該買啥划算" + }, + { + "aid": "1ZHYL86b", + "index": 781223, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541448.A.1A5.html", + "title": "[問卦] 貓熊幫動物園賺多少錢?" + }, + { + "aid": "1ZHYLMb8", + "index": 781224, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541462.A.948.html", + "title": "R: [新聞] 真尷尬!陳時中7:50站路口被罵 住戶譙" + }, + { + "aid": "1ZHYLpet", + "index": 781225, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541491.A.A37.html", + "title": "R: [問卦] 公司廁所驚傳哭聲怎麼辦" + }, + { + "aid": "1ZHYNNIW", + "index": 781226, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541591.A.4A0.html", + "title": "[問卦] 今天如果在路口你敢當面嗆嗎?" + }, + { + "aid": "1ZHYNmIb", + "index": 781227, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541616.A.4A5.html", + "title": "[問卦] 萬家香烤肉是台灣最成功的廣告嗎?" + }, + { + "aid": "1ZHYNpFr", + "index": 781228, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541619.A.3F5.html", + "title": "R: [問卦] 18歲公民權根本有毒吧?" + }, + { + "aid": "1ZHYOx5M", + "index": 781229, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541691.A.156.html", + "title": "[問卦] 以後選舉可以先簽軍令狀嗎" + }, + { + "aid": "1ZHYOzyn", + "index": 781230, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541693.A.F31.html", + "title": "[問卦] 看小說辦案的例子" + }, + { + "aid": "1ZHYP0OQ", + "index": 781231, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541696.A.61A.html", + "title": "[問卦] 現在484allinGG好時機?!" + }, + { + "aid": "1ZHYPRaF", + "index": 781232, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541723.A.90F.html", + "title": "[新聞] 四叉貓爆新北市府局處發新聞稿攻擊 林佳" + }, + { + "aid": "1ZHYPUoC", + "index": 781233, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541726.A.C8C.html", + "title": "[新聞] 分水嶺時刻:美國公佈大範圍出口管控措施" + }, + { + "aid": "1ZHYRKz7", + "index": 781234, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665541844.A.F47.html", + "title": "[問卦] 男生最有價值的年紀是在幾歲呢?" + }, + { + "aid": "1ZHYV9fW", + "index": 781235, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542089.A.A60.html", + "title": "[問卦] 站路口揮手是哪時候開始的?" + }, + { + "aid": "1ZHYVb5H", + "index": 781236, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542117.A.151.html", + "title": "[新聞] 蔡遞兩岸橄欖枝 柯:我做就變檳榔" + }, + { + "aid": "1ZHYWFmv", + "index": 781237, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542159.A.C39.html", + "title": "R: [問卦] 貓熊幫動物園賺多少錢?" + }, + { + "aid": "1ZHYWxj2", + "index": 781238, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542203.A.B42.html", + "title": "R: [問卦] 18歲公民權根本有毒吧?" + }, + { + "aid": "1ZHYZAme", + "index": 781239, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542346.A.C28.html", + "title": "[問卦] 死神 千年血戰篇值得看嗎" + }, + { + "aid": "1ZHYZIxM", + "index": 781240, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542354.A.ED6.html", + "title": "R: [新聞] 四叉貓爆新北市府局處發新聞稿攻擊 林佳" + }, + { + "aid": "1ZHYZas9", + "index": 781241, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542372.A.D89.html", + "title": "[問卦] 朋友家要被市政重劃了" + }, + { + "aid": "1ZHYaLc5", + "index": 781242, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542421.A.985.html", + "title": "[新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHYaPjJ", + "index": 781243, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542425.A.B53.html", + "title": "[問卦] 小馮/黑嘉嘉/林襄誰最適合當小孩的家教?" + }, + { + "aid": "1ZHYaRkB", + "index": 781244, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542427.A.B8B.html", + "title": "R: [新聞] 真尷尬!陳時中7:50站路口被罵 住戶譙" + }, + { + "aid": "1ZHYamCj", + "index": 781245, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542448.A.32D.html", + "title": "R: [問卦] 女森要的的感覺到底是甚麼?" + }, + { + "aid": "1ZHYawJo", + "index": 781246, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542458.A.4F2.html", + "title": "[問卦] 罵王八蛋會被告嗎" + }, + { + "aid": "1ZHYdJXn", + "index": 781247, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542611.A.871.html", + "title": "[問卦] 為啥是沒投票權的小孩要幫忙抗中保台" + }, + { + "aid": "1ZHYdhSp", + "index": 781248, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542635.A.733.html", + "title": "[新聞] 布拉格動物園台灣穿山甲懷孕 歐洲首見" + }, + { + "aid": "1ZHYdifp", + "index": 781249, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542636.A.A73.html", + "title": "R: [新聞] 真尷尬!陳時中7:50站路口被罵 住戶譙" + }, + { + "aid": "1ZHYeaxM", + "index": 781250, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542692.A.ED6.html", + "title": "R: [新聞] 國軍防彈背心採購案混中國原料? 邱國正" + }, + { + "aid": "1ZHYermD", + "index": 781251, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542709.A.C0D.html", + "title": "[問卦] 不人道的羽絨外套穿得下去嗎" + }, + { + "aid": "1ZHYggEH", + "index": 781252, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542826.A.391.html", + "title": "[新聞] 馬斯克提議烏克蘭割地前 傳曾與蒲亭交談" + }, + { + "aid": "1ZHYhawT", + "index": 781253, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542884.A.E9D.html", + "title": "[問卦] 中國女星趙肉絲 長的還不錯耶" + }, + { + "aid": "1ZHYhc2K", + "index": 781254, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542886.A.094.html", + "title": "[問卦] 奇怪的簡寫 202210" + }, + { + "aid": "1ZHYhd71", + "index": 781255, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542887.A.1C1.html", + "title": "[問卦] 看到同屆的人死掉是啥感覺" + }, + { + "aid": "1ZHYhgCY", + "index": 781256, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542890.A.322.html", + "title": "[問卦] 為什麼討厭當兵?!" + }, + { + "aid": "1ZHYiNGX", + "index": 781257, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542935.A.421.html", + "title": "[新聞] 快訊/新北樹林公車撞機車再衝分隔島 騎" + }, + { + "aid": "1ZHYiani", + "index": 781258, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542948.A.C6C.html", + "title": "[問卦] 大家支持四個月的兵補完役期嗎" + }, + { + "aid": "1ZHYirpi", + "index": 781259, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665542965.A.CEC.html", + "title": "[新聞] 習近平想在台北辦勝利遊行! 外媒揭中" + }, + { + "aid": "1ZHYk7h9", + "index": 781260, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543047.A.AC9.html", + "title": "[問卦] 有韓國醬蟹的八卦嗎" + }, + { + "aid": "1ZHYlJ4J", + "index": 781261, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543123.A.113.html", + "title": "[問卦] 東泉辣椒醬 救的了雙響炮 康師傅嗎?" + }, + { + "aid": "1ZHYleS6", + "index": 781262, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543144.A.706.html", + "title": "[問卦] YouBike 484把全台腳踏車店都打垮了?" + }, + { + "aid": "1ZHYmWtL", + "index": 781263, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543200.A.DD5.html", + "title": "[問卦] 有沒有串流音樂的八卦" + }, + { + "aid": "1ZHYmskc", + "index": 781264, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543222.A.BA6.html", + "title": "[問卦] 習維尼怎麼突然想侵略台灣了" + }, + { + "aid": "1ZHYp5IA", + "index": 781265, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543365.A.48A.html", + "title": "R: [問卦] 大家支持四個月的兵補完役期嗎" + }, + { + "aid": "1ZHYpHzL", + "index": 781266, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543377.A.F55.html", + "title": "R: [問卦] 兵役四個月的抓回去補滿一年合理吧" + }, + { + "aid": "1ZHYpPwD", + "index": 781267, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543385.A.E8D.html", + "title": "[問卦] 保守秘密的有效方式非得殺人?" + }, + { + "aid": "1ZHYpQo0", + "index": 781268, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543386.A.C80.html", + "title": "[問卦] 4開頭的GG是天上掉下來的禮物,那3開頭的" + }, + { + "aid": "1ZHYpZt0", + "index": 781269, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543395.A.DC0.html", + "title": "[問卦] 該怎麼處理幸災樂禍的貓呢" + }, + { + "aid": "1ZHYpv6j", + "index": 781270, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543417.A.1AD.html", + "title": "[新聞] 台灣新增染疫數世界第一!薛瑞元認「不是" + }, + { + "aid": "1ZHYqVD9", + "index": 781271, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543455.A.349.html", + "title": "[新聞] 橘色惡魔愛上台灣了!飛機上淚崩不想走" + }, + { + "aid": "1ZHYrHn8", + "index": 781272, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543505.A.C48.html", + "title": "[問卦] 外送一定要裝箱子嗎???" + }, + { + "aid": "1ZHYrxK7", + "index": 781273, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543547.A.507.html", + "title": "[問卦] 香港是不是已經走會正軌了?" + }, + { + "aid": "1ZHYsG6f", + "index": 781274, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543568.A.1A9.html", + "title": "[問卦] =.= 為什麼小米越做越多元?!" + }, + { + "aid": "1ZHYsOgN", + "index": 781275, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543576.A.A97.html", + "title": "[問卦] 怎麼到處都有人咳嗽擤鼻涕?" + }, + { + "aid": "1ZHYtE7h", + "index": 781277, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543630.A.1EB.html", + "title": "[問卦] 慟!護國神山台積電3字頭了" + }, + { + "aid": "1ZHYtJ3P", + "index": 781278, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543635.A.0D9.html", + "title": "R: [新聞] 台灣新增染疫數世界第一!薛瑞元認「不是" + }, + { + "aid": "1ZHYtSj0", + "index": 781279, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543644.A.B40.html", + "title": "R: [問卦] 中國女星趙肉絲 長的還不錯耶" + }, + { + "aid": "1ZHYtl7Y", + "index": 781280, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543663.A.1E2.html", + "title": "R: [問卦] YouBike 484把全台腳踏車店都打垮了?" + }, + { + "aid": "1ZHYu5Kj", + "index": 781281, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543685.A.52D.html", + "title": "R: [新聞] 真尷尬!陳時中7:50站路口被罵 住戶譙" + }, + { + "aid": "1ZHYv1wZ", + "index": 781282, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543745.A.EA3.html", + "title": "R: [新聞] 電動自行車 無牌上路可罰3600" + }, + { + "aid": "1ZHYxWHV", + "index": 781283, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543904.A.45F.html", + "title": "R: [問卦] 4開頭的GG是天上掉下來的禮物,那3開頭的" + }, + { + "aid": "1ZHYxY_c", + "index": 781284, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543906.A.FE6.html", + "title": "R: [問卦] 朋友家要被市政重劃了" + }, + { + "aid": "1ZHYyPje", + "index": 781285, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543961.A.B68.html", + "title": "R: [問卦] 最近一堆小說改編動畫" + }, + { + "aid": "1ZHYyQeV", + "index": 781286, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543962.A.A1F.html", + "title": "[問卦] 折疊手機會重領風潮嗎?" + }, + { + "aid": "1ZHYyXlo", + "index": 781287, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543969.A.BF2.html", + "title": "R: [問卦] 大家支持四個月的兵補完役期嗎" + }, + { + "aid": "1ZHYybQD", + "index": 781288, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543973.A.68D.html", + "title": "[問卦] 急,面對有免死金牌之人該如何破解??" + }, + { + "aid": "1ZHYyjc5", + "index": 781289, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665543981.A.985.html", + "title": "R: [問卦] 大家支持四個月的兵補完役期嗎" + }, + { + "aid": "1ZHYzy5A", + "index": 781290, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544060.A.14A.html", + "title": "R: [新聞] 真尷尬!陳時中7:50站路口被罵 住戶譙" + }, + { + "aid": "1ZHY-9C7", + "index": 781291, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544073.A.307.html", + "title": "[新聞] 不再歧視懷孕員工逼辭職 新航允許空服" + }, + { + "aid": "1ZHY-IDf", + "index": 781292, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544082.A.369.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHY-nFv", + "index": 781293, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544113.A.3F9.html", + "title": "[問卦] 中國怎麼還沒用錢買下台灣?" + }, + { + "aid": "1ZHY_g30", + "index": 781294, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544170.A.0C0.html", + "title": "[新聞] 陸疫情第三年不躺平! 二十大召開在即" + }, + { + "aid": "1ZHY_oQE", + "index": 781295, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544178.A.68E.html", + "title": "[問卦] 救援小英雄波力是博派還是狂派金剛?" + }, + { + "aid": "1ZHZ0m1M", + "index": 781296, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544240.A.056.html", + "title": "R: [問卦] 中國怎麼還沒用錢買下台灣?" + }, + { + "aid": "1ZHZ0y6R", + "index": 781297, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544252.A.19B.html", + "title": "R: [新聞] 台灣新增染疫數世界第一!薛瑞元認「不是" + }, + { + "aid": "1ZHZ1toD", + "index": 781298, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544311.A.C8D.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHZ3Q6O", + "index": 781299, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544410.A.198.html", + "title": "[新聞] 民調/北市若棄保黃珊珊成大贏家 陳時中" + }, + { + "aid": "1ZHZ3iE4", + "index": 781300, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544428.A.384.html", + "title": "[問卦] 不懂欸!股匯雙殺損失會比升息損失少嗎" + }, + { + "aid": "1ZHZ4v34", + "index": 781301, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544505.A.0C4.html", + "title": "[問卦] 2022日本男高中森 票選 o'_'o" + }, + { + "aid": "1ZHZ6Zo1", + "index": 781302, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544611.A.C81.html", + "title": "[問卦] 台灣有什麼東西是真的抵制成功的嗎?" + }, + { + "aid": "1ZHZ75St", + "index": 781303, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544645.A.737.html", + "title": "R: [問卦] 大家支持四個月的兵補完役期嗎" + }, + { + "aid": "1ZHZ9IWh", + "index": 781304, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544786.A.82B.html", + "title": "[問卦] 路上的樹可以亂剪嗎" + }, + { + "aid": "1ZHZAZU1", + "index": 781305, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544867.A.781.html", + "title": "R: [問卦] 折疊手機會重領風潮嗎?" + }, + { + "aid": "1ZHZB4te", + "index": 781306, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544900.A.DE8.html", + "title": "[新聞] 上海似因水庫鹹化可能影響供應 居民開始" + }, + { + "aid": "1ZHZBMfh", + "index": 781307, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544918.A.A6B.html", + "title": "R: [新聞] 民調/北市若棄保黃珊珊成大贏家 陳時中" + }, + { + "aid": "1ZHZBMwW", + "index": 781308, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544918.A.EA0.html", + "title": "[問卦] 新護國神山要換誰當" + }, + { + "aid": "1ZHZBhDI", + "index": 781309, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544939.A.352.html", + "title": "R: [問卦] 大家支持四個月的兵補完役期嗎" + }, + { + "aid": "1ZHZBrtc", + "index": 781310, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544949.A.DE6.html", + "title": "R: [新聞] 宋楚瑜議題聽到煩!黃珊珊怒:怎不問蔣…" + }, + { + "aid": "1ZHZBsqK", + "index": 781311, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544950.A.D14.html", + "title": "[問卦] 為什麼很多人喜歡去公園釣魚?" + }, + { + "aid": "1ZHZC2ma", + "index": 781312, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544962.A.C24.html", + "title": "[問卦] 橘色JK來台灣考得上哪所大學?" + }, + { + "aid": "1ZHZCJLx", + "index": 781313, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665544979.A.57B.html", + "title": "[問卦] 我好髒2022" + }, + { + "aid": "1ZHZDa1u", + "index": 781314, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545060.A.078.html", + "title": "[新聞] 連千毅「組織犯罪+槍砲」二審判7年 還" + }, + { + "aid": "1ZHZF9aJ", + "index": 781315, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545161.A.913.html", + "title": "[問卦] 身家6000萬可以躺平了嗎?" + }, + { + "aid": "1ZHZG8E6", + "index": 781316, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545224.A.386.html", + "title": "[新聞] 邱國正:如役期恢復一年制 當兵4個月役男" + }, + { + "aid": "1ZHZGIrY", + "index": 781317, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545234.A.D62.html", + "title": "[問卦] 打完疫苗可以請假嗎 = =" + }, + { + "aid": "1ZHZJR3z", + "index": 781319, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545435.A.0FD.html", + "title": "R: [新聞] 民調/北市若棄保黃珊珊成大贏家 陳時中" + }, + { + "aid": "1ZHZJaoH", + "index": 781320, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545444.A.C91.html", + "title": "[新聞] 鄭運鵬自主健康管理期到處趴趴走! 藍" + }, + { + "aid": "1ZHZKvpT", + "index": 781321, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545529.A.CDD.html", + "title": "[問卦] 明天要開放國門了 恐慌仔該如何調適心情" + }, + { + "aid": "1ZHZL2Fn", + "index": 781322, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545538.A.3F1.html", + "title": "[問卦] 為何不發租屋補貼、通勤津貼給年輕人?" + }, + { + "aid": "1ZHZLCYs", + "index": 781323, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545548.A.8B6.html", + "title": "[問卦] 有什麼比較自然的穿鞋帶方法嗎?" + }, + { + "aid": "1ZHZLt6G", + "index": 781324, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545591.A.190.html", + "title": "[問卦] 男廁聽到異音甲甲機率高還是男女?" + }, + { + "aid": "1ZHZMX6s", + "index": 781325, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545633.A.1B6.html", + "title": "[問卦] 當兵出去洽公484很爽?" + }, + { + "aid": "1ZHZNhWC", + "index": 781326, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545707.A.80C.html", + "title": "[問卦] 股市大跌空手仔是在爽幾點的" + }, + { + "aid": "1ZHZPj-5", + "index": 781327, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545837.A.F85.html", + "title": "[新聞] 口罩令何時放寬 薛瑞元:不宜現在解除" + }, + { + "aid": "1ZHZQmnN", + "index": 781328, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545904.A.C57.html", + "title": "[問卦] 中國解封484無望了" + }, + { + "aid": "1ZHZRSyj", + "index": 781329, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545948.A.F2D.html", + "title": "[新聞] 陳揮文請求新竹鄉親「不要被高虹安騙」" + }, + { + "aid": "1ZHZRYUe", + "index": 781330, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545954.A.7A8.html", + "title": "[問卦] 農地 公告現值 9000元/平方公尺 多還少?" + }, + { + "aid": "1ZHZRtpP", + "index": 781331, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665545975.A.CD9.html", + "title": "R: [問卦] YouBike 484把全台腳踏車店都打垮了?" + }, + { + "aid": "1ZHZTdJr", + "index": 781332, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546087.A.4F5.html", + "title": "R: [問卦] 這屆高二生說:我們兵役還是4個月吧?" + }, + { + "aid": "1ZHZTh9v", + "index": 781333, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546091.A.279.html", + "title": "[問卦] 同事噴到我的眼睛好痛" + }, + { + "aid": "1ZHZU10i", + "index": 781334, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546113.A.02C.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHZU3nM", + "index": 781335, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546115.A.C56.html", + "title": "[問卦] 當完四個月的回去領6510元可以嗎" + }, + { + "aid": "1ZHZUrD0", + "index": 781336, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546165.A.340.html", + "title": "[新聞] 棄保發酵?新竹市長民調領先 高虹安:" + }, + { + "aid": "1ZHZVGrQ", + "index": 781337, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546192.A.D5A.html", + "title": "R: [問卦] 大家支持四個月的兵補完役期嗎" + }, + { + "aid": "1ZHZVoYg", + "index": 781338, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546226.A.8AA.html", + "title": "R: [新聞] 鄭運鵬自主健康管理期到處趴趴走!" + }, + { + "aid": "1ZHZW79o", + "index": 781339, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546247.A.272.html", + "title": "[問卦] 有沒有家裡很有錢但還是出去當社畜的" + }, + { + "aid": "1ZHZWVt5", + "index": 781340, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546271.A.DC5.html", + "title": "[問卦] 400以下的台積電可以撿嗎?" + }, + { + "aid": "1ZHZXH67", + "index": 781341, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546321.A.187.html", + "title": "R: [新聞] 陳揮文請求新竹鄉親「不要被高虹安騙」" + }, + { + "aid": "1ZHZXVYP", + "index": 781342, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546335.A.899.html", + "title": "[問卦] 砲友和女友的差別是?" + }, + { + "aid": "1ZHZXkFI", + "index": 781343, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546350.A.3D2.html", + "title": "Fw: [請假] Gossiping ubcs" + }, + { + "aid": "1ZHZaQ4Q", + "index": 781344, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546522.A.11A.html", + "title": "[問卦] 強迫對方拿手機出來檢查,有違法?" + }, + { + "aid": "1ZHZbbKV", + "index": 781345, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546597.A.51F.html", + "title": "[問卦] 有沒有甩尿完甩雞雞技巧的八卦" + }, + { + "aid": "1ZHZchMz", + "index": 781346, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546667.A.5BD.html", + "title": "[問卦] 為什麼不發中出獎金給台男台女" + }, + { + "aid": "1ZHZcuFd", + "index": 781347, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546680.A.3E7.html", + "title": "[問卦]鄉民的正義還會有第2集嗎" + }, + { + "aid": "1ZHZe3v4", + "index": 781348, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546755.A.E44.html", + "title": "[問卦] 提拉米蘇要好吃的關鍵在於什麼地方?" + }, + { + "aid": "1ZHZf2U4", + "index": 781349, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546818.A.784.html", + "title": "[問卦] GTA5麥可 竹科男典範?" + }, + { + "aid": "1ZHZf4O_", + "index": 781350, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546820.A.63F.html", + "title": "[問卦] 國安基金進場還是一片綠的八卦?" + }, + { + "aid": "1ZHZgKjw", + "index": 781351, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546900.A.B7A.html", + "title": "[問卦] 今天風電加太陽能發電有20%,是核電兩倍" + }, + { + "aid": "1ZHZhRKP", + "index": 781352, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665546971.A.519.html", + "title": "R: [新聞] 橘色惡魔愛上台灣了!飛機上淚崩不想走" + }, + { + "aid": "1ZHZiAi6", + "index": 781353, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547018.A.B06.html", + "title": "[問卦] 急死人 我鵝子在學校被霸凌 怎麼辦?" + }, + { + "aid": "1ZHZjipv", + "index": 781354, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547116.A.CF9.html", + "title": "R: [問卦] 身家6000萬可以躺平了嗎?" + }, + { + "aid": "1ZHZkMoF", + "index": 781355, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547158.A.C8F.html", + "title": "R: [問卦] 當兵出去洽公484很爽?" + }, + { + "aid": "1ZHZlAf2", + "index": 781356, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547210.A.A42.html", + "title": "[問卦] 北一女改名叫綠惡魔會不會比較會吹" + }, + { + "aid": "1ZHZlqF_", + "index": 781357, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547252.A.3FF.html", + "title": "[新聞] 有「鹹魚」! 北溪管道爆炸前、後美機都在" + }, + { + "aid": "1ZHZnSOU", + "index": 781358, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547356.A.61E.html", + "title": "[問卦] 安平區該改名成熱蘭遮區了吧" + }, + { + "aid": "1ZHZqghV", + "index": 781359, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547562.A.ADF.html", + "title": "[問卦] 4倍是不是自由民主的公定價差啊?" + }, + { + "aid": "1ZHZqugF", + "index": 781360, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547576.A.A8F.html", + "title": "R: [問卦] 股市大跌空手仔是在爽幾點的" + }, + { + "aid": "1ZHZr7Vo", + "index": 781361, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547591.A.7F2.html", + "title": "R: [問卦] 身家6000萬可以躺平了嗎?" + }, + { + "aid": "1ZHZrIr_", + "index": 781362, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547602.A.D7F.html", + "title": "[問卦] 台股的韭菜都誰割走了啊= =?" + }, + { + "aid": "1ZHZs3-f", + "index": 781363, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547651.A.FA9.html", + "title": "[問卦] 有菜雞不知道麥當勞買薯條的訣竅嗎" + }, + { + "aid": "1ZHZsLSY", + "index": 781364, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547669.A.722.html", + "title": "[問卦] 從防疫來看兩岸是不是根本一家親?" + }, + { + "aid": "1ZHZsMas", + "index": 781365, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547670.A.936.html", + "title": "[新聞] 貼10秒清涼深蹲片嗆蔣萬安 美女醫曝驚人" + }, + { + "aid": "1ZHZstRH", + "index": 781366, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547703.A.6D1.html", + "title": "[新聞] 侯家軍發聯合廣告 酸林佳龍「台中不要的" + }, + { + "aid": "1ZHZtEK9", + "index": 781367, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547726.A.509.html", + "title": "[問卦] 1970年代出社會打拚的台灣人有多爽" + }, + { + "aid": "1ZHZtdjg", + "index": 781368, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547751.A.B6A.html", + "title": "[問卦] 復學後感覺嚴重發作怎辦!?" + }, + { + "aid": "1ZHZtrPR", + "index": 781369, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547765.A.65B.html", + "title": "R: [問卦] 中國解封484無望了" + }, + { + "aid": "1ZHZtveN", + "index": 781370, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547769.A.A17.html", + "title": "[新聞] 男參加同志大遊行問志工1句話 下秒竟偷" + }, + { + "aid": "1ZHZuAa9", + "index": 781371, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547786.A.909.html", + "title": "R: [問卦] 提拉米蘇要好吃的關鍵在於什麼地方?" + }, + { + "aid": "1ZHZvc7-", + "index": 781372, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547878.A.1FE.html", + "title": "[問卦] 這是幾星級的鋪路工法?" + }, + { + "aid": "1ZHZwHFa", + "index": 781373, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665547921.A.3E4.html", + "title": "[新聞] 網愛講「芭比Q了」恐文化滲透!立委批陸" + }, + { + "aid": "1ZHZxYwR", + "index": 781374, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548002.A.E9B.html", + "title": "[問卦] 治平高中打得贏橘色惡魔嗎" + }, + { + "aid": "1ZHZxrme", + "index": 781375, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548021.A.C28.html", + "title": "R: [問卦] 身家6000萬可以躺平了嗎?" + }, + { + "aid": "1ZHZy9jB", + "index": 781376, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548041.A.B4B.html", + "title": "[問卦] \"男性\"也會被家暴? 還逐年成長?" + }, + { + "aid": "1ZHZyRtH", + "index": 781377, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548059.A.DD1.html", + "title": "[問卦] 早餐店小妹是不是暗戀我><" + }, + { + "aid": "1ZHZyrBw", + "index": 781378, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548085.A.2FA.html", + "title": "[問卦] 有人偷拍演唱會 檢舉後主辦卻擺爛" + }, + { + "aid": "1ZHZzQF8", + "index": 781379, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548122.A.3C8.html", + "title": "R: [問卦] 有沒有家裡很有錢但還是出去當社畜的" + }, + { + "aid": "1ZHZzQyI", + "index": 781380, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548122.A.F12.html", + "title": "[公告]~(@o@)~炭香湯霜鮪魚水桶" + }, + { + "aid": "1ZHZzRvq", + "index": 781381, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548123.A.E74.html", + "title": "R: [問卦] /|||\台灣有什麼東西是真的抵制成…" + }, + { + "aid": "1ZHZzRqp", + "index": 781382, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548123.A.D33.html", + "title": "R: [新聞] 蔡遞兩岸橄欖枝 柯:我做就變檳榔" + }, + { + "aid": "1ZHZzz73", + "index": 781383, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548157.A.1C3.html", + "title": "[新聞] 大巨蛋審過了!花敬群批柯 黃珊珊反擊:" + }, + { + "aid": "1ZHZ-evo", + "index": 781384, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548200.A.E72.html", + "title": "[問卦] 以前買房比較輕鬆?" + }, + { + "aid": "1ZHZ-ev4", + "index": 781385, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548200.A.E44.html", + "title": "[問卦] 為什麼還有窮人" + }, + { + "aid": "1ZHZ-kKQ", + "index": 781386, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548206.A.51A.html", + "title": "[問卦] 遊戲伺服器長怎麼樣?" + }, + { + "aid": "1ZHZ_YwG", + "index": 781387, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548258.A.E90.html", + "title": "R: [新聞] 網愛講「芭比Q了」恐文化滲透!立委批陸" + }, + { + "aid": "1ZHa04MJ", + "index": 781388, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548292.A.593.html", + "title": "[問卦] 白癡喔 上次小說辦案就失智一次了" + }, + { + "aid": "1ZHa0_Hk", + "index": 781389, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548351.A.46E.html", + "title": "[問卦] 到底是退出聯合國還是被聯合國趕走" + }, + { + "aid": "1ZHa1VGK", + "index": 781390, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548383.A.414.html", + "title": "[問卦] 志願役領多少才有吸引力" + }, + { + "aid": "1ZHa2JNA", + "index": 781391, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548435.A.5CA.html", + "title": "[新聞] 國軍防彈衣採購竟用「中國原料」 國防部" + }, + { + "aid": "1ZHa2KMf", + "index": 781392, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548436.A.5A9.html", + "title": "R: [問卦] 安平區該改名成熱蘭遮區了吧" + }, + { + "aid": "1ZHa2u8S", + "index": 781393, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548472.A.21C.html", + "title": "[問卦] 八卦板484一堆人都會把魚養死??" + }, + { + "aid": "1ZHa3MxX", + "index": 781394, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548502.A.EE1.html", + "title": "[問卦] 內線開90的為什麼不留在平面轟幹就好?" + }, + { + "aid": "1ZHa3rTx", + "index": 781395, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548533.A.77B.html", + "title": "[問卦] 中國哪個社群網站不用實名的?" + }, + { + "aid": "1ZHa4aeJ", + "index": 781396, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548580.A.A13.html", + "title": "[問卦] 有沒有菱週刊的八卦?" + }, + { + "aid": "1ZHa4yHl", + "index": 781397, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548604.A.46F.html", + "title": "R: [問卦] 中國解封484無望了" + }, + { + "aid": "1ZHa7C2h", + "index": 781398, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548748.A.0AB.html", + "title": "R: [新聞] 大巨蛋審過了!花敬群批柯 黃珊珊反擊:" + }, + { + "aid": "1ZHa7K6e", + "index": 781399, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548756.A.1A8.html", + "title": "[新聞] 若恢復1年義務役 邱國正:當兵4個月役男" + }, + { + "aid": "1ZHa7X2T", + "index": 781400, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548769.A.09D.html", + "title": "[問卦] 為什麼要同情台積電買高點套牢的人?" + }, + { + "aid": "1ZHa7awH", + "index": 781401, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548772.A.E91.html", + "title": "[問卦] 海底撈撈麵不理他會怎樣?" + }, + { + "aid": "1ZHa7htu", + "index": 781402, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548779.A.DF8.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHa7rqa", + "index": 781403, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548789.A.D24.html", + "title": "R: [問卦] 安平區該改名成熱蘭遮區了吧" + }, + { + "aid": "1ZHa7vJZ", + "index": 781404, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548793.A.4E3.html", + "title": "R: [新聞] 網愛講「芭比Q了」恐文化滲透!立委批陸" + }, + { + "aid": "1ZHa8BOj", + "index": 781405, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548811.A.62D.html", + "title": "[問卦] 你各位住的地點舊名是什麼==?" + }, + { + "aid": "1ZHa8b9t", + "index": 781406, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548837.A.277.html", + "title": "R: [新聞] 口罩令何時放寬 薛瑞元:不宜現在解除" + }, + { + "aid": "1ZHa8nmg", + "index": 781407, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548849.A.C2A.html", + "title": "R: [新聞] 網愛講「芭比Q了」恐文化滲透!立委批陸" + }, + { + "aid": "1ZHa9ma9", + "index": 781408, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548912.A.909.html", + "title": "[問卦] 四個月兵是不是都草莓族= =" + }, + { + "aid": "1ZHa9wjg", + "index": 781409, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548922.A.B6A.html", + "title": "R: [問卦]~(@o@)~提拉米蘇要好吃的關鍵在於…" + }, + { + "aid": "1ZHa9w8m", + "index": 781410, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548922.A.230.html", + "title": "R: [問卦] /|||\消夜吃三隻炸雞腿,是不是很棒?" + }, + { + "aid": "1ZHaAl0T", + "index": 781411, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665548975.A.01D.html", + "title": "R: [新聞] 橘色惡魔愛上台灣了!飛機上淚崩不想走" + }, + { + "aid": "1ZHaB9xX", + "index": 781412, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549001.A.EE1.html", + "title": "R: [新聞] 若恢復1年義務役 邱國正:當兵4個月役男" + }, + { + "aid": "1ZHaBMZ6", + "index": 781413, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549014.A.8C6.html", + "title": "R: [新聞] 網愛講「芭比Q了」恐文化滲透!立委批陸" + }, + { + "aid": "1ZHaBRqD", + "index": 781414, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549019.A.D0D.html", + "title": "[問卦] 震驚!!美國EB-5只要50萬鎂" + }, + { + "aid": "1ZHaBWkh", + "index": 781415, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549024.A.BAB.html", + "title": "R: [問卦] 18歲公民權根本有毒吧?" + }, + { + "aid": "1ZHaCTw1", + "index": 781417, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549085.A.E81.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHaDvfH", + "index": 781418, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549177.A.A51.html", + "title": "R: [問卦] 身家6000萬可以躺平了嗎?" + }, + { + "aid": "1ZHaE5NM", + "index": 781419, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549189.A.5D6.html", + "title": "[問卦] 居兩千的領帶是三小==" + }, + { + "aid": "1ZHaEE7C", + "index": 781420, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549198.A.1CC.html", + "title": "[問卦] 喜歡被朋友慶生還是店員慶生?" + }, + { + "aid": "1ZHaEJ6l", + "index": 781421, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549203.A.1AF.html", + "title": "[問卦] 越南的烤肉定義到底是什麼?" + }, + { + "aid": "1ZHaEUjc", + "index": 781422, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549214.A.B66.html", + "title": "[新聞] 林佳龍:新北市府澄清新聞稿用字比競總尖" + }, + { + "aid": "1ZHaF2kl", + "index": 781423, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549250.A.BAF.html", + "title": "[新聞] 提一國兩區挨綠批區長 馬英九:民進黨" + }, + { + "aid": "1ZHaFFIy", + "index": 781424, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549263.A.4BC.html", + "title": "[問卦] 現在人還有在用飄撇 形容男生嗎?" + }, + { + "aid": "1ZHaGC-l", + "index": 781425, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549324.A.FAF.html", + "title": "[新聞] 「30元」非查賄標準! 最高檢:候選人贈" + }, + { + "aid": "1ZHaGKLl", + "index": 781426, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549332.A.56F.html", + "title": "[新聞] 環保少女童貝里受訪批德國 關閉既有核電…" + }, + { + "aid": "1ZHaGT4B", + "index": 781427, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549341.A.10B.html", + "title": "[新聞] 經長王美花訪美:如果台灣安全,全球半導" + }, + { + "aid": "1ZHaHVhe", + "index": 781428, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549407.A.AE8.html", + "title": "[問卦] 老人單號雙號輪流投票可行嗎?" + }, + { + "aid": "1ZHaHnF5", + "index": 781429, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549425.A.3C5.html", + "title": "[問卦] 台灣前兩年防疫是怎麼做到NO1的?" + }, + { + "aid": "1ZHaH_j9", + "index": 781430, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549439.A.B49.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHaJ0aQ", + "index": 781431, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549504.A.91A.html", + "title": "R: [新聞] 網愛講「芭比Q了」恐文化滲透!立委批陸" + }, + { + "aid": "1ZHaJc9E", + "index": 781432, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549542.A.24E.html", + "title": "[新聞] 幕後/桃園藍綠鏖戰!張善政陸轉空催聲量" + }, + { + "aid": "1ZHaJeZw", + "index": 781433, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549544.A.8FA.html", + "title": "[問卦] 日本白バイ交通警察都很友善?" + }, + { + "aid": "1ZHaJeIA", + "index": 781434, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549544.A.48A.html", + "title": "[問卦] 日本Uniqlo袋子要收錢嗎?" + }, + { + "aid": "1ZHaKGKB", + "index": 781435, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549584.A.50B.html", + "title": "[新聞] 幕後/林佳龍真的不跑行程隨便選? 實是" + }, + { + "aid": "1ZHaKQj4", + "index": 781436, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549594.A.B44.html", + "title": "R: [問卦] \"男性\"也會被家暴? 還逐年成長?" + }, + { + "aid": "1ZHaKihq", + "index": 781437, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549612.A.AF4.html", + "title": "[問卦] 日本為什麼在亞洲人緣那麼差?" + }, + { + "aid": "1ZHaL3-4", + "index": 781438, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549635.A.F84.html", + "title": "R: [新聞] 「30元」非查賄標準! 最高檢:候選人贈" + }, + { + "aid": "1ZHaLEdp", + "index": 781439, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549646.A.9F3.html", + "title": "R: [新聞] 網愛講「芭比Q了」恐文化滲透!立委批陸" + }, + { + "aid": "1ZHaLxvF", + "index": 781440, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549691.A.E4F.html", + "title": "[新聞] 中共二十大在即 傳黨內改革派發起「新三" + }, + { + "aid": "1ZHaLyfo", + "index": 781441, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549692.A.A72.html", + "title": "[問卦] 台灣改成夷州484比較合理?" + }, + { + "aid": "1ZHaMK1h", + "index": 781442, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549716.A.06B.html", + "title": "R: [新聞] 台灣新增染疫數世界第一!薛瑞元認「" + }, + { + "aid": "1ZHaMOc8", + "index": 781443, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549720.A.988.html", + "title": "[新聞] 美軍官爆《遊戲王》作者是「為救人才溺" + }, + { + "aid": "1ZHaMhl2", + "index": 781444, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549739.A.BC2.html", + "title": "[問卦] 台積電找內部員工去美國 拿綠卡後會跑吧" + }, + { + "aid": "1ZHaN0nE", + "index": 781446, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549760.A.C4E.html", + "title": "[問卦] 我484被掰彎惹" + }, + { + "aid": "1ZHaNObV", + "index": 781447, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549784.A.95F.html", + "title": "[問卦] 佐賀有什麼好玩的?" + }, + { + "aid": "1ZHaNr1u", + "index": 781448, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549813.A.078.html", + "title": "R: [問卦] \"男性\"也會被家暴? 還逐年成長?" + }, + { + "aid": "1ZHaNytu", + "index": 781449, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549820.A.DF8.html", + "title": "[新聞] 鄭運鵬違自主管理規定桃市府不罰 國民黨" + }, + { + "aid": "1ZHaO9q9", + "index": 781450, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549833.A.D09.html", + "title": "[新聞] 疫情高原又流感季 薛瑞元:應保持適度緊張" + }, + { + "aid": "1ZHaOVQK", + "index": 781451, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549855.A.694.html", + "title": "[問卦] 女同事說明天要把我剪掉該怎麼辦?" + }, + { + "aid": "1ZHaPBWF", + "index": 781452, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549899.A.80F.html", + "title": "R: [新聞] 「30元」非查賄標準! 最高檢:候選人贈" + }, + { + "aid": "1ZHaPEJy", + "index": 781453, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549902.A.4FC.html", + "title": "R: [問卦] 大家支持四個月的兵補完役期嗎" + }, + { + "aid": "1ZHaP-FA", + "index": 781454, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549950.A.3CA.html", + "title": "[新聞] 上海批量招聘專職大白簽2年合約 網民絕望" + }, + { + "aid": "1ZHaQ1l5", + "index": 781455, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665549953.A.BC5.html", + "title": "[新聞] 13歲少女洗完澡「濕身立刻開電視」 被" + }, + { + "aid": "1ZHaRNMS", + "index": 781456, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550039.A.59C.html", + "title": "R: [問卦] 橘色JK來台灣考得上哪所大學?" + }, + { + "aid": "1ZHaTsCf", + "index": 781457, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550198.A.329.html", + "title": "[問卦] 如何確認對方願意跟自己打砲?" + }, + { + "aid": "1ZHaTxhY", + "index": 781458, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550203.A.AE2.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHaU8xa", + "index": 781459, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550216.A.EE4.html", + "title": "[新聞] 林佳龍批市府不中立 新北:「成天潑髒水" + }, + { + "aid": "1ZHaU_qH", + "index": 781460, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550271.A.D11.html", + "title": "[問卦] 我就問 你們支持讓你家小孩當一年兵嗎?" + }, + { + "aid": "1ZHaWOP9", + "index": 781461, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550360.A.649.html", + "title": "[問卦] 說中國疫苗爛 但卻被世界各國承認?" + }, + { + "aid": "1ZHaWQ4H", + "index": 781462, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550362.A.111.html", + "title": "[問卦] 警察進駐便利商店能改善治安嗎" + }, + { + "aid": "1ZHaXDtS", + "index": 781463, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550413.A.DDC.html", + "title": "R: [問卦] 安平區該改名成熱蘭遮區了吧" + }, + { + "aid": "1ZHaXOIM", + "index": 781464, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550424.A.496.html", + "title": "[問卦] 為何台灣這麼反中國?" + }, + { + "aid": "1ZHaXbn8", + "index": 781465, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550437.A.C48.html", + "title": "R: [問卦] 如何確認對方願意跟自己打砲?" + }, + { + "aid": "1ZHaXgsY", + "index": 781466, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550442.A.DA2.html", + "title": "[新聞] 違停無極限!婦為買水餃機車停雙黃線上" + }, + { + "aid": "1ZHaYLb9", + "index": 781467, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550485.A.949.html", + "title": "[問卦] 刑法484該拉高到20歲?" + }, + { + "aid": "1ZHaZ5q6", + "index": 781468, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550533.A.D06.html", + "title": "[新聞] 國防部長邱國正:國軍目前絕對不會再買特" + }, + { + "aid": "1ZHaZi-n", + "index": 781469, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550572.A.FB1.html", + "title": "[問卦] 網軍頭子殉職了?" + }, + { + "aid": "1ZHaal9X", + "index": 781470, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550639.A.261.html", + "title": "R: [問卦] 為啥日本橘高校做得到北一女做不到" + }, + { + "aid": "1ZHac5_H", + "index": 781471, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550725.A.FD1.html", + "title": "R: [問卦] 女森要的的感覺到底是甚麼?" + }, + { + "aid": "1ZHacGLm", + "index": 781472, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550736.A.570.html", + "title": "R: [問卦] 如何確認對方願意跟自己打砲?" + }, + { + "aid": "1ZHacd0D", + "index": 781473, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550759.A.00D.html", + "title": "[問卦] 為什麼沒有台語的品牌?" + }, + { + "aid": "1ZHadWhn", + "index": 781475, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550816.A.AF1.html", + "title": "[問卦] 國慶沒發文 祝生日快樂=舔共?" + }, + { + "aid": "1ZHadZBA", + "index": 781476, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550819.A.2CA.html", + "title": "R: [新聞] 網愛講「芭比Q了」恐文化滲透!立委批陸" + }, + { + "aid": "1ZHadsK-", + "index": 781477, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550838.A.53E.html", + "title": "R: [新聞] 國防部長邱國正:國軍目前絕對不會再買特" + }, + { + "aid": "1ZHaefV1", + "index": 781478, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550889.A.7C1.html", + "title": "R: [新聞] 安平古堡改名「熱蘭遮堡」 台南人怒" + }, + { + "aid": "1ZHafi91", + "index": 781479, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550956.A.241.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHafkk8", + "index": 781480, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665550958.A.B88.html", + "title": "[問卦] 大溪老街人怎麼那麼少" + }, + { + "aid": "1ZHaijH4", + "index": 781481, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551149.A.444.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHailBv", + "index": 781482, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551151.A.2F9.html", + "title": "[問卦] 中央廚房的主廚不見會影響生意嗎?" + }, + { + "aid": "1ZHajrfk", + "index": 781483, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551221.A.A6E.html", + "title": "[問卦] 員工受傷復職要主動通知嗎?" + }, + { + "aid": "1ZHakAT4", + "index": 781484, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551242.A.744.html", + "title": "R: [問卦] 以前買房比較輕鬆?" + }, + { + "aid": "1ZHakFm7", + "index": 781485, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551247.A.C07.html", + "title": "R: [新聞] 網愛講「芭比Q了」恐文化滲透!立委批陸" + }, + { + "aid": "1ZHakO5_", + "index": 781486, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551256.A.17F.html", + "title": "R: [問卦] 健檢報告,這樣算肥宅嗎" + }, + { + "aid": "1ZHakw2B", + "index": 781487, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551290.A.08B.html", + "title": "[問卦] 海水退潮才知道誰沒穿褲子" + }, + { + "aid": "1ZHalFiM", + "index": 781488, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551311.A.B16.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHalm_3", + "index": 781489, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551344.A.FC3.html", + "title": "[問卦] 便利商店的滑鼠有推薦的嗎?" + }, + { + "aid": "1ZHamUpH", + "index": 781490, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551390.A.CD1.html", + "title": "R: [問卦] 為啥中國一定要研發晶片啊?" + }, + { + "aid": "1ZHambd8", + "index": 781491, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551397.A.9C8.html", + "title": "R: [問卦] 為啥日本橘高校做得到北一女做不到" + }, + { + "aid": "1ZHamyyC", + "index": 781492, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551420.A.F0C.html", + "title": "R: [問卦] 海底撈撈麵不理他會怎樣?" + }, + { + "aid": "1ZHaonk_", + "index": 781493, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551537.A.BBF.html", + "title": "[問卦] 各位退伍的學長/弟們支持四個月回去當滿" + }, + { + "aid": "1ZHaoya_", + "index": 781494, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551548.A.93F.html", + "title": "[新聞]看完橘色惡魔!阿伯狠酸曉明「人家吹得這" + }, + { + "aid": "1ZHaqUWH", + "index": 781495, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551646.A.811.html", + "title": "[新聞] 7旬老翁電動輔助車路邊故障 警推車徒步1" + }, + { + "aid": "1ZHaqYRn", + "index": 781496, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551650.A.6F1.html", + "title": "[問卦] 10/12氣象? 酈亭粉粉的" + }, + { + "aid": "1ZHarw5Z", + "index": 781497, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551738.A.163.html", + "title": "[問卦] 四個月的都請進啦" + }, + { + "aid": "1ZHas8Qk", + "index": 781498, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551752.A.6AE.html", + "title": "R: [新聞] 口罩令何時放寬 薛瑞元:不宜現在解除" + }, + { + "aid": "1ZHasjFG", + "index": 781499, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551789.A.3D0.html", + "title": "[新聞] 陳揮文請求新竹鄉親「不要被高虹安騙」" + }, + { + "aid": "1ZHasxIB", + "index": 781500, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551803.A.48B.html", + "title": "R: [問卦] 我就問 你們支持讓你家小孩當一年兵嗎?" + }, + { + "aid": "1ZHauRk2", + "index": 781501, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551899.A.B82.html", + "title": "[問卦] 為什麼橘色惡魔可以這麼有名" + }, + { + "aid": "1ZHavpCg", + "index": 781502, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665551987.A.32A.html", + "title": "R: [新聞] 網愛講「芭比Q了」恐文化滲透!立委批陸" + }, + { + "aid": "1ZHawVum", + "index": 781503, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552031.A.E30.html", + "title": "[新聞] 北市若棄保成最大贏家!黃珊珊樂:集中" + }, + { + "aid": "1ZHaxe99", + "index": 781504, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552104.A.249.html", + "title": "R: [問卦] 為啥日本橘高校做得到北一女做不到" + }, + { + "aid": "1ZHayOgs", + "index": 781505, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552152.A.AB6.html", + "title": "[問卦] 吳青峰算是音樂天才嗎?" + }, + { + "aid": "1ZHa-XGg", + "index": 781506, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552289.A.42A.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHa--RY", + "index": 781507, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552318.A.6E2.html", + "title": "[新聞] 藍營質疑違反防疫規定 鄭運鵬:有做到政" + }, + { + "aid": "1ZHa_Gjn", + "index": 781508, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552336.A.B71.html", + "title": "[問卦] 花蓮的曾記麻糬在台灣麻糬的排名在哪裡?" + }, + { + "aid": "1ZHb0rd0", + "index": 781509, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552437.A.9C0.html", + "title": "[問卦] 所以美日聯軍只是我們的幻想??" + }, + { + "aid": "1ZHb0tUw", + "index": 781510, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552439.A.7BA.html", + "title": "R: [新聞] 諾貝爾經濟學獎 前聯準會主席柏南奇及2" + }, + { + "aid": "1ZHb0zRw", + "index": 781511, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552445.A.6FA.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHb1Fic", + "index": 781512, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552463.A.B26.html", + "title": "[問卦] 為啥台灣的cosplay只剩色情?" + }, + { + "aid": "1ZHb1WzU", + "index": 781513, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552480.A.F5E.html", + "title": "[問卦] 有人會「已回不讀」嗎" + }, + { + "aid": "1ZHb2UTq", + "index": 781514, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552542.A.774.html", + "title": "[問卦] 八卦體脂都幾%" + }, + { + "aid": "1ZHb4M48", + "index": 781515, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552662.A.108.html", + "title": "[問卦] 台灣現在是要爆兵膩?" + }, + { + "aid": "1ZHb4nc6", + "index": 781516, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552689.A.986.html", + "title": "[問卦] 「水壩咖哩」會比較好吃嗎?" + }, + { + "aid": "1ZHb7_sq", + "index": 781517, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552895.A.DB4.html", + "title": "[問卦] 王力宏的其他人是誰?" + }, + { + "aid": "1ZHb8JUn", + "index": 781518, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552915.A.7B1.html", + "title": "R: [新聞] 國防部長邱國正:國軍目前絕對不會再買特" + }, + { + "aid": "1ZHb8M3o", + "index": 781519, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552918.A.0F2.html", + "title": "[問卦] 這樣中午熱量會太多嗎?" + }, + { + "aid": "1ZHb9LDq", + "index": 781520, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552981.A.374.html", + "title": "R: [問卦] 為何推特最近一直看到側翼文?" + }, + { + "aid": "1ZHb9diS", + "index": 781522, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665552999.A.B1C.html", + "title": "R: [問卦] ㄟㄟ112資工多屌?會解bug媽?" + }, + { + "aid": "1ZHb9fUu", + "index": 781523, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553001.A.7B8.html", + "title": "[新聞] 加拿大與日本將正式開始情報共享會談" + }, + { + "aid": "1ZHbAn2O", + "index": 781524, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553073.A.098.html", + "title": "[問卦] 有多少人知道新大阪的新是新幹線的意思" + }, + { + "aid": "1ZHbC9KO", + "index": 781525, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553161.A.518.html", + "title": "[問卦] 萊豬吃多了讀稿能力會下降否?" + }, + { + "aid": "1ZHbDPBo", + "index": 781526, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553241.A.2F2.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHbDwjD", + "index": 781527, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553274.A.B4D.html", + "title": "[問卦] 參加社運跟去夜店 哪個好打到炮" + }, + { + "aid": "1ZHbHj18", + "index": 781528, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553517.A.048.html", + "title": "[問卦] 有沒有嘉義要辦全國家將文化祭的八卦?" + }, + { + "aid": "1ZHbHrOc", + "index": 781529, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553525.A.626.html", + "title": "[問卦] 叫成大為台南高工 成大生會生氣嗎?" + }, + { + "aid": "1ZHbJFr5", + "index": 781530, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553615.A.D45.html", + "title": "[新聞] 新竹縣議員鄭昱芸詐領助理費21萬餘 判刑" + }, + { + "aid": "1ZHbKggi", + "index": 781531, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553706.A.AAC.html", + "title": "[新聞] 「好大一碗三寶飯」!自小客車國道鬼切釀" + }, + { + "aid": "1ZHbLYV9", + "index": 781532, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553762.A.7C9.html", + "title": "[問卦] 有裝假牙的女生嘴巴存在異味的機率大不大" + }, + { + "aid": "1ZHbMOyg", + "index": 781533, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553816.A.F2A.html", + "title": "R: [問卦] 如何一秒惹怒成大生?" + }, + { + "aid": "1ZHbOlmL", + "index": 781534, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665553967.A.C15.html", + "title": "R: [問卦] ㄟㄟ112資工多屌?會解bug媽?" + }, + { + "aid": "1ZHbQkBH", + "index": 781535, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554094.A.2D1.html", + "title": "[問卦] 我GG398T啦,明天我會變學長嗎?" + }, + { + "aid": "1ZHbQoau", + "index": 781536, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554098.A.938.html", + "title": "[問卦] 小黃大概能忍幾天才開始坑外國人?" + }, + { + "aid": "1ZHbR4vO", + "index": 781537, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554116.A.E58.html", + "title": "[新聞] 明起0+7衝了!海外旅遊「這幾國」入境限" + }, + { + "aid": "1ZHbRvdE", + "index": 781540, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554169.A.9CE.html", + "title": "R: [新聞] 棄保發酵?新竹市長民調領先 高虹安:" + }, + { + "aid": "1ZHbS2l5", + "index": 781541, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554178.A.BC5.html", + "title": "[問卦] 入伍一個月後遇到補役期的 要叫學長還是…" + }, + { + "aid": "1ZHbTF7w", + "index": 781542, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554255.A.1FA.html", + "title": "[問卦] iphone不會對face id感到厭煩嗎?" + }, + { + "aid": "1ZHbXaMx", + "index": 781543, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554532.A.5BB.html", + "title": "[新聞] 提新創「創投天使基金」 黃珊珊點名藍" + }, + { + "aid": "1ZHbZsVA", + "index": 781544, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554678.A.7CA.html", + "title": "[問卦] 麥當勞回不去了嗎?" + }, + { + "aid": "1ZHba1Dp", + "index": 781545, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554689.A.373.html", + "title": "[問卦] 常說選擇比努力重要484很矛盾" + }, + { + "aid": "1ZHbbGl0", + "index": 781546, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554768.A.BC0.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHbbpL8", + "index": 781547, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554803.A.548.html", + "title": "[問卦] 你知道凡士林的主要用途嗎?" + }, + { + "aid": "1ZHbcdpW", + "index": 781548, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554855.A.CE0.html", + "title": "[問卦] 月薪3-4萬塊的做工的人如何發財?" + }, + { + "aid": "1ZHbdUYo", + "index": 781549, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554910.A.8B2.html", + "title": "R: [問卦] 有多少人知道新大阪的新是新幹線的意" + }, + { + "aid": "1ZHbe8rq", + "index": 781550, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554952.A.D74.html", + "title": "[問卦] 貼牌牙醫的牙科功力如何?" + }, + { + "aid": "1ZHbeSS6", + "index": 781551, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665554972.A.706.html", + "title": "[新聞] 鄭運鵬上會期立院零提案+四度缺席 張善" + }, + { + "aid": "1ZHbf0KH", + "index": 781552, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555008.A.511.html", + "title": "R: [問卦] 入伍一個月後遇到補役期的 要叫學長還是…" + }, + { + "aid": "1ZHbhWTl", + "index": 781553, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555168.A.76F.html", + "title": "[問卦] Olivia說要我幫忙欸" + }, + { + "aid": "1ZHbi4Py", + "index": 781554, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555204.A.67C.html", + "title": "R: [新聞] 橘色惡魔愛上台灣了!飛機上淚崩不想走" + }, + { + "aid": "1ZHbjApE", + "index": 781555, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555274.A.CCE.html", + "title": "[問卦] 當小編最近要注意些什麼?" + }, + { + "aid": "1ZHbjDeB", + "index": 781556, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555277.A.A0B.html", + "title": "R: [問卦] 月薪3-4萬塊的做工的人如何發財?" + }, + { + "aid": "1ZHbjZjo", + "index": 781557, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555299.A.B72.html", + "title": "R: [新聞] 陳揮文請求新竹鄉親「不要被高虹安騙」" + }, + { + "aid": "1ZHbl2a7", + "index": 781558, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555394.A.907.html", + "title": "[問卦] AI學習很慢又很笨怎麼讓他變快跟聰明阿" + }, + { + "aid": "1ZHbmYnb", + "index": 781559, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555490.A.C65.html", + "title": "R: [問卦] 所以美日聯軍只是我們的幻想??" + }, + { + "aid": "1ZHbmYqS", + "index": 781560, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555490.A.D1C.html", + "title": "R: [新聞] 提一國兩區挨綠批區長 馬英九:民進黨" + }, + { + "aid": "1ZHbmw9Z", + "index": 781561, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555514.A.263.html", + "title": "[問卦] 請問台北市8點前使用大聲公有無違法" + }, + { + "aid": "1ZHbo4Gw", + "index": 781563, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555588.A.43A.html", + "title": "[問卦] 我覺得自己很划算" + }, + { + "aid": "1ZHboA4b", + "index": 781564, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555594.A.125.html", + "title": "[問卦] 今天被對岸主管飆罵該怎回?" + }, + { + "aid": "1ZHbqPE1", + "index": 781565, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555737.A.381.html", + "title": "R: [問卦] 你知道凡士林的主要用途嗎?" + }, + { + "aid": "1ZHbqwMj", + "index": 781566, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555770.A.5AD.html", + "title": "[問卦] 為什麼line這麼爛還沒被取代" + }, + { + "aid": "1ZHbsEmv", + "index": 781567, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555854.A.C39.html", + "title": "[問卦] -4飲料種類遠少於你家? 有卦?" + }, + { + "aid": "1ZHbsFer", + "index": 781568, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555855.A.A35.html", + "title": "[問卦] 戰爭前,八卦版會被抓光嗎?" + }, + { + "aid": "1ZHbuVml", + "index": 781569, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665555999.A.C2F.html", + "title": "[新聞] 建商圍地道路減半!消防車、垃圾車進不來" + }, + { + "aid": "1ZHbwLs7", + "index": 781570, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556117.A.D87.html", + "title": "[新聞] 世界大學排名出爐!美領先態勢不如過往" + }, + { + "aid": "1ZHbwTLr", + "index": 781571, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556125.A.575.html", + "title": "[問卦] 看柯南、金田一有辦法推理出誰是犯人嗎?" + }, + { + "aid": "1ZHbx1cq", + "index": 781572, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556161.A.9B4.html", + "title": "[新聞] 俄國外長:願考慮印尼G20峰會「普拜會」" + }, + { + "aid": "1ZHbxBCV", + "index": 781573, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556171.A.31F.html", + "title": "[問卦] 認真問,397的台積電可以撿了吧?" + }, + { + "aid": "1ZHbyd8r", + "index": 781574, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556263.A.235.html", + "title": "[問卦] 從黑道退出真的需要付出代價嗎?" + }, + { + "aid": "1ZHb-dWI", + "index": 781575, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556391.A.812.html", + "title": "R: [新聞] 陳揮文請求新竹鄉親「不要被高虹安騙" + }, + { + "aid": "1ZHc1CKU", + "index": 781576, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556556.A.51E.html", + "title": "[新聞] 台股跌破萬三!大盤慘摔逾百點 台積電也" + }, + { + "aid": "1ZHc1-th", + "index": 781578, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556606.A.DEB.html", + "title": "[問卦] 五筒台灣最新年份是?" + }, + { + "aid": "1ZHc4b77", + "index": 781579, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556773.A.1C7.html", + "title": "[問卦] 有沒有不設性專區卻拼命抓性交易的八卦" + }, + { + "aid": "1ZHc4ch4", + "index": 781580, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556774.A.AC4.html", + "title": "R: [新聞] 鄭運鵬違自主管理規定桃市府不罰 國民黨" + }, + { + "aid": "1ZHc4zKq", + "index": 781581, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556797.A.534.html", + "title": "[問卦] 為什麼A片開都都要先吃飯或專訪" + }, + { + "aid": "1ZHc5guJ", + "index": 781582, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556842.A.E13.html", + "title": "[問卦] 轉蛋成本漲那麼多嗎?" + }, + { + "aid": "1ZHc5-zc", + "index": 781583, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665556862.A.F66.html", + "title": "[問卦] 都沒三級了是不是該脫口罩了" + }, + { + "aid": "1ZHc9DJa", + "index": 781584, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557069.A.4E4.html", + "title": "[新聞] 兵役延長年輕人嚇瘋了!他曝高二生急問「" + }, + { + "aid": "1ZHc9RFG", + "index": 781585, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557083.A.3D0.html", + "title": "[新聞] 吸毒男持雙刀揮舞隨機攻擊 2嬤路過遭砍" + }, + { + "aid": "1ZHc9Xz8", + "index": 781586, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557089.A.F48.html", + "title": "[問卦] 天使新世界聖戰軍 Day129" + }, + { + "aid": "1ZHc9ZRl", + "index": 781587, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557091.A.6EF.html", + "title": "[問卦] 有沒有肉類的順紋、逆紋怎麼切的八卦?" + }, + { + "aid": "1ZHcDHqO", + "index": 781588, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557329.A.D18.html", + "title": "[新聞] 路透:擔心習近平下個任期開戰 台灣強化" + }, + { + "aid": "1ZHcDbFd", + "index": 781589, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557349.A.3E7.html", + "title": "R: [問卦] 為什麼line這麼爛還沒被取代" + }, + { + "aid": "1ZHcEriY", + "index": 781590, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557429.A.B22.html", + "title": "[問卦] 當一年兵的戰力 是四個月的三倍嗎" + }, + { + "aid": "1ZHcFZTf", + "index": 781591, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557475.A.769.html", + "title": "R: [問卦] 參加社運跟去夜店 哪個好打到炮" + }, + { + "aid": "1ZHcFio9", + "index": 781592, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557484.A.C89.html", + "title": "R: [問卦] 為什麼A片開都都要先吃飯或專訪" + }, + { + "aid": "1ZHcFzo2", + "index": 781593, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557501.A.C82.html", + "title": "[新聞] 拚選舉也拚環保!新北市議員江怡臻以電動" + }, + { + "aid": "1ZHcGAX2", + "index": 781594, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557514.A.842.html", + "title": "[問卦] 有沒有七龍珠後面頭髮決定一切的八卦" + }, + { + "aid": "1ZHcJ_LZ", + "index": 781595, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557759.A.563.html", + "title": "[問卦] 中耕機 中國製的會比台灣爛很多嗎?" + }, + { + "aid": "1ZHcK2iD", + "index": 781596, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557762.A.B0D.html", + "title": "[問卦] 名古屋旅遊走哪一條路線好??" + }, + { + "aid": "1ZHcK7Lc", + "index": 781597, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557767.A.566.html", + "title": "R: [新聞] 陳揮文請求新竹鄉親「不要被高虹安騙" + }, + { + "aid": "1ZHcM942", + "index": 781598, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557897.A.102.html", + "title": "[新聞] 遭酸抗中保台為吃香喝辣 她反擊:柯文哲" + }, + { + "aid": "1ZHcMBVW", + "index": 781599, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557899.A.7E0.html", + "title": "R: [新聞] 世界大學排名出爐!美領先態勢不如過往" + }, + { + "aid": "1ZHcMSmH", + "index": 781600, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557916.A.C11.html", + "title": "[問卦] 高端日本認證到底誰說謊" + }, + { + "aid": "1ZHcMvbx", + "index": 781601, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557945.A.97B.html", + "title": "[問卦] 歐洲車/特斯拉/福特修得痛快,還一堆人去…" + }, + { + "aid": "1ZHcNGRX", + "index": 781602, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557968.A.6E1.html", + "title": "R: [問卦] 從黑道退出真的需要付出代價嗎?" + }, + { + "aid": "1ZHcNUSM", + "index": 781603, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665557982.A.716.html", + "title": "[問卦] 養了貓貓後 手機容量快不夠的八卦?" + }, + { + "aid": "1ZHcO14z", + "index": 781604, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558017.A.13D.html", + "title": "[問卦] 衛福部有建議牙醫拒收確診過病患嗎?" + }, + { + "aid": "1ZHcOQm8", + "index": 781605, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558042.A.C08.html", + "title": "[問卦] 有一說一 台灣的唯一解 還是只有核武吧?" + }, + { + "aid": "1ZHcP6HO", + "index": 781606, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558086.A.458.html", + "title": "[問卦] 台灣89怎麼那麼多" + }, + { + "aid": "1ZHcQTnE", + "index": 781607, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558173.A.C4E.html", + "title": "[問卦] 當年看見比拉夫戰鬥力53萬" + }, + { + "aid": "1ZHcRFQe", + "index": 781608, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558223.A.6A8.html", + "title": "[新聞] 快訊/60.46%支持速過菸害防制法 林為" + }, + { + "aid": "1ZHcTx9f", + "index": 781609, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558395.A.269.html", + "title": "[問卦] GG工程師請進" + }, + { + "aid": "1ZHcUPvG", + "index": 781610, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558425.A.E50.html", + "title": "[問卦] NHK女主播把團塊聽成男根" + }, + { + "aid": "1ZHcUfI0", + "index": 781611, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558441.A.480.html", + "title": "R: [問卦] 所以李靚蕾說要公開的不堪證據是什麼?" + }, + { + "aid": "1ZHcYbXP", + "index": 781612, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558693.A.859.html", + "title": "R: [新聞] 陳揮文請求新竹鄉親「不要被高虹安騙」" + }, + { + "aid": "1ZHcZ2fQ", + "index": 781613, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558722.A.A5A.html", + "title": "[問卦] 百貨公司開閉店女員工鞠躬" + }, + { + "aid": "1ZHcZWDw", + "index": 781614, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558752.A.37A.html", + "title": "[問卦]美玉姨讓長輩森77" + }, + { + "aid": "1ZHcZZ0O", + "index": 781615, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558755.A.018.html", + "title": "[新聞] 又正又嗆辣!北市10美女議員參選人「下" + }, + { + "aid": "1ZHcabEQ", + "index": 781616, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558821.A.39A.html", + "title": "[問卦] 中國有無人駕駛計程車了 台灣呢?" + }, + { + "aid": "1ZHcbGwh", + "index": 781617, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558864.A.EAB.html", + "title": "R: [問卦] 高端日本認證到底誰說謊" + }, + { + "aid": "1ZHcbpGa", + "index": 781618, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558899.A.424.html", + "title": "[問卦] 傳奇麵線傳奇在哪?" + }, + { + "aid": "1ZHcc98o", + "index": 781619, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558921.A.232.html", + "title": "[新聞] 我的唯一!孔曉振紐約結婚示愛嫩夫" + }, + { + "aid": "1ZHccxdv", + "index": 781620, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665558971.A.9F9.html", + "title": "R: [問卦]美玉姨讓長輩森77" + }, + { + "aid": "1ZHceTnK", + "index": 781621, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559069.A.C54.html", + "title": "[新聞] 快訊/KID火鍋分店「無限期停業」:準備" + }, + { + "aid": "1ZHcgKbx", + "index": 781622, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559188.A.97B.html", + "title": "[問卦] 碰瓷溪荖猴一大堆......" + }, + { + "aid": "1ZHcgi25", + "index": 781623, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559212.A.085.html", + "title": "[問卦] 華航正名進度到哪了?" + }, + { + "aid": "1ZHcij7Q", + "index": 781624, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559341.A.1DA.html", + "title": "R: [新聞] 又正又嗆辣!北市10美女議員參選人「下" + }, + { + "aid": "1ZHcjixn", + "index": 781625, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559404.A.EF1.html", + "title": "[問卦] 這個logo 你各位看到了什麼?" + }, + { + "aid": "1ZHcjmyS", + "index": 781626, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559408.A.F1C.html", + "title": "[新聞] 新北「鶯陶安居」社宅開工蘇貞昌喊話新北" + }, + { + "aid": "1ZHckUrQ", + "index": 781627, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559454.A.D5A.html", + "title": "R: [問卦]美玉姨讓長輩森77" + }, + { + "aid": "1ZHckXM8", + "index": 781628, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559457.A.588.html", + "title": "[問卦] 車版簡單問題討論超熱烈 困難的沒人回" + }, + { + "aid": "1ZHcktMn", + "index": 781629, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559479.A.5B1.html", + "title": "[新聞] 誇張影像PO網!整排機車全逆駛 永康警:" + }, + { + "aid": "1ZHcmAhN", + "index": 781630, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559562.A.AD7.html", + "title": "[新聞] 做愛這體位最棒!研究曝:男生可消耗211" + }, + { + "aid": "1ZHcoAfU", + "index": 781632, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559690.A.A5E.html", + "title": "[問卦] 台灣的和牛484沒人管的詐騙" + }, + { + "aid": "1ZHcoeuo", + "index": 781633, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665559720.A.E32.html", + "title": "R: [問卦] 當一年兵的戰力 是四個月的三倍嗎" + }, + { + "aid": "1ZHctxVg", + "index": 781634, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665560059.A.7EA.html", + "title": "[問卦] MIT有哪些好東西啊?" + }, + { + "aid": "1ZHcyC6U", + "index": 781635, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665560332.A.19E.html", + "title": "[問卦] 用手指頭彈額頭真的會痛嗎?" + }, + { + "aid": "1ZHczeKd", + "index": 781636, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665560424.A.527.html", + "title": "R: [問卦] 華航正名進度到哪了?" + }, + { + "aid": "1ZHc-IzM", + "index": 781637, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665560466.A.F56.html", + "title": "[問卦] 化學系跟物理系pk誰會贏" + }, + { + "aid": "1ZHc-XqU", + "index": 781638, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665560481.A.D1E.html", + "title": "[問卦] 哭哭!美女同學會怕我QQ" + }, + { + "aid": "1ZHc-etg", + "index": 781639, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665560488.A.DEA.html", + "title": "[問卦] 中國貼牌監控主機標示MIT?" + }, + { + "aid": "1ZHc-iXe", + "index": 781640, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665560492.A.868.html", + "title": "R: [問卦] 我就問 你們支持讓你家小孩當一年兵嗎?" + }, + { + "aid": "1ZHc_XQm", + "index": 781641, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665560545.A.6B0.html", + "title": "R: [問卦] 有一說一 台灣的唯一解 還是只有核武吧?" + }, + { + "aid": "1ZHd37p-", + "index": 781642, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665560775.A.CFE.html", + "title": "R: [新聞] 快訊/KID火鍋分店「無限期停業」:準備" + }, + { + "aid": "1ZHd4wZ4", + "index": 781643, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665560890.A.8C4.html", + "title": "[新聞] 稱4個月兵沒戰力 邱國正:1年才能" + }, + { + "aid": "1ZHd76kg", + "index": 781644, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561030.A.BAA.html", + "title": "[問卦] 野人獻曝的英文怎麼說" + }, + { + "aid": "1ZHd78F7", + "index": 781645, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561032.A.3C7.html", + "title": "R: [新聞] 做愛這體位最棒!研究曝:男生可消耗211" + }, + { + "aid": "1ZHd7NFy", + "index": 781646, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561047.A.3FC.html", + "title": "[問卦] 這種類UPS的產品在停電實用嗎?" + }, + { + "aid": "1ZHd9iDF", + "index": 781647, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561196.A.34F.html", + "title": "R: [新聞] 快訊/KID火鍋分店「無限期停業」:準備" + }, + { + "aid": "1ZHd9kfF", + "index": 781648, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561198.A.A4F.html", + "title": "R: [新聞] 又正又嗆辣!北市10美女議員參選人「下" + }, + { + "aid": "1ZHdCDLv", + "index": 781649, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561357.A.579.html", + "title": "R: [新聞] KID開的火鍋店出事了!客點最貴A5和牛" + }, + { + "aid": "1ZHdDAPM", + "index": 781650, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561418.A.656.html", + "title": "R: [新聞] 稱4個月兵沒戰力 邱國正:1年才能" + }, + { + "aid": "1ZHdHcQU", + "index": 781651, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561702.A.69E.html", + "title": "R: [新聞] 鄭運鵬上會期立院零提案+四度缺席 張善" + }, + { + "aid": "1ZHdKDRc", + "index": 781652, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561869.A.6E6.html", + "title": "R: [問卦] 中國有無人駕駛計程車了 台灣呢?" + }, + { + "aid": "1ZHdKopx", + "index": 781654, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561906.A.CFB.html", + "title": "R: [問卦] 台灣的和牛484沒人管的詐騙" + }, + { + "aid": "1ZHdLf3Y", + "index": 781655, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561961.A.0E2.html", + "title": "[新聞] 「想摸哪就摸!」 若被檢查耳朵達比修" + }, + { + "aid": "1ZHdLyAQ", + "index": 781656, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665561980.A.29A.html", + "title": "[問卦] 烏俄戰爭會再打上半年以上嗎?" + }, + { + "aid": "1ZHdMutf", + "index": 781657, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562040.A.DE9.html", + "title": "R: [問卦] 台灣的和牛484沒人管的詐騙" + }, + { + "aid": "1ZHdOqtU", + "index": 781658, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562164.A.DDE.html", + "title": "[問卦] 有蝦皮,露天、奇摩拍賣還能活多久啊?" + }, + { + "aid": "1ZHdPD-T", + "index": 781659, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562189.A.F9D.html", + "title": "[問卦] =.= 電動車明明不怎麼環保為什麼?!" + }, + { + "aid": "1ZHdPQ_v", + "index": 781660, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562202.A.FF9.html", + "title": "[問卦] 為啥手機會越用越慢?" + }, + { + "aid": "1ZHdPQcA", + "index": 781661, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562202.A.98A.html", + "title": "[問卦] 不過就當個一年兵,在那叫什麼?" + }, + { + "aid": "1ZHdPt4l", + "index": 781662, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562231.A.12F.html", + "title": "[問卦] IMF說台灣通膨遠低於全球?" + }, + { + "aid": "1ZHdPyld", + "index": 781663, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562236.A.BE7.html", + "title": "[新聞] 日本未開放打高端者入境 蔣萬安、薛瑞元" + }, + { + "aid": "1ZHdQmMT", + "index": 781664, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562288.A.59D.html", + "title": "[問卦] 為什麼吃到苦澀的東西會下意識把舌頭伸" + }, + { + "aid": "1ZHdR522", + "index": 781665, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562309.A.082.html", + "title": "[問卦] 是不是該落實全民國防的八卦" + }, + { + "aid": "1ZHdRmrI", + "index": 781666, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562352.A.D52.html", + "title": "[新聞] 陳時中違規掛看板 張斯綱:把事做好?從" + }, + { + "aid": "1ZHdRmKx", + "index": 781667, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562352.A.53B.html", + "title": "[問卦] 反骨整團是不是很低素質?" + }, + { + "aid": "1ZHdVgUT", + "index": 781668, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562602.A.79D.html", + "title": "R: [問卦] 台灣的和牛484沒人管的詐騙" + }, + { + "aid": "1ZHdVvy_", + "index": 781669, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562617.A.F3F.html", + "title": "[問卦] 外國阿兵哥也要接業務嗎?" + }, + { + "aid": "1ZHdXRfP", + "index": 781670, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562715.A.A59.html", + "title": "R: [問卦] 台灣的和牛484沒人管的詐騙" + }, + { + "aid": "1ZHdZ_bm", + "index": 781671, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665562879.A.970.html", + "title": "R: [問卦] IMF說台灣通膨遠低於全球?" + }, + { + "aid": "1ZHdcABZ", + "index": 781672, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563018.A.2E3.html", + "title": "R: [新聞] 稱4個月兵沒戰力 邱國正:1年才能" + }, + { + "aid": "1ZHdcTx3", + "index": 781673, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563037.A.EC3.html", + "title": "[問卦] 你各位小時候有聽過松阪豬嗎?" + }, + { + "aid": "1ZHddvo5", + "index": 781674, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563129.A.C85.html", + "title": "[問卦] 外人怎麼知道烏俄戰況的?" + }, + { + "aid": "1ZHdeWxW", + "index": 781675, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563168.A.EE0.html", + "title": "[問卦] 吃到飽的螃蟹品質為什麼跟漁港差那麼多?" + }, + { + "aid": "1ZHdfmq3", + "index": 781676, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563248.A.D03.html", + "title": "R: [新聞] 誇張影像PO網!整排機車全逆駛 永康警:" + }, + { + "aid": "1ZHdgIdO", + "index": 781677, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563282.A.9D8.html", + "title": "[新聞] 李遠哲曝蔡英文談2025非核家園 蔡說:202" + }, + { + "aid": "1ZHdi56J", + "index": 781678, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563397.A.193.html", + "title": "[問卦] 有沒有美國俚語\"低能牌\"的八卦?" + }, + { + "aid": "1ZHdnC6m", + "index": 781679, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563724.A.1B0.html", + "title": "R: [問卦]美玉姨讓長輩森77" + }, + { + "aid": "1ZHdo0GI", + "index": 781680, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563776.A.412.html", + "title": "[問卦] 蔣介石的窮兵富將理論" + }, + { + "aid": "1ZHdozKx", + "index": 781681, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563837.A.53B.html", + "title": "[問卦] 第一次看鏈鋸人要注意什麼" + }, + { + "aid": "1ZHdpQ1T", + "index": 781682, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563866.A.05D.html", + "title": "[新聞] 兵役一口氣延長2年?邱國正回這句 大學生" + }, + { + "aid": "1ZHdqAnZ", + "index": 781683, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563914.A.C63.html", + "title": "R: [問卦] 高端日本認證到底誰說謊" + }, + { + "aid": "1ZHdqQ3T", + "index": 781684, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563930.A.0DD.html", + "title": "[新聞] 具俊曄受訪遭陸媒「移花接木」!錯誤翻譯" + }, + { + "aid": "1ZHdrFt5", + "index": 781685, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665563983.A.DC5.html", + "title": "R: [新聞] 李遠哲曝蔡英文談2025非核家園 蔡說" + }, + { + "aid": "1ZHdrvqy", + "index": 781686, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564025.A.D3C.html", + "title": "R: [問卦] 有沒有肉類的順紋、逆紋怎麼切的八卦" + }, + { + "aid": "1ZHds8U5", + "index": 781687, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564040.A.785.html", + "title": "[問卦] 其實這個社會不用工作的人才是多數?" + }, + { + "aid": "1ZHdsq9I", + "index": 781688, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564084.A.252.html", + "title": "R: [新聞] 李遠哲曝蔡英文談2025非核家園 蔡說:202" + }, + { + "aid": "1ZHdtSQd", + "index": 781689, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564124.A.6A7.html", + "title": "R: [新聞] 李遠哲曝蔡英文談2025非核家園 蔡說:202" + }, + { + "aid": "1ZHdtxlc", + "index": 781690, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564155.A.BE6.html", + "title": "[新聞] 韓國瑜批四個高雄年輕人三個外出找工作" + }, + { + "aid": "1ZHduDqt", + "index": 781691, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564173.A.D37.html", + "title": "R: [問卦] 台灣的和牛484沒人管的詐騙" + }, + { + "aid": "1ZHdx2od", + "index": 781692, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564354.A.CA7.html", + "title": "R: [新聞] 稱4個月兵沒戰力 邱國正:1年才能" + }, + { + "aid": "1ZHdxx9B", + "index": 781693, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564411.A.24B.html", + "title": "[問卦] 過去3年我們是不是ㄧ直被某人呼攏?" + }, + { + "aid": "1ZHd-9Dq", + "index": 781694, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564553.A.374.html", + "title": "R: [問卦] 你各位小時候有聽過松阪豬嗎?" + }, + { + "aid": "1ZHd-qES", + "index": 781696, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564596.A.39C.html", + "title": "[問卦] 你各位今年有誰收到民調電話的 \b\b☺" + }, + { + "aid": "1ZHe00S_", + "index": 781697, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564672.A.73F.html", + "title": "[新聞] 邊境解封倒數20旅行團搶先來台! 蔡英文" + }, + { + "aid": "1ZHe1IkR", + "index": 781698, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564754.A.B9B.html", + "title": "R: [新聞] 李遠哲曝蔡英文談2025非核家園 蔡說:202" + }, + { + "aid": "1ZHe332f", + "index": 781699, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665564867.A.0A9.html", + "title": "[問卦] 普丁找澤倫司機去酒店 可以停戰嗎" + }, + { + "aid": "1ZHe5XIE", + "index": 781700, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565025.A.48E.html", + "title": "[問卦] 回到兩年兵沒當滿的都要補役期你各位敢嗎" + }, + { + "aid": "1ZHe64CE", + "index": 781701, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565060.A.30E.html", + "title": "R: [問卦] 台灣的和牛484沒人管的詐騙" + }, + { + "aid": "1ZHe6ISj", + "index": 781702, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565074.A.72D.html", + "title": "[問卦] 買完四輪不滿意,可以退回試車期嗎" + }, + { + "aid": "1ZHe6Kj_", + "index": 781703, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565076.A.B7F.html", + "title": "[新聞] 新垣結衣解放爆「特殊性癖」知情人士" + }, + { + "aid": "1ZHe7_Wy", + "index": 781704, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565183.A.83C.html", + "title": "[問卦] 罰站屋今晚開賣4090,會過去買的是哪種人?" + }, + { + "aid": "1ZHe8O4c", + "index": 781705, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565208.A.126.html", + "title": "R: [新聞] 李遠哲曝蔡英文談2025非核家園 蔡說:202" + }, + { + "aid": "1ZHe8rLX", + "index": 781706, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565237.A.561.html", + "title": "[問卦] OneBoy取代極度乾燥成為衝鋒衣霸主的八" + }, + { + "aid": "1ZHe90JT", + "index": 781707, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565248.A.4DD.html", + "title": "[新聞]2022地方選舉民進黨若大敗 黨政人士:中共" + }, + { + "aid": "1ZHeA0hH", + "index": 781708, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565312.A.AD1.html", + "title": "R: [新聞] 李遠哲曝蔡英文談2025非核家園 蔡說:202" + }, + { + "aid": "1ZHeAkyn", + "index": 781709, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565358.A.F31.html", + "title": "R: [問卦] IMF說台灣通膨遠低於全球?" + }, + { + "aid": "1ZHeFYqP", + "index": 781710, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565666.A.D19.html", + "title": "[問卦] 比賽剩下10秒該傳球給誰" + }, + { + "aid": "1ZHeFuc8", + "index": 781711, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565688.A.988.html", + "title": "R: [新聞] 誇張影像PO網!整排機車全逆駛 永康警:" + }, + { + "aid": "1ZHeGIqu", + "index": 781712, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565714.A.D38.html", + "title": "[問卦] 義務役月薪如果一個月五萬 還會不滿嗎???" + }, + { + "aid": "1ZHeJ5o8", + "index": 781713, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565893.A.C88.html", + "title": "[問卦] 請問滑鼠的問題" + }, + { + "aid": "1ZHeJfCN", + "index": 781714, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565929.A.317.html", + "title": "[新聞] AI設計未來的都市面貌" + }, + { + "aid": "1ZHeJ-6a", + "index": 781715, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665565950.A.1A4.html", + "title": "[新聞] 泰晤士世界大學排名 台大全球187退步74名" + }, + { + "aid": "1ZHeLnXj", + "index": 781716, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566065.A.86D.html", + "title": "R: [新聞] 快訊/KID火鍋分店「無限期停業」:準備" + }, + { + "aid": "1ZHeNuk-", + "index": 781717, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566200.A.BBE.html", + "title": "[新聞] 數位部約聘僱人員平均月薪6萬 林思銘批破" + }, + { + "aid": "1ZHePJ0X", + "index": 781718, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566291.A.021.html", + "title": "[新聞] 男警傳「想玩女警」訊息她控性騷 法院審" + }, + { + "aid": "1ZHeRH0A", + "index": 781720, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566417.A.00A.html", + "title": "[新聞] 邱國正:自衛反擊中共第一擊 後續就是開" + }, + { + "aid": "1ZHeRYj7", + "index": 781721, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566434.A.B47.html", + "title": "[新聞] 馬斯克提「台灣特別行政區」 惹議 邱國" + }, + { + "aid": "1ZHeRl4n", + "index": 781722, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566447.A.131.html", + "title": "R: [新聞] 李遠哲曝蔡英文談2025非核家園 蔡說:202" + }, + { + "aid": "1ZHeSG0b", + "index": 781723, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566480.A.025.html", + "title": "[新聞] 張善政研究案爭議 農委會20日後組專案小" + }, + { + "aid": "1ZHeSYEQ", + "index": 781724, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566498.A.39A.html", + "title": "R: [問卦] 貼牌牙醫的牙科功力如何?" + }, + { + "aid": "1ZHeTASx", + "index": 781725, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566538.A.73B.html", + "title": "R: [問卦] 外人怎麼知道烏俄戰況的?" + }, + { + "aid": "1ZHeTMAI", + "index": 781726, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566550.A.292.html", + "title": "[問卦] 2025年不是我當的有什麼委婉說法?" + }, + { + "aid": "1ZHeTfsw", + "index": 781727, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566569.A.DBA.html", + "title": "R: [新聞]2022地方選舉民進黨若大敗 黨政人士:中共" + }, + { + "aid": "1ZHeUmv6", + "index": 781728, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566640.A.E46.html", + "title": "R: [新聞] 稱4個月兵沒戰力 邱國正:1年才能" + }, + { + "aid": "1ZHeV6PS", + "index": 781729, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566662.A.65C.html", + "title": "R: [新聞] 李遠哲曝蔡英文談2025非核家園 蔡說:202" + }, + { + "aid": "1ZHeVIqx", + "index": 781730, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566674.A.D3B.html", + "title": "[問卦] 女覺青:支持恢復當兵一年" + }, + { + "aid": "1ZHeVLo-", + "index": 781731, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566677.A.CBE.html", + "title": "[新聞] 「原子少年」小孩宣布退團! 不滿被污衊…" + }, + { + "aid": "1ZHeX-Gz", + "index": 781732, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566846.A.43D.html", + "title": "[問卦] 視訊面試如何震懾對方?" + }, + { + "aid": "1ZHea9E3", + "index": 781733, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665566985.A.383.html", + "title": "[問卦]要 怎麼成為無情的K歌之王?" + }, + { + "aid": "1ZHeaVfD", + "index": 781734, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567007.A.A4D.html", + "title": "[新聞] 為何牙助都是女生?牙醫曝關鍵原因" + }, + { + "aid": "1ZHeapHI", + "index": 781735, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567027.A.452.html", + "title": "R: [新聞]2022地方選舉民進黨若大敗 黨政人士:中共" + }, + { + "aid": "1ZHeb3B8", + "index": 781736, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567043.A.2C8.html", + "title": "R: [新聞] 韓國瑜批四個高雄年輕人三個外出找工作" + }, + { + "aid": "1ZHeb5Uc", + "index": 781737, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567045.A.7A6.html", + "title": "R: [新聞] 稱4個月兵沒戰力 邱國正:1年才能" + }, + { + "aid": "1ZHebW2M", + "index": 781738, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567072.A.096.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHec2wp", + "index": 781739, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567106.A.EB3.html", + "title": "[問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHeddmt", + "index": 781741, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567207.A.C37.html", + "title": "[問卦] 延長兵役會加劇少子化嗎?" + }, + { + "aid": "1ZHef4fG", + "index": 781742, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567300.A.A50.html", + "title": "R: [新聞] 誇張影像PO網!整排機車全逆駛 永康警:" + }, + { + "aid": "1ZHefrIR", + "index": 781743, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567349.A.49B.html", + "title": "R: [新聞] 做愛這體位最棒!研究曝:男生可消耗211" + }, + { + "aid": "1ZHegqpA", + "index": 781744, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567412.A.CCA.html", + "title": "[問卦] 到底在鋒衣三小?" + }, + { + "aid": "1ZHeh8b5", + "index": 781745, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567432.A.945.html", + "title": "[問卦] 8+9妹以後可以幹嘛?" + }, + { + "aid": "1ZHehTrz", + "index": 781746, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567453.A.D7D.html", + "title": "[問卦] 沒人發現各國物價上漲是美國升息的錯嗎?" + }, + { + "aid": "1ZHehqo9", + "index": 781747, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567476.A.C89.html", + "title": "[問卦] 臺灣為何不敢用斷供晶片威脅全世界?" + }, + { + "aid": "1ZHeiKOf", + "index": 781748, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567508.A.629.html", + "title": "[問卦] 和牛在台灣特別流行嗎?" + }, + { + "aid": "1ZHeiz_L", + "index": 781749, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567549.A.FD5.html", + "title": "R: [新聞] 稱4個月兵沒戰力 邱國正:1年才能" + }, + { + "aid": "1ZHejAoH", + "index": 781750, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567562.A.C91.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大學生" + }, + { + "aid": "1ZHelvIN", + "index": 781751, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567737.A.497.html", + "title": "[新聞] 柯建銘怕高虹安當選? 施正鋒:可能是擔…" + }, + { + "aid": "1ZHeo9SZ", + "index": 781752, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567881.A.723.html", + "title": "[問卦] 為啥轉帳要硬綁手機" + }, + { + "aid": "1ZHeoLTx", + "index": 781753, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567893.A.77B.html", + "title": "[問卦] 美國Prime等級安格斯 vs 日本A5和牛" + }, + { + "aid": "1ZHeoWNB", + "index": 781754, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567904.A.5CB.html", + "title": "[新聞] 趕上班!台南河堤便道整排機車逆向嚇壞駕" + }, + { + "aid": "1ZHeozcA", + "index": 781755, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567933.A.98A.html", + "title": "[問卦] 美國企業看起來比中國企業 更聽政府的話?" + }, + { + "aid": "1ZHepDef", + "index": 781756, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567949.A.A29.html", + "title": "[問卦] 孫東寶是不是台式牛排最頂的?" + }, + { + "aid": "1ZHepfb-", + "index": 781757, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665567977.A.97E.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大學生" + }, + { + "aid": "1ZHeqHpR", + "index": 781758, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568017.A.CDB.html", + "title": "[問卦] 義務役不是盡窮困義務吧?" + }, + { + "aid": "1ZHeqUiL", + "index": 781759, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568030.A.B15.html", + "title": "R: [問卦] 和牛在台灣特別流行嗎?" + }, + { + "aid": "1ZHerhxJ", + "index": 781760, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568107.A.ED3.html", + "title": "R: [新聞] 快訊/兵役延長「4個月要補當兵?」 邱" + }, + { + "aid": "1ZHesai7", + "index": 781761, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568164.A.B07.html", + "title": "R: [新聞] 什麼台語只有老一輩講? 網推爆「這2詞…" + }, + { + "aid": "1ZHetHGB", + "index": 781762, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568209.A.40B.html", + "title": "[問卦] 搞政治運動的很少帥的?" + }, + { + "aid": "1ZHetfpH", + "index": 781763, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568233.A.CD1.html", + "title": "[問卦] 什麼事情是你婚後才知道?" + }, + { + "aid": "1ZHev2oy", + "index": 781764, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568322.A.CBC.html", + "title": "[問卦] 出社會多年,回去當八個月的兵,會?" + }, + { + "aid": "1ZHevUNa", + "index": 781765, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568350.A.5E4.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHewQco", + "index": 781766, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568410.A.9B2.html", + "title": "[問卦] 打高端腫成「麵包超人」?" + }, + { + "aid": "1ZHeww_k", + "index": 781767, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568442.A.FEE.html", + "title": "[新聞] 談2050淨零排放 李遠哲:政府欺騙大家" + }, + { + "aid": "1ZHex2L6", + "index": 781768, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568450.A.546.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHexfct", + "index": 781769, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568489.A.9B7.html", + "title": "[問卦] 看橘色惡魔吹喇叭 你在想什麼?" + }, + { + "aid": "1ZHeyGhK", + "index": 781770, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568528.A.AD4.html", + "title": "[新聞] 驚悚海盜船!「空中斷2半垂直插地」畫面" + }, + { + "aid": "1ZHf0QoR", + "index": 781771, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568794.A.C9B.html", + "title": "[問卦] 和牛涮算cp 值最高的火鍋嗎?" + }, + { + "aid": "1ZHf1LLg", + "index": 781772, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568853.A.56A.html", + "title": "[新聞] 台積電買650元!慘困山頂「何時能解套」" + }, + { + "aid": "1ZHf1Td0", + "index": 781773, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568861.A.9C0.html", + "title": "R: [新聞] 柯建銘怕高虹安當選? 施正鋒:可能是擔…" + }, + { + "aid": "1ZHf1UzC", + "index": 781774, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568862.A.F4C.html", + "title": "[問卦] 軍中樂園重開會增加你各位當兵的意願嗎?" + }, + { + "aid": "1ZHf2dGT", + "index": 781775, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568935.A.41D.html", + "title": "[問卦] 怎麼沒有巴拉圭或紐西蘭和牛?" + }, + { + "aid": "1ZHf2ujM", + "index": 781776, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568952.A.B56.html", + "title": "[問卦] 把魚出口到韓國時被藏毒品怎麼辦?" + }, + { + "aid": "1ZHf3BqP", + "index": 781777, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665568971.A.D19.html", + "title": "[問卦] 再唸一次國高中會好好唸書還是會不一樣?" + }, + { + "aid": "1ZHf4X2q", + "index": 781778, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569057.A.0B4.html", + "title": "[問卦] 睡不著時看列車行進影片是不是有催眠效果" + }, + { + "aid": "1ZHf5I1R", + "index": 781779, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569106.A.05B.html", + "title": "[新聞] 搶不停!上海水質鹽化 民眾恐慌囤水備用" + }, + { + "aid": "1ZHf7CbS", + "index": 781780, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569228.A.95C.html", + "title": "R: [問卦] 臺灣為何不敢用斷供晶片威脅全世界?" + }, + { + "aid": "1ZHf7QJS", + "index": 781781, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569242.A.4DC.html", + "title": "[爆卦] 習近平確定第三屆了!" + }, + { + "aid": "1ZHf82oV", + "index": 781783, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569282.A.C9F.html", + "title": "R: [新聞] 數位部約聘僱人員平均月薪6萬 林思銘批破" + }, + { + "aid": "1ZHf85hQ", + "index": 781784, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569285.A.ADA.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大學生" + }, + { + "aid": "1ZHf9DRc", + "index": 781785, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569357.A.6E6.html", + "title": "[問卦] 父親欠債太多怎麼辦" + }, + { + "aid": "1ZHfADUa", + "index": 781786, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569421.A.7A4.html", + "title": "[問卦] 有哪位藝人開的店 很佛心的?" + }, + { + "aid": "1ZHfAHxi", + "index": 781787, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569425.A.EEC.html", + "title": "[問卦] 大家夢想職業是什麼?" + }, + { + "aid": "1ZHfBaYC", + "index": 781788, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569508.A.88C.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHfCS3f", + "index": 781789, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569564.A.0E9.html", + "title": "[問卦] 機車道可以停車嗎?" + }, + { + "aid": "1ZHfCatl", + "index": 781790, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569572.A.DEF.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大學生" + }, + { + "aid": "1ZHfDGg0", + "index": 781791, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569616.A.A80.html", + "title": "[問卦] 改回一年兵 問題就解決了嗎?..." + }, + { + "aid": "1ZHfG1SM", + "index": 781792, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569793.A.716.html", + "title": "[新聞] 「原子少年」小孩控「許維恩公司」毀謗!" + }, + { + "aid": "1ZHfG6JK", + "index": 781793, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569798.A.4D4.html", + "title": "R: [新聞] 男參加同志大遊行問志工1句話 下秒竟偷" + }, + { + "aid": "1ZHfGo2V", + "index": 781794, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569842.A.09F.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大" + }, + { + "aid": "1ZHfGqOT", + "index": 781795, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569844.A.61D.html", + "title": "[新聞] 質疑市政小編當競總小編 民進黨團批侯友" + }, + { + "aid": "1ZHfH9Cw", + "index": 781796, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569865.A.33A.html", + "title": "[新聞] 果粉們的集體回憶掰掰了!蘋果終結第一代" + }, + { + "aid": "1ZHfHd57", + "index": 781797, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569895.A.147.html", + "title": "[問卦] A5和牛火鍋588 便宜嗎" + }, + { + "aid": "1ZHfHeVl", + "index": 781798, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569896.A.7EF.html", + "title": "R: [問卦] 臺灣為何不敢用斷供晶片威脅全世界?" + }, + { + "aid": "1ZHfHkqH", + "index": 781799, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569902.A.D11.html", + "title": "[問卦] 安平區應該改名紅毛區" + }, + { + "aid": "1ZHfHxrr", + "index": 781800, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665569915.A.D75.html", + "title": "[新聞] 陳時中談大巨蛋 陳智菡酸:要加油別自我" + }, + { + "aid": "1ZHfJuAi", + "index": 781801, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570040.A.2AC.html", + "title": "[新聞] 世界大學排名「台大退步74名」 校方回" + }, + { + "aid": "1ZHfKzVr", + "index": 781802, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570109.A.7F5.html", + "title": "[問卦] 現在還有哪個國家有裸體報新聞?" + }, + { + "aid": "1ZHfL0bq", + "index": 781803, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570112.A.974.html", + "title": "[新聞] 林佳龍拔樁湧蓮寺失敗 陳宏昌公開力挺侯" + }, + { + "aid": "1ZHfLndb", + "index": 781804, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570161.A.9E5.html", + "title": "[問卦] 2025非核家園真的不可能 嗎?" + }, + { + "aid": "1ZHfM5G3", + "index": 781805, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570181.A.403.html", + "title": "[問卦] 如果有天外星人統治世界,把人類當寵物" + }, + { + "aid": "1ZHfMNBx", + "index": 781806, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570199.A.2FB.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHfMj8z", + "index": 781807, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570221.A.23D.html", + "title": "[問卦] Sony手機為何這麼廢?" + }, + { + "aid": "1ZHfNQJu", + "index": 781808, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570266.A.4F8.html", + "title": "[新聞] 翻修老宅挖出4百年前陶罐 打開全是金幣" + }, + { + "aid": "1ZHfNVh3", + "index": 781809, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570271.A.AC3.html", + "title": "[問卦] 要怎麼克服面對人群的緊張?" + }, + { + "aid": "1ZHfNoNG", + "index": 781810, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570290.A.5D0.html", + "title": "[問卦] 25-35歲最後悔沒做什麼事情?" + }, + { + "aid": "1ZHfODB4", + "index": 781811, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570317.A.2C4.html", + "title": "[問卦] 替代役開戰之後到底要幹嘛?" + }, + { + "aid": "1ZHfOEBO", + "index": 781812, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570318.A.2D8.html", + "title": "[問卦] 農林漁牧中最會抱怨的王者?" + }, + { + "aid": "1ZHfPVe1", + "index": 781813, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570399.A.A01.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHfPaD2", + "index": 781814, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570404.A.342.html", + "title": "[問卦] 水電DIY,1路學到會用電鑽,484就出師惹" + }, + { + "aid": "1ZHfQThy", + "index": 781815, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570461.A.AFC.html", + "title": "[問卦] 役期增加是爽到裡面的軍人吧?" + }, + { + "aid": "1ZHfQmxr", + "index": 781816, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570480.A.EF5.html", + "title": "[問卦] 為什麼素食的味道每間都一樣" + }, + { + "aid": "1ZHfQvh2", + "index": 781817, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570489.A.AC2.html", + "title": "[問卦] 請問有人知道這裡是哪裡ㄇ(發錢)" + }, + { + "aid": "1ZHfREzP", + "index": 781818, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570510.A.F59.html", + "title": "[新聞] 林智堅退選風波猶在? 鄭運鵬:已無人主" + }, + { + "aid": "1ZHfRFly", + "index": 781819, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570511.A.BFC.html", + "title": "R: [問卦] 大家夢想職業是什麼?" + }, + { + "aid": "1ZHfRZkM", + "index": 781820, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570531.A.B96.html", + "title": "[問卦] 憾!下線等。什麼人會得這些病?!" + }, + { + "aid": "1ZHfRi0w", + "index": 781821, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570540.A.03A.html", + "title": "[新聞] 高端疫苗報告補件若不符要求 薛瑞元:就" + }, + { + "aid": "1ZHfUlbL", + "index": 781822, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570735.A.955.html", + "title": "[新聞] 79歲阿公路邊賣50元「無碼A片」秒遭逮!" + }, + { + "aid": "1ZHfUpxE", + "index": 781823, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570739.A.ECE.html", + "title": "R: [問卦] 臺灣為何不敢用斷供晶片威脅全世界?" + }, + { + "aid": "1ZHfWANX", + "index": 781824, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570826.A.5E1.html", + "title": "R: [問卦] 義務役月薪如果一個月五萬 還會不滿嗎???" + }, + { + "aid": "1ZHfWjCO", + "index": 781825, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570861.A.318.html", + "title": "R: [問卦] 臺灣為何不敢用斷供晶片威脅全世界?" + }, + { + "aid": "1ZHfXXYe", + "index": 781826, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570913.A.8A8.html", + "title": "[問卦] BBMM的都進來玩吧~說說你身體的後續狀況~" + }, + { + "aid": "1ZHfXZGD", + "index": 781827, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570915.A.40D.html", + "title": "[問卦] 牛肉什麼部位最好吃" + }, + { + "aid": "1ZHfYRsL", + "index": 781828, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570971.A.D95.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大學生" + }, + { + "aid": "1ZHfYozh", + "index": 781829, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665570994.A.F6B.html", + "title": "[問卦] 秦朝是亡於勞役暴政,還是廢封建行郡縣制" + }, + { + "aid": "1ZHfbgcP", + "index": 781830, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571178.A.999.html", + "title": "[新聞] 觀旅界超過2千人成立後援會力挺 林佳龍:" + }, + { + "aid": "1ZHfboE6", + "index": 781831, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571186.A.386.html", + "title": "R: [新聞] 高端疫苗報告補件若不符要求 薛瑞元:就" + }, + { + "aid": "1ZHfbt7p", + "index": 781832, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571191.A.1F3.html", + "title": "[問卦] 役期兩年真的太長了吧" + }, + { + "aid": "1ZHfc_zd", + "index": 781833, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571263.A.F67.html", + "title": "R: [新聞] 北市若棄保成最大贏家!黃珊珊樂:集中" + }, + { + "aid": "1ZHfdT1W", + "index": 781835, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571293.A.060.html", + "title": "[問卦] 今年的大一新生就是上戰場第一批人吧?" + }, + { + "aid": "1ZHfdhIF", + "index": 781836, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571307.A.48F.html", + "title": "[問卦] 湯姆熊遊樂場的銅板可以換什麼嗎?" + }, + { + "aid": "1ZHfdkSw", + "index": 781837, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571310.A.73A.html", + "title": "[問卦] 哇靠 推賽車推到第五名??" + }, + { + "aid": "1ZHfdoFD", + "index": 781838, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571314.A.3CD.html", + "title": "R: [問卦] 同志遊行的主題「無.限.性」是什麼意思" + }, + { + "aid": "1ZHfe_4w", + "index": 781839, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571391.A.13A.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大學生" + }, + { + "aid": "1ZHff-FD", + "index": 781840, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571454.A.3CD.html", + "title": "R: [問卦] 臺灣為何不敢用斷供晶片威脅全世界?" + }, + { + "aid": "1ZHfgNog", + "index": 781841, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571479.A.CAA.html", + "title": "[新聞] 狠甩政大、中正好幾條街!泰晤士世界大" + }, + { + "aid": "1ZHfggps", + "index": 781842, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571498.A.CF6.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大學生" + }, + { + "aid": "1ZHfgt79", + "index": 781843, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571511.A.1C9.html", + "title": "[新聞] 林錫耀認選情冷:基本盤民調算高 討厭" + }, + { + "aid": "1ZHfiHEM", + "index": 781844, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571601.A.396.html", + "title": "[問卦] 說一句最難的台語展現你很會台語" + }, + { + "aid": "1ZHfjo-R", + "index": 781845, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571698.A.F9B.html", + "title": "R: [問卦] 秦朝是亡於勞役暴政,還是廢封建行郡縣制" + }, + { + "aid": "1ZHfk6BD", + "index": 781846, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571718.A.2CD.html", + "title": "[問卦] 某島的某地方" + }, + { + "aid": "1ZHfkGuR", + "index": 781847, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571728.A.E1B.html", + "title": "R: [問卦] 佐賀有什麼好玩的?" + }, + { + "aid": "1ZHfk_vX", + "index": 781848, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571775.A.E61.html", + "title": "[問卦] 確診了耶" + }, + { + "aid": "1ZHflHqw", + "index": 781849, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571793.A.D3A.html", + "title": "[新聞]鄭伊健遭傳離開香港移民日本 無奈吐實情:" + }, + { + "aid": "1ZHfmHdX", + "index": 781850, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571857.A.9E1.html", + "title": "R: [問卦] 同志遊行的主題「無.限.性」是什麼意思" + }, + { + "aid": "1ZHfmPiz", + "index": 781851, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571865.A.B3D.html", + "title": "R: [爆卦] 習近平確定第三屆了!" + }, + { + "aid": "1ZHfmh96", + "index": 781852, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571883.A.246.html", + "title": "[新聞] 統計:9月房租指數續創歷史新高 南部漲" + }, + { + "aid": "1ZHfn5HQ", + "index": 781853, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571909.A.45A.html", + "title": "[問卦] 記者/新聞小編知道自己有問題嗎。" + }, + { + "aid": "1ZHfnE9n", + "index": 781854, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571918.A.271.html", + "title": "[問卦] 說牛排沒有八分熟 是不是沒道理" + }, + { + "aid": "1ZHfo9lw", + "index": 781855, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571977.A.BFA.html", + "title": "[問卦] 為什麼沒有人在吃牛頭?" + }, + { + "aid": "1ZHfoIiF", + "index": 781856, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665571986.A.B0F.html", + "title": "R: [新聞] 數位部約聘僱人員平均月薪6萬 林思銘" + }, + { + "aid": "1ZHfpQ2x", + "index": 781857, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572058.A.0BB.html", + "title": "[問卦] 晚了就不要了,高端晚多久都要?" + }, + { + "aid": "1ZHfqPTU", + "index": 781858, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572121.A.75E.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大學生" + }, + { + "aid": "1ZHfqTr8", + "index": 781859, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572125.A.D48.html", + "title": "[問卦] 練健康的人一周都去幾次健身房啊?" + }, + { + "aid": "1ZHfqeNg", + "index": 781860, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572136.A.5EA.html", + "title": "[問卦] 邊境解封是為了選舉嗎" + }, + { + "aid": "1ZHfqowN", + "index": 781861, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572146.A.E97.html", + "title": "[問卦] 小穹會被咬嗎>< (小穹陣線)" + }, + { + "aid": "1ZHfqzmW", + "index": 781862, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572157.A.C20.html", + "title": "[問卦] 有沒有印度人工作的八卦" + }, + { + "aid": "1ZHft7hD", + "index": 781863, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572295.A.ACD.html", + "title": "[問卦] 現在網路那麼快 怎麼沒BD畫質的串流影片?" + }, + { + "aid": "1ZHft8M5", + "index": 781864, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572296.A.585.html", + "title": "[問卦] 淡水河從以前就這麼臭又不透明嗎" + }, + { + "aid": "1ZHftB93", + "index": 781865, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572299.A.243.html", + "title": "[問卦] 台語的牙給是什麼意思" + }, + { + "aid": "1ZHftqdx", + "index": 781866, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572340.A.9FB.html", + "title": "[問卦] 要炒香菜惹才發現==" + }, + { + "aid": "1ZHfuVIR", + "index": 781867, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572383.A.49B.html", + "title": "[新聞] iPhone 14 Plus適合誰?衝著這兩點 Tim" + }, + { + "aid": "1ZHfulcu", + "index": 781868, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572399.A.9B8.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHfvG78", + "index": 781870, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572432.A.1C8.html", + "title": "[新聞] 確診11/26無法投票 薛瑞元:實務困難無政" + }, + { + "aid": "1ZHfvJLg", + "index": 781871, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572435.A.56A.html", + "title": "[問卦] 每天晚上回家都晚上七點了..." + }, + { + "aid": "1ZHfwG5V", + "index": 781872, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572496.A.15F.html", + "title": "R: [問卦] 台灣的和牛484沒人管的詐騙" + }, + { + "aid": "1ZHfxIfF", + "index": 781873, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572562.A.A4F.html", + "title": "R: [問卦] 說牛排沒有八分熟 是不是沒道理" + }, + { + "aid": "1ZHfyO1J", + "index": 781874, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572632.A.053.html", + "title": "R: [新聞] 談2050淨零排放 李遠哲:政府欺騙大家" + }, + { + "aid": "1ZHfyz2j", + "index": 781875, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572669.A.0AD.html", + "title": "[新聞] 疫苗採購封存30年 審計部:應公開採購執行" + }, + { + "aid": "1ZHf-fCf", + "index": 781876, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572777.A.329.html", + "title": "R: [爆卦] 習近平確定第三屆了!" + }, + { + "aid": "1ZHf_N1p", + "index": 781877, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572823.A.073.html", + "title": "[新聞] 元宇宙拓展不如預期順利,紐約時報揭開…" + }, + { + "aid": "1ZHg0fpZ", + "index": 781878, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572905.A.CE3.html", + "title": "[問卦] 乾一堆症狀都出來了還是篩不出陽性" + }, + { + "aid": "1ZHg1QN2", + "index": 781880, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572954.A.5C2.html", + "title": "[新聞] 吸7成美客 台裔夫妻創業鹽酥雞牛肉麵成主" + }, + { + "aid": "1ZHg1XDp", + "index": 781881, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665572961.A.373.html", + "title": "R: [新聞] 高端疫苗報告補件若不符要求 薛瑞元:就" + }, + { + "aid": "1ZHg4niM", + "index": 781882, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573169.A.B16.html", + "title": "[問卦] 現在工作時薪要多少才算脫離貧窮線?" + }, + { + "aid": "1ZHg4p4S", + "index": 781883, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573171.A.11C.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHg4xSX", + "index": 781884, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573179.A.721.html", + "title": "[新聞] 悚! 花防部復興營區新建工程 挖出多具無" + }, + { + "aid": "1ZHg6TVw", + "index": 781885, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573277.A.7FA.html", + "title": "[問卦] 學校不教古文、文言文會發生什麼事?" + }, + { + "aid": "1ZHg7_UA", + "index": 781886, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573375.A.78A.html", + "title": "R: [新聞] 元宇宙拓展不如預期順利,紐約時報揭開…" + }, + { + "aid": "1ZHg8lYN", + "index": 781887, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573423.A.897.html", + "title": "[新聞] 美新禁令暗藏一絕招 中共難獲芯片技術人才" + }, + { + "aid": "1ZHg8pHa", + "index": 781888, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573427.A.464.html", + "title": "[問卦] 俄羅斯平民會不會覺得很靠北" + }, + { + "aid": "1ZHg9ikL", + "index": 781889, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573484.A.B95.html", + "title": "[問卦] 最適合台灣人移民的國家" + }, + { + "aid": "1ZHgB6d3", + "index": 781890, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573574.A.9C3.html", + "title": "[問卦] 警察7 8萬,軍人3 4萬" + }, + { + "aid": "1ZHgBxMa", + "index": 781891, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573627.A.5A4.html", + "title": "[問卦] 乾 被蜂螫差點害死 (文長)" + }, + { + "aid": "1ZHgD7RG", + "index": 781892, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573703.A.6D0.html", + "title": "[問卦] 和牛涮火鍋真的吃得出來嗎" + }, + { + "aid": "1ZHgDFDj", + "index": 781893, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573711.A.36D.html", + "title": "R: [新聞] 藍白合?盧秀燕、高虹安互動熱烈 柯建銘" + }, + { + "aid": "1ZHgDiSx", + "index": 781894, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573740.A.73B.html", + "title": "R: [新聞] 快訊/KID火鍋分店「無限期停業」:" + }, + { + "aid": "1ZHgEh9g", + "index": 781895, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573803.A.26A.html", + "title": "R: [新聞] 陳揮文請求新竹鄉親「不要被高虹安騙" + }, + { + "aid": "1ZHgFo00", + "index": 781896, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573874.A.000.html", + "title": "[問卦] 有40歲以上還沒結婚的可以分享生活嗎?" + }, + { + "aid": "1ZHgH8Sm", + "index": 781897, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665573960.A.730.html", + "title": "[問卦] 檢舉達人是不是邊緣人" + }, + { + "aid": "1ZHgH_Us", + "index": 781898, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574015.A.7B6.html", + "title": "[問卦] 自願役現在在想什麼?" + }, + { + "aid": "1ZHgI-Uh", + "index": 781899, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574078.A.7AB.html", + "title": "R: [新聞] 談2050淨零排放 李遠哲:政府欺騙大家" + }, + { + "aid": "1ZHgJ32x", + "index": 781900, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574083.A.0BB.html", + "title": "R: [問卦] 秦朝是亡於勞役暴政,還是廢封建行郡縣制" + }, + { + "aid": "1ZHgL5DW", + "index": 781902, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574213.A.360.html", + "title": "[問卦] 娶到習明澤有機會繼承中國皇位嗎?" + }, + { + "aid": "1ZHgLBC0", + "index": 781903, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574219.A.300.html", + "title": "[問卦] 欸你各位當兵時都在幹嘛" + }, + { + "aid": "1ZHgLCTk", + "index": 781904, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574220.A.76E.html", + "title": "R: [新聞] 疫苗採購封存30年 審計部:應公開採購執行" + }, + { + "aid": "1ZHgLmSQ", + "index": 781905, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574256.A.71A.html", + "title": "[新聞] 性感寫真拍到一半凍未條 「色影師」嘴巴" + }, + { + "aid": "1ZHgLvbT", + "index": 781906, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574265.A.95D.html", + "title": "[新聞] 才道歉曬上空!雞排妹「跪床照」側拍曝" + }, + { + "aid": "1ZHgMK65", + "index": 781907, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574292.A.185.html", + "title": "[問卦] 最兇的89是不是不用當兵啊?" + }, + { + "aid": "1ZHgMyEJ", + "index": 781908, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574332.A.393.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHgNbyd", + "index": 781909, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574373.A.F27.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大學生" + }, + { + "aid": "1ZHgOfGj", + "index": 781910, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574441.A.42D.html", + "title": "[問卦] 有哪些替代役是真的有用的" + }, + { + "aid": "1ZHgQfDg", + "index": 781911, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574569.A.36A.html", + "title": "R: [問卦] 有40歲以上還沒結婚的可以分享生活嗎?" + }, + { + "aid": "1ZHgQxJX", + "index": 781912, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574587.A.4E1.html", + "title": "[問卦] 有人一樣跟我羨慕可以被延長兵役的人嗎?" + }, + { + "aid": "1ZHgRAER", + "index": 781913, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574602.A.39B.html", + "title": "[問卦] 為什麼台海最近突然兵兇戰危?" + }, + { + "aid": "1ZHgSaji", + "index": 781914, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574692.A.B6C.html", + "title": "R: [新聞] 做愛這體位最棒!研究曝:男生可消耗211" + }, + { + "aid": "1ZHgScaW", + "index": 781915, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574694.A.920.html", + "title": "[問卦] 造勢活動的意義是什麼?" + }, + { + "aid": "1ZHgSl-c", + "index": 781916, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574703.A.FA6.html", + "title": "[問卦] 過12點第一個入境的外國人會說什麼" + }, + { + "aid": "1ZHgVAsB", + "index": 781917, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574858.A.D8B.html", + "title": "[問卦] 憾!下線等。啥是屁眼派對" + }, + { + "aid": "1ZHgVfnJ", + "index": 781918, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574889.A.C53.html", + "title": "[問卦] 有這位橘色惡魔傳送門嗎(圖" + }, + { + "aid": "1ZHgW7hg", + "index": 781919, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574919.A.AEA.html", + "title": "R: [新聞] 李遠哲曝蔡英文談2025非核家園 蔡說:202" + }, + { + "aid": "1ZHgWu0m", + "index": 781920, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574968.A.030.html", + "title": "R: [問卦] 檢舉達人是不是邊緣人" + }, + { + "aid": "1ZHgWvdc", + "index": 781921, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665574969.A.9E6.html", + "title": "[問卦] 雲端發票可以印出報帳嗎" + }, + { + "aid": "1ZHgYEQA", + "index": 781922, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575054.A.68A.html", + "title": "R: [問卦] 有哪些替代役是真的有用的" + }, + { + "aid": "1ZHgZ2wo", + "index": 781923, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575106.A.EB2.html", + "title": "R: [新聞] 陳揮文請求新竹鄉親「不要被高虹安騙」" + }, + { + "aid": "1ZHgZ4tu", + "index": 781924, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575108.A.DF8.html", + "title": "[問卦] 學妹換新髮型要留言說好看嗎?" + }, + { + "aid": "1ZHgZDjx", + "index": 781925, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575117.A.B7B.html", + "title": "[問卦] 往生告別式為什麼要唱歌?" + }, + { + "aid": "1ZHgZKNQ", + "index": 781926, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575124.A.5DA.html", + "title": "[問卦] 沒有「和牛」前,火鍋牛肉最頂都叫啥" + }, + { + "aid": "1ZHgZjo7", + "index": 781927, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575149.A.C87.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大學生" + }, + { + "aid": "1ZHgZoR1", + "index": 781928, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575154.A.6C1.html", + "title": "R: [新聞] 陳揮文請求新竹鄉親「不要被高虹安騙" + }, + { + "aid": "1ZHgb8WR", + "index": 781929, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575240.A.81B.html", + "title": "[問卦] 金城武請進" + }, + { + "aid": "1ZHgbD5g", + "index": 781930, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575245.A.16A.html", + "title": "R: [新聞] 快訊/KID火鍋分店「無限期停業」:準備" + }, + { + "aid": "1ZHgbXCg", + "index": 781931, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575265.A.32A.html", + "title": "[問卦] 一個月存幾 % 月薪才正常阿?" + }, + { + "aid": "1ZHgcJ6m", + "index": 781932, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575315.A.1B0.html", + "title": "R: [問卦] 狂賀!400元守住 晚餐吃什麼慶祝" + }, + { + "aid": "1ZHgcoOF", + "index": 781933, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575346.A.60F.html", + "title": "R: [新聞] 誇張影像PO網!整排機車全逆駛 永康警:" + }, + { + "aid": "1ZHgczY8", + "index": 781934, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575357.A.888.html", + "title": "[問卦] 歐美有跟團的旅行這種東西嗎" + }, + { + "aid": "1ZHgdEfw", + "index": 781935, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575374.A.A7A.html", + "title": "[問卦] 發哥RD七點下班台北女森不愛?" + }, + { + "aid": "1ZHgdgKU", + "index": 781936, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575402.A.51E.html", + "title": "[新聞] 黃珊珊推新創政見 管碧玲秀數據批大幅退" + }, + { + "aid": "1ZHgedYJ", + "index": 781937, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575463.A.893.html", + "title": "[問卦] 車停這樣是不是沒王法了啊" + }, + { + "aid": "1ZHgf6zo", + "index": 781938, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575494.A.F72.html", + "title": "[問卦] 晚餐吃這樣有及格嗎?" + }, + { + "aid": "1ZHggYgp", + "index": 781939, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575586.A.AB3.html", + "title": "[問卦] 文組的巔峰是什麼" + }, + { + "aid": "1ZHgiBFf", + "index": 781940, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575691.A.3E9.html", + "title": "[問卦] 為什麼力量人晨晨的梗那麼多?" + }, + { + "aid": "1ZHgjI1k", + "index": 781941, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575762.A.06E.html", + "title": "[新聞] 越南女在台當密醫!豐胸隆鼻月入50萬 「" + }, + { + "aid": "1ZHgjmmN", + "index": 781942, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575792.A.C17.html", + "title": "[問卦] 驚!女同事今天穿白色內衣褲(圖" + }, + { + "aid": "1ZHgkhaf", + "index": 781943, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575851.A.929.html", + "title": "[新聞]高雄抹屎怪客出沒!他見機車握把一片「巧" + }, + { + "aid": "1ZHglWsY", + "index": 781944, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575904.A.DA2.html", + "title": "[問卦] 全裸雨林跟有衣苔原哪個生存簡單?" + }, + { + "aid": "1ZHglmyR", + "index": 781945, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575920.A.F1B.html", + "title": "[問卦] 請問A4A3其他等級和牛跑去哪?" + }, + { + "aid": "1ZHgmSm5", + "index": 781946, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575964.A.C05.html", + "title": "[問卦] 服完役才能任公職、參選、投票合理吧?" + }, + { + "aid": "1ZHgmwLh", + "index": 781947, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665575994.A.56B.html", + "title": "[問卦] 清境農場草原都是大便,哪裡好玩" + }, + { + "aid": "1ZHgnJec", + "index": 781948, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576019.A.A26.html", + "title": "[問卦] 幫想請事假理由啦" + }, + { + "aid": "1ZHgoPKP", + "index": 781949, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576089.A.519.html", + "title": "[問卦] 為啥日本能直接開打 BA.4-5 疫苗 台灣打…" + }, + { + "aid": "1ZHgogQZ", + "index": 781950, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576106.A.6A3.html", + "title": "[新聞] 花了兩年拿不到台灣身份證 香港YouTuber" + }, + { + "aid": "1ZHgpSS2", + "index": 781951, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576156.A.702.html", + "title": "[問卦] 有無橘色惡魔的弱弱指導法的卦?" + }, + { + "aid": "1ZHgpmtZ", + "index": 781952, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576176.A.DE3.html", + "title": "R: [問卦] 有40歲以上還沒結婚的可以分享生活嗎?" + }, + { + "aid": "1ZHgsAeI", + "index": 781953, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576330.A.A12.html", + "title": "[問卦] 身邊有看過反擊霸凌者成功的案例嗎" + }, + { + "aid": "1ZHgsC9R", + "index": 781954, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576332.A.25B.html", + "title": "[問卦] 超震撼!!!會計師查完15年的帳!!!" + }, + { + "aid": "1ZHgsyA9", + "index": 781955, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576380.A.289.html", + "title": "[新聞] 好羨慕! 科技業平均年薪破百萬 文科人…" + }, + { + "aid": "1ZHgt2AJ", + "index": 781956, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576386.A.293.html", + "title": "[問卦] 總監是哪裡輸給健身房人夫?" + }, + { + "aid": "1ZHgt3XY", + "index": 781957, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576387.A.862.html", + "title": "[新聞] 搶打次世代疫苗!BA.5疫苗國內新進度 吳" + }, + { + "aid": "1ZHgt7QI", + "index": 781958, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576391.A.692.html", + "title": "R: [問卦] 服完役才能任公職、參選、投票合理吧?" + }, + { + "aid": "1ZHgtJWV", + "index": 781959, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576403.A.81F.html", + "title": "[問卦] 抬手看錶看到哭出來正常嗎?" + }, + { + "aid": "1ZHgtTZh", + "index": 781960, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576413.A.8EB.html", + "title": "[問卦] 有沒有論文如何演進的八卦?" + }, + { + "aid": "1ZHguUXB", + "index": 781961, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576478.A.84B.html", + "title": "[新聞] 騙HBL球星拍自慰片 又逼泡湯索原味內褲" + }, + { + "aid": "1ZHgvL-d", + "index": 781962, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576533.A.FA7.html", + "title": "[問卦] 打者到底都在看什麼 ?" + }, + { + "aid": "1ZHgwHWl", + "index": 781963, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576593.A.82F.html", + "title": "[新聞] 泰晤士世界大學排名 台大全球187退步74名" + }, + { + "aid": "1ZHgwmre", + "index": 781964, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576624.A.D68.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHgxQJp", + "index": 781965, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576666.A.4F3.html", + "title": "[問卦] 碳烤買四串很少嗎?" + }, + { + "aid": "1ZHgyqr9", + "index": 781966, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576756.A.D49.html", + "title": "R: [問卦] 為什麼台海最近突然兵兇戰危?" + }, + { + "aid": "1ZHg_NBv", + "index": 781968, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576919.A.2F9.html", + "title": "[問卦] 為什麼做愛時女生都愛出怪聲翻白眼" + }, + { + "aid": "1ZHg_UNc", + "index": 781969, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576926.A.5E6.html", + "title": "[新聞] 日本川內核電廠2機組服役將屆40年 申請" + }, + { + "aid": "1ZHg_qCt", + "index": 781970, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576948.A.337.html", + "title": "R: [問卦] 有40歲以上還沒結婚的可以分享生活嗎?" + }, + { + "aid": "1ZHg_v4t", + "index": 781971, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576953.A.137.html", + "title": "[問卦] 有油水分離師的八卦嗎" + }, + { + "aid": "1ZHh0WhA", + "index": 781972, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665576992.A.ACA.html", + "title": "[問卦] 達爾文要怎麼解釋同性戀?" + }, + { + "aid": "1ZHh0hYX", + "index": 781973, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577003.A.8A1.html", + "title": "R: [問卦] 每天晚上回家都晚上七點了..." + }, + { + "aid": "1ZHh1hiY", + "index": 781974, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577067.A.B22.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHh1uCo", + "index": 781975, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577080.A.332.html", + "title": "[問卦]台北女子圖鑑怎不乾脆叫台女約砲圖鑑" + }, + { + "aid": "1ZHh2h5c", + "index": 781976, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577131.A.166.html", + "title": "[問卦] 家裡的貓肚子黃黃的" + }, + { + "aid": "1ZHh2qfj", + "index": 781977, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577140.A.A6D.html", + "title": "[問卦] 有沒有meta還沒倒的八卦" + }, + { + "aid": "1ZHh2uPk", + "index": 781978, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577144.A.66E.html", + "title": "[問卦] 喜歡熟女人妻很奇怪嗎" + }, + { + "aid": "1ZHh3f7v", + "index": 781979, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577193.A.1F9.html", + "title": "[新聞] 歐冠》奧巴梅揚進球、托莫里染紅送點球" + }, + { + "aid": "1ZHh3yBU", + "index": 781980, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577212.A.2DE.html", + "title": "R: [問卦] 為什麼台海最近突然兵兇戰危?" + }, + { + "aid": "1ZHh46bM", + "index": 781981, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577222.A.956.html", + "title": "[問卦] 現在台灣房地產是在抓交替嗎?" + }, + { + "aid": "1ZHh5FXH", + "index": 781983, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577295.A.851.html", + "title": "[問卦] 怎麼有那種一直愛幫人團購的人?" + }, + { + "aid": "1ZHh5f9w", + "index": 781984, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577321.A.27A.html", + "title": "[問卦] 韓文學起來會比日文簡單嗎?" + }, + { + "aid": "1ZHh5mpk", + "index": 781985, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577328.A.CEE.html", + "title": "[問卦] 年紀比較大的是不是比較喜歡開車?" + }, + { + "aid": "1ZHh6jgX", + "index": 781986, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577389.A.AA1.html", + "title": "R: [新聞] 高端疫苗報告補件若不符要求 薛瑞元" + }, + { + "aid": "1ZHh7FgB", + "index": 781987, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577423.A.A8B.html", + "title": "[新聞] 鄭仲茵曬19歲正妹女兒!神級身材驚豔全" + }, + { + "aid": "1ZHh8EKH", + "index": 781988, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577486.A.511.html", + "title": "[問卦] 買家樂福的冷藏牛排很盤嗎?" + }, + { + "aid": "1ZHh8wRd", + "index": 781989, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577530.A.6E7.html", + "title": "[問卦] Omaha beach的掩體是誰插上去的" + }, + { + "aid": "1ZHh9vfl", + "index": 781990, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577593.A.A6F.html", + "title": "[問卦] 兵役為何不一次兩個月的增加" + }, + { + "aid": "1ZHhC3NL", + "index": 781991, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577731.A.5D5.html", + "title": "R: [問卦] 韓文學起來會比日文簡單嗎?" + }, + { + "aid": "1ZHhCAFh", + "index": 781992, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577738.A.3EB.html", + "title": "R: [新聞] 李遠哲曝蔡英文談2025非核家園 蔡說:202" + }, + { + "aid": "1ZHhCG-D", + "index": 781993, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577744.A.F8D.html", + "title": "R: [問卦] 沒有「和牛」前,火鍋牛肉最頂都叫啥" + }, + { + "aid": "1ZHhCl7v", + "index": 781994, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577775.A.1F9.html", + "title": "[問卦] 台積電已經是外資在把持還要成為美國公" + }, + { + "aid": "1ZHhE0WU", + "index": 781995, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577856.A.81E.html", + "title": "[問卦] 市面上沒即期品販賣機?" + }, + { + "aid": "1ZHhG4Bc", + "index": 781996, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665577988.A.2E6.html", + "title": "[問卦] 陳小春是叫我們回歸中國嗎?" + }, + { + "aid": "1ZHhGSgv", + "index": 781997, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578012.A.AB9.html", + "title": "[新聞] 蛋白區有房!30歲哥身家6000萬「該辭職" + }, + { + "aid": "1ZHhGe-g", + "index": 781998, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578024.A.FAA.html", + "title": "[問卦] ba1疫苗要打起來嗎" + }, + { + "aid": "1ZHhHK_m", + "index": 781999, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578068.A.FF0.html", + "title": "[問卦] 微波和清蒸 風味有什麼不同嗎?" + }, + { + "aid": "1ZHhJAxY", + "index": 782000, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578186.A.EE2.html", + "title": "R: [問卦] 為啥日本能直接開打 BA.4-5 疫苗 台灣打…" + }, + { + "aid": "1ZHhJt8X", + "index": 782001, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578231.A.221.html", + "title": "[問卦] 有沒有如何推廣YT頻道的八卦" + }, + { + "aid": "1ZHhJyzu", + "index": 782002, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578236.A.F78.html", + "title": "[問卦] 女生壽司兩個人吃6盤???" + }, + { + "aid": "1ZHhKQqz", + "index": 782003, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578266.A.D3D.html", + "title": "R: [問卦] 為什麼台海最近突然兵兇戰危?" + }, + { + "aid": "1ZHhL0Xk", + "index": 782004, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578304.A.86E.html", + "title": "R: [新聞] 黃珊珊推新創政見 管碧玲秀數據批大幅退" + }, + { + "aid": "1ZHhLRu5", + "index": 782005, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578331.A.E05.html", + "title": "[新聞] 一連串的烏龍爆料、抹黑 謝國樑金星事件" + }, + { + "aid": "1ZHhLVk9", + "index": 782006, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578335.A.B89.html", + "title": "[問卦] 為什麼電視劇裡的人游泳都不用戴蛙鏡" + }, + { + "aid": "1ZHhNQg9", + "index": 782007, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578458.A.A89.html", + "title": "[問卦] 只買來回機票就去東京玩可行嗎?" + }, + { + "aid": "1ZHhNZ7M", + "index": 782008, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578467.A.1D6.html", + "title": "R: [新聞]鄭伊健遭傳離開香港移民日本 無奈吐實情:" + }, + { + "aid": "1ZHhNoMO", + "index": 782009, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578482.A.598.html", + "title": "[新聞] 日本松雀鷹捕雀飽餐一頓 受困修車廠飛不" + }, + { + "aid": "1ZHhO5Hg", + "index": 782010, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578501.A.46A.html", + "title": "[新聞] 剛跟仙姑問事…新北男中11刀「脖放血慘死" + }, + { + "aid": "1ZHhOeOu", + "index": 782011, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578536.A.638.html", + "title": "[新聞] 結婚基金All in「台積電買550」今跌破4百" + }, + { + "aid": "1ZHhQLEZ", + "index": 782012, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578645.A.3A3.html", + "title": "[問卦] 韓國男星表演讓台女high到脫奶罩?" + }, + { + "aid": "1ZHhRxx6", + "index": 782013, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578747.A.EC6.html", + "title": "[新聞] 違停引衝突!周玉蔻控男子強開車門 慘被" + }, + { + "aid": "1ZHhU5c5", + "index": 782014, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665578885.A.985.html", + "title": "[問卦] 快篩根本就很準 之前在那邊吵什麼偽陰偽" + }, + { + "aid": "1ZHhWHSE", + "index": 782016, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579025.A.70E.html", + "title": "[新聞] 賴副總統為陳其邁站台 「市長不能換」挺" + }, + { + "aid": "1ZHhWlSl", + "index": 782017, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579055.A.72F.html", + "title": "R: [問卦] 只買來回機票就去東京玩可行嗎?" + }, + { + "aid": "1ZHhX2AN", + "index": 782018, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579074.A.297.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHhXxNy", + "index": 782019, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579131.A.5FC.html", + "title": "[問卦] 吃飯都看哪個youtube頻道?" + }, + { + "aid": "1ZHhXzei", + "index": 782020, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579133.A.A2C.html", + "title": "R: [問卦] 為什麼台海最近突然兵兇戰危?" + }, + { + "aid": "1ZHhY96V", + "index": 782021, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579145.A.19F.html", + "title": "R: [新聞] 黃珊珊推新創政見 管碧玲秀數據批大幅退" + }, + { + "aid": "1ZHhYID2", + "index": 782022, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579154.A.342.html", + "title": "[問卦] 我朋友找我去蓋露營場" + }, + { + "aid": "1ZHhYP8Z", + "index": 782023, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579161.A.223.html", + "title": "R: [問卦] 現在台灣房地產是在抓交替嗎?" + }, + { + "aid": "1ZHhZqnG", + "index": 782024, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579252.A.C50.html", + "title": "[問卦] 買NV的RTX4090來上PTT夠不夠力?" + }, + { + "aid": "1ZHhZzGN", + "index": 782025, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579261.A.417.html", + "title": "[問卦] 橘高校 搶了台灣學生的光彩 對嗎?" + }, + { + "aid": "1ZHhaJy3", + "index": 782026, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579283.A.F03.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHhbJcZ", + "index": 782027, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579347.A.9A3.html", + "title": "R: [問卦] 有沒有如何推廣YT頻道的八卦" + }, + { + "aid": "1ZHhcFm2", + "index": 782028, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579407.A.C02.html", + "title": "R: [問卦] 為什麼台海最近突然兵兇戰危?" + }, + { + "aid": "1ZHhcN2t", + "index": 782029, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579415.A.0B7.html", + "title": "[問卦] 台灣戰爭風險提高,房價總該跌了吧?" + }, + { + "aid": "1ZHhd2Jj", + "index": 782030, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579458.A.4ED.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHhd3kK", + "index": 782031, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579459.A.B94.html", + "title": "[新聞] 住家附近放送「炒股夫妻」競選歌惹怒花" + }, + { + "aid": "1ZHhg9KP", + "index": 782032, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579657.A.519.html", + "title": "[問卦] 幹你媽垃圾人只會抄襲是不是啦?" + }, + { + "aid": "1ZHhgtr-", + "index": 782033, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579703.A.D7E.html", + "title": "[問卦] 現在叫唐山來台灣 會活成怎樣?" + }, + { + "aid": "1ZHhhUWj", + "index": 782034, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579742.A.82D.html", + "title": "[問卦] 外國人來台灣玩可以接受戴口罩嗎?" + }, + { + "aid": "1ZHhixKm", + "index": 782035, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579835.A.530.html", + "title": "R: [新聞]2022地方選舉民進黨若大敗 黨政人士:中共" + }, + { + "aid": "1ZHhjE_J", + "index": 782036, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579854.A.FD3.html", + "title": "[問卦] 我爸說他小學訂便當30元還送養樂多?" + }, + { + "aid": "1ZHhjiu1", + "index": 782037, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579884.A.E01.html", + "title": "R: [問卦] 沒有「和牛」前,火鍋牛肉最頂都叫啥" + }, + { + "aid": "1ZHhk5f6", + "index": 782038, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579909.A.A46.html", + "title": "[問卦] 美國的槍枝跟毒品問題有多氾濫?" + }, + { + "aid": "1ZHhkHCD", + "index": 782039, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665579921.A.30D.html", + "title": "[問卦] 經過多日勞改俺終於活著出來了" + }, + { + "aid": "1ZHhlY6A", + "index": 782040, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580002.A.18A.html", + "title": "[問卦] 為啥沒打遊戲還是想買顯卡" + }, + { + "aid": "1ZHhlaPa", + "index": 782041, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580004.A.664.html", + "title": "[問卦] 男生自己就一堆躲兵役惹 =.=" + }, + { + "aid": "1ZHhlg4d", + "index": 782042, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580010.A.127.html", + "title": "[問卦] PTT鄉民最挺填鴨教育又羨慕橘色惡魔?" + }, + { + "aid": "1ZHhmcy4", + "index": 782043, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580070.A.F04.html", + "title": "[問卦] すき家的mega尺寸值得209嗎" + }, + { + "aid": "1ZHhnRNG", + "index": 782044, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580123.A.5D0.html", + "title": "[問卦] 被關進藍色監獄怎麼辦?" + }, + { + "aid": "1ZHhnxvL", + "index": 782045, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580155.A.E55.html", + "title": "[問卦] 少吃糖斷食好像變容易了?" + }, + { + "aid": "1ZHhrwqQ", + "index": 782046, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580410.A.D1A.html", + "title": "[問卦] 為什麼夫妻都不牽手" + }, + { + "aid": "1ZHhs3q_", + "index": 782047, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580419.A.D3F.html", + "title": "[問卦] 大家其實捨不得口罩吧" + }, + { + "aid": "1ZHhs635", + "index": 782048, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580422.A.0C5.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHhsuqe", + "index": 782049, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580472.A.D28.html", + "title": "R: [問卦] 中國人也怕1450 o_O????" + }, + { + "aid": "1ZHhtKjF", + "index": 782050, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580500.A.B4F.html", + "title": "[新聞] 傳染力更強!BF.7攻入台灣 羅一鈞:國內檢" + }, + { + "aid": "1ZHhuBd-", + "index": 782051, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580555.A.9FE.html", + "title": "[問卦] 雞卵我要肛爆你嘻嘻" + }, + { + "aid": "1ZHhvBWS", + "index": 782052, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580619.A.81C.html", + "title": "[問卦] 嘉義憑什麼房價比台南高?" + }, + { + "aid": "1ZHhwgb3", + "index": 782053, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580714.A.943.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHhwuWZ", + "index": 782054, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580728.A.823.html", + "title": "R: [問卦] 每天晚上回家都晚上七點了..." + }, + { + "aid": "1ZHhx5uJ", + "index": 782055, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580741.A.E13.html", + "title": "[新聞] 罵安倍國賊自民黨議員村上停職處分" + }, + { + "aid": "1ZHhxDJT", + "index": 782056, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580749.A.4DD.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHhxyNT", + "index": 782057, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580796.A.5DD.html", + "title": "[新聞] 棕熊界閨密 罕見互動專家驚呼 相揪育兒" + }, + { + "aid": "1ZHhzI8O", + "index": 782058, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665580882.A.218.html", + "title": "[問卦] 問一下!現在打起來幾歲不會被徵招" + }, + { + "aid": "1ZHh_Nng", + "index": 782059, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581015.A.C6A.html", + "title": "R: [問卦] 男生自己就一堆躲兵役惹 =.=" + }, + { + "aid": "1ZHh_dp8", + "index": 782060, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581031.A.CC8.html", + "title": "[新聞] 解秘!彰化芬園鄉公所祭出 5 千元 徵求" + }, + { + "aid": "1ZHi1SCY", + "index": 782061, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581148.A.322.html", + "title": "[問卦] 唱衰iPhone 14賣不好的人是怕太多人搶買" + }, + { + "aid": "1ZHi1-pk", + "index": 782062, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581182.A.CEE.html", + "title": "R: [新聞] 真尷尬!陳時中7:50站路口被罵 住戶譙" + }, + { + "aid": "1ZHi2U5M", + "index": 782063, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581214.A.156.html", + "title": "[新聞] 傳票爭議 沈慧虹批蔣萬安為拉攏民眾黨選" + }, + { + "aid": "1ZHi36tf", + "index": 782064, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581254.A.DE9.html", + "title": "[問卦] 機場海關怎麼知道你的藥品安不安全啊?" + }, + { + "aid": "1ZHi4OhD", + "index": 782065, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581336.A.ACD.html", + "title": "[問卦] 被服飾店小姊姊說像大學生?" + }, + { + "aid": "1ZHi4zyR", + "index": 782066, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581373.A.F1B.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHi51Lp", + "index": 782067, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581377.A.573.html", + "title": "[問卦] 經濟大蕭條時還能出國玩樂都是什麼身分?" + }, + { + "aid": "1ZHi54id", + "index": 782068, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581380.A.B27.html", + "title": "[問卦] 割讓金門換取和平 同意嗎?" + }, + { + "aid": "1ZHi5REc", + "index": 782069, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581403.A.3A6.html", + "title": "R: [問卦] 快篩根本就很準 之前在那邊吵什麼偽陰偽" + }, + { + "aid": "1ZHi5ZCF", + "index": 782070, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581411.A.30F.html", + "title": "[問卦] 欸 信箱塞爆賣房廣告單是怎樣" + }, + { + "aid": "1ZHi5tmI", + "index": 782071, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581431.A.C12.html", + "title": "R: [新聞] 元宇宙拓展不如預期順利,紐約時報揭開…" + }, + { + "aid": "1ZHi7mCV", + "index": 782072, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581552.A.31F.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHi80Qt", + "index": 782073, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581568.A.6B7.html", + "title": "[問卦] 勃肯拖 白色防水eva會容易髒嗎?" + }, + { + "aid": "1ZHi8OIj", + "index": 782074, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581592.A.4AD.html", + "title": "R: [新聞] 諾貝爾經濟學獎 前聯準會主席柏南奇及2" + }, + { + "aid": "1ZHiAQ4q", + "index": 782075, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581722.A.134.html", + "title": "[問卦] 認真問 下班回到家幾點算正常" + }, + { + "aid": "1ZHiCAic", + "index": 782076, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581834.A.B26.html", + "title": "[新聞] 行政院「小編」因感情走上絕路 蘇貞昌" + }, + { + "aid": "1ZHiEXs_", + "index": 782077, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665581985.A.DBF.html", + "title": "R: [新聞] 黃珊珊推新創政見 管碧玲秀數據批大幅退" + }, + { + "aid": "1ZHiEx9n", + "index": 782078, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582011.A.271.html", + "title": "[問卦] 你各位現在在吃什麼?" + }, + { + "aid": "1ZHiF4cr", + "index": 782079, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582020.A.9B5.html", + "title": "[問卦] 女友一邊乳暈比較大正常嗎?" + }, + { + "aid": "1ZHiFseC", + "index": 782080, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582070.A.A0C.html", + "title": "[新聞]軍備遭爆「中國製劣質品混充」 防彈效果" + }, + { + "aid": "1ZHiGCVB", + "index": 782081, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582092.A.7CB.html", + "title": "[問卦] 為什麼會劈腿醜小三?(推圖)" + }, + { + "aid": "1ZHiHTWl", + "index": 782082, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582173.A.82F.html", + "title": "R: [問卦] 每天晚上回家都晚上七點了..." + }, + { + "aid": "1ZHiI2_y", + "index": 782083, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582210.A.FFC.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHiIIzU", + "index": 782084, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582226.A.F5E.html", + "title": "[問卦] 露奶學妹等等要上線了怎麼辦?" + }, + { + "aid": "1ZHiJaJ0", + "index": 782085, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582308.A.4C0.html", + "title": "R: [問卦] 有40歲以上還沒結婚的可以分享生活嗎?" + }, + { + "aid": "1ZHiJqrg", + "index": 782086, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582324.A.D6A.html", + "title": "[新聞] 謝國樑說明金星案 蔡適應:未說明還有幾" + }, + { + "aid": "1ZHiJwWe", + "index": 782087, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582330.A.828.html", + "title": "[問卦] 為何餐車賣的比店面還貴?" + }, + { + "aid": "1ZHiLe0Q", + "index": 782089, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582440.A.01A.html", + "title": "R: [新聞] 元宇宙拓展不如預期順利,紐約時報揭開…" + }, + { + "aid": "1ZHiN9BY", + "index": 782090, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582537.A.2E2.html", + "title": "[問卦] 外帶牛肉麵要先倒湯還是麵?" + }, + { + "aid": "1ZHiNHbi", + "index": 782091, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582545.A.96C.html", + "title": "[問卦] 王子燒吃甜的還是鹹的" + }, + { + "aid": "1ZHiNWoY", + "index": 782092, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582560.A.CA2.html", + "title": "[問卦] 愛抱怨的七年級你們對於鐵血口罩的觀感" + }, + { + "aid": "1ZHiPv7N", + "index": 782093, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582713.A.1D7.html", + "title": "[問卦] 有沒有中國旅遊YT劉偉元的卦" + }, + { + "aid": "1ZHiPyst", + "index": 782094, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582716.A.DB7.html", + "title": "[問卦] 死神 音樂 是最頂的嗎" + }, + { + "aid": "1ZHiSSdZ", + "index": 782095, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582876.A.9E3.html", + "title": "[新聞] 蔣萬安和婆媽握手 柯P:比可愛嗎" + }, + { + "aid": "1ZHiTs7k", + "index": 782096, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582966.A.1EE.html", + "title": "[新聞] 大學生不滿校方1年收400元停車費 興訟提…" + }, + { + "aid": "1ZHiU4jS", + "index": 782097, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665582980.A.B5C.html", + "title": "[問卦] 為什麼熱鍋下油才不會粘鍋啊?" + }, + { + "aid": "1ZHiUgZH", + "index": 782098, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583018.A.8D1.html", + "title": "[問卦] 女子圖鑑裡的開放式關係" + }, + { + "aid": "1ZHiVx4o", + "index": 782099, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583099.A.132.html", + "title": "[問卦] 用海陸蛙人操表演取代橘色惡魔不就沒事了" + }, + { + "aid": "1ZHiW6i6", + "index": 782100, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583110.A.B06.html", + "title": "[問卦] 新竹跟苗栗人怎麼在風大的時候騎車阿" + }, + { + "aid": "1ZHiWYUQ", + "index": 782101, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583138.A.79A.html", + "title": "[問卦] 祖克柏現在是想當沒有GTAVR這件事嗎?" + }, + { + "aid": "1ZHiY4RA", + "index": 782102, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583236.A.6CA.html", + "title": "[問卦] 肥肥要怎麼開發沒開發的腦力?" + }, + { + "aid": "1ZHiYIUO", + "index": 782103, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583250.A.798.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHiYWSQ", + "index": 782104, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583264.A.71A.html", + "title": "[問卦] 美劇的日常很少出現打籃球?" + }, + { + "aid": "1ZHiYZ_A", + "index": 782105, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583267.A.FCA.html", + "title": "[新聞] 拜登:我認為普京不會使用核武器" + }, + { + "aid": "1ZHiYqPo", + "index": 782106, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583284.A.672.html", + "title": "[問卦] 冰霸杯怎麼退流行的?" + }, + { + "aid": "1ZHiZ0K_", + "index": 782107, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583296.A.53F.html", + "title": "[問卦] 若10年前TVBS中天高層進華視算人才流動嗎" + }, + { + "aid": "1ZHibPEC", + "index": 782108, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583449.A.38C.html", + "title": "[問卦] 數學奧林匹亞有個屁用==" + }, + { + "aid": "1ZHicVQ-", + "index": 782109, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583519.A.6BE.html", + "title": "[新聞] 文化新聞系花雨中熱舞 跳到一半「脫褲子" + }, + { + "aid": "1ZHidKnv", + "index": 782110, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583572.A.C79.html", + "title": "[新聞] 陳時中首開直播被問免治馬桶爭議 「我已" + }, + { + "aid": "1ZHigK2U", + "index": 782111, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583764.A.09E.html", + "title": "R: [新聞] 行政院「小編」因感情走上絕路 蘇貞昌" + }, + { + "aid": "1ZHigMyQ", + "index": 782112, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583766.A.F1A.html", + "title": "[問卦] 為何我房間這麼熱" + }, + { + "aid": "1ZHigS9a", + "index": 782113, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583772.A.264.html", + "title": "[問卦] 網美出國都只發獨照?" + }, + { + "aid": "1ZHigc1x", + "index": 782114, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583782.A.07B.html", + "title": "[問卦] 野人火鍋在新竹踢鐵板?" + }, + { + "aid": "1ZHih3r9", + "index": 782115, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583811.A.D49.html", + "title": "[新聞] 選舉逼近感性喊話 蔡英文:接下來需要大…" + }, + { + "aid": "1ZHihB7i", + "index": 782116, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583819.A.1EC.html", + "title": "R: [新聞] 大學生不滿校方1年收400元停車費 興訟提…" + }, + { + "aid": "1ZHihtd5", + "index": 782117, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583863.A.9C5.html", + "title": "R: [問卦] 為何餐車賣的比店面還貴?" + }, + { + "aid": "1ZHiid14", + "index": 782118, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583911.A.044.html", + "title": "[問卦] 有沒有蓬萊米之歌的八卦" + }, + { + "aid": "1ZHij2hn", + "index": 782119, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583938.A.AF1.html", + "title": "[新聞] 「陳時中完了!」沈富雄揭關鍵族群 斷" + }, + { + "aid": "1ZHijRSa", + "index": 782120, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583963.A.724.html", + "title": "[問卦] 國慶為什麼不邀請賽德克族表演" + }, + { + "aid": "1ZHijcJx", + "index": 782121, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665583974.A.4FB.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHikYxQ", + "index": 782122, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584034.A.EDA.html", + "title": "R: [新聞] 拜登急了?美又出拳痛毆大陸晶片業 反遭" + }, + { + "aid": "1ZHiks4Q", + "index": 782123, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584054.A.11A.html", + "title": "[問卦] 北韓認知金氏最厲害看世界地圖不會矛盾?" + }, + { + "aid": "1ZHild90", + "index": 782124, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584103.A.240.html", + "title": "R: [問卦] 為什麼台海最近突然兵兇戰危?" + }, + { + "aid": "1ZHinKL4", + "index": 782125, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584212.A.544.html", + "title": "[問卦] 最近全家霜淇淋是有什麼魔力?" + }, + { + "aid": "1ZHinmhP", + "index": 782126, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584240.A.AD9.html", + "title": "[問卦] 為什麼選舉都要造勢?" + }, + { + "aid": "1ZHioMZ2", + "index": 782127, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584278.A.8C2.html", + "title": "[新聞] 李遠哲批蔡英文政見「2050淨零轉型」做" + }, + { + "aid": "1ZHioYxL", + "index": 782128, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584290.A.ED5.html", + "title": "[新聞] 缺錢男持槍押人赴銀行取款 北市警連下兩" + }, + { + "aid": "1ZHiowwP", + "index": 782129, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584314.A.E99.html", + "title": "R: [新聞] 選舉逼近感性喊話 蔡英文:接下來需要大…" + }, + { + "aid": "1ZHipO21", + "index": 782130, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584344.A.081.html", + "title": "R: [問卦] 喜歡熟女人妻很奇怪嗎" + }, + { + "aid": "1ZHiqZbh", + "index": 782131, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584419.A.96B.html", + "title": "R: [問卦] 用海陸蛙人操表演取代橘色惡魔不就沒事了" + }, + { + "aid": "1ZHisQgS", + "index": 782132, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584538.A.A9C.html", + "title": "[問卦] 有沒有診所跟醫院的GOOGLE評價都很低?" + }, + { + "aid": "1ZHisVXU", + "index": 782133, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584543.A.85E.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHissyW", + "index": 782134, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584566.A.F20.html", + "title": "[問卦] 防疫保單錢錢下來了" + }, + { + "aid": "1ZHiuRMv", + "index": 782135, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584667.A.5B9.html", + "title": "[問卦] 怎麼可能會台積電買在600以上" + }, + { + "aid": "1ZHiv4Ed", + "index": 782136, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584708.A.3A7.html", + "title": "[問卦] 橘色惡魔的妹子 我找到了" + }, + { + "aid": "1ZHivdF6", + "index": 782137, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584743.A.3C6.html", + "title": "[問卦] 數學系畢業會解「費馬大定理」嗎?" + }, + { + "aid": "1ZHivniG", + "index": 782138, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584753.A.B10.html", + "title": "[新聞] 快訊/蘇貞昌「王牌小編」輕生 鄭運鵬美" + }, + { + "aid": "1ZHivto9", + "index": 782139, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584759.A.C89.html", + "title": "[問卦] 慟! 追AKB偶像有一種妹妹長大的感覺?" + }, + { + "aid": "1ZHiwaus", + "index": 782140, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584804.A.E36.html", + "title": "[問卦] 重男輕女的卦" + }, + { + "aid": "1ZHix3xp", + "index": 782141, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584835.A.EF3.html", + "title": "R: [新聞]2022地方選舉民進黨若大敗 黨政人士:中共" + }, + { + "aid": "1ZHixH76", + "index": 782142, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584849.A.1C6.html", + "title": "[問卦] YT古娃娃的聯名食品是不是都很有料?" + }, + { + "aid": "1ZHiyQ7s", + "index": 782143, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584922.A.1F6.html", + "title": "[新聞] 韓國瑜成「藍營母雞」復出輔選 朱立倫…" + }, + { + "aid": "1ZHiyhfo", + "index": 782144, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584939.A.A72.html", + "title": "R: [新聞] 快訊/蘇貞昌「王牌小編」輕生 鄭運鵬美" + }, + { + "aid": "1ZHiykcr", + "index": 782145, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584942.A.9B5.html", + "title": "[問卦] 有沒有微博台灣傻事超中肯的八卦" + }, + { + "aid": "1ZHizcOy", + "index": 782146, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665584998.A.63C.html", + "title": "[新聞] 千元變百元!男自製條碼買「高價商品」 詐" + }, + { + "aid": "1ZHizjg9", + "index": 782147, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585005.A.A89.html", + "title": "[新聞] 任教中國大學10年...他考核沒過未獲續聘" + }, + { + "aid": "1ZHizxy0", + "index": 782148, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585019.A.F00.html", + "title": "[新聞] 日本環球影城樂園發現人骨" + }, + { + "aid": "1ZHiz-Fy", + "index": 782149, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585022.A.3FC.html", + "title": "[協尋] 苗栗苑裡朋友阿公走失" + }, + { + "aid": "1ZHi-Ol2", + "index": 782150, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585048.A.BC2.html", + "title": "[問卦] 史丹利到底瘦多少公斤?" + }, + { + "aid": "1ZHi-pe4", + "index": 782151, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585075.A.A04.html", + "title": "[問卦] 妹妹說要吃刈包皮怎辦" + }, + { + "aid": "1ZHi-ruy", + "index": 782152, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585077.A.E3C.html", + "title": "[問卦] 你曾聽過哪些讓你深深著迷的童話?" + }, + { + "aid": "1ZHi_CjD", + "index": 782153, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585100.A.B4D.html", + "title": "R: [新聞] 許淑華暫保逢甲碩士學位 蔡培慧:內容…" + }, + { + "aid": "1ZHi_Wrf", + "index": 782154, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585120.A.D69.html", + "title": "[問卦] 四大淫校是哪四大?" + }, + { + "aid": "1ZHi_qU8", + "index": 782155, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585140.A.788.html", + "title": "[問卦] 妳丟飛盤我學狗來接 汪!" + }, + { + "aid": "1ZHj1QV4", + "index": 782156, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585242.A.7C4.html", + "title": "[問卦] 電動牙刷真的有比手動牙刷還乾淨嗎?" + }, + { + "aid": "1ZHj266F", + "index": 782157, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585286.A.18F.html", + "title": "[新聞] 往台灣出發!泰國首發團起飛 情侶檔出遊" + }, + { + "aid": "1ZHj2JXJ", + "index": 782158, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585299.A.853.html", + "title": "R: [新聞] 韓國瑜成「藍營母雞」復出輔選 朱立倫…" + }, + { + "aid": "1ZHj2Tzq", + "index": 782159, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585309.A.F74.html", + "title": "[問卦] 台灣最好吃的泡麵是不是雞絲麵" + }, + { + "aid": "1ZHj2-Cn", + "index": 782160, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585342.A.331.html", + "title": "[問卦] 白.....虎??" + }, + { + "aid": "1ZHj3mVW", + "index": 782161, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585392.A.7E0.html", + "title": "R: [新聞]軍備遭爆「中國製劣質品混充」 防彈效果" + }, + { + "aid": "1ZHj3xw3", + "index": 782162, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585403.A.E83.html", + "title": "R: [問卦] 有沒有妖怪手錶裡蛇王凱拉致敬的八卦?" + }, + { + "aid": "1ZHj3y8C", + "index": 782163, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585404.A.20C.html", + "title": "[問卦] 小孩八字要怎麼挑" + }, + { + "aid": "1ZHj57Jo", + "index": 782164, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585479.A.4F2.html", + "title": "R: [問卦] 為何餐車賣的比店面還貴?" + }, + { + "aid": "1ZHj5v66", + "index": 782165, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585529.A.186.html", + "title": "[新聞] 年底選戰倒數!蔡英文談「辣台派」內心" + }, + { + "aid": "1ZHj6XSS", + "index": 782166, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585569.A.71C.html", + "title": "R: [新聞]2022地方選舉民進黨若大敗 黨政人士:中共" + }, + { + "aid": "1ZHj7Dud", + "index": 782167, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585613.A.E27.html", + "title": "[新聞] 人夫手機全是淫蕩簡訊 挨告竟不演了:跟…" + }, + { + "aid": "1ZHj7DIY", + "index": 782168, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585613.A.4A2.html", + "title": "[問卦] 模仿藤井風的打扮能不能變成潮男?" + }, + { + "aid": "1ZHj7JeE", + "index": 782169, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585619.A.A0E.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHj7vrD", + "index": 782170, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585657.A.D4D.html", + "title": "[問卦] 1991年香港打電話給1937年上海?" + }, + { + "aid": "1ZHj9IaA", + "index": 782171, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585746.A.90A.html", + "title": "[問卦]如果發生戰爭 那戰後呢?" + }, + { + "aid": "1ZHj9W6Y", + "index": 782172, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585760.A.1A2.html", + "title": "[問卦] 白種人怎麼那麼高?" + }, + { + "aid": "1ZHjBMSc", + "index": 782173, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585878.A.726.html", + "title": "R: [問卦] 拜登其實是裝糊塗的天才吧!" + }, + { + "aid": "1ZHjBbEu", + "index": 782174, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585893.A.3B8.html", + "title": "[新聞] 全球陸續解封 上百國家歡迎未接種疫苗遊" + }, + { + "aid": "1ZHjD6-C", + "index": 782175, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665585990.A.F8C.html", + "title": "[新聞] 「三立、民視2年吃11億政府標案!」藍委" + }, + { + "aid": "1ZHjDhMu", + "index": 782176, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586027.A.5B8.html", + "title": "[問卦] 絕命毒師為何不要提早收手阿?" + }, + { + "aid": "1ZHjEk3c", + "index": 782177, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586094.A.0E6.html", + "title": "[新聞] 傻眼!今年諾獎得主竟被中國西南財大解聘" + }, + { + "aid": "1ZHjGYjI", + "index": 782178, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586210.A.B52.html", + "title": "[問卦] 這段怎麼翻?" + }, + { + "aid": "1ZHjGZn_", + "index": 782179, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586211.A.C7F.html", + "title": "R: [問卦] 為什麼選舉都要造勢?" + }, + { + "aid": "1ZHjKG2h", + "index": 782180, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586448.A.0AB.html", + "title": "R: [新聞] 年底選戰倒數!蔡英文談「辣台派」內心" + }, + { + "aid": "1ZHjL6PD", + "index": 782181, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586502.A.64D.html", + "title": "R: [問卦] 有沒有診所跟醫院的GOOGLE評價都很低?" + }, + { + "aid": "1ZHjNns4", + "index": 782182, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586673.A.D84.html", + "title": "R: [問卦] 強迫對方拿手機出來檢查,有違法?" + }, + { + "aid": "1ZHjNu88", + "index": 782183, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586680.A.208.html", + "title": "[新聞] 又虧雞了!林義豐台南看板「六都車禍死亡" + }, + { + "aid": "1ZHjOkuS", + "index": 782184, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586734.A.E1C.html", + "title": "[問卦] 台灣實況主不怕圖奇改分潤比率的卦?" + }, + { + "aid": "1ZHjP8kQ", + "index": 782185, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586760.A.B9A.html", + "title": "R: [新聞] 年底選戰倒數!蔡英文談「辣台派」內心" + }, + { + "aid": "1ZHjPMo4", + "index": 782186, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586774.A.C84.html", + "title": "[問卦] 肥宅學會大紅蓮冰輪丸有加分嗎" + }, + { + "aid": "1ZHjQ0nf", + "index": 782187, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586816.A.C69.html", + "title": "[問卦] 隔離三天明天要上班了" + }, + { + "aid": "1ZHjQuhn", + "index": 782188, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586872.A.AF1.html", + "title": "[問卦] 喝到甜的豬腳花生湯有多驚艷?" + }, + { + "aid": "1ZHjRT5F", + "index": 782189, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665586909.A.14F.html", + "title": "[問卦] 台亞清交排名確定" + }, + { + "aid": "1ZHjT8cp", + "index": 782190, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587016.A.9B3.html", + "title": "[問卦] 有沒有啦啦隊反客為主的八卦?" + }, + { + "aid": "1ZHjThV1", + "index": 782191, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587051.A.7C1.html", + "title": "[問卦] 會打公共空間的蟑螂嗎" + }, + { + "aid": "1ZHjUEK3", + "index": 782192, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587086.A.503.html", + "title": "[問卦] 遊戲王作者掛了" + }, + { + "aid": "1ZHjXdcX", + "index": 782194, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587303.A.9A1.html", + "title": "[問卦] 世界第一的醫生" + }, + { + "aid": "1ZHjY0iB", + "index": 782195, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587328.A.B0B.html", + "title": "[問卦] 車禍立案都要等多久啊" + }, + { + "aid": "1ZHjYFY3", + "index": 782196, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587343.A.883.html", + "title": "[問卦] 我爸說他年代買乖乖回送漫畫是真的嗎?" + }, + { + "aid": "1ZHjYJUK", + "index": 782197, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587347.A.794.html", + "title": "[問卦] 肥宅要怎麼做才能讓女孩兒暈?" + }, + { + "aid": "1ZHjZOp5", + "index": 782198, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587416.A.CC5.html", + "title": "R: [新聞] 快訊/蘇貞昌「王牌小編」輕生 鄭運鵬美" + }, + { + "aid": "1ZHjZg4Y", + "index": 782199, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587434.A.122.html", + "title": "[新聞] 選舉倒數呼喚辣台派 蔡英文:帶著你的朋" + }, + { + "aid": "1ZHjbzR0", + "index": 782200, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587581.A.6C0.html", + "title": "[新聞] 被馬斯克言論惹毛! 何志偉:特斯拉有竊" + }, + { + "aid": "1ZHjdRDu", + "index": 782201, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587675.A.378.html", + "title": "R: [新聞] 「三立、民視2年吃11億政府標案!」藍委" + }, + { + "aid": "1ZHjdeeU", + "index": 782202, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587688.A.A1E.html", + "title": "[問卦] 鼻塞要怎麼睡個好覺" + }, + { + "aid": "1ZHjhV3D", + "index": 782203, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587935.A.0CD.html", + "title": "[新聞] 茄子蛋停工爆解散! 吉他手阿德首現身「" + }, + { + "aid": "1ZHjhoQm", + "index": 782204, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665587954.A.6B0.html", + "title": "[問卦] 學校的電腦老師484蠻爽的啊?" + }, + { + "aid": "1ZHjjIFN", + "index": 782206, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588050.A.3D7.html", + "title": "[問卦] 為何女生不管前面多少人都要排隊?" + }, + { + "aid": "1ZHjje07", + "index": 782207, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588072.A.007.html", + "title": "[問卦] 桃園四大夜市哪一個比較值得一去?" + }, + { + "aid": "1ZHjkF_K", + "index": 782208, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588111.A.FD4.html", + "title": "R: [新聞] 被馬斯克言論惹毛! 何志偉:特斯拉有竊" + }, + { + "aid": "1ZHjkfan", + "index": 782209, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588137.A.931.html", + "title": "[問卦] 勃起要怎麼睡個好覺?" + }, + { + "aid": "1ZHjky02", + "index": 782210, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588156.A.002.html", + "title": "[新聞] 好市多隱藏服務再+1!他買18吋披薩" + }, + { + "aid": "1ZHjlIau", + "index": 782211, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588178.A.938.html", + "title": "[問卦] 女兵如果上戰場會發生什麼事?" + }, + { + "aid": "1ZHjm7un", + "index": 782212, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588231.A.E31.html", + "title": "[問卦] 打過次世代的肥肥進來一下" + }, + { + "aid": "1ZHjmLGk", + "index": 782213, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588245.A.42E.html", + "title": "[新聞] 朱立倫:相信桃園會勝選 張善政條件比鄭…" + }, + { + "aid": "1ZHjnAS5", + "index": 782214, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588298.A.705.html", + "title": "[問卦] 老闆只會唸稿" + }, + { + "aid": "1ZHjnt2s", + "index": 782215, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588343.A.0B6.html", + "title": "[問卦] 羊肉爐什麼料是必備的 \b\b☺" + }, + { + "aid": "1ZHjp50f", + "index": 782216, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588421.A.029.html", + "title": "R: [新聞] 拜登急了?美又出拳痛毆大陸晶片業 反遭" + }, + { + "aid": "1ZHjp79j", + "index": 782217, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588423.A.26D.html", + "title": "[問卦] 自學半年考過日文檢定N1算唬爛嗎?" + }, + { + "aid": "1ZHjpJKv", + "index": 782218, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588435.A.539.html", + "title": "[問卦] 兵役役期恢復1年後替代役配額會加回來嗎" + }, + { + "aid": "1ZHjpTgI", + "index": 782219, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588445.A.A92.html", + "title": "[問卦] 台北市可不可能有綠高中白高中藍高中" + }, + { + "aid": "1ZHjp_9S", + "index": 782221, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588479.A.25C.html", + "title": "[問卦] 中國學生來台黨不怕他被民主自由影響嗎" + }, + { + "aid": "1ZHjrd2v", + "index": 782222, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588583.A.0B9.html", + "title": "R: [問卦] 監獄裡的人都怎麼健身?" + }, + { + "aid": "1ZHjrp2C", + "index": 782223, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588595.A.08C.html", + "title": "[問卦] 大一暑假去成功嶺的都在幹嘛啊?" + }, + { + "aid": "1ZHjs0vp", + "index": 782224, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588608.A.E73.html", + "title": "R: [問卦] 認真問 下班回到家幾點算正常" + }, + { + "aid": "1ZHjtrbD", + "index": 782225, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588725.A.94D.html", + "title": "R: [問卦] 台北還有必要蓋新的捷運路線嗎?" + }, + { + "aid": "1ZHju0Hd", + "index": 782226, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588736.A.467.html", + "title": "[新聞] 龍骨損傷半遂少年化 病友招12/10遊行 \b\b伨 …" + }, + { + "aid": "1ZHju_3Y", + "index": 782227, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588799.A.0E2.html", + "title": "R: [問卦] 羊肉爐什麼料是必備的 \b\b☺" + }, + { + "aid": "1ZHjwaiY", + "index": 782228, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588900.A.B22.html", + "title": "[問卦] 只當四個月的兵賺到了什麼?" + }, + { + "aid": "1ZHjwfFB", + "index": 782229, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588905.A.3CB.html", + "title": "[新聞]不管教就罰錢!星國餐廳祭「小孩哭鬧費」" + }, + { + "aid": "1ZHjxk5O", + "index": 782230, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665588974.A.158.html", + "title": "R: [問卦] 我爸說他年代買乖乖回送漫畫是真的嗎?" + }, + { + "aid": "1ZHjz19Z", + "index": 782231, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589057.A.263.html", + "title": "[問卦] 要怎麼讓自己胖一點?增肥?" + }, + { + "aid": "1ZHjz6Js", + "index": 782232, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589062.A.4F6.html", + "title": "[問卦] 怎麼知道面試者在唬爛的八卦?" + }, + { + "aid": "1ZHjzS-P", + "index": 782233, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589084.A.F99.html", + "title": "[問卦] 疫情兩年了 沒想過確診無法投票?" + }, + { + "aid": "1ZHj-7yr", + "index": 782234, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589127.A.F35.html", + "title": "[問卦] 出一張唱片要花多少錢啊?" + }, + { + "aid": "1ZHj_McO", + "index": 782235, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589206.A.998.html", + "title": "[問卦] 迷因哪找" + }, + { + "aid": "1ZHk0BQ0", + "index": 782236, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589259.A.680.html", + "title": "R: [問卦] 認真問 下班回到家幾點算正常" + }, + { + "aid": "1ZHk18_u", + "index": 782237, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589320.A.FF8.html", + "title": "[問卦] 冰冰姐在演藝圈的地位有超過瓜哥嗎?" + }, + { + "aid": "1ZHk3AE_", + "index": 782238, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589450.A.3BF.html", + "title": "[問卦] 看完2077-1結果得到PTSD" + }, + { + "aid": "1ZHk4wvV", + "index": 782239, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589562.A.E5F.html", + "title": "[問卦] 暗號算不算周杰倫的冷門神曲?" + }, + { + "aid": "1ZHk5Mxc", + "index": 782240, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589590.A.EE6.html", + "title": "R: [新聞] 蔣孝嚴未幫蔣萬安站台 柯文哲:他身" + }, + { + "aid": "1ZHk6xQR", + "index": 782241, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589691.A.69B.html", + "title": "[問卦] 素食鹹酥雞都怎麼點?" + }, + { + "aid": "1ZHk7Nh1", + "index": 782242, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589719.A.AC1.html", + "title": "[問卦] 國軍可讓理工學碩博去研發武器嗎" + }, + { + "aid": "1ZHk8XF-", + "index": 782243, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589793.A.3FE.html", + "title": "[爆卦] 高雄輕軌旁起大火欸" + }, + { + "aid": "1ZHkB2HT", + "index": 782244, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665589954.A.45D.html", + "title": "R: [問卦] 絕命毒師為何不要提早收手阿?" + }, + { + "aid": "1ZHkEtq-", + "index": 782245, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590199.A.D3E.html", + "title": "[問卦] 吃胖免役真的值得嗎?" + }, + { + "aid": "1ZHkFm6U", + "index": 782246, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590256.A.19E.html", + "title": "[新聞] 「想摸哪就摸!」 若被檢查耳朵達比修" + }, + { + "aid": "1ZHkHIX4", + "index": 782247, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590354.A.844.html", + "title": "[問卦] 健身房長得帥的真的可以吃到女會員嗎?" + }, + { + "aid": "1ZHkHYlb", + "index": 782248, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590370.A.BE5.html", + "title": "[問卦] 擤鼻涕有血絲是不是很嚴重" + }, + { + "aid": "1ZHkHr1m", + "index": 782249, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590389.A.070.html", + "title": "[問卦] 溥儀皇帝居然比日本昭和天皇還高大??" + }, + { + "aid": "1ZHkKTJA", + "index": 782250, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590557.A.4CA.html", + "title": "[問卦] 帶徒弟做事是不是很爽???" + }, + { + "aid": "1ZHkM1zT", + "index": 782251, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590657.A.F5D.html", + "title": "[問卦] 有沒有為了女友不跟閨密出國的八卦?" + }, + { + "aid": "1ZHkMqbq", + "index": 782252, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590708.A.974.html", + "title": "R: [問卦] 真的很多女生跟外勞交往嗎?" + }, + { + "aid": "1ZHkNm6F", + "index": 782253, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590768.A.18F.html", + "title": "[問卦] 恭喜,國門開了!" + }, + { + "aid": "1ZHkOg2D", + "index": 782254, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590826.A.08D.html", + "title": "[問卦]想知道妳真的過得好嗎 \b\b没 有我也許是種解脫" + }, + { + "aid": "1ZHkPpZz", + "index": 782255, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590899.A.8FD.html", + "title": "[問卦] 有沒有南韓足球很強的卦?" + }, + { + "aid": "1ZHkPu9e", + "index": 782256, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590904.A.268.html", + "title": "[問卦] 為啥中國不去搞美國,一直搞台灣啊?" + }, + { + "aid": "1ZHkQbKT", + "index": 782257, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590949.A.51D.html", + "title": "R: [新聞] 兵役一口氣延長2年?邱國正回這句 大" + }, + { + "aid": "1ZHkQm4A", + "index": 782258, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665590960.A.10A.html", + "title": "R: [新聞] 宋楚瑜議題聽到煩!黃珊珊怒:怎不問蔣…" + }, + { + "aid": "1ZHkT6KM", + "index": 782259, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591110.A.516.html", + "title": "[問卦] 五軍之戰 半獸人為什麼不等矮人&精靈先打" + }, + { + "aid": "1ZHkTV75", + "index": 782260, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591135.A.1C5.html", + "title": "[問卦] 沒有fb的話不會覺得生命少了一部分嗎?" + }, + { + "aid": "1ZHkTpOh", + "index": 782261, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591155.A.62B.html", + "title": "[新聞] 獨家/韓國現況曝!逛街聖地「明洞、梨大" + }, + { + "aid": "1ZHkVHjp", + "index": 782262, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591249.A.B73.html", + "title": "[新聞] NCC主委陳耀祥:鏡電視營運還有很大問題" + }, + { + "aid": "1ZHkVgNS", + "index": 782263, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591274.A.5DC.html", + "title": "R: [新聞]不管教就罰錢!星國餐廳祭「小孩哭鬧費」" + }, + { + "aid": "1ZHkXGPX", + "index": 782264, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591376.A.661.html", + "title": "R: [問卦] 我爸說他年代買乖乖回送漫畫是真的嗎?" + }, + { + "aid": "1ZHkXOVT", + "index": 782265, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591384.A.7DD.html", + "title": "[問卦] 朋友要去日本問說需要幫買甚麼" + }, + { + "aid": "1ZHkZ1om", + "index": 782266, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591489.A.CB0.html", + "title": "[新聞] 北捷11月起免費提供女性生理用品 20個站" + }, + { + "aid": "1ZHkabt8", + "index": 782268, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591589.A.DC8.html", + "title": "[問卦] 台北渣男:南部鄉下都喝加水站的水 怎麼" + }, + { + "aid": "1ZHka_B0", + "index": 782269, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591615.A.2C0.html", + "title": "R: [問卦] 沒有fb的話不會覺得生命少了一部分嗎?" + }, + { + "aid": "1ZHkbKNF", + "index": 782270, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591636.A.5CF.html", + "title": "R: [新聞] 宋楚瑜議題聽到煩!黃珊珊怒:怎不問蔣…" + }, + { + "aid": "1ZHkcayi", + "index": 782271, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591716.A.F2C.html", + "title": "[問卦] 台中治安敗壞,難道你們不會怕!" + }, + { + "aid": "1ZHkeKSP", + "index": 782272, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591828.A.719.html", + "title": "[新聞] 陳時中:遭抹黑有些失望 應團結抗病毒非" + }, + { + "aid": "1ZHkeOLJ", + "index": 782273, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591832.A.553.html", + "title": "[問卦] 5個最親近朋友平均收入就是你收入的八卦?" + }, + { + "aid": "1ZHkgJMF", + "index": 782274, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591955.A.58F.html", + "title": "[問卦] 女生是不是越扁越離不開" + }, + { + "aid": "1ZHkgVIw", + "index": 782275, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665591967.A.4BA.html", + "title": "[問卦] 美國搞台積電,為何我國政府不譴責美國?" + }, + { + "aid": "1ZHkj81s", + "index": 782276, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665592136.A.076.html", + "title": "[問卦] 糗大!住土耳其台男搭電梯「偷解放」 被" + }, + { + "aid": "1ZHkkDSV", + "index": 782277, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665592205.A.71F.html", + "title": "R: [問卦] 女生是不是越扁越離不開" + }, + { + "aid": "1ZHknPP2", + "index": 782278, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665592409.A.642.html", + "title": "[問卦] 六本木的飯店一晚2千多台幣盤嗎?" + }, + { + "aid": "1ZHkpVJ5", + "index": 782279, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665592543.A.4C5.html", + "title": "R: [問卦] 請說服我女性不用當兵" + }, + { + "aid": "1ZHkpar6", + "index": 782280, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665592548.A.D46.html", + "title": "[問卦] 彈蛋椅是不是仇男設計來懲罰男性的" + }, + { + "aid": "1ZHkrd-_", + "index": 782281, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665592679.A.FBF.html", + "title": "R: [問卦] 疫情兩年了 沒想過確診無法投票?" + }, + { + "aid": "1ZHkt9N4", + "index": 782282, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665592777.A.5C4.html", + "title": "[新聞] 韓媒:韓國人均趕超日本 台灣已超越日韓" + }, + { + "aid": "1ZHktJcC", + "index": 782283, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665592787.A.98C.html", + "title": "R: [問卦] 有人經歷過太電案嗎?" + }, + { + "aid": "1ZHkzoo-", + "index": 782284, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665593202.A.CBE.html", + "title": "[問卦] 一磅200跟一磅400咖啡豆子差在哪" + }, + { + "aid": "1ZHk-WZA", + "index": 782285, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665593248.A.8CA.html", + "title": "R: [爆卦] 高雄輕軌旁起大火欸" + }, + { + "aid": "1ZHk-x5L", + "index": 782286, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665593275.A.155.html", + "title": "[新聞] 昨才打完次世代疫苗 南市57歲里長今晨驟" + }, + { + "aid": "1ZHk__JU", + "index": 782287, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665593343.A.4DE.html", + "title": "[問卦] 館長的購物網站 建造難度是哪個等級??" + }, + { + "aid": "1ZHl0eYh", + "index": 782288, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665593384.A.8AB.html", + "title": "R: [爆卦] 高雄輕軌旁起大火欸" + }, + { + "aid": "1ZHl0rlR", + "index": 782289, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665593397.A.BDB.html", + "title": "[問卦] 美國媒體說戰時炸台積電是否會引起恐慌?" + }, + { + "aid": "1ZHl25Ql", + "index": 782290, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665593477.A.6AF.html", + "title": "[新聞] 綠營已放棄這都?他警告「別高興太早」" + }, + { + "aid": "1ZHl5_-V", + "index": 782291, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665593727.A.F9F.html", + "title": "[問卦] 半夜睡不著覺" + }, + { + "aid": "1ZHl6p5U", + "index": 782292, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665593779.A.15E.html", + "title": "[問卦] 獅吼功+大喇叭打得贏如來神掌嗎?" + }, + { + "aid": "1ZHl9Tet", + "index": 782293, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665593949.A.A37.html", + "title": "[問卦] 美國種族歧視還是很嚴重,怎麼辦?" + }, + { + "aid": "1ZHlBMh5", + "index": 782294, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665594070.A.AC5.html", + "title": "R: [問卦] 要怎麼讓自己胖一點?增肥?" + }, + { + "aid": "1ZHlDtdY", + "index": 782295, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665594231.A.9E2.html", + "title": "R: [問卦] 六本木的飯店一晚2千多台幣盤嗎?" + }, + { + "aid": "1ZHlFc1K", + "index": 782296, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665594342.A.054.html", + "title": "R: [問卦] 一磅200跟一磅400咖啡豆子差在哪" + }, + { + "aid": "1ZHlHCK5", + "index": 782297, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665594444.A.505.html", + "title": "[問卦] 哪種騷擾電話最討厭?" + }, + { + "aid": "1ZHlKNsV", + "index": 782298, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665594647.A.D9F.html", + "title": "[新聞] 大陸任教十年考核沒過未獲續聘 今年得諾" + }, + { + "aid": "1ZHlLEWN", + "index": 782299, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665594702.A.817.html", + "title": "[新聞] 美國賣天然氣爆賺了!歐洲2大國慘被坑:" + }, + { + "aid": "1ZHlPwA3", + "index": 782300, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665595002.A.283.html", + "title": "[問卦] 慟!RO維修到4點肥宅做啥好(づ・ω・)づ" + }, + { + "aid": "1ZHlUJak", + "index": 782301, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665595283.A.92E.html", + "title": "[問卦] 副教授說以前凌晨發廢文也會被噓爆?" + }, + { + "aid": "1ZHlV5NI", + "index": 782302, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665595333.A.5D2.html", + "title": "[問卦] six, 官方發音已經是sex了?" + }, + { + "aid": "1ZHlVRwF", + "index": 782303, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665595355.A.E8F.html", + "title": "[問卦] 阿航 那種才是人生吧" + }, + { + "aid": "1ZHlXl_5", + "index": 782304, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665595503.A.FC5.html", + "title": "R: [問卦] 六本木的飯店一晚2千多台幣盤嗎?" + }, + { + "aid": "1ZHlYcK0", + "index": 782305, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665595558.A.500.html", + "title": "[問卦] 朋友收一千元幫人家辯護?" + }, + { + "aid": "1ZHlanWD", + "index": 782306, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665595697.A.80D.html", + "title": "R: [問卦] 哪部電影是布魯斯威利的生涯代表作?" + }, + { + "aid": "1ZHlaqXx", + "index": 782307, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665595700.A.87B.html", + "title": "R: [問卦] 一磅200跟一磅400咖啡豆子差在哪" + }, + { + "aid": "1ZHlcFjq", + "index": 782308, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665595791.A.B74.html", + "title": "[問卦] 願意花多久時間,排一碗拉麵?" + }, + { + "aid": "1ZHlcfkX", + "index": 782309, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665595817.A.BA1.html", + "title": "[問卦] 郭嘉有一生有失策過嗎?" + }, + { + "aid": "1ZHleRd8", + "index": 782310, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665595931.A.9C8.html", + "title": "R: [問卦] 這BLOG小說跟周小編的死亡有關嗎?" + }, + { + "aid": "1ZHlfgsq", + "index": 782311, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665596010.A.DB4.html", + "title": "R: [問卦] 買NV的RTX4090來上PTT夠不夠力?" + }, + { + "aid": "1ZHlhier", + "index": 782312, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665596140.A.A35.html", + "title": "R: [問卦] 為什麼台海最近突然兵兇戰危?" + }, + { + "aid": "1ZHlljSD", + "index": 782313, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665596397.A.70D.html", + "title": "[問卦] 秒速說一首周杰倫唱的冷門歌?" + }, + { + "aid": "1ZHlnG3X", + "index": 782314, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665596496.A.0E1.html", + "title": "R: [新聞] 韓媒:韓國人均趕超日本 台灣已超越日韓" + }, + { + "aid": "1ZHlp8oz", + "index": 782315, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665596616.A.CBD.html", + "title": "R: [新聞] 美國賣天然氣爆賺了!歐洲2大國慘被坑:" + }, + { + "aid": "1ZHlqSn9", + "index": 782316, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665596700.A.C49.html", + "title": "R: [問卦] 肥宅要怎麼做才能讓女孩兒暈?" + }, + { + "aid": "1ZHlqyr0", + "index": 782317, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665596732.A.D40.html", + "title": "R: [新聞] 美國賣天然氣爆賺了!歐洲2大國慘被坑:" + }, + { + "aid": "1ZHls3O3", + "index": 782318, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665596803.A.603.html", + "title": "[問卦] 泰國飯店怎麼這麼便宜" + }, + { + "aid": "1ZHlsV2-", + "index": 782319, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665596831.A.0BE.html", + "title": "[問卦] 大家開暖氣了嗎?" + }, + { + "aid": "1ZHlswiT", + "index": 782320, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665596858.A.B1D.html", + "title": "[問卦] 為啥台灣理組薪水高,文組和服務業低啊?" + }, + { + "aid": "1ZHlw0IQ", + "index": 782321, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665597056.A.49A.html", + "title": "[問卦] 最近一直夢到以前遇過的卑鄙小人" + }, + { + "aid": "1ZHlx5C5", + "index": 782322, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665597125.A.305.html", + "title": "[問卦] 還有公司在要求健康聲明書哦@@?" + }, + { + "aid": "1ZHm6_9F", + "index": 782323, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665597887.A.24F.html", + "title": "[新聞] 設計師創作翻轉字「柯文哲」成了粗話「你" + }, + { + "aid": "1ZHmChav", + "index": 782324, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665598251.A.939.html", + "title": "[問卦] 牙醫要多難約才不會踩到雷" + }, + { + "aid": "1ZHmCk-5", + "index": 782325, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665598254.A.F85.html", + "title": "[問卦] 蝦皮 賣的香水= =!!" + }, + { + "aid": "1ZHmDXuZ", + "index": 782326, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665598305.A.E23.html", + "title": "[問卦] 小叮噹科學遊樂園有小叮噹嗎?" + }, + { + "aid": "1ZHmHDd0", + "index": 782327, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665598541.A.9C0.html", + "title": "[新聞] 潘瑋柏瘦了穿搭更浮誇 LV花花裝絕配逾417" + }, + { + "aid": "1ZHmLq3I", + "index": 782328, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665598836.A.0D2.html", + "title": "R: [問卦] 牙醫要多難約才不會踩到雷" + }, + { + "aid": "1ZHmQYxI", + "index": 782329, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665599138.A.ED2.html", + "title": "[問卦] 朋友在秋葉原當女僕 怕!" + }, + { + "aid": "1ZHmQkWs", + "index": 782330, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665599150.A.836.html", + "title": "R: [問卦] 我爸說他小學訂便當30元還送養樂多?" + }, + { + "aid": "1ZHmZZOf", + "index": 782331, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665599715.A.629.html", + "title": "R: [問卦] 桂綸鎂 VS 曾愷玹 怎麼選" + }, + { + "aid": "1ZHmh8FR", + "index": 782332, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665600200.A.3DB.html", + "title": "R: [新聞] 被馬斯克言論惹毛! 何志偉:特斯拉有竊" + }, + { + "aid": "1ZHmlIgh", + "index": 782334, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665600466.A.AAB.html", + "title": "R: [問卦] 為啥台灣理組薪水高,文組和服務業低啊?" + }, + { + "aid": "1ZHn1l7e", + "index": 782335, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665601647.A.1E8.html", + "title": "[問卦] 台灣有系統化發展文化嗎?" + }, + { + "aid": "1ZHnFqdi", + "index": 782336, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665602548.A.9EC.html", + "title": "[問卦] 沒人發現韓國比台灣差嗎!" + }, + { + "aid": "1ZHnH-A8", + "index": 782337, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665602686.A.288.html", + "title": "[問卦] 再見了可魯當年有多紅" + }, + { + "aid": "1ZHnVt9I", + "index": 782338, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665603575.A.252.html", + "title": "[問卦] 台灣的服務費之父是誰?" + }, + { + "aid": "1ZHnazhI", + "index": 782339, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665603901.A.AD2.html", + "title": "[問卦] 你袂了解 袂了解我的悲哀" + }, + { + "aid": "1ZHnbi9k", + "index": 782340, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665603948.A.26E.html", + "title": "[問卦] 被瘋狗亂告後不起訴 是否要反咬誣告?" + }, + { + "aid": "1ZHnuC_j", + "index": 782341, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665605132.A.FED.html", + "title": "[問卦] 若核聚變成功商轉,世界會長期和平嗎?" + }, + { + "aid": "1ZHnvMnn", + "index": 782342, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665605206.A.C71.html", + "title": "R: [新聞] 韓媒:韓國人均趕超日本 台灣已超越日韓" + }, + { + "aid": "1ZHn-S3v", + "index": 782343, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665605532.A.0F9.html", + "title": "[問卦] 台北女子圖鑑是不是看不下去了" + }, + { + "aid": "1ZHo6_ny", + "index": 782344, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665606079.A.C7C.html", + "title": "R: [問卦] 美國搞台積電,為何我國政府不譴責美國?" + }, + { + "aid": "1ZHoB9HV", + "index": 782345, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665606345.A.45F.html", + "title": "R: [新聞] 設計師創作翻轉字「柯文哲」成了粗話「你" + }, + { + "aid": "1ZHoSEBW", + "index": 782346, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665607438.A.2E0.html", + "title": "[問卦] 史上最快帽子戲法" + }, + { + "aid": "1ZHovi6M", + "index": 782347, + "web_url": "https://www.ptt.cc/bbs/Gossiping/M.1665609324.A.196.html", + "title": "[新聞] 南投鐵鎚殺妻箱屍案 二審維持原判狠夫15" + } +] \ No newline at end of file diff --git a/ptt-crawler/.gitignore b/ptt-crawler/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..071a8aea61d80d21fac77296ed9be60c8008f593 --- /dev/null +++ b/ptt-crawler/.gitignore @@ -0,0 +1,136 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ +*.ipynb + +# sqlite3 database +*.db + +# tempCodeRunnerFile +tempCodeRunnerFile.py diff --git a/ptt-crawler/Dockerfile b/ptt-crawler/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..c187a3e5ad8d81bef6ef53f7096bb017a3e53373 --- /dev/null +++ b/ptt-crawler/Dockerfile @@ -0,0 +1,16 @@ +FROM python:3.10-slim + +WORKDIR /app + +COPY ./Pipfile* ./ + +RUN pip install pipenv && \ + apt-get update && \ + apt-get install -y --no-install-recommends gcc python3-dev libssl-dev && \ + pipenv install --deploy --system && \ + apt-get remove -y gcc python3-dev libssl-dev && \ + apt-get autoremove -y && \ + pip uninstall pipenv -y + +COPY ./scrapy.cfg ./ +COPY ./scraptt ./scraptt \ No newline at end of file diff --git a/ptt-crawler/Pipfile b/ptt-crawler/Pipfile new file mode 100644 index 0000000000000000000000000000000000000000..2191afcb5dc6902f4e04105df65bacb430459e8f --- /dev/null +++ b/ptt-crawler/Pipfile @@ -0,0 +1,19 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +scrapy = "*" +pyquery = "*" +pydantic = "*" +requests = "*" +scrapy-user-agents = "*" +scrapy-fake-useragent = "*" +redis = "*" +python-dotenv = "*" + +[dev-packages] + +[requires] +python_version = "3.9" diff --git a/ptt-crawler/Pipfile.lock b/ptt-crawler/Pipfile.lock new file mode 100644 index 0000000000000000000000000000000000000000..32c165f6e7ce5df5d3be51a14cdf4d4c7ebdbb9f --- /dev/null +++ b/ptt-crawler/Pipfile.lock @@ -0,0 +1,742 @@ +{ + "_meta": { + "hash": { + "sha256": "bc8f4c10537b5ee8c35f567b92a02909bd396375759fc1998d92a19b8d7beccb" + }, + "pipfile-spec": 6, + "requires": { + "python_version": "3.9" + }, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "async-timeout": { + "hashes": [ + "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15", + "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c" + ], + "markers": "python_version >= '3.6'", + "version": "==4.0.2" + }, + "attrs": { + "hashes": [ + "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6", + "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c" + ], + "markers": "python_version >= '3.5'", + "version": "==22.1.0" + }, + "automat": { + "hashes": [ + "sha256:7979803c74610e11ef0c0d68a2942b152df52da55336e0c9d58daf1831cbdf33", + "sha256:b6feb6455337df834f6c9962d6ccf771515b7d939bca142b29c20c2376bc6111" + ], + "version": "==20.2.0" + }, + "certifi": { + "hashes": [ + "sha256:43dadad18a7f168740e66944e4fa82c6611848ff9056ad910f8f7a3e46ab89e0", + "sha256:cffdcd380919da6137f76633531a5817e3a9f268575c128249fb637e4f9e73fb" + ], + "markers": "python_version >= '3.6'", + "version": "==2022.6.15.1" + }, + "cffi": { + "hashes": [ + "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5", + "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef", + "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104", + "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426", + "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405", + "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375", + "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a", + "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e", + "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc", + "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf", + "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185", + "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497", + "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3", + "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35", + "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c", + "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83", + "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21", + "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca", + "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984", + "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac", + "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd", + "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee", + "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a", + "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2", + "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192", + "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7", + "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585", + "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f", + "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e", + "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27", + "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b", + "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e", + "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e", + "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d", + "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c", + "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415", + "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82", + "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02", + "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314", + "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325", + "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c", + "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3", + "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914", + "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045", + "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d", + "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9", + "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5", + "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2", + "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c", + "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3", + "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2", + "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8", + "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d", + "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d", + "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9", + "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162", + "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76", + "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4", + "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e", + "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9", + "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6", + "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b", + "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01", + "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0" + ], + "version": "==1.15.1" + }, + "charset-normalizer": { + "hashes": [ + "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845", + "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f" + ], + "markers": "python_version >= '3.6'", + "version": "==2.1.1" + }, + "constantly": { + "hashes": [ + "sha256:586372eb92059873e29eba4f9dec8381541b4d3834660707faf8ba59146dfc35", + "sha256:dd2fa9d6b1a51a83f0d7dd76293d734046aa176e384bf6e33b7e44880eb37c5d" + ], + "version": "==15.1.0" + }, + "cryptography": { + "hashes": [ + "sha256:0297ffc478bdd237f5ca3a7dc96fc0d315670bfa099c04dc3a4a2172008a405a", + "sha256:10d1f29d6292fc95acb597bacefd5b9e812099d75a6469004fd38ba5471a977f", + "sha256:16fa61e7481f4b77ef53991075de29fc5bacb582a1244046d2e8b4bb72ef66d0", + "sha256:194044c6b89a2f9f169df475cc167f6157eb9151cc69af8a2a163481d45cc407", + "sha256:1db3d807a14931fa317f96435695d9ec386be7b84b618cc61cfa5d08b0ae33d7", + "sha256:3261725c0ef84e7592597606f6583385fed2a5ec3909f43bc475ade9729a41d6", + "sha256:3b72c360427889b40f36dc214630e688c2fe03e16c162ef0aa41da7ab1455153", + "sha256:3e3a2599e640927089f932295a9a247fc40a5bdf69b0484532f530471a382750", + "sha256:3fc26e22840b77326a764ceb5f02ca2d342305fba08f002a8c1f139540cdfaad", + "sha256:5067ee7f2bce36b11d0e334abcd1ccf8c541fc0bbdaf57cdd511fdee53e879b6", + "sha256:52e7bee800ec869b4031093875279f1ff2ed12c1e2f74923e8f49c916afd1d3b", + "sha256:64760ba5331e3f1794d0bcaabc0d0c39e8c60bf67d09c93dc0e54189dfd7cfe5", + "sha256:765fa194a0f3372d83005ab83ab35d7c5526c4e22951e46059b8ac678b44fa5a", + "sha256:79473cf8a5cbc471979bd9378c9f425384980fcf2ab6534b18ed7d0d9843987d", + "sha256:896dd3a66959d3a5ddcfc140a53391f69ff1e8f25d93f0e2e7830c6de90ceb9d", + "sha256:89ed49784ba88c221756ff4d4755dbc03b3c8d2c5103f6d6b4f83a0fb1e85294", + "sha256:ac7e48f7e7261207d750fa7e55eac2d45f720027d5703cd9007e9b37bbb59ac0", + "sha256:ad7353f6ddf285aeadfaf79e5a6829110106ff8189391704c1d8801aa0bae45a", + "sha256:b0163a849b6f315bf52815e238bc2b2346604413fa7c1601eea84bcddb5fb9ac", + "sha256:b6c9b706316d7b5a137c35e14f4103e2115b088c412140fdbd5f87c73284df61", + "sha256:c2e5856248a416767322c8668ef1845ad46ee62629266f84a8f007a317141013", + "sha256:ca9f6784ea96b55ff41708b92c3f6aeaebde4c560308e5fbbd3173fbc466e94e", + "sha256:d1a5bd52d684e49a36582193e0b89ff267704cd4025abefb9e26803adeb3e5fb", + "sha256:d3971e2749a723e9084dd507584e2a2761f78ad2c638aa31e80bc7a15c9db4f9", + "sha256:d4ef6cc305394ed669d4d9eebf10d3a101059bdcf2669c366ec1d14e4fb227bd", + "sha256:d9e69ae01f99abe6ad646947bba8941e896cb3aa805be2597a0400e0764b5818" + ], + "markers": "python_version >= '3.6'", + "version": "==38.0.1" + }, + "cssselect": { + "hashes": [ + "sha256:f612ee47b749c877ebae5bb77035d8f4202c6ad0f0fc1271b3c18ad6c4468ecf", + "sha256:f95f8dedd925fd8f54edb3d2dfb44c190d9d18512377d3c1e2388d16126879bc" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.1.0" + }, + "deprecated": { + "hashes": [ + "sha256:43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d", + "sha256:64756e3e14c8c5eea9795d93c524551432a0be75629f8f29e67ab8caf076c76d" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.2.13" + }, + "fake-useragent": { + "hashes": [ + "sha256:c104998b750eb097eefc28ae28e92d66397598d2cf41a31aa45d5559ef1adf35" + ], + "version": "==0.1.11" + }, + "faker": { + "hashes": [ + "sha256:6db56e2c43a2b74250d1c332ef25fef7dc07dcb6c5fab5329dd7b4467b8ed7b9", + "sha256:e02c55a5b0586caaf913cc6c254b3de178e08b031c5922e590fd033ebbdbfd02" + ], + "markers": "python_version >= '3.6'", + "version": "==14.2.0" + }, + "filelock": { + "hashes": [ + "sha256:55447caa666f2198c5b6b13a26d2084d26fa5b115c00d065664b2124680c4edc", + "sha256:617eb4e5eedc82fc5f47b6d61e4d11cb837c56cb4544e39081099fa17ad109d4" + ], + "markers": "python_version >= '3.7'", + "version": "==3.8.0" + }, + "hyperlink": { + "hashes": [ + "sha256:427af957daa58bc909471c6c40f74c5450fa123dd093fc53efd2e91d2705a56b", + "sha256:e6b14c37ecb73e89c77d78cdb4c2cc8f3fb59a885c5b3f819ff4ed80f25af1b4" + ], + "version": "==21.0.0" + }, + "idna": { + "hashes": [ + "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff", + "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d" + ], + "markers": "python_version >= '3.5'", + "version": "==3.3" + }, + "incremental": { + "hashes": [ + "sha256:02f5de5aff48f6b9f665d99d48bfc7ec03b6e3943210de7cfc88856d755d6f57", + "sha256:92014aebc6a20b78a8084cdd5645eeaa7f74b8933f70fa3ada2cfbd1e3b54321" + ], + "version": "==21.3.0" + }, + "itemadapter": { + "hashes": [ + "sha256:0e0ab4ddf92c71af57c2386952a61756ae2ecf6c65f976ffaee9ba91ae87a91c", + "sha256:32c061ec9ab47d5343e8011b268730f48ff632a0192b95292d118b18dbd7687a" + ], + "markers": "python_version >= '3.6'", + "version": "==0.7.0" + }, + "itemloaders": { + "hashes": [ + "sha256:248702909af3ab45ae32846f5bdefa0166dc88cffb5f758d662223dcd0953bd9", + "sha256:8a6b2945a4233a14042a368e17950f447eb1d42494d75634552586342090cb4a" + ], + "markers": "python_version >= '3.6'", + "version": "==1.0.6" + }, + "jmespath": { + "hashes": [ + "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", + "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe" + ], + "markers": "python_version >= '3.7'", + "version": "==1.0.1" + }, + "lxml": { + "hashes": [ + "sha256:04da965dfebb5dac2619cb90fcf93efdb35b3c6994fea58a157a834f2f94b318", + "sha256:0538747a9d7827ce3e16a8fdd201a99e661c7dee3c96c885d8ecba3c35d1032c", + "sha256:0645e934e940107e2fdbe7c5b6fb8ec6232444260752598bc4d09511bd056c0b", + "sha256:079b68f197c796e42aa80b1f739f058dcee796dc725cc9a1be0cdb08fc45b000", + "sha256:0f3f0059891d3254c7b5fb935330d6db38d6519ecd238ca4fce93c234b4a0f73", + "sha256:10d2017f9150248563bb579cd0d07c61c58da85c922b780060dcc9a3aa9f432d", + "sha256:1355755b62c28950f9ce123c7a41460ed9743c699905cbe664a5bcc5c9c7c7fb", + "sha256:13c90064b224e10c14dcdf8086688d3f0e612db53766e7478d7754703295c7c8", + "sha256:1423631e3d51008871299525b541413c9b6c6423593e89f9c4cfbe8460afc0a2", + "sha256:1436cf0063bba7888e43f1ba8d58824f085410ea2025befe81150aceb123e345", + "sha256:1a7c59c6ffd6ef5db362b798f350e24ab2cfa5700d53ac6681918f314a4d3b94", + "sha256:1e1cf47774373777936c5aabad489fef7b1c087dcd1f426b621fda9dcc12994e", + "sha256:206a51077773c6c5d2ce1991327cda719063a47adc02bd703c56a662cdb6c58b", + "sha256:21fb3d24ab430fc538a96e9fbb9b150029914805d551deeac7d7822f64631dfc", + "sha256:27e590352c76156f50f538dbcebd1925317a0f70540f7dc8c97d2931c595783a", + "sha256:287605bede6bd36e930577c5925fcea17cb30453d96a7b4c63c14a257118dbb9", + "sha256:2aaf6a0a6465d39b5ca69688fce82d20088c1838534982996ec46633dc7ad6cc", + "sha256:32a73c53783becdb7eaf75a2a1525ea8e49379fb7248c3eeefb9412123536387", + "sha256:41fb58868b816c202e8881fd0f179a4644ce6e7cbbb248ef0283a34b73ec73bb", + "sha256:4780677767dd52b99f0af1f123bc2c22873d30b474aa0e2fc3fe5e02217687c7", + "sha256:4878e667ebabe9b65e785ac8da4d48886fe81193a84bbe49f12acff8f7a383a4", + "sha256:487c8e61d7acc50b8be82bda8c8d21d20e133c3cbf41bd8ad7eb1aaeb3f07c97", + "sha256:4beea0f31491bc086991b97517b9683e5cfb369205dac0148ef685ac12a20a67", + "sha256:4cfbe42c686f33944e12f45a27d25a492cc0e43e1dc1da5d6a87cbcaf2e95627", + "sha256:4d5bae0a37af799207140652a700f21a85946f107a199bcb06720b13a4f1f0b7", + "sha256:4e285b5f2bf321fc0857b491b5028c5f276ec0c873b985d58d7748ece1d770dd", + "sha256:57e4d637258703d14171b54203fd6822fda218c6c2658a7d30816b10995f29f3", + "sha256:5974895115737a74a00b321e339b9c3f45c20275d226398ae79ac008d908bff7", + "sha256:5ef87fca280fb15342726bd5f980f6faf8b84a5287fcc2d4962ea8af88b35130", + "sha256:603a464c2e67d8a546ddaa206d98e3246e5db05594b97db844c2f0a1af37cf5b", + "sha256:6653071f4f9bac46fbc30f3c7838b0e9063ee335908c5d61fb7a4a86c8fd2036", + "sha256:6ca2264f341dd81e41f3fffecec6e446aa2121e0b8d026fb5130e02de1402785", + "sha256:6d279033bf614953c3fc4a0aa9ac33a21e8044ca72d4fa8b9273fe75359d5cca", + "sha256:6d949f53ad4fc7cf02c44d6678e7ff05ec5f5552b235b9e136bd52e9bf730b91", + "sha256:6daa662aba22ef3258934105be2dd9afa5bb45748f4f702a3b39a5bf53a1f4dc", + "sha256:6eafc048ea3f1b3c136c71a86db393be36b5b3d9c87b1c25204e7d397cee9536", + "sha256:830c88747dce8a3e7525defa68afd742b4580df6aa2fdd6f0855481e3994d391", + "sha256:86e92728ef3fc842c50a5cb1d5ba2bc66db7da08a7af53fb3da79e202d1b2cd3", + "sha256:8caf4d16b31961e964c62194ea3e26a0e9561cdf72eecb1781458b67ec83423d", + "sha256:8d1a92d8e90b286d491e5626af53afef2ba04da33e82e30744795c71880eaa21", + "sha256:8f0a4d179c9a941eb80c3a63cdb495e539e064f8054230844dcf2fcb812b71d3", + "sha256:9232b09f5efee6a495a99ae6824881940d6447debe272ea400c02e3b68aad85d", + "sha256:927a9dd016d6033bc12e0bf5dee1dde140235fc8d0d51099353c76081c03dc29", + "sha256:93e414e3206779ef41e5ff2448067213febf260ba747fc65389a3ddaa3fb8715", + "sha256:98cafc618614d72b02185ac583c6f7796202062c41d2eeecdf07820bad3295ed", + "sha256:9c3a88d20e4fe4a2a4a84bf439a5ac9c9aba400b85244c63a1ab7088f85d9d25", + "sha256:9f36de4cd0c262dd9927886cc2305aa3f2210db437aa4fed3fb4940b8bf4592c", + "sha256:a60f90bba4c37962cbf210f0188ecca87daafdf60271f4c6948606e4dabf8785", + "sha256:a614e4afed58c14254e67862456d212c4dcceebab2eaa44d627c2ca04bf86837", + "sha256:ae06c1e4bc60ee076292e582a7512f304abdf6c70db59b56745cca1684f875a4", + "sha256:b122a188cd292c4d2fcd78d04f863b789ef43aa129b233d7c9004de08693728b", + "sha256:b570da8cd0012f4af9fa76a5635cd31f707473e65a5a335b186069d5c7121ff2", + "sha256:bcaa1c495ce623966d9fc8a187da80082334236a2a1c7e141763ffaf7a405067", + "sha256:bd34f6d1810d9354dc7e35158aa6cc33456be7706df4420819af6ed966e85448", + "sha256:be9eb06489bc975c38706902cbc6888f39e946b81383abc2838d186f0e8b6a9d", + "sha256:c4b2e0559b68455c085fb0f6178e9752c4be3bba104d6e881eb5573b399d1eb2", + "sha256:c62e8dd9754b7debda0c5ba59d34509c4688f853588d75b53c3791983faa96fc", + "sha256:c852b1530083a620cb0de5f3cd6826f19862bafeaf77586f1aef326e49d95f0c", + "sha256:d9fc0bf3ff86c17348dfc5d322f627d78273eba545db865c3cd14b3f19e57fa5", + "sha256:dad7b164905d3e534883281c050180afcf1e230c3d4a54e8038aa5cfcf312b84", + "sha256:e5f66bdf0976ec667fc4594d2812a00b07ed14d1b44259d19a41ae3fff99f2b8", + "sha256:e8f0c9d65da595cfe91713bc1222af9ecabd37971762cb830dea2fc3b3bb2acf", + "sha256:edffbe3c510d8f4bf8640e02ca019e48a9b72357318383ca60e3330c23aaffc7", + "sha256:eea5d6443b093e1545ad0210e6cf27f920482bfcf5c77cdc8596aec73523bb7e", + "sha256:ef72013e20dd5ba86a8ae1aed7f56f31d3374189aa8b433e7b12ad182c0d2dfb", + "sha256:f05251bbc2145349b8d0b77c0d4e5f3b228418807b1ee27cefb11f69ed3d233b", + "sha256:f1be258c4d3dc609e654a1dc59d37b17d7fef05df912c01fc2e15eb43a9735f3", + "sha256:f9ced82717c7ec65a67667bb05865ffe38af0e835cdd78728f1209c8fffe0cad", + "sha256:fe17d10b97fdf58155f858606bddb4e037b805a60ae023c009f760d8361a4eb8", + "sha256:fe749b052bb7233fe5d072fcb549221a8cb1a16725c47c37e42b0b9cb3ff2c3f" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==4.9.1" + }, + "packaging": { + "hashes": [ + "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb", + "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522" + ], + "markers": "python_version >= '3.6'", + "version": "==21.3" + }, + "parsel": { + "hashes": [ + "sha256:70efef0b651a996cceebc69e55a85eb2233be0890959203ba7c3a03c72725c79", + "sha256:9e1fa8db1c0b4a878bf34b35c043d89c9d1cbebc23b4d34dbc3c0ec33f2e087d" + ], + "version": "==1.6.0" + }, + "protego": { + "hashes": [ + "sha256:04419b18f20e8909f1691c6b678392988271cc2a324a72f9663cb3af838b4bf7", + "sha256:df666d4304dab774e2dc9feb208bb1ac8d71ea5ceec12f4c99eba30fbd642ff2" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==0.2.1" + }, + "pyasn1": { + "hashes": [ + "sha256:014c0e9976956a08139dc0712ae195324a75e142284d5f87f1a87ee1b068a359", + "sha256:03840c999ba71680a131cfaee6fab142e1ed9bbd9c693e285cc6aca0d555e576", + "sha256:0458773cfe65b153891ac249bcf1b5f8f320b7c2ce462151f8fa74de8934becf", + "sha256:08c3c53b75eaa48d71cf8c710312316392ed40899cb34710d092e96745a358b7", + "sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d", + "sha256:5c9414dcfede6e441f7e8f81b43b34e834731003427e5b09e4e00e3172a10f00", + "sha256:6e7545f1a61025a4e58bb336952c5061697da694db1cae97b116e9c46abcf7c8", + "sha256:78fa6da68ed2727915c4767bb386ab32cdba863caa7dbe473eaae45f9959da86", + "sha256:7ab8a544af125fb704feadb008c99a88805126fb525280b2270bb25cc1d78a12", + "sha256:99fcc3c8d804d1bc6d9a099921e39d827026409a58f2a720dcdb89374ea0c776", + "sha256:aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba", + "sha256:e89bf84b5437b532b0803ba5c9a5e054d21fec423a89952a74f87fa2c9b7bce2", + "sha256:fec3e9d8e36808a28efb59b489e4528c10ad0f480e57dcc32b4de5c9d8c9fdf3" + ], + "version": "==0.4.8" + }, + "pyasn1-modules": { + "hashes": [ + "sha256:0845a5582f6a02bb3e1bde9ecfc4bfcae6ec3210dd270522fee602365430c3f8", + "sha256:0fe1b68d1e486a1ed5473f1302bd991c1611d319bba158e98b106ff86e1d7199", + "sha256:15b7c67fabc7fc240d87fb9aabf999cf82311a6d6fb2c70d00d3d0604878c811", + "sha256:426edb7a5e8879f1ec54a1864f16b882c2837bfd06eee62f2c982315ee2473ed", + "sha256:65cebbaffc913f4fe9e4808735c95ea22d7a7775646ab690518c056784bc21b4", + "sha256:905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e", + "sha256:a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74", + "sha256:a99324196732f53093a84c4369c996713eb8c89d360a496b599fb1a9c47fc3eb", + "sha256:b80486a6c77252ea3a3e9b1e360bc9cf28eaac41263d173c032581ad2f20fe45", + "sha256:c29a5e5cc7a3f05926aff34e097e84f8589cd790ce0ed41b67aed6857b26aafd", + "sha256:cbac4bc38d117f2a49aeedec4407d23e8866ea4ac27ff2cf7fb3e5b570df19e0", + "sha256:f39edd8c4ecaa4556e989147ebf219227e2cd2e8a43c7e7fcb1f1c18c5fd6a3d", + "sha256:fe0644d9ab041506b62782e92b06b8c68cca799e1a9636ec398675459e031405" + ], + "version": "==0.2.8" + }, + "pycparser": { + "hashes": [ + "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9", + "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206" + ], + "version": "==2.21" + }, + "pydantic": { + "hashes": [ + "sha256:05e00dbebbe810b33c7a7362f231893183bcc4251f3f2ff991c31d5c08240c42", + "sha256:06094d18dd5e6f2bbf93efa54991c3240964bb663b87729ac340eb5014310624", + "sha256:0b959f4d8211fc964772b595ebb25f7652da3f22322c007b6fed26846a40685e", + "sha256:19b3b9ccf97af2b7519c42032441a891a5e05c68368f40865a90eb88833c2559", + "sha256:1b6ee725bd6e83ec78b1aa32c5b1fa67a3a65badddde3976bca5fe4568f27709", + "sha256:1ee433e274268a4b0c8fde7ad9d58ecba12b069a033ecc4645bb6303c062d2e9", + "sha256:216f3bcbf19c726b1cc22b099dd409aa371f55c08800bcea4c44c8f74b73478d", + "sha256:2d0567e60eb01bccda3a4df01df677adf6b437958d35c12a3ac3e0f078b0ee52", + "sha256:2e05aed07fa02231dbf03d0adb1be1d79cabb09025dd45aa094aa8b4e7b9dcda", + "sha256:352aedb1d71b8b0736c6d56ad2bd34c6982720644b0624462059ab29bd6e5912", + "sha256:355639d9afc76bcb9b0c3000ddcd08472ae75318a6eb67a15866b87e2efa168c", + "sha256:37c90345ec7dd2f1bcef82ce49b6235b40f282b94d3eec47e801baf864d15525", + "sha256:4b8795290deaae348c4eba0cebb196e1c6b98bdbe7f50b2d0d9a4a99716342fe", + "sha256:5760e164b807a48a8f25f8aa1a6d857e6ce62e7ec83ea5d5c5a802eac81bad41", + "sha256:6eb843dcc411b6a2237a694f5e1d649fc66c6064d02b204a7e9d194dff81eb4b", + "sha256:7b5ba54d026c2bd2cb769d3468885f23f43710f651688e91f5fb1edcf0ee9283", + "sha256:7c2abc4393dea97a4ccbb4ec7d8658d4e22c4765b7b9b9445588f16c71ad9965", + "sha256:81a7b66c3f499108b448f3f004801fcd7d7165fb4200acb03f1c2402da73ce4c", + "sha256:91b8e218852ef6007c2b98cd861601c6a09f1aa32bbbb74fab5b1c33d4a1e410", + "sha256:9300fcbebf85f6339a02c6994b2eb3ff1b9c8c14f502058b5bf349d42447dcf5", + "sha256:9cabf4a7f05a776e7793e72793cd92cc865ea0e83a819f9ae4ecccb1b8aa6116", + "sha256:a1f5a63a6dfe19d719b1b6e6106561869d2efaca6167f84f5ab9347887d78b98", + "sha256:a4c805731c33a8db4b6ace45ce440c4ef5336e712508b4d9e1aafa617dc9907f", + "sha256:ae544c47bec47a86bc7d350f965d8b15540e27e5aa4f55170ac6a75e5f73b644", + "sha256:b97890e56a694486f772d36efd2ba31612739bc6f3caeee50e9e7e3ebd2fdd13", + "sha256:bb6ad4489af1bac6955d38ebcb95079a836af31e4c4f74aba1ca05bb9f6027bd", + "sha256:bedf309630209e78582ffacda64a21f96f3ed2e51fbf3962d4d488e503420254", + "sha256:c1ba1afb396148bbc70e9eaa8c06c1716fdddabaf86e7027c5988bae2a829ab6", + "sha256:c33602f93bfb67779f9c507e4d69451664524389546bacfe1bee13cae6dc7488", + "sha256:c4aac8e7103bf598373208f6299fa9a5cfd1fc571f2d40bf1dd1955a63d6eeb5", + "sha256:c6f981882aea41e021f72779ce2a4e87267458cc4d39ea990729e21ef18f0f8c", + "sha256:cc78cc83110d2f275ec1970e7a831f4e371ee92405332ebfe9860a715f8336e1", + "sha256:d49f3db871575e0426b12e2f32fdb25e579dea16486a26e5a0474af87cb1ab0a", + "sha256:dd3f9a40c16daf323cf913593083698caee97df2804aa36c4b3175d5ac1b92a2", + "sha256:e0bedafe4bc165ad0a56ac0bd7695df25c50f76961da29c050712596cf092d6d", + "sha256:e9069e1b01525a96e6ff49e25876d90d5a563bc31c658289a8772ae186552236" + ], + "index": "pypi", + "version": "==1.10.2" + }, + "pydispatcher": { + "hashes": [ + "sha256:3d7e4f43c70000a1dca31f92694e99d0101934fa6eab5d5455a758858d86df95" + ], + "markers": "platform_python_implementation == 'CPython'", + "version": "==2.0.6" + }, + "pyopenssl": { + "hashes": [ + "sha256:660b1b1425aac4a1bea1d94168a85d99f0b3144c869dd4390d27629d0087f1bf", + "sha256:ea252b38c87425b64116f808355e8da644ef9b07e429398bfece610f893ee2e0" + ], + "markers": "python_version >= '3.6'", + "version": "==22.0.0" + }, + "pyparsing": { + "hashes": [ + "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb", + "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc" + ], + "markers": "python_full_version >= '3.6.8'", + "version": "==3.0.9" + }, + "pyquery": { + "hashes": [ + "sha256:1fc33b7699455ed25c75282bc8f80ace1ac078b0dda5a933dacbd8b1c1f83963", + "sha256:a388eefb6bc4a55350de0316fbd97cda999ae669b6743ae5b99102ba54f5aa72" + ], + "index": "pypi", + "version": "==1.4.3" + }, + "python-dateutil": { + "hashes": [ + "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", + "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==2.8.2" + }, + "python-dotenv": { + "hashes": [ + "sha256:1684eb44636dd462b66c3ee016599815514527ad99965de77f43e0944634a7e5", + "sha256:b77d08274639e3d34145dfa6c7008e66df0f04b7be7a75fd0d5292c191d79045" + ], + "index": "pypi", + "version": "==0.21.0" + }, + "queuelib": { + "hashes": [ + "sha256:4b207267f2642a8699a1f806045c56eb7ad1a85a10c0e249884580d139c2fcd2", + "sha256:4b96d48f650a814c6fb2fd11b968f9c46178b683aad96d68f930fe13a8574d19" + ], + "markers": "python_version >= '3.5'", + "version": "==1.6.2" + }, + "redis": { + "hashes": [ + "sha256:a52d5694c9eb4292770084fa8c863f79367ca19884b329ab574d5cb2036b3e54", + "sha256:ddf27071df4adf3821c4f2ca59d67525c3a82e5f268bed97b813cb4fabf87880" + ], + "index": "pypi", + "version": "==4.3.4" + }, + "requests": { + "hashes": [ + "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983", + "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349" + ], + "index": "pypi", + "version": "==2.28.1" + }, + "requests-file": { + "hashes": [ + "sha256:07d74208d3389d01c38ab89ef403af0cfec63957d53a0081d8eca738d0247d8e", + "sha256:dfe5dae75c12481f68ba353183c53a65e6044c923e64c24b2209f6c7570ca953" + ], + "version": "==1.5.1" + }, + "scrapy": { + "hashes": [ + "sha256:53528bcaf8c2c77aca359af11f349dec5dad98845a13d4c0bb9abd07f302298d", + "sha256:55e21181165f25337105fff1efc8393296375cea7de699a7e703bbd265595f26" + ], + "index": "pypi", + "version": "==2.6.2" + }, + "scrapy-fake-useragent": { + "hashes": [ + "sha256:3b17e982e646918dc25080da0672812d07bfb7a92a58377c014c74e0182c665e", + "sha256:da0589d9245fe6348b491821f3be3387dd6563540146058e6b6c4f1bbe1358bf" + ], + "index": "pypi", + "version": "==1.4.4" + }, + "scrapy-user-agents": { + "hashes": [ + "sha256:284c9af555f3128697a2953ab3cdb987b160b091a12896562d969cf9e81d1350", + "sha256:aa1f78c8cbae42f1a7159c5ea16c2638ac17e78d7d44111d164ed099ec48705f" + ], + "index": "pypi", + "version": "==0.1.1" + }, + "service-identity": { + "hashes": [ + "sha256:6e6c6086ca271dc11b033d17c3a8bea9f24ebff920c587da090afc9519419d34", + "sha256:f0b0caac3d40627c3c04d7a51b6e06721857a0e10a8775f2d1d7e72901b3a7db" + ], + "version": "==21.1.0" + }, + "setuptools": { + "hashes": [ + "sha256:2e24e0bec025f035a2e72cdd1961119f557d78ad331bb00ff82efb2ab8da8e82", + "sha256:7732871f4f7fa58fb6bdcaeadb0161b2bd046c85905dbaa066bdcbcc81953b57" + ], + "markers": "python_version >= '3.7'", + "version": "==65.3.0" + }, + "six": { + "hashes": [ + "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", + "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.16.0" + }, + "tldextract": { + "hashes": [ + "sha256:35a0260570e214d8d3cfeeb403992fe9e2b686925f63c9b03c5933408ac2aa5a", + "sha256:fe15ac3205e5a25b61689369f98cb45c7778a8f2af113d7c11559ece5195f2d6" + ], + "markers": "python_version >= '3.7'", + "version": "==3.3.1" + }, + "twisted": { + "hashes": [ + "sha256:8d4718d1e48dcc28933f8beb48dc71cfe77a125e37ad1eb7a3d0acc49baf6c99", + "sha256:e5b60de39f2d1da153fbe1874d885fe3fcbdb21fcc446fa759a53e8fc3513bed" + ], + "markers": "python_full_version >= '3.7.1'", + "version": "==22.8.0" + }, + "typing-extensions": { + "hashes": [ + "sha256:25642c956049920a5aa49edcdd6ab1e06d7e5d467fc00e0506c44ac86fbfca02", + "sha256:e6d2677a32f47fc7eb2795db1dd15c1f34eff616bcaf2cfb5e997f854fa1c4a6" + ], + "markers": "python_version >= '3.7'", + "version": "==4.3.0" + }, + "ua-parser": { + "hashes": [ + "sha256:ed3efc695f475ffe56248c9789b3016247e9c20e3556cfa4d5aadc78ab4b26c6", + "sha256:f97126300df8ac0f8f2c9d8559669532d626a1af529265fd253cba56e73ab36e" + ], + "version": "==0.16.1" + }, + "urllib3": { + "hashes": [ + "sha256:3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e", + "sha256:b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5' and python_version < '4'", + "version": "==1.26.12" + }, + "user-agents": { + "hashes": [ + "sha256:a98c4dc72ecbc64812c4534108806fb0a0b3a11ec3fd1eafe807cee5b0a942e7", + "sha256:d36d25178db65308d1458c5fa4ab39c9b2619377010130329f3955e7626ead26" + ], + "version": "==2.2.0" + }, + "w3lib": { + "hashes": [ + "sha256:13df15f8c17b163de0fd5faa892c1ad143e190dfcbdb98534bb975eb37c6c7d6", + "sha256:c5d966f86ae3fb546854478c769250c3ccb7581515b3221bcd2f864440000188" + ], + "markers": "python_version >= '3.6'", + "version": "==2.0.1" + }, + "wrapt": { + "hashes": [ + "sha256:00b6d4ea20a906c0ca56d84f93065b398ab74b927a7a3dbd470f6fc503f95dc3", + "sha256:01c205616a89d09827986bc4e859bcabd64f5a0662a7fe95e0d359424e0e071b", + "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4", + "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2", + "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656", + "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3", + "sha256:21ac0156c4b089b330b7666db40feee30a5d52634cc4560e1905d6529a3897ff", + "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310", + "sha256:2b39d38039a1fdad98c87279b48bc5dce2c0ca0d73483b12cb72aa9609278e8a", + "sha256:2cf71233a0ed05ccdabe209c606fe0bac7379fdcf687f39b944420d2a09fdb57", + "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069", + "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383", + "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe", + "sha256:36f582d0c6bc99d5f39cd3ac2a9062e57f3cf606ade29a0a0d6b323462f4dd87", + "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d", + "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b", + "sha256:43ca3bbbe97af00f49efb06e352eae40434ca9d915906f77def219b88e85d907", + "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f", + "sha256:5a0f54ce2c092aaf439813735584b9537cad479575a09892b8352fea5e988dc0", + "sha256:5a9a0d155deafd9448baff28c08e150d9b24ff010e899311ddd63c45c2445e28", + "sha256:5b02d65b9ccf0ef6c34cba6cf5bf2aab1bb2f49c6090bafeecc9cd81ad4ea1c1", + "sha256:60db23fa423575eeb65ea430cee741acb7c26a1365d103f7b0f6ec412b893853", + "sha256:642c2e7a804fcf18c222e1060df25fc210b9c58db7c91416fb055897fc27e8cc", + "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3", + "sha256:6b1a564e6cb69922c7fe3a678b9f9a3c54e72b469875aa8018f18b4d1dd1adf3", + "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164", + "sha256:6e743de5e9c3d1b7185870f480587b75b1cb604832e380d64f9504a0535912d1", + "sha256:709fe01086a55cf79d20f741f39325018f4df051ef39fe921b1ebe780a66184c", + "sha256:7b7c050ae976e286906dd3f26009e117eb000fb2cf3533398c5ad9ccc86867b1", + "sha256:7d2872609603cb35ca513d7404a94d6d608fc13211563571117046c9d2bcc3d7", + "sha256:7ef58fb89674095bfc57c4069e95d7a31cfdc0939e2a579882ac7d55aadfd2a1", + "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320", + "sha256:81b19725065dcb43df02b37e03278c011a09e49757287dca60c5aecdd5a0b8ed", + "sha256:833b58d5d0b7e5b9832869f039203389ac7cbf01765639c7309fd50ef619e0b1", + "sha256:88bd7b6bd70a5b6803c1abf6bca012f7ed963e58c68d76ee20b9d751c74a3248", + "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c", + "sha256:8c0ce1e99116d5ab21355d8ebe53d9460366704ea38ae4d9f6933188f327b456", + "sha256:8d649d616e5c6a678b26d15ece345354f7c2286acd6db868e65fcc5ff7c24a77", + "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef", + "sha256:9736af4641846491aedb3c3f56b9bc5568d92b0692303b5a305301a95dfd38b1", + "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7", + "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86", + "sha256:9e0fd32e0148dd5dea6af5fee42beb949098564cc23211a88d799e434255a1f4", + "sha256:9f3e6f9e05148ff90002b884fbc2a86bd303ae847e472f44ecc06c2cd2fcdb2d", + "sha256:a85d2b46be66a71bedde836d9e41859879cc54a2a04fad1191eb50c2066f6e9d", + "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8", + "sha256:aa31fdcc33fef9eb2552cbcbfee7773d5a6792c137b359e82879c101e98584c5", + "sha256:b014c23646a467558be7da3d6b9fa409b2c567d2110599b7cf9a0c5992b3b471", + "sha256:b21bb4c09ffabfa0e85e3a6b623e19b80e7acd709b9f91452b8297ace2a8ab00", + "sha256:b5901a312f4d14c59918c221323068fad0540e34324925c8475263841dbdfe68", + "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3", + "sha256:d1967f46ea8f2db647c786e78d8cc7e4313dbd1b0aca360592d8027b8508e24d", + "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735", + "sha256:d77c85fedff92cf788face9bfa3ebaa364448ebb1d765302e9af11bf449ca36d", + "sha256:d79d7d5dc8a32b7093e81e97dad755127ff77bcc899e845f41bf71747af0c569", + "sha256:dbcda74c67263139358f4d188ae5faae95c30929281bc6866d00573783c422b7", + "sha256:ddaea91abf8b0d13443f6dac52e89051a5063c7d014710dcb4d4abb2ff811a59", + "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5", + "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb", + "sha256:e2f83e18fe2f4c9e7db597e988f72712c0c3676d337d8b101f6758107c42425b", + "sha256:e3fb1677c720409d5f671e39bac6c9e0e422584e5f518bfd50aa4cbbea02433f", + "sha256:ee2b1b1769f6707a8a445162ea16dddf74285c3964f605877a20e38545c3c462", + "sha256:ee6acae74a2b91865910eef5e7de37dc6895ad96fa23603d1d27ea69df545015", + "sha256:ef3f72c9666bba2bab70d2a8b79f2c6d2c1a42a7f7e2b0ec83bb2f9e383950af" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==1.14.1" + }, + "zope.interface": { + "hashes": [ + "sha256:08f9636e99a9d5410181ba0729e0408d3d8748026ea938f3b970a0249daa8192", + "sha256:0b465ae0962d49c68aa9733ba92a001b2a0933c317780435f00be7ecb959c702", + "sha256:0cba8477e300d64a11a9789ed40ee8932b59f9ee05f85276dbb4b59acee5dd09", + "sha256:0cee5187b60ed26d56eb2960136288ce91bcf61e2a9405660d271d1f122a69a4", + "sha256:0ea1d73b7c9dcbc5080bb8aaffb776f1c68e807767069b9ccdd06f27a161914a", + "sha256:0f91b5b948686659a8e28b728ff5e74b1be6bf40cb04704453617e5f1e945ef3", + "sha256:15e7d1f7a6ee16572e21e3576d2012b2778cbacf75eb4b7400be37455f5ca8bf", + "sha256:17776ecd3a1fdd2b2cd5373e5ef8b307162f581c693575ec62e7c5399d80794c", + "sha256:194d0bcb1374ac3e1e023961610dc8f2c78a0f5f634d0c737691e215569e640d", + "sha256:1c0e316c9add0db48a5b703833881351444398b04111188069a26a61cfb4df78", + "sha256:205e40ccde0f37496904572035deea747390a8b7dc65146d30b96e2dd1359a83", + "sha256:273f158fabc5ea33cbc936da0ab3d4ba80ede5351babc4f577d768e057651531", + "sha256:2876246527c91e101184f63ccd1d716ec9c46519cc5f3d5375a3351c46467c46", + "sha256:2c98384b254b37ce50eddd55db8d381a5c53b4c10ee66e1e7fe749824f894021", + "sha256:2e5a26f16503be6c826abca904e45f1a44ff275fdb7e9d1b75c10671c26f8b94", + "sha256:334701327f37c47fa628fc8b8d28c7d7730ce7daaf4bda1efb741679c2b087fc", + "sha256:3748fac0d0f6a304e674955ab1365d515993b3a0a865e16a11ec9d86fb307f63", + "sha256:3c02411a3b62668200910090a0dff17c0b25aaa36145082a5a6adf08fa281e54", + "sha256:3dd4952748521205697bc2802e4afac5ed4b02909bb799ba1fe239f77fd4e117", + "sha256:3f24df7124c323fceb53ff6168da70dbfbae1442b4f3da439cd441681f54fe25", + "sha256:469e2407e0fe9880ac690a3666f03eb4c3c444411a5a5fddfdabc5d184a79f05", + "sha256:4de4bc9b6d35c5af65b454d3e9bc98c50eb3960d5a3762c9438df57427134b8e", + "sha256:5208ebd5152e040640518a77827bdfcc73773a15a33d6644015b763b9c9febc1", + "sha256:52de7fc6c21b419078008f697fd4103dbc763288b1406b4562554bd47514c004", + "sha256:5bb3489b4558e49ad2c5118137cfeaf59434f9737fa9c5deefc72d22c23822e2", + "sha256:5dba5f530fec3f0988d83b78cc591b58c0b6eb8431a85edd1569a0539a8a5a0e", + "sha256:5dd9ca406499444f4c8299f803d4a14edf7890ecc595c8b1c7115c2342cadc5f", + "sha256:5f931a1c21dfa7a9c573ec1f50a31135ccce84e32507c54e1ea404894c5eb96f", + "sha256:63b82bb63de7c821428d513607e84c6d97d58afd1fe2eb645030bdc185440120", + "sha256:66c0061c91b3b9cf542131148ef7ecbecb2690d48d1612ec386de9d36766058f", + "sha256:6f0c02cbb9691b7c91d5009108f975f8ffeab5dff8f26d62e21c493060eff2a1", + "sha256:71aace0c42d53abe6fc7f726c5d3b60d90f3c5c055a447950ad6ea9cec2e37d9", + "sha256:7d97a4306898b05404a0dcdc32d9709b7d8832c0c542b861d9a826301719794e", + "sha256:7df1e1c05304f26faa49fa752a8c690126cf98b40b91d54e6e9cc3b7d6ffe8b7", + "sha256:8270252effc60b9642b423189a2fe90eb6b59e87cbee54549db3f5562ff8d1b8", + "sha256:867a5ad16892bf20e6c4ea2aab1971f45645ff3102ad29bd84c86027fa99997b", + "sha256:877473e675fdcc113c138813a5dd440da0769a2d81f4d86614e5d62b69497155", + "sha256:8892f89999ffd992208754851e5a052f6b5db70a1e3f7d54b17c5211e37a98c7", + "sha256:9a9845c4c6bb56e508651f005c4aeb0404e518c6f000d5a1123ab077ab769f5c", + "sha256:a1e6e96217a0f72e2b8629e271e1b280c6fa3fe6e59fa8f6701bec14e3354325", + "sha256:a8156e6a7f5e2a0ff0c5b21d6bcb45145efece1909efcbbbf48c56f8da68221d", + "sha256:a9506a7e80bcf6eacfff7f804c0ad5350c8c95b9010e4356a4b36f5322f09abb", + "sha256:af310ec8335016b5e52cae60cda4a4f2a60a788cbb949a4fbea13d441aa5a09e", + "sha256:b0297b1e05fd128d26cc2460c810d42e205d16d76799526dfa8c8ccd50e74959", + "sha256:bf68f4b2b6683e52bec69273562df15af352e5ed25d1b6641e7efddc5951d1a7", + "sha256:d0c1bc2fa9a7285719e5678584f6b92572a5b639d0e471bb8d4b650a1a910920", + "sha256:d4d9d6c1a455d4babd320203b918ccc7fcbefe308615c521062bc2ba1aa4d26e", + "sha256:db1fa631737dab9fa0b37f3979d8d2631e348c3b4e8325d6873c2541d0ae5a48", + "sha256:dd93ea5c0c7f3e25335ab7d22a507b1dc43976e1345508f845efc573d3d779d8", + "sha256:f44e517131a98f7a76696a7b21b164bcb85291cee106a23beccce454e1f433a4", + "sha256:f7ee479e96f7ee350db1cf24afa5685a5899e2b34992fb99e1f7c1b0b758d263" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==5.4.0" + } + }, + "develop": {} +} diff --git a/ptt-crawler/README.md b/ptt-crawler/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b4f368451a1bd9be20bae68b6bc2b22bf44721de --- /dev/null +++ b/ptt-crawler/README.md @@ -0,0 +1,113 @@ +# **批踢踢爬蟲 ptt-crawler** +### 學術研究用途,請勿不當使用。 + +This project scrapes the post details from the website [PTT](https://term.ptt.cc/), and writes the scraped items to csv files. + + +| author | alias |title | date | ip | city | country | ups | downs | comments | url | +|----|----|----|----|----|----|----|----|----|----|----| +| jason789780 | majiLove | \[請益\] google問題的精確與方向 | 2022-09-06 10:39:42 | 223.137.68.113 | Yilan | Taiwan | 9 | 0 | 29 | https://www.ptt.cc/bbs/Soft_Job/M.1662431984.A.A3F.html | +| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | + + + +## **說明** +### 1. Installation + +1. Python version + * `python >= 3.9` + +2. Clone repository + + ```bash + git clone git@github.com:lopentu/nlp_web.git + ``` + +3. Install Requirement + ```bash + cd nlp_web/assignments/ptt-crawler && pip install -r requirements.txt + ``` + + +### 2. 使用方式 + +1. Commands +``` +scrapy crawl ptt -a boards=BOARDS [-a scrap_all=BOOLEAN] + [-a index_from=NUMBER -a index_to=NUMBER] + [-a since=YEAR] [-a data_dir=PATH] + [-a ip_cache=BOOLEAN] + +positional arguments: +-a boards=BOARDS ptt board name (e.g. Soft_Job) +-a index_from=NUMBER -a index_to=NUMBER html index number from a ptt board +-a scrap_all=BOOLEAN scrap all posts if true +-a since=YEAR scrap all posts from a given year +-a data_dir=PATH output file path (default: ./data) +-a ip_cache=BOOLEAN enable redis service to cache ip if true +``` + +> If you enable `ip_cache`, please make sure you have Redis on your local machine. Otherwise, you can use `docker-compose` to run the crawler. + + +* Crawl all the posts of a board: + ```bash + scrapy crawl ptt -a boards=Soft_Job -a scrap_all=True + ``` + +* Crawl all the posts of a board from a year in the past: + ```bash + scrapy crawl ptt -a boards=Soft_Job -a since=2020 + ``` + +* Crawl the posts of a board based on html indexes: + ```bash + scrapy crawl ptt -a boards=Soft_Job -a index_from=1722 -a index_to=1723 + ``` + + > Please make sure the number of `index_from` is greater than `index_to`. + +* Crawl the posts of multiple boards. For example: + ```bash + scrapy crawl ptt -a boards=Soft_Job,Gossiping -a index_from=1722 -a index_to=1723 + ``` + + >Note: the comma in the argument `boards` cannot have spaces. It cannot be `boards=Soft_Job, Baseball` or `boards=["Soft_Job", "Baseball"]`. + + + +### 3. 使用 Docker +A Docker setup is provided for the crawler. + +To run the crawler, go to the `docker-compose.yml` file to edit the command: + +```yaml +version: "3" + +services: + scraptt: + build: . + environment: + - PYTHON_ENV=production + depends_on: + - redis + links: + - redis + + # define your crawler here! + command: bash -c "scrapy crawl ptt -a boards=Soft_Job,Gossiping -a index_from=1722 -a index_to=1723 -a ip_cache=True" +``` +> Feel free to change the command as long as it follows the command format as stated above. + +Now start the crawler: + +```bash +docker-compose up +``` + +We suggest setting the argument `ip_cache` to `true` when you run the crawler via Docker. The reason is that the crawler will connect to Redis container, and there is no need for you to have Redis on your local machine. Most importantly, the performance of the crawler will be increased! + + + +## Contact +If you have any suggestion or question, please do not hesitate to email us at shukai@gmail.com or philcoke35@gmail.com diff --git a/ptt-crawler/docker-compose.yml b/ptt-crawler/docker-compose.yml new file mode 100644 index 0000000000000000000000000000000000000000..1ef3887339821134fe5971fca7c0865acbf00ab1 --- /dev/null +++ b/ptt-crawler/docker-compose.yml @@ -0,0 +1,27 @@ +version: "3" + +services: + scraptt: + build: . + environment: + - PYTHON_ENV=production + depends_on: + - redis + links: + - redis + + # define your crawler here! + command: bash -c "scrapy crawl ptt -a boards=Soft_Job -a index_from=1500 -a index_to=1500 -a ip_cache=True" + + volumes: + - "./data:/app/data" + + redis: + image: redis:7 + restart: always + healthcheck: + test: "redis-cli ping" + interval: 3s + timeout: 3s + retries: 5 + start_period: 5s diff --git a/ptt-crawler/requirements.txt b/ptt-crawler/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..840c2aaadb51dfa44d0c4b4293ddfd2e4a63d970 --- /dev/null +++ b/ptt-crawler/requirements.txt @@ -0,0 +1,8 @@ +redis==4.3.4 +scrapy==2.6.2 +pyquery==1.4.3 +pydantic==1.10.2 +requests==2.28.1 +python-dotenv==0.21.0 +scrapy-user-agents==0.1.1 +scrapy-fake-useragent==1.4.4 \ No newline at end of file diff --git a/ptt-crawler/scraptt/__init__.py b/ptt-crawler/scraptt/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ptt-crawler/scraptt/configs/__init__.py b/ptt-crawler/scraptt/configs/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..f29b4eb1ac631d3fbda0f7301001ec6964ec2098 --- /dev/null +++ b/ptt-crawler/scraptt/configs/__init__.py @@ -0,0 +1,4 @@ +from .configs import PTT, PTT_BOARD, COOKIES + + +__all__ = ["PTT", "PTT_BOARD", "COOKIES"] diff --git a/ptt-crawler/scraptt/configs/configs.py b/ptt-crawler/scraptt/configs/configs.py new file mode 100644 index 0000000000000000000000000000000000000000..b474fa8162f774608beed67f940558d5d7d472b9 --- /dev/null +++ b/ptt-crawler/scraptt/configs/configs.py @@ -0,0 +1,13 @@ +# -------------------------------------------------------------------- +# ptt urls + + +PTT = "https://www.ptt.cc/bbs" +PTT_BOARD = PTT + "/{}/index{}.html" # template string (board, html index) + + +# -------------------------------------------------------------------- +# cookies + + +COOKIES = {"over18": "1"} diff --git a/ptt-crawler/scraptt/items/__init__.py b/ptt-crawler/scraptt/items/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ab2b53bbb5d52e29d0af7108d6805bf97ecb4c2a --- /dev/null +++ b/ptt-crawler/scraptt/items/__init__.py @@ -0,0 +1,4 @@ +from .items import ScrapttItem + + +__all__ = ["ScrapttItem"] diff --git a/ptt-crawler/scraptt/items/items.py b/ptt-crawler/scraptt/items/items.py new file mode 100644 index 0000000000000000000000000000000000000000..a535f6070432af044829a25235484aba9454ffa8 --- /dev/null +++ b/ptt-crawler/scraptt/items/items.py @@ -0,0 +1,21 @@ +from typing import Union +from pydantic import BaseModel + + +class ScrapttItem(BaseModel): + """ + The ScrapttItem object keeps track of an item in inventory. + """ + + board: str + author: str + alias: str + title: str + date: str + ip: str + city: Union[str, None] + country: Union[str, None] + ups: int + downs: int + comments: int + url: str diff --git a/ptt-crawler/scraptt/middlewares/__init__.py b/ptt-crawler/scraptt/middlewares/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..05e6bcdc923276742c813d7732e4e985d3c5617b --- /dev/null +++ b/ptt-crawler/scraptt/middlewares/__init__.py @@ -0,0 +1,4 @@ +from .pyquery import PyqueryMiddleware + + +__all__ = ["PyqueryMiddleware"] diff --git a/ptt-crawler/scraptt/middlewares/pyquery.py b/ptt-crawler/scraptt/middlewares/pyquery.py new file mode 100644 index 0000000000000000000000000000000000000000..99d8d961a0752eab6272bae5df9ac515bb157ae9 --- /dev/null +++ b/ptt-crawler/scraptt/middlewares/pyquery.py @@ -0,0 +1,13 @@ +from ..configs import PTT +from pyquery import PyQuery +from scrapy.http.response.html import HtmlResponse + + +class PyqueryMiddleware: + """ + The PyqueryMiddleware object injects PyQuery object into Scrapy `response`. + """ + + def process_response(self, request, response, spider) -> HtmlResponse: + response.dom = PyQuery(response.text).make_links_absolute(PTT) + return response diff --git a/ptt-crawler/scraptt/models/__init__.py b/ptt-crawler/scraptt/models/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..d616c67c9eb209fd09033a4ad4bb38e1b96bd5e7 --- /dev/null +++ b/ptt-crawler/scraptt/models/__init__.py @@ -0,0 +1,4 @@ +from .redis import redis_cli + + +__all__ = ["redis_cli"] diff --git a/ptt-crawler/scraptt/models/redis.py b/ptt-crawler/scraptt/models/redis.py new file mode 100644 index 0000000000000000000000000000000000000000..e5ad15569ff1a9666f02a86297529fadea92216b --- /dev/null +++ b/ptt-crawler/scraptt/models/redis.py @@ -0,0 +1,13 @@ +import os +import redis +from pathlib import Path +from dotenv import load_dotenv + +env_path = Path("__file__").resolve().parent / ".env" +load_dotenv(env_path) + +is_production = os.environ.get("PYTHON_ENV") == "production" +host = "redis" if is_production else "localhost" + +pool = redis.ConnectionPool(host=host, port=6379, decode_responses=True) +redis_cli = redis.Redis(connection_pool=pool) diff --git a/ptt-crawler/scraptt/pipelines/__init__.py b/ptt-crawler/scraptt/pipelines/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..70b066ddbc782d4c5fcc83d886555141fdfdfbea --- /dev/null +++ b/ptt-crawler/scraptt/pipelines/__init__.py @@ -0,0 +1,4 @@ +from .csv import CsvPipeline + + +__all__ = ["CsvPipeline"] diff --git a/ptt-crawler/scraptt/pipelines/csv.py b/ptt-crawler/scraptt/pipelines/csv.py new file mode 100644 index 0000000000000000000000000000000000000000..46c8d8c38b79e7750c9a6ea167e759bbd55cfabb --- /dev/null +++ b/ptt-crawler/scraptt/pipelines/csv.py @@ -0,0 +1,45 @@ +from pathlib import Path +from io import BufferedWriter +from datetime import datetime +from ..spiders import PttSpider +from typing import Any, Dict, Tuple +from scrapy.exporters import BaseItemExporter, CsvItemExporter + + +class CsvPipeline: + """ + The CsvPipeline object writes the scraped item to csv. + """ + + def open_spider(self, spider: PttSpider) -> None: + self.exporters_list: Dict[str, Tuple[BaseItemExporter, BufferedWriter]] = {} + + def _exporter_for_item( + self, item: Dict[str, Any], spider: PttSpider + ) -> CsvItemExporter: + data_dir = spider.data_dir + board = item.pop("board") + date = datetime.strptime(item["date"], "%Y-%m-%d %H:%M:%S") + year = date.year + month = date.month + dir_path = f"{data_dir}/{board}/{year}" + file_path = f"{dir_path}/{board}_{year}_{month}" + Path(dir_path).mkdir(parents=True, exist_ok=True) + + if file_path not in self.exporters_list: + file = open(f"{file_path}.csv", "wb") + exporter = CsvItemExporter(file) + exporter.start_exporting() + self.exporters_list[file_path] = (exporter, file) + + return self.exporters_list[file_path][0] + + def process_item(self, item: Dict[str, Any], spider: PttSpider) -> Dict[str, Any]: + exporter = self._exporter_for_item(item, spider) + exporter.export_item(item) + return item + + def close_spider(self, spider: PttSpider) -> None: + for exporter, csv_file in self.exporters_list.values(): + exporter.finish_exporting() + csv_file.close() diff --git a/ptt-crawler/scraptt/settings.py b/ptt-crawler/scraptt/settings.py new file mode 100644 index 0000000000000000000000000000000000000000..5c6c7ce841158184a80426776022e69ad6d0e032 --- /dev/null +++ b/ptt-crawler/scraptt/settings.py @@ -0,0 +1,96 @@ +# Scrapy settings for scraptt project +# +# For simplicity, this file contains only settings considered important or +# commonly used. You can find more settings consulting the documentation: +# +# https://docs.scrapy.org/en/latest/topics/settings.html +# https://docs.scrapy.org/en/latest/topics/downloader-middleware.html +# https://docs.scrapy.org/en/latest/topics/spider-middleware.html + +BOT_NAME = "scraptt" + +SPIDER_MODULES = ["scraptt.spiders"] +NEWSPIDER_MODULE = "scraptt.spiders" + + +# Crawl responsibly by identifying yourself (and your website) on the user-agent +# USER_AGENT = 'scraptt (+http://www.yourdomain.com)' + +# Obey robots.txt rules +ROBOTSTXT_OBEY = False + +# Configure maximum concurrent requests performed by Scrapy (default: 16) +CONCURRENT_REQUESTS = 16 + +# Configure a delay for requests for the same website (default: 0) +# See https://docs.scrapy.org/en/latest/topics/settings.html#download-delay +# See also autothrottle settings and docs +DOWNLOAD_DELAY = 0.4 +# The download delay setting will honor only one of: +CONCURRENT_REQUESTS_PER_DOMAIN = 16 +CONCURRENT_REQUESTS_PER_IP = 16 + +# Disable cookies (enabled by default) +COOKIES_ENABLED = True + +# Disable Telnet Console (enabled by default) +TELNETCONSOLE_ENABLED = False + +# Override the default request headers: +# DEFAULT_REQUEST_HEADERS = { +# 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', +# 'Accept-Language': 'en', +# } + +# Enable or disable spider middlewares +# See https://docs.scrapy.org/en/latest/topics/spider-middleware.html +# SPIDER_MIDDLEWARES = { +# 'scraptt.middlewares.ScrapttSpiderMiddleware': 543, +# } + +# Enable or disable downloader middlewares +# See https://docs.scrapy.org/en/latest/topics/downloader-middleware.html +DOWNLOADER_MIDDLEWARES = { + # "scraptt.middlewares.ScrapttDownloaderMiddleware": 543, + "scraptt.middlewares.PyqueryMiddleware": 543, + "scrapy.downloadermiddlewares.useragent.UserAgentMiddleware": None, + "scrapy_user_agents.middlewares.RandomUserAgentMiddleware": 400, +} + +# Enable or disable extensions +# See https://docs.scrapy.org/en/latest/topics/extensions.html +EXTENSIONS = { + "scrapy.extensions.telnet.TelnetConsole": None, +} + +# Configure item pipelines +# See https://docs.scrapy.org/en/latest/topics/item-pipeline.html +ITEM_PIPELINES = { + 'scraptt.pipelines.CsvPipeline': 300, +} + +# Enable and configure the AutoThrottle extension (disabled by default) +# See https://docs.scrapy.org/en/latest/topics/autothrottle.html +# AUTOTHROTTLE_ENABLED = True +# The initial download delay +# AUTOTHROTTLE_START_DELAY = 5 +# The maximum download delay to be set in case of high latencies +# AUTOTHROTTLE_MAX_DELAY = 60 +# The average number of requests Scrapy should be sending in parallel to +# each remote server +# AUTOTHROTTLE_TARGET_CONCURRENCY = 1.0 +# Enable showing throttling stats for every response received: +# AUTOTHROTTLE_DEBUG = False + +# Enable and configure HTTP caching (disabled by default) +# See https://docs.scrapy.org/en/latest/topics/downloader-middleware.html#httpcache-middleware-settings +# HTTPCACHE_ENABLED = True +# HTTPCACHE_EXPIRATION_SECS = 0 +# HTTPCACHE_DIR = 'httpcache' +# HTTPCACHE_IGNORE_HTTP_CODES = [] +# HTTPCACHE_STORAGE = 'scrapy.extensions.httpcache.FilesystemCacheStorage' + + +RETRY_ENABLED = True +RETRY_HTTP_CODES = [500, 502, 503, 504, 520, 521, 522, 524, 525, 408, 429] +RETRY_TIMES = 5 diff --git a/ptt-crawler/scraptt/spiders/__init__.py b/ptt-crawler/scraptt/spiders/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..d9dcde8d7f8a1620babc615afbc8c424d134e8ca --- /dev/null +++ b/ptt-crawler/scraptt/spiders/__init__.py @@ -0,0 +1,4 @@ +from .ptt import PttSpider + + +__all__ = ["PttSpider"] diff --git a/ptt-crawler/scraptt/spiders/base/__init__.py b/ptt-crawler/scraptt/spiders/base/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..9905999f7ad4d4a47d5d5cd0d9221840c112a0e3 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/base/__init__.py @@ -0,0 +1,4 @@ +from .base import BaseSpider + + +__all__ = ["BaseSpider"] diff --git a/ptt-crawler/scraptt/spiders/base/base.py b/ptt-crawler/scraptt/spiders/base/base.py new file mode 100644 index 0000000000000000000000000000000000000000..1b75e32e01d139c22d74b2ba611258f59ba527e0 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/base/base.py @@ -0,0 +1,63 @@ +from scrapy import Spider +from typing import Optional +from ..utils.parsers.html import ( + IndexParser, + LatestIndexParser, + YearBackwardIndexParser, + get_title_tags, +) +from abc import ABC, abstractmethod +from ..utils.requests import fetch_ptt_boards +from scrapy.http.response.html import HtmlResponse + + +class BaseSpider(Spider, ABC): + """ + The BasePostSpider object defines the behaviour for crawling and parsing ptt posts. + """ + + allowed_domains = ["ptt.cc"] + + def __init__( + self, + boards: str, + data_dir: str = "./data", + ip_cache: bool = False, + scrap_all: Optional[bool] = None, + index_from: Optional[int] = None, + index_to: Optional[int] = None, + since: Optional[int] = None, + *args, + **kwargs + ) -> None: + super().__init__(*args, **kwargs) + self.boards = boards.split(",") + self.data_dir = data_dir + self.ip_cache = ip_cache + self.scrap_all = scrap_all + self.index_from = index_from + self.index_to = index_to + self.since = since + + def start_requests(self): + return fetch_ptt_boards( + self.boards, self.parse_index, self.index_from, self.index_to + ) + + def parse_index(self, response: HtmlResponse): + title_tags = get_title_tags(response) + + if self.scrap_all: + return LatestIndexParser(self.logger).parse(response, self.parse_index) + elif self.since: + return YearBackwardIndexParser( + self.since, + title_tags, + self.logger, + ).parse(response, callback=self.parse, self_callback=self.parse_index) + else: + return IndexParser(title_tags).parse(self.parse) + + @abstractmethod + def parse(self, response: HtmlResponse, **kwargs): + pass diff --git a/ptt-crawler/scraptt/spiders/ptt.py b/ptt-crawler/scraptt/spiders/ptt.py new file mode 100644 index 0000000000000000000000000000000000000000..9e24985f701705194ba801b9c13bde483d1b0f54 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/ptt.py @@ -0,0 +1,46 @@ +import asyncio +from .base import BaseSpider +from ..items import ScrapttItem +from scrapy.http.response.html import HtmlResponse +from .utils.parsers.posts.meta import get_meta_data +from .utils.parsers.posts.ip import get_ip, get_ip_loc +from .utils.parsers.posts.comments import count_comments + + +async def get_post_data(response: HtmlResponse): + return await asyncio.gather( + *[get_meta_data(response), count_comments(response), get_ip(response)] + ) + + +class PttSpider(BaseSpider): + name = "ptt" + + def __init__(self, **kwargs) -> None: + super().__init__(**kwargs) + + def parse(self, response: HtmlResponse): + post_url = response.url + meta_data, comment_counter, ip = asyncio.run(get_post_data(response)) + author, alias, board, title, date = meta_data + ups = comment_counter["推"] + downs = comment_counter["噓"] + comments = comment_counter["→"] + city, country = get_ip_loc(ip, self.ip_cache) + + data = { + "board": board, + "author": author, + "alias": alias, + "title": title, + "date": date, + "ip": ip, + "city": city, + "country": country, + "ups": ups, + "downs": downs, + "comments": comments, + "url": post_url, + } + + yield ScrapttItem(**data).dict() diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/html/__init__.py b/ptt-crawler/scraptt/spiders/utils/parsers/html/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..b31c8062fbcafa6f97cddcdb4ae051bfdf1846e0 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/html/__init__.py @@ -0,0 +1,12 @@ +from .index import IndexParser +from .utils import get_title_tags +from .latest_index import LatestIndexParser +from .year_backward_index import YearBackwardIndexParser + + +__all__ = [ + "IndexParser", + "get_title_tags", + "LatestIndexParser", + "YearBackwardIndexParser", +] diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/html/base.py b/ptt-crawler/scraptt/spiders/utils/parsers/html/base.py new file mode 100644 index 0000000000000000000000000000000000000000..4647251bae12f89ea68fad8aba308853d8d46d74 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/html/base.py @@ -0,0 +1,15 @@ +from typing import Callable +from abc import ABC, abstractmethod +from scrapy.http.response.html import HtmlResponse + + +class Parser(ABC): + """ + The Parser object defines the behaviour for processing the response and + returning scraped data or more URLs to follow. + """ + + @abstractmethod + def parse(self, response: HtmlResponse, callback: Callable, **kwargs): + """The parse method initiates the parsing processes.""" + pass diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/html/index.py b/ptt-crawler/scraptt/spiders/utils/parsers/html/index.py new file mode 100644 index 0000000000000000000000000000000000000000..524b742fcabddd5937bc9187a2c842c7c837453f --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/html/index.py @@ -0,0 +1,21 @@ +from .base import Parser +from .....configs import COOKIES +from typing import Callable, List +from dataclasses import dataclass +from scrapy import Request, Selector + + +@dataclass +class IndexParser(Parser): + """ + The IndexParser object parses one of the index.html files. + """ + + title_tags: List[Selector] + + def parse(self, callback: Callable): + tag_lists = list(self.title_tags.items()) + + for title_tag in tag_lists: + url = title_tag.attr("href") + yield Request(url, cookies=COOKIES, callback=callback) diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/html/latest_index.py b/ptt-crawler/scraptt/spiders/utils/parsers/html/latest_index.py new file mode 100644 index 0000000000000000000000000000000000000000..b0b3d88f397c41bf4553d29bb244092c70c61d45 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/html/latest_index.py @@ -0,0 +1,36 @@ +import re +from .base import Parser +from scrapy import Request +from typing import Callable +from .....configs import COOKIES +from logging import LoggerAdapter +from dataclasses import dataclass +from scrapy.http.response.html import HtmlResponse + + +@dataclass +class LatestIndexParser(Parser): + """ + The LatestIndexParser objects parses the latest index.html file. + """ + + logger: LoggerAdapter + + def get_latest_index(self, prev_url: str): + return int(re.search(r"index(\d{1,6})\.html", prev_url).group(1)) + + def get_board(self, url: str): + return re.search(r"www\.ptt\.cc\/bbs\/([\w\d\-_]{1,30})\/", url).group(1) + + def parse(self, response: HtmlResponse, callback: Callable): + prev_url = response.css('.btn.wide:contains("上頁")::attr(href)').get() + self.logger.info(f"index link: {prev_url}") + + latest_index = self.get_latest_index(prev_url) + board = self.get_board(response.url) + + for index in range(1, latest_index + 1): + url = f"https://www.ptt.cc/bbs/{board}/index{index}.html" + self.logger.info(f"index link: {url}") + + yield Request(url, cookies=COOKIES, callback=callback) \ No newline at end of file diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/html/utils.py b/ptt-crawler/scraptt/spiders/utils/parsers/html/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..aa777a372adb33c6d94a2c4ae128251172b80cff --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/html/utils.py @@ -0,0 +1,18 @@ +from typing import List +from scrapy.selector import Selector +from scrapy.http.response.html import HtmlResponse + + +def get_title_tags(response: HtmlResponse) -> List[Selector]: + """The get_title_tags function gets the title tags DOM. + Args: + response (HtmlResponse): the scrapy HtmlResponse. + Returns: + a list of scrapy anchor tag selectors + """ + title_css = ".r-ent .title a" + + if response.url.endswith("index.html"): + return response.dom(".r-list-sep").prev_all(title_css) + + return response.dom(title_css) diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/html/year_backward_index.py b/ptt-crawler/scraptt/spiders/utils/parsers/html/year_backward_index.py new file mode 100644 index 0000000000000000000000000000000000000000..4d74282df2304f644b10ee356182ccbeb56a1ba1 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/html/year_backward_index.py @@ -0,0 +1,44 @@ +import re +from .base import Parser +from datetime import datetime +from .....configs import COOKIES +from logging import LoggerAdapter +from typing import Callable, List +from dataclasses import dataclass +from scrapy import Request, Selector +from scrapy.http.response.html import HtmlResponse + + +@dataclass +class YearBackwardIndexParser(Parser): + """ + The YearBackwardIndexParser object parses the index.html files from a year in the + past to the current one. + """ + + since: str + title_tags: List[Selector] + logger: LoggerAdapter + + def parse( + self, response: HtmlResponse, callback: Callable, self_callback: Callable + ): + for title_tag in reversed(list(self.title_tags.items())): + title = title_tag.text() + post_url = title_tag.attr("href") + timestamp = re.search(r"(\d{10})", post_url).group(1) + + if int(timestamp) < int(self.since): + return None + + self.logger.info( + f"+ {title}, {post_url}, {datetime.fromtimestamp(int(timestamp))}" + ) + + yield Request(post_url, cookies=COOKIES, callback=callback) + + prev_url = response.dom('.btn.wide:contains("上頁")').attr("href") + self.logger.info(f"index link: {prev_url}") + + if prev_url: + yield Request(prev_url, cookies=COOKIES, callback=self_callback) diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/posts/comments/__init__.py b/ptt-crawler/scraptt/spiders/utils/parsers/posts/comments/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..b615d37205f6082fe10899e8e7a2cc2f6da0e91d --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/posts/comments/__init__.py @@ -0,0 +1,4 @@ +from .counter import count_comments + + +__all__ = ["count_comments"] diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/posts/comments/counter.py b/ptt-crawler/scraptt/spiders/utils/parsers/posts/comments/counter.py new file mode 100644 index 0000000000000000000000000000000000000000..ad69d476b466cb6041b42a4ca9895b382c4a05bc --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/posts/comments/counter.py @@ -0,0 +1,17 @@ +from typing import List +from collections import Counter +from scrapy.http.response.html import HtmlResponse + + +async def count_comments(response: HtmlResponse) -> Counter: + """The count_comments function counts the total number of comments in a ptt post. + + Args: + response (HtmlResponse): the response to parse + Returns: + a Counter object. + """ + + push_tags: List[str] = response.css('span[class*="push-tag"]::text').getall() + total_comments = [push_tag.strip() for push_tag in push_tags] + return Counter(total_comments) diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/posts/ip/__init__.py b/ptt-crawler/scraptt/spiders/utils/parsers/posts/ip/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..5e3e520bc88073be046668080199cba1d1a87105 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/posts/ip/__init__.py @@ -0,0 +1,5 @@ +from .ip import get_ip +from .location import get_ip_loc + + +__all__ = ["get_ip", "get_ip_loc"] diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/posts/ip/ip.py b/ptt-crawler/scraptt/spiders/utils/parsers/posts/ip/ip.py new file mode 100644 index 0000000000000000000000000000000000000000..6c003f406cf4b39ed9e9de55ccf4ef784c974515 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/posts/ip/ip.py @@ -0,0 +1,33 @@ +import re +from scrapy.http.response.html import HtmlResponse + + +async def get_ip(response: HtmlResponse) -> str: + """The get_ip function gets the ip address from a ptt post. + + Args: + response (HtmlResponse): the response to parse + Returns: + a str + """ + f2_spans = response.dom(".f2") + old_ip_format = "([0-9.]*)$" + old_ip = re.search(old_ip_format, f"{f2_spans}").group(1) + + if old_ip: + return old_ip + + f2_spans_list = [f2_span.text() for f2_span in f2_spans.items()] + + try: + text = [ + f2_span + for f2_span in f2_spans_list + if re.match(r"※ 發信站: 批踢踢實業坊\(ptt\.cc\), 來自:", f2_span) + ][0] + return re.search(r"來自: ([0-9.]*)", text).group(1) + + except: + ip_match = r"\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}" + text = [span for span in f2_spans_list if re.findall(ip_match, span)][-1] + return re.findall(ip_match, text)[-1] diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/posts/ip/location.py b/ptt-crawler/scraptt/spiders/utils/parsers/posts/ip/location.py new file mode 100644 index 0000000000000000000000000000000000000000..1df567ee2ac0d4c5792e1ebe4477e360d27e20ab --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/posts/ip/location.py @@ -0,0 +1,51 @@ +import re +import requests +from typing import Tuple +from ......models import redis_cli +from requests.adapters import HTTPAdapter, Retry +from scrapy.http.response.html import HtmlResponse + + +def fetch_ip(ip: str) -> Tuple[str, str]: + session = requests.Session() + retries = Retry(total=5, backoff_factor=1, status_forcelist=[502, 503, 504]) + session.mount("http://", HTTPAdapter(max_retries=retries)) + + response = requests.get(f"http://www.geoplugin.net/json.gp?ip={ip}") + result = response.json() + city = result["geoplugin_city"] + country = result["geoplugin_countryName"] + return city, country + + +def fetch_ip_with_cache(ip) -> Tuple[str, str]: + ip_result = redis_cli.hgetall(ip) + + if ip_result: + city = ip_result["city"] + country = ip_result["country"] + return city, country + + city, country = fetch_ip(ip) + + ttl = 10 * 60 + redis_cli.hset(ip, mapping={"city": city, "country": country}) + redis_cli.expire(name=ip, time=ttl) + + return city, country + + +def get_ip_loc(ip: str, ip_cache: bool) -> Tuple[str, str]: + """The get_ip_loc function get info from an ip. + + Args: + ip (str): the ip from a ptt post. + ip_cache (bool): a boolean that is used to determine whether + to enable redis service to cache ip. + Returns: + a tuple, containing city and country + """ + if ip_cache: + return fetch_ip_with_cache(ip) + + return fetch_ip(ip) diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/posts/meta/__init__.py b/ptt-crawler/scraptt/spiders/utils/parsers/posts/meta/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..f2fc1b3a09b31114dc82325631bb5eaf235a7f69 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/posts/meta/__init__.py @@ -0,0 +1,3 @@ +from .post import get_meta_data + +__all__ = ['get_meta_data'] \ No newline at end of file diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/posts/meta/date.py b/ptt-crawler/scraptt/spiders/utils/parsers/posts/meta/date.py new file mode 100644 index 0000000000000000000000000000000000000000..f39cdb22538c8f22fd29e77d796ba475fb9af047 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/posts/meta/date.py @@ -0,0 +1,22 @@ +import re +from datetime import datetime + + +async def format_date(str_date: str) -> str: + """The format_date function formats dates and times of a ptt post. + + Args: + str_date (str): a string date from a ptt post + Returns: + a str + """ + str_format = "%Y-%m-%d %H:%M:%S" + + try: + return datetime.strptime(str_date, "%a %b %d %H:%M:%S %Y").strftime(str_format) + except: + # handle incomplete date + str_date = re.match(r"(.*\d{2}:\d{2}:\d{2}).*", str_date).group(1) + date = datetime.strptime(str_date, "%a %b %d %H:%M:%S") + date = date.replace(year=datetime.now().year) + return date.strftime(str_format) diff --git a/ptt-crawler/scraptt/spiders/utils/parsers/posts/meta/post.py b/ptt-crawler/scraptt/spiders/utils/parsers/posts/meta/post.py new file mode 100644 index 0000000000000000000000000000000000000000..20529049c702e95e4c1c7435641be1965fe4f886 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/parsers/posts/meta/post.py @@ -0,0 +1,29 @@ +import re +from typing import List +from .date import format_date +from scrapy.http.response.html import HtmlResponse + +meta_tag_selector = '//*[@id="main-content"]/div/span[@class="article-meta-tag"]' + + +async def get_meta_data(response: HtmlResponse) -> List[str]: + """The get_meta_data function gets the meta data from a ptt post. + + Args: + response (HtmlResponse): the response to parse + Returns: + a list of strings + """ + + meta_tag = response.xpath( + f"{meta_tag_selector}/following-sibling::*/text()" + ).getall() + + author_info = meta_tag[0] + author = re.search(r"([^(]*)", author_info).group(1).strip() + alias_match = re.search(r"\((.*)\)", author_info) + alias = alias_match.group(1) if alias_match else "" + meta_tag[0] = author + meta_tag[-1] = await format_date(meta_tag[-1]) + meta_tag.insert(1, alias) + return meta_tag diff --git a/ptt-crawler/scraptt/spiders/utils/requests/__init__.py b/ptt-crawler/scraptt/spiders/utils/requests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..02d5781ae6d386f40a2eadccded15b1878ffd9b9 --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/requests/__init__.py @@ -0,0 +1,4 @@ +from .requests import fetch_ptt_boards + + +__all__ = ["fetch_ptt_boards"] diff --git a/ptt-crawler/scraptt/spiders/utils/requests/requests.py b/ptt-crawler/scraptt/spiders/utils/requests/requests.py new file mode 100644 index 0000000000000000000000000000000000000000..31153bd03bff3b2df1a8959649bf4ee94d950b1a --- /dev/null +++ b/ptt-crawler/scraptt/spiders/utils/requests/requests.py @@ -0,0 +1,35 @@ +from scrapy import Request +from ....configs import PTT_BOARD, COOKIES +from typing import Callable, List, Optional + + +def fetch_ptt_boards( + boards_list: List[str], + callback: Callable, + index_from: Optional[str] = None, + index_to: Optional[str] = None, +): + """The fetch_ptt_boards function fetches the ptt boards htm indexes. + + Args: + boards_list (list): a list of boards + callback (Callable): a scrapy parse function + index_from (str | None): the starting html index + index_to (str | None): the ending html index + Returns: + a scrapy Request. + """ + + for board in boards_list: + if index_from is not None and index_to is not None: + if int(index_from) > int(index_to): + raise ValueError( + "the value of `index_from` cannot be greater than `index_to`." + ) + + for index in range(int(index_from), int(index_to) + 1): + url = PTT_BOARD.format(board, index) + yield Request(url, cookies=COOKIES, callback=callback) + else: + url = PTT_BOARD.format(board, "") + yield Request(url, cookies=COOKIES, callback=callback) diff --git a/ptt-crawler/scrapy.cfg b/ptt-crawler/scrapy.cfg new file mode 100644 index 0000000000000000000000000000000000000000..b63b4d360864a952c58c25ecceceade65ebd5fef --- /dev/null +++ b/ptt-crawler/scrapy.cfg @@ -0,0 +1,11 @@ +# Automatically created by: scrapy startproject +# +# For more information about the [deploy] section see: +# https://scrapyd.readthedocs.io/en/latest/deploy.html + +[settings] +default = scraptt.settings + +[deploy] +#url = http://localhost:6800/ +project = scraptt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..588ca183841a1bc9ed008a373bb4ade000b3ce2f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +aiofiles==0.8.0 +cwngraph==0.4.0 +distiltag==0.2.2 +streamlit==1.12.2 +python-dotenv==0.20.0 +cwnsensetagger==0.1.6 +ckip-transformers==0.3.2 diff --git a/twNLP-app/Dockerfile b/twNLP-app/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..13cf5037e7ad432722fee410382abd8dddd80f5c --- /dev/null +++ b/twNLP-app/Dockerfile @@ -0,0 +1,20 @@ +FROM python:3.7-slim + +WORKDIR /app + +COPY ./Pipfile* ./ + +RUN pip install pipenv && \ + apt-get update && \ + apt-get install -y --no-install-recommends gcc python3-dev libssl-dev && \ + pipenv install --deploy --system && \ + apt-get remove -y gcc python3-dev libssl-dev && \ + apt-get autoremove -y && \ + pip uninstall pipenv -y \ + && rm -rf /var/lib/apt/lists/* + +COPY ./.streamlit ./.streamlit + +COPY ./src ./src + +EXPOSE 8501 \ No newline at end of file diff --git a/twNLP-app/LICENSE b/twNLP-app/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..261eeb9e9f8b2b4b0d119366dda99c6fd7d35c64 --- /dev/null +++ b/twNLP-app/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/twNLP-app/Pipfile b/twNLP-app/Pipfile new file mode 100644 index 0000000000000000000000000000000000000000..95ce3549b10697b0880efd930f22c73ccdd8aa24 --- /dev/null +++ b/twNLP-app/Pipfile @@ -0,0 +1,18 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +streamlit = "*" +ckip-transformers = "*" +cwngraph = "*" +distiltag = "*" +cwnsensetagger = "*" +aiofiles = "*" +python-dotenv = "*" + +[dev-packages] + +[requires] +python_version = "3.7" diff --git a/twNLP-app/Pipfile.lock b/twNLP-app/Pipfile.lock new file mode 100644 index 0000000000000000000000000000000000000000..2bb7aa7470e837a178ca0d6ca29d7582fdd10c86 --- /dev/null +++ b/twNLP-app/Pipfile.lock @@ -0,0 +1,953 @@ +{ + "_meta": { + "hash": { + "sha256": "c3ccdc36761e5f63f4df701a2b449aae3db40ccf5b055b6fc06ba39e61001309" + }, + "pipfile-spec": 6, + "requires": { + "python_version": "3.7" + }, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "aiofiles": { + "hashes": [ + "sha256:7a973fc22b29e9962d0897805ace5856e6a566ab1f0c8e5c91ff6c866519c937", + "sha256:8334f23235248a3b2e83b2c3a78a22674f39969b96397126cc93664d9a901e59" + ], + "index": "pypi", + "version": "==0.8.0" + }, + "altair": { + "hashes": [ + "sha256:0c724848ae53410c13fa28be2b3b9a9dcb7b5caa1a70f7f217bd663bb419935a", + "sha256:d87d9372e63b48cd96b2a6415f0cf9457f50162ab79dc7a31cd7e024dd840026" + ], + "markers": "python_version >= '3.7'", + "version": "==4.2.0" + }, + "attrs": { + "hashes": [ + "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6", + "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c" + ], + "markers": "python_version >= '3.5'", + "version": "==22.1.0" + }, + "backports.zoneinfo": { + "hashes": [ + "sha256:17746bd546106fa389c51dbea67c8b7c8f0d14b5526a579ca6ccf5ed72c526cf", + "sha256:1b13e654a55cd45672cb54ed12148cd33628f672548f373963b0bff67b217328", + "sha256:1c5742112073a563c81f786e77514969acb58649bcdf6cdf0b4ed31a348d4546", + "sha256:4a0f800587060bf8880f954dbef70de6c11bbe59c673c3d818921f042f9954a6", + "sha256:5c144945a7752ca544b4b78c8c41544cdfaf9786f25fe5ffb10e838e19a27570", + "sha256:7b0a64cda4145548fed9efc10322770f929b944ce5cee6c0dfe0c87bf4c0c8c9", + "sha256:8439c030a11780786a2002261569bdf362264f605dfa4d65090b64b05c9f79a7", + "sha256:8961c0f32cd0336fb8e8ead11a1f8cd99ec07145ec2931122faaac1c8f7fd987", + "sha256:89a48c0d158a3cc3f654da4c2de1ceba85263fafb861b98b59040a5086259722", + "sha256:a76b38c52400b762e48131494ba26be363491ac4f9a04c1b7e92483d169f6582", + "sha256:da6013fd84a690242c310d77ddb8441a559e9cb3d3d59ebac9aca1a57b2e18bc", + "sha256:e55b384612d93be96506932a786bbcde5a2db7a9e6a4bb4bffe8b733f5b9036b", + "sha256:e81b76cace8eda1fca50e345242ba977f9be6ae3945af8d46326d776b4cf78d1", + "sha256:e8236383a20872c0cdf5a62b554b27538db7fa1bbec52429d8d106effbaeca08", + "sha256:f04e857b59d9d1ccc39ce2da1021d196e47234873820cbeaad210724b1ee28ac", + "sha256:fadbfe37f74051d024037f223b8e001611eac868b5c5b06144ef4d8b799862f2" + ], + "markers": "python_version < '3.9'", + "version": "==0.2.1" + }, + "beautifulsoup4": { + "hashes": [ + "sha256:58d5c3d29f5a36ffeb94f02f0d786cd53014cf9b3b3951d42e0080d8a9498d30", + "sha256:ad9aa55b65ef2808eb405f46cf74df7fcb7044d5cbc26487f96eb2ef2e436693" + ], + "markers": "python_version >= '3.6'", + "version": "==4.11.1" + }, + "blinker": { + "hashes": [ + "sha256:1eb563df6fdbc39eeddc177d953203f99f097e9bf0e2b8f9f3cf18b6ca425e36", + "sha256:923e5e2f69c155f2cc42dafbbd70e16e3fde24d2d4aa2ab72fbe386238892462" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==1.5" + }, + "cachetools": { + "hashes": [ + "sha256:6a94c6402995a99c3970cc7e4884bb60b4a8639938157eeed436098bf9831757", + "sha256:f9f17d2aec496a9aa6b76f53e3b614c965223c061982d434d160f930c698a9db" + ], + "markers": "python_version ~= '3.7'", + "version": "==5.2.0" + }, + "certifi": { + "hashes": [ + "sha256:84c85a9078b11105f04f3036a9482ae10e4621616db313fe045dd24743a0820d", + "sha256:fe86415d55e84719d75f8b69414f6438ac3547d2078ab91b67e779ef69378412" + ], + "markers": "python_version >= '3.6'", + "version": "==2022.6.15" + }, + "charset-normalizer": { + "hashes": [ + "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845", + "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f" + ], + "markers": "python_version >= '3.6'", + "version": "==2.1.1" + }, + "ckip-transformers": { + "hashes": [ + "sha256:48affb723a40e535ccbcc0b4bbb14a86695373167218786eb00b06531cebb22e", + "sha256:a13c8ec21e209d3854601dae623f91046d2ee2c7f3fcb693752bfd57e896c776" + ], + "index": "pypi", + "version": "==0.3.2" + }, + "click": { + "hashes": [ + "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e", + "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48" + ], + "markers": "python_version >= '3.7'", + "version": "==8.1.3" + }, + "commonmark": { + "hashes": [ + "sha256:452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60", + "sha256:da2f38c92590f83de410ba1a3cbceafbc74fee9def35f9251ba9a971d6d66fd9" + ], + "version": "==0.9.1" + }, + "cwngraph": { + "hashes": [ + "sha256:20acb3e9b6ac86e724537718d729c0fc81c7634932213bef42d8c03c94ae9236", + "sha256:bb88150cfa088db51b19094794de156d1214539cb67928f35c424e81ab39c392" + ], + "index": "pypi", + "version": "==0.4.0" + }, + "cwnsensetagger": { + "hashes": [ + "sha256:00727031fa61585d8b21465630b134b35be37138b6edbad7b7f43c76769a1ca0", + "sha256:f3a7a720ab81c452cf87294f84bd9e62357000127db39c32526da19fdeddafa0" + ], + "index": "pypi", + "version": "==0.1.6" + }, + "decorator": { + "hashes": [ + "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330", + "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186" + ], + "markers": "python_version >= '3.5'", + "version": "==5.1.1" + }, + "distiltag": { + "hashes": [ + "sha256:24dff55253d54e237aa1339d5d7252de3e2c832b5082ba0751fd946db1f085bd", + "sha256:2bc723a952cae40ced3478a04698399a91612f8025142c7fb313fd905a6b7a7e" + ], + "index": "pypi", + "version": "==0.2.2" + }, + "entrypoints": { + "hashes": [ + "sha256:b706eddaa9218a19ebcd67b56818f05bb27589b1ca9e8d797b74affad4ccacd4", + "sha256:f174b5ff827504fd3cd97cc3f8649f3693f51538c7e4bdf3ef002c8429d42f9f" + ], + "markers": "python_version >= '3.6'", + "version": "==0.4" + }, + "filelock": { + "hashes": [ + "sha256:55447caa666f2198c5b6b13a26d2084d26fa5b115c00d065664b2124680c4edc", + "sha256:617eb4e5eedc82fc5f47b6d61e4d11cb837c56cb4544e39081099fa17ad109d4" + ], + "markers": "python_version >= '3.7'", + "version": "==3.8.0" + }, + "gdown": { + "hashes": [ + "sha256:8217061063d8afcaad9d8e2d5410fbc0989c2b3f0946a6bd9bfeb9461616cc6a" + ], + "version": "==4.5.1" + }, + "gitdb": { + "hashes": [ + "sha256:8033ad4e853066ba6ca92050b9df2f89301b8fc8bf7e9324d412a63f8bf1a8fd", + "sha256:bac2fd45c0a1c9cf619e63a90d62bdc63892ef92387424b855792a6cabe789aa" + ], + "markers": "python_version >= '3.6'", + "version": "==4.0.9" + }, + "gitpython": { + "hashes": [ + "sha256:1c885ce809e8ba2d88a29befeb385fcea06338d3640712b59ca623c220bb5704", + "sha256:5b68b000463593e05ff2b261acff0ff0972df8ab1b70d3cdbd41b546c8b8fc3d" + ], + "markers": "python_version >= '3.7'", + "version": "==3.1.27" + }, + "huggingface-hub": { + "hashes": [ + "sha256:6395f26aaf44bbb4a73d3e14aca228fa39534696f651c6c82a6347f8c9f5950b", + "sha256:7a588046bdeb84e7bc99b3da58bbb4312a56d94ba51ebc60dfe610c18b3d0b9f" + ], + "markers": "python_version >= '3.7'", + "version": "==0.9.1" + }, + "idna": { + "hashes": [ + "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff", + "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d" + ], + "markers": "python_version >= '3.5'", + "version": "==3.3" + }, + "importlib-metadata": { + "hashes": [ + "sha256:637245b8bab2b6502fcbc752cc4b7a6f6243bb02b31c5c26156ad103d3d45670", + "sha256:7401a975809ea1fdc658c3aa4f78cc2195a0e019c5cbc4c06122884e9ae80c23" + ], + "markers": "python_version >= '3.7'", + "version": "==4.12.0" + }, + "importlib-resources": { + "hashes": [ + "sha256:5481e97fb45af8dcf2f798952625591c58fe599d0735d86b10f54de086a61681", + "sha256:f78a8df21a79bcc30cfd400bdc38f314333de7c0fb619763f6b9dabab8268bb7" + ], + "markers": "python_version < '3.9'", + "version": "==5.9.0" + }, + "jinja2": { + "hashes": [ + "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852", + "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" + ], + "markers": "python_version >= '3.7'", + "version": "==3.1.2" + }, + "joblib": { + "hashes": [ + "sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35", + "sha256:f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6" + ], + "markers": "python_version >= '3.6'", + "version": "==1.1.0" + }, + "jsonschema": { + "hashes": [ + "sha256:15062f4cc6f591400cd528d2c355f2cfa6a57e44c820dc783aee5e23d36a831f", + "sha256:9892b8d630a82990521a9ca630d3446bd316b5ad54dbe981338802787f3e0d2d" + ], + "markers": "python_version >= '3.7'", + "version": "==4.14.0" + }, + "markupsafe": { + "hashes": [ + "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003", + "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88", + "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5", + "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7", + "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a", + "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603", + "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1", + "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135", + "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247", + "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6", + "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601", + "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77", + "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02", + "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e", + "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63", + "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f", + "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980", + "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b", + "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812", + "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff", + "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96", + "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1", + "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925", + "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a", + "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6", + "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e", + "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f", + "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4", + "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f", + "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3", + "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c", + "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a", + "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417", + "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a", + "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a", + "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37", + "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452", + "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933", + "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a", + "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7" + ], + "markers": "python_version >= '3.7'", + "version": "==2.1.1" + }, + "nltk": { + "hashes": [ + "sha256:ba3de02490308b248f9b94c8bc1ac0683e9aa2ec49ee78536d8667afb5e3eec8", + "sha256:d6507d6460cec76d70afea4242a226a7542f85c669177b9c7f562b7cf1b05502" + ], + "markers": "python_version >= '3.7'", + "version": "==3.7" + }, + "numpy": { + "hashes": [ + "sha256:1dbe1c91269f880e364526649a52eff93ac30035507ae980d2fed33aaee633ac", + "sha256:357768c2e4451ac241465157a3e929b265dfac85d9214074985b1786244f2ef3", + "sha256:3820724272f9913b597ccd13a467cc492a0da6b05df26ea09e78b171a0bb9da6", + "sha256:4391bd07606be175aafd267ef9bea87cf1b8210c787666ce82073b05f202add1", + "sha256:4aa48afdce4660b0076a00d80afa54e8a97cd49f457d68a4342d188a09451c1a", + "sha256:58459d3bad03343ac4b1b42ed14d571b8743dc80ccbf27444f266729df1d6f5b", + "sha256:5c3c8def4230e1b959671eb959083661b4a0d2e9af93ee339c7dada6759a9470", + "sha256:5f30427731561ce75d7048ac254dbe47a2ba576229250fb60f0fb74db96501a1", + "sha256:643843bcc1c50526b3a71cd2ee561cf0d8773f062c8cbaf9ffac9fdf573f83ab", + "sha256:67c261d6c0a9981820c3a149d255a76918278a6b03b6a036800359aba1256d46", + "sha256:67f21981ba2f9d7ba9ade60c9e8cbaa8cf8e9ae51673934480e45cf55e953673", + "sha256:6aaf96c7f8cebc220cdfc03f1d5a31952f027dda050e5a703a0d1c396075e3e7", + "sha256:7c4068a8c44014b2d55f3c3f574c376b2494ca9cc73d2f1bd692382b6dffe3db", + "sha256:7c7e5fa88d9ff656e067876e4736379cc962d185d5cd808014a8a928d529ef4e", + "sha256:7f5ae4f304257569ef3b948810816bc87c9146e8c446053539947eedeaa32786", + "sha256:82691fda7c3f77c90e62da69ae60b5ac08e87e775b09813559f8901a88266552", + "sha256:8737609c3bbdd48e380d463134a35ffad3b22dc56295eff6f79fd85bd0eeeb25", + "sha256:9f411b2c3f3d76bba0865b35a425157c5dcf54937f82bbeb3d3c180789dd66a6", + "sha256:a6be4cb0ef3b8c9250c19cc122267263093eee7edd4e3fa75395dfda8c17a8e2", + "sha256:bcb238c9c96c00d3085b264e5c1a1207672577b93fa666c3b14a45240b14123a", + "sha256:bf2ec4b75d0e9356edea834d1de42b31fe11f726a81dfb2c2112bc1eaa508fcf", + "sha256:d136337ae3cc69aa5e447e78d8e1514be8c3ec9b54264e680cf0b4bd9011574f", + "sha256:d4bf4d43077db55589ffc9009c0ba0a94fa4908b9586d6ccce2e0b164c86303c", + "sha256:d6a96eef20f639e6a97d23e57dd0c1b1069a7b4fd7027482a4c5c451cd7732f4", + "sha256:d9caa9d5e682102453d96a0ee10c7241b72859b01a941a397fd965f23b3e016b", + "sha256:dd1c8f6bd65d07d3810b90d02eba7997e32abbdf1277a481d698969e921a3be0", + "sha256:e31f0bb5928b793169b87e3d1e070f2342b22d5245c755e2b81caa29756246c3", + "sha256:ecb55251139706669fdec2ff073c98ef8e9a84473e51e716211b41aa0f18e656", + "sha256:ee5ec40fdd06d62fe5d4084bef4fd50fd4bb6bfd2bf519365f569dc470163ab0", + "sha256:f17e562de9edf691a42ddb1eb4a5541c20dd3f9e65b09ded2beb0799c0cf29bb", + "sha256:fdffbfb6832cd0b300995a2b08b8f6fa9f6e856d562800fea9182316d99c4e8e" + ], + "markers": "python_version < '3.11' and python_version >= '3.7'", + "version": "==1.21.6" + }, + "packaging": { + "hashes": [ + "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb", + "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522" + ], + "markers": "python_version >= '3.6'", + "version": "==21.3" + }, + "pandas": { + "hashes": [ + "sha256:1e4285f5de1012de20ca46b188ccf33521bff61ba5c5ebd78b4fb28e5416a9f1", + "sha256:2651d75b9a167cc8cc572cf787ab512d16e316ae00ba81874b560586fa1325e0", + "sha256:2c21778a688d3712d35710501f8001cdbf96eb70a7c587a3d5613573299fdca6", + "sha256:32e1a26d5ade11b547721a72f9bfc4bd113396947606e00d5b4a5b79b3dcb006", + "sha256:3345343206546545bc26a05b4602b6a24385b5ec7c75cb6059599e3d56831da2", + "sha256:344295811e67f8200de2390093aeb3c8309f5648951b684d8db7eee7d1c81fb7", + "sha256:37f06b59e5bc05711a518aa10beaec10942188dccb48918bb5ae602ccbc9f1a0", + "sha256:552020bf83b7f9033b57cbae65589c01e7ef1544416122da0c79140c93288f56", + "sha256:5cce0c6bbeb266b0e39e35176ee615ce3585233092f685b6a82362523e59e5b4", + "sha256:5f261553a1e9c65b7a310302b9dbac31cf0049a51695c14ebe04e4bfd4a96f02", + "sha256:60a8c055d58873ad81cae290d974d13dd479b82cbb975c3e1fa2cf1920715296", + "sha256:62d5b5ce965bae78f12c1c0df0d387899dd4211ec0bdc52822373f13a3a022b9", + "sha256:7d28a3c65463fd0d0ba8bbb7696b23073efee0510783340a44b08f5e96ffce0c", + "sha256:8025750767e138320b15ca16d70d5cdc1886e8f9cc56652d89735c016cd8aea6", + "sha256:8b6dbec5f3e6d5dc80dcfee250e0a2a652b3f28663492f7dab9a24416a48ac39", + "sha256:a395692046fd8ce1edb4c6295c35184ae0c2bbe787ecbe384251da609e27edcb", + "sha256:a62949c626dd0ef7de11de34b44c6475db76995c2064e2d99c6498c3dba7fe58", + "sha256:aaf183a615ad790801fa3cf2fa450e5b6d23a54684fe386f7e3208f8b9bfbef6", + "sha256:adfeb11be2d54f275142c8ba9bf67acee771b7186a5745249c7d5a06c670136b", + "sha256:b6b87b2fb39e6383ca28e2829cddef1d9fc9e27e55ad91ca9c435572cdba51bf", + "sha256:bd971a3f08b745a75a86c00b97f3007c2ea175951286cdda6abe543e687e5f2f", + "sha256:c69406a2808ba6cf580c2255bcf260b3f214d2664a3a4197d0e640f573b46fd3", + "sha256:d3bc49af96cd6285030a64779de5b3688633a07eb75c124b0747134a63f4c05f", + "sha256:fd541ab09e1f80a2a1760032d665f6e032d8e44055d602d65eeea6e6e85498cb", + "sha256:fe95bae4e2d579812865db2212bb733144e34d0c6785c0685329e5b60fcb85dd" + ], + "markers": "python_full_version >= '3.7.1'", + "version": "==1.3.5" + }, + "pillow": { + "hashes": [ + "sha256:0030fdbd926fb85844b8b92e2f9449ba89607231d3dd597a21ae72dc7fe26927", + "sha256:030e3460861488e249731c3e7ab59b07c7853838ff3b8e16aac9561bb345da14", + "sha256:0ed2c4ef2451de908c90436d6e8092e13a43992f1860275b4d8082667fbb2ffc", + "sha256:136659638f61a251e8ed3b331fc6ccd124590eeff539de57c5f80ef3a9594e58", + "sha256:13b725463f32df1bfeacbf3dd197fb358ae8ebcd8c5548faa75126ea425ccb60", + "sha256:1536ad017a9f789430fb6b8be8bf99d2f214c76502becc196c6f2d9a75b01b76", + "sha256:15928f824870535c85dbf949c09d6ae7d3d6ac2d6efec80f3227f73eefba741c", + "sha256:17d4cafe22f050b46d983b71c707162d63d796a1235cdf8b9d7a112e97b15bac", + "sha256:1802f34298f5ba11d55e5bb09c31997dc0c6aed919658dfdf0198a2fe75d5490", + "sha256:1cc1d2451e8a3b4bfdb9caf745b58e6c7a77d2e469159b0d527a4554d73694d1", + "sha256:1fd6f5e3c0e4697fa7eb45b6e93996299f3feee73a3175fa451f49a74d092b9f", + "sha256:254164c57bab4b459f14c64e93df11eff5ded575192c294a0c49270f22c5d93d", + "sha256:2ad0d4df0f5ef2247e27fc790d5c9b5a0af8ade9ba340db4a73bb1a4a3e5fb4f", + "sha256:2c58b24e3a63efd22554c676d81b0e57f80e0a7d3a5874a7e14ce90ec40d3069", + "sha256:2d33a11f601213dcd5718109c09a52c2a1c893e7461f0be2d6febc2879ec2402", + "sha256:337a74fd2f291c607d220c793a8135273c4c2ab001b03e601c36766005f36885", + "sha256:37ff6b522a26d0538b753f0b4e8e164fdada12db6c6f00f62145d732d8a3152e", + "sha256:3d1f14f5f691f55e1b47f824ca4fdcb4b19b4323fe43cc7bb105988cad7496be", + "sha256:408673ed75594933714482501fe97e055a42996087eeca7e5d06e33218d05aa8", + "sha256:4134d3f1ba5f15027ff5c04296f13328fecd46921424084516bdb1b2548e66ff", + "sha256:4ad2f835e0ad81d1689f1b7e3fbac7b01bb8777d5a985c8962bedee0cc6d43da", + "sha256:50dff9cc21826d2977ef2d2a205504034e3a4563ca6f5db739b0d1026658e004", + "sha256:510cef4a3f401c246cfd8227b300828715dd055463cdca6176c2e4036df8bd4f", + "sha256:5aed7dde98403cd91d86a1115c78d8145c83078e864c1de1064f52e6feb61b20", + "sha256:69bd1a15d7ba3694631e00df8de65a8cb031911ca11f44929c97fe05eb9b6c1d", + "sha256:6bf088c1ce160f50ea40764f825ec9b72ed9da25346216b91361eef8ad1b8f8c", + "sha256:6e8c66f70fb539301e064f6478d7453e820d8a2c631da948a23384865cd95544", + "sha256:727dd1389bc5cb9827cbd1f9d40d2c2a1a0c9b32dd2261db522d22a604a6eec9", + "sha256:74a04183e6e64930b667d321524e3c5361094bb4af9083db5c301db64cd341f3", + "sha256:75e636fd3e0fb872693f23ccb8a5ff2cd578801251f3a4f6854c6a5d437d3c04", + "sha256:7761afe0126d046974a01e030ae7529ed0ca6a196de3ec6937c11df0df1bc91c", + "sha256:7888310f6214f19ab2b6df90f3f06afa3df7ef7355fc025e78a3044737fab1f5", + "sha256:7b0554af24df2bf96618dac71ddada02420f946be943b181108cac55a7a2dcd4", + "sha256:7c7b502bc34f6e32ba022b4a209638f9e097d7a9098104ae420eb8186217ebbb", + "sha256:808add66ea764ed97d44dda1ac4f2cfec4c1867d9efb16a33d158be79f32b8a4", + "sha256:831e648102c82f152e14c1a0938689dbb22480c548c8d4b8b248b3e50967b88c", + "sha256:93689632949aff41199090eff5474f3990b6823404e45d66a5d44304e9cdc467", + "sha256:96b5e6874431df16aee0c1ba237574cb6dff1dcb173798faa6a9d8b399a05d0e", + "sha256:9a54614049a18a2d6fe156e68e188da02a046a4a93cf24f373bffd977e943421", + "sha256:a138441e95562b3c078746a22f8fca8ff1c22c014f856278bdbdd89ca36cff1b", + "sha256:a647c0d4478b995c5e54615a2e5360ccedd2f85e70ab57fbe817ca613d5e63b8", + "sha256:a9c9bc489f8ab30906d7a85afac4b4944a572a7432e00698a7239f44a44e6efb", + "sha256:ad2277b185ebce47a63f4dc6302e30f05762b688f8dc3de55dbae4651872cdf3", + "sha256:b6d5e92df2b77665e07ddb2e4dbd6d644b78e4c0d2e9272a852627cdba0d75cf", + "sha256:bc431b065722a5ad1dfb4df354fb9333b7a582a5ee39a90e6ffff688d72f27a1", + "sha256:bdd0de2d64688ecae88dd8935012c4a72681e5df632af903a1dca8c5e7aa871a", + "sha256:c79698d4cd9318d9481d89a77e2d3fcaeff5486be641e60a4b49f3d2ecca4e28", + "sha256:cb6259196a589123d755380b65127ddc60f4c64b21fc3bb46ce3a6ea663659b0", + "sha256:d5b87da55a08acb586bad5c3aa3b86505f559b84f39035b233d5bf844b0834b1", + "sha256:dcd7b9c7139dc8258d164b55696ecd16c04607f1cc33ba7af86613881ffe4ac8", + "sha256:dfe4c1fedfde4e2fbc009d5ad420647f7730d719786388b7de0999bf32c0d9fd", + "sha256:ea98f633d45f7e815db648fd7ff0f19e328302ac36427343e4432c84432e7ff4", + "sha256:ec52c351b35ca269cb1f8069d610fc45c5bd38c3e91f9ab4cbbf0aebc136d9c8", + "sha256:eef7592281f7c174d3d6cbfbb7ee5984a671fcd77e3fc78e973d492e9bf0eb3f", + "sha256:f07f1f00e22b231dd3d9b9208692042e29792d6bd4f6639415d2f23158a80013", + "sha256:f3fac744f9b540148fa7715a435d2283b71f68bfb6d4aae24482a890aed18b59", + "sha256:fa768eff5f9f958270b081bb33581b4b569faabf8774726b283edb06617101dc", + "sha256:fac2d65901fb0fdf20363fbd345c01958a742f2dc62a8dd4495af66e3ff502a4" + ], + "markers": "python_version >= '3.7'", + "version": "==9.2.0" + }, + "pkgutil-resolve-name": { + "hashes": [ + "sha256:357d6c9e6a755653cfd78893817c0853af365dd51ec97f3d358a819373bbd174", + "sha256:ca27cc078d25c5ad71a9de0a7a330146c4e014c2462d9af19c6b828280649c5e" + ], + "markers": "python_version < '3.9'", + "version": "==1.3.10" + }, + "protobuf": { + "hashes": [ + "sha256:06059eb6953ff01e56a25cd02cca1a9649a75a7e65397b5b9b4e929ed71d10cf", + "sha256:097c5d8a9808302fb0da7e20edf0b8d4703274d140fd25c5edabddcde43e081f", + "sha256:284f86a6207c897542d7e956eb243a36bb8f9564c1742b253462386e96c6b78f", + "sha256:32ca378605b41fd180dfe4e14d3226386d8d1b002ab31c969c366549e66a2bb7", + "sha256:3cc797c9d15d7689ed507b165cd05913acb992d78b379f6014e013f9ecb20996", + "sha256:62f1b5c4cd6c5402b4e2d63804ba49a327e0c386c99b1675c8a0fefda23b2067", + "sha256:69ccfdf3657ba59569c64295b7d51325f91af586f8d5793b734260dfe2e94e2c", + "sha256:6f50601512a3d23625d8a85b1638d914a0970f17920ff39cec63aaef80a93fb7", + "sha256:7403941f6d0992d40161aa8bb23e12575637008a5a02283a930addc0508982f9", + "sha256:755f3aee41354ae395e104d62119cb223339a8f3276a0cd009ffabfcdd46bb0c", + "sha256:77053d28427a29987ca9caf7b72ccafee011257561259faba8dd308fda9a8739", + "sha256:7e371f10abe57cee5021797126c93479f59fccc9693dafd6bd5633ab67808a91", + "sha256:9016d01c91e8e625141d24ec1b20fed584703e527d28512aa8c8707f105a683c", + "sha256:9be73ad47579abc26c12024239d3540e6b765182a91dbc88e23658ab71767153", + "sha256:adc31566d027f45efe3f44eeb5b1f329da43891634d61c75a5944e9be6dd42c9", + "sha256:adfc6cf69c7f8c50fd24c793964eef18f0ac321315439d94945820612849c388", + "sha256:af0ebadc74e281a517141daad9d0f2c5d93ab78e9d455113719a45a49da9db4e", + "sha256:cb29edb9eab15742d791e1025dd7b6a8f6fcb53802ad2f6e3adcb102051063ab", + "sha256:cd68be2559e2a3b84f517fb029ee611546f7812b1fdd0aa2ecc9bc6ec0e4fdde", + "sha256:cdee09140e1cd184ba9324ec1df410e7147242b94b5f8b0c64fc89e38a8ba531", + "sha256:db977c4ca738dd9ce508557d4fce0f5aebd105e158c725beec86feb1f6bc20d8", + "sha256:dd5789b2948ca702c17027c84c2accb552fc30f4622a98ab5c51fcfe8c50d3e7", + "sha256:e250a42f15bf9d5b09fe1b293bdba2801cd520a9f5ea2d7fb7536d4441811d20", + "sha256:ff8d8fa42675249bb456f5db06c00de6c2f4c27a065955917b28c4f15978b9c3" + ], + "markers": "python_version >= '3.7'", + "version": "==3.20.1" + }, + "pyarrow": { + "hashes": [ + "sha256:0238998dc692efcb4e41ae74738d7c1234723271ccf520bd8312dca07d49ef8d", + "sha256:02b820ecd1da02012092c180447de449fc688d0c3f9ff8526ca301cdd60dacd0", + "sha256:1c5a073a930c632058461547e0bc572da1e724b17b6b9eb31a97da13f50cb6e0", + "sha256:29eb3e086e2b26202f3a4678316b93cfb15d0e2ba20f3ec12db8fd9cc07cde63", + "sha256:2c715eca2092273dcccf6f08437371e04d112f9354245ba2fbe6c801879450b7", + "sha256:2e753f8fcf07d8e3a0efa0c8bd51fef5c90281ffd4c5637c08ce42cd0ac297de", + "sha256:3eef8a981f45d89de403e81fb83b8119c20824caddf1404274e41a5d66c73806", + "sha256:4eebdab05afa23d5d5274b24c1cbeb1ba017d67c280f7d39fd8a8f18cbad2ec9", + "sha256:5526a3bfb404ff6d31d62ea582cf2466c7378a474a99ee04d1a9b05de5264541", + "sha256:55328348b9139c2b47450d512d716c2248fd58e2f04e2fc23a65e18726666d42", + "sha256:767cafb14278165ad539a2918c14c1b73cf20689747c21375c38e3fe62884902", + "sha256:7fa56cbd415cef912677270b8e41baad70cde04c6d8a8336eeb2aba85aa93706", + "sha256:7fb02bebc13ab55573d1ae9bb5002a6d20ba767bf8569b52fce5301d42495ab7", + "sha256:81a60bb291a964f63b2717fb1b28f6615ffab7e8585322bfb8a6738e6b321282", + "sha256:8ad430cee28ebc4d6661fc7315747c7a18ae2a74e67498dcb039e1c762a2fb67", + "sha256:92f3977e901db1ef5cba30d6cc1d7942b8d94b910c60f89013e8f7bb86a86eef", + "sha256:9cef618159567d5f62040f2b79b1c7b38e3885f4ffad0ec97cd2d86f88b67cef", + "sha256:a5b390bdcfb8c5b900ef543f911cdfec63e88524fafbcc15f83767202a4a2491", + "sha256:d9eb04db626fa24fdfb83c00f76679ca0d98728cdbaa0481b6402bf793a290c0", + "sha256:da3e0f319509a5881867effd7024099fb06950a0768dad0d6873668bb88cfaba", + "sha256:f11a645a41ee531c3a5edda45dea07c42267f52571f818d388971d33fc7e2d4a", + "sha256:f241bd488c2705df930eedfe304ada71191dcf67d6b98ceda0cc934fd2a8388e", + "sha256:f59bcd5217a3ae1e17870792f82b2ff92df9f3862996e2c78e156c13e56ff62e", + "sha256:f8c46bde1030d704e2796182286d1c56846552c50a39ad5bf5a20c0d8159fc35", + "sha256:fc856628acd8d281652c15b6268ec7f27ebcb015abbe99d9baad17f02adc51f1", + "sha256:fe2ce795fa1d95e4e940fe5661c3c58aee7181c730f65ac5dd8794a77228de59" + ], + "markers": "python_version >= '3.7'", + "version": "==9.0.0" + }, + "pydeck": { + "hashes": [ + "sha256:b446e810e3c615e1604f4364e0e162ba371712805fab97a6b7722200b286b466", + "sha256:f7dec070b954b88d17795a4a41fe59192843f4f4cd9ecedde4eab167d0096c40" + ], + "markers": "python_version >= '3.7'", + "version": "==0.8.0b1" + }, + "pygments": { + "hashes": [ + "sha256:56a8508ae95f98e2b9bdf93a6be5ae3f7d8af858b43e02c5a2ff083726be40c1", + "sha256:f643f331ab57ba3c9d89212ee4a2dabc6e94f117cf4eefde99a0574720d14c42" + ], + "markers": "python_version >= '3.6'", + "version": "==2.13.0" + }, + "pympler": { + "hashes": [ + "sha256:993f1a3599ca3f4fcd7160c7545ad06310c9e12f70174ae7ae8d4e25f6c5d3fa", + "sha256:d260dda9ae781e1eab6ea15bacb84015849833ba5555f141d2d9b7b7473b307d" + ], + "markers": "python_version >= '3.6'", + "version": "==1.0.1" + }, + "pyparsing": { + "hashes": [ + "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb", + "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc" + ], + "markers": "python_full_version >= '3.6.8'", + "version": "==3.0.9" + }, + "pyrsistent": { + "hashes": [ + "sha256:0e3e1fcc45199df76053026a51cc59ab2ea3fc7c094c6627e93b7b44cdae2c8c", + "sha256:1b34eedd6812bf4d33814fca1b66005805d3640ce53140ab8bbb1e2651b0d9bc", + "sha256:4ed6784ceac462a7d6fcb7e9b663e93b9a6fb373b7f43594f9ff68875788e01e", + "sha256:5d45866ececf4a5fff8742c25722da6d4c9e180daa7b405dc0a2a2790d668c26", + "sha256:636ce2dc235046ccd3d8c56a7ad54e99d5c1cd0ef07d9ae847306c91d11b5fec", + "sha256:6455fc599df93d1f60e1c5c4fe471499f08d190d57eca040c0ea182301321286", + "sha256:6bc66318fb7ee012071b2792024564973ecc80e9522842eb4e17743604b5e045", + "sha256:7bfe2388663fd18bd8ce7db2c91c7400bf3e1a9e8bd7d63bf7e77d39051b85ec", + "sha256:7ec335fc998faa4febe75cc5268a9eac0478b3f681602c1f27befaf2a1abe1d8", + "sha256:914474c9f1d93080338ace89cb2acee74f4f666fb0424896fcfb8d86058bf17c", + "sha256:b568f35ad53a7b07ed9b1b2bae09eb15cdd671a5ba5d2c66caee40dbf91c68ca", + "sha256:cdfd2c361b8a8e5d9499b9082b501c452ade8bbf42aef97ea04854f4a3f43b22", + "sha256:d1b96547410f76078eaf66d282ddca2e4baae8964364abb4f4dcdde855cd123a", + "sha256:d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96", + "sha256:d7a096646eab884bf8bed965bad63ea327e0d0c38989fc83c5ea7b8a87037bfc", + "sha256:df46c854f490f81210870e509818b729db4488e1f30f2a1ce1698b2295a878d1", + "sha256:e24a828f57e0c337c8d8bb9f6b12f09dfdf0273da25fda9e314f0b684b415a07", + "sha256:e4f3149fd5eb9b285d6bfb54d2e5173f6a116fe19172686797c056672689daf6", + "sha256:e92a52c166426efbe0d1ec1332ee9119b6d32fc1f0bbfd55d5c1088070e7fc1b", + "sha256:f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5", + "sha256:fd8da6d0124efa2f67d86fa70c851022f87c98e205f0594e1fae044e7119a5a6" + ], + "markers": "python_version >= '3.7'", + "version": "==0.18.1" + }, + "pysocks": { + "hashes": [ + "sha256:08e69f092cc6dbe92a0fdd16eeb9b9ffbc13cadfe5ca4c7bd92ffb078b293299", + "sha256:2725bd0a9925919b9b51739eea5f9e2bae91e83288108a9ad338b2e3a4435ee5", + "sha256:3f8804571ebe159c380ac6de37643bb4685970655d3bba243530d6558b799aa0" + ], + "version": "==1.7.1" + }, + "python-dateutil": { + "hashes": [ + "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", + "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==2.8.2" + }, + "python-dotenv": { + "hashes": [ + "sha256:b7e3b04a59693c42c36f9ab1cc2acc46fa5df8c78e178fc33a8d4cd05c8d498f", + "sha256:d92a187be61fe482e4fd675b6d52200e7be63a12b724abbf931a40ce4fa92938" + ], + "index": "pypi", + "version": "==0.20.0" + }, + "pytz": { + "hashes": [ + "sha256:220f481bdafa09c3955dfbdddb7b57780e9a94f5127e35456a48589b9e0c0197", + "sha256:cea221417204f2d1a2aa03ddae3e867921971d0d76f14d87abb4414415bbdcf5" + ], + "version": "==2022.2.1" + }, + "pytz-deprecation-shim": { + "hashes": [ + "sha256:8314c9692a636c8eb3bda879b9f119e350e93223ae83e70e80c31675a0fdc1a6", + "sha256:af097bae1b616dde5c5744441e2ddc69e74dfdcb0c263129610d85b87445a59d" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", + "version": "==0.1.0.post0" + }, + "pyyaml": { + "hashes": [ + "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293", + "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b", + "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57", + "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b", + "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4", + "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07", + "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba", + "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9", + "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287", + "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513", + "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0", + "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0", + "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92", + "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f", + "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2", + "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc", + "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c", + "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86", + "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4", + "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c", + "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34", + "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b", + "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c", + "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb", + "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737", + "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3", + "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d", + "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53", + "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78", + "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803", + "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a", + "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174", + "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5" + ], + "markers": "python_version >= '3.6'", + "version": "==6.0" + }, + "regex": { + "hashes": [ + "sha256:02b6dc102123f5178796dcdb5a90f6e88895607fd1a1d115d8de1af8161ca2b4", + "sha256:0843cc977b9cc00eb2299b624db6481d25e7f5b093f7a7c2bb727028d4a26eda", + "sha256:085ca3dc9360c0210e0a70e5d34d66454a06077644e7679fef6358b1f053e62e", + "sha256:0a9d5a64e974bc5f160f30f76aaf993d49eeddb405676be6bf76a5a2c131e185", + "sha256:0de0ce11c0835e1117eacbfe8fa6fa98dc0e8e746b486735cb0fdebe46a02222", + "sha256:1418d3506a9582b23a27373f125ea2b0da523c581e7cf678a6f036254d134faa", + "sha256:14750172c0a616140a8f496dfef28ed24080e87d06d5838e008f959ad307a8c5", + "sha256:1b6d2c579ffdcbb3d93f63b6a7f697364594e1c1b6856958b3e61e3ca22c140a", + "sha256:1df31eaf147ecff3665ba861acb8f78221cd5501df072c9151dfa341dd24599f", + "sha256:21b6f939916aa61beea56393ebc8a9999060632ac22b8193c2cb67d6fd7cb2c3", + "sha256:2240fce3af236e4586a045c1be8bbf16c4f8831e68b7df918b72fc31a80143be", + "sha256:242f546fc5e49bb7395624ac3b4fc168bf454e11ace9804c58c4c3a90d84e38f", + "sha256:25bffa248b99b53a61b1f20fc7d19f711e38e9f0bc90d44c26670f8dc282ad7d", + "sha256:2ada67e02fa3fcca9e3b90cf24c2c6bc77f0abc126209937956aea10eeba40c7", + "sha256:2c198921afc811bc0f105c6e5150fbdebf9520c9b7d43cfc0ab156ca97f506d7", + "sha256:370b1d7aed26e29915c3fb3e72e327f194824a76cedb60c0b9f6c6af53e89d72", + "sha256:3aafbbf5076f2a48bcf31ceb42b410323daaa0ddb42544640592957bc906ace6", + "sha256:3d3d769b3d485b28d6a591b46723dbacc696e6503f48a3ef52e6fc2c90edb482", + "sha256:3d83fd6dd4263595d0e4f595d4abd54397cbed52c0147f7dd148a7b72910301e", + "sha256:45cb798095b886e4df6ff4a1f7661eb70620ccdef127e3c3e00a1aaa22d30e53", + "sha256:4bd9443f7ff6e6288dd4496215c5d903f851e55cbc09d5963587af0c6d565a0a", + "sha256:4bdfd016ab12c4075ef93f025b3cf4c8962b9b7a5e52bb7039ab64cb7755930c", + "sha256:4c6554073e3e554fbb3dff88376ada3da32ca789ea1b9e381f684d49ddb61199", + "sha256:4dad9d68574e93e1e23be53b4ecfb0f083bd5cc08cc7f1984a4ee3ebf12aa446", + "sha256:4e12a3c2d4781ee5d03f229c940934fa1e4ea4f4995e68ab97a2815b139e0804", + "sha256:53c9eca0d6070a8a3de42182ad26daf90ba12132eb74a2f45702332762aff84e", + "sha256:5910bb355f9517309f77101238dbacb7151ede3434a2f1fad26ecc62f13d8324", + "sha256:5c77eab46f3a2b2cd8bbe06467df783543bf7396df431eb4a144cc4b89e9fb3c", + "sha256:5d541bc430a74c787684d1ebcd205a5212a88c3de73848143e77489b2c25b911", + "sha256:5e7c8f9f8824143c219dd93cdc733c20d2c12f154034c89bcb4911db8e45bd92", + "sha256:5f14430535645712f546f1e07013507d1cc0c8abd851811dacce8c7fb584bf52", + "sha256:6059ae91667932d256d9dc03abd3512ebcade322b3a42d1b8354bd1db7f66dcc", + "sha256:61f6966371fa1cbf26c6209771a02bef80336cdaca0c0af4dfa33d51019c0b93", + "sha256:62d56a9d3c1e5a83076db4da060dad7ea35ac2f3cbd3c53ba5a51fe0caedb500", + "sha256:634f090a388351eadf1dcc1d168a190718fb68efb4b8fdc1b119cf837ca01905", + "sha256:64ecfcc386420192fbe98fdde777d993f7f2dfec9552e4f4024d3447d3a3e637", + "sha256:6af38997f178889d417851bae8fb5c00448f7405cfcab38734d771f1dd5d5973", + "sha256:6b30c8d299ba48ee919064628fd8bc296bdc6e4827d315491bea39437130d3e1", + "sha256:6f0c8807bac16984901c0573725bad786f2f004f9bd5df8476c6431097b6c5b3", + "sha256:6f62c8a59f6b8e608880c61b138ae22668184bc266b025d33200dcf2cebe0872", + "sha256:74d4aabd612d32282f3cb3ebb4436046fb840d25c754157a755bc9f66e7cd307", + "sha256:7658d2dfc1dabfb008ffe12ae47b98559e2aedd8237bee12f5aafb74d90479e3", + "sha256:777ceea2860a48e9e362a4e2a9a691782ea97bd05c24627c92e876fdd2c22e61", + "sha256:79f34d5833cd0d53ecf48bc030e4da3216bd4846224d17eeb64509be5cb098fd", + "sha256:7a52d547259495a53e61e37ffc6d5cecf8d298aeb1bc0d9b25289d65ddb31183", + "sha256:840063aa8eeb1dda07d7d7dee15648838bffef1d415f5f79061854a182a429aa", + "sha256:8e8ec94d1b1a0a297c2c69a0bf000baf9a79607ca0c084f577f811a9b447c319", + "sha256:95fb62a3980cf43e76c2fe95edab06ec70dc495b8aa660975eb9f0b2ffdae1e1", + "sha256:9668da78bcc219542467f51c2cd01894222be6aceec4b5efb806705900b794d8", + "sha256:99a7c5786de9e92ff5ffee2e8bed745f5d25495206f3f14656c379031e518334", + "sha256:a1e283ad918df44bad3ccf042c2fe283c63d17617570eb91b8c370ef677b0b83", + "sha256:a25d251546acb5edb1635631c4ae0e330fa4ec7c6316c01d256728fbfb9bbff2", + "sha256:abe1adb32e2535aaa171e8b2b2d3f083f863c9974a3e6e7dae6bf4827fc8b983", + "sha256:ae85112da2d826b65aa7c7369c56ca41d9a89644312172979cbee5cf788e0b09", + "sha256:b3379a83dc63fe06538c751961f9ed730b5d7f08f96a57bbad8d52db5820df1f", + "sha256:b3c7c6c4aac19b964c1d12784aecae7f0315314640b0f41dd6f0d4e2bf439072", + "sha256:b7ddecc80e87acf12c2cf12bf3721def47188c403f04e706f104b5e71fed2f31", + "sha256:bbaf6785d3f1cd3e617b9d0fb3c5528023ef7bc7cc1356234801dc1941df8ce9", + "sha256:be6f5b453f7ed2219a9555bb6840663950b9ab1dc034216f68eac64db66633c2", + "sha256:c2b6404631b22617b5127c6de2355393ccda693ca733a098b6802e7dabb3457a", + "sha256:c4f6609f6e867a58cdf173e1cbe1f3736d25962108bd5cb01ad5a130875ff2c8", + "sha256:c76dd2c0615a28de21c97f9f6862e84faef58ff4d700196b4e395ef6a52291e4", + "sha256:c78c72f7878071a78337510ec78ab856d60b4bdcd3a95fd68b939e7cb30434b3", + "sha256:cb0c9a1476d279524538ba9a00ecec9eadcef31a6a60b2c8bd2f29f62044a559", + "sha256:ccb986e80674c929f198464bce55e995178dea26833421e2479ff04a6956afac", + "sha256:cfa62063c5eafb04e4435459ce15746b4ae6c14efeae8f16bd0e3d2895dad698", + "sha256:d13bd83284b46c304eb10de93f8a3f2c80361f91f4e8a4e1273caf83e16c4409", + "sha256:d76e585368388d99ddd2f95989e6ac80a8fe23115e93931faad99fa34550612f", + "sha256:dc32029b9cc784a529f9201289d4f841cc24a2ae3126a112cd467bc41bbc2f10", + "sha256:e0b55651db770b4b5a6c7d015f24d1a6ede307296bbdf0c47fc5f6a6adc7abee", + "sha256:e37886929ee83a5fa5c73164abada00e7f3cc1cbf3f8f6e1e8cfecae9d6cfc47", + "sha256:f7b88bc7306136b123fd1a9beed16ca02900ee31d1c36e73fa33d9e525a5562d", + "sha256:fac611bde2609a46fcbd92da7171286faa2f5c191f84d22f61cd7dc27213f51d", + "sha256:fafed60103132e74cdfbd651abe94801eb87a9765ce275b3dca9af8f3e06622a" + ], + "markers": "python_version >= '3.6'", + "version": "==2022.8.17" + }, + "requests": { + "hashes": [ + "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983", + "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349" + ], + "markers": "python_version >= '3.7' and python_version < '4'", + "version": "==2.28.1" + }, + "rich": { + "hashes": [ + "sha256:2eb4e6894cde1e017976d2975ac210ef515d7548bc595ba20e195fb9628acdeb", + "sha256:63a5c5ce3673d3d5fbbf23cd87e11ab84b6b451436f1b7f19ec54b6bc36ed7ca" + ], + "markers": "python_version < '4' and python_full_version >= '3.6.3'", + "version": "==12.5.1" + }, + "semver": { + "hashes": [ + "sha256:ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4", + "sha256:fa0fe2722ee1c3f57eac478820c3a5ae2f624af8264cbdf9000c980ff7f75e3f" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==2.13.0" + }, + "six": { + "hashes": [ + "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", + "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.16.0" + }, + "smmap": { + "hashes": [ + "sha256:2aba19d6a040e78d8b09de5c57e96207b09ed71d8e55ce0959eeee6c8e190d94", + "sha256:c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936" + ], + "markers": "python_version >= '3.6'", + "version": "==5.0.0" + }, + "soupsieve": { + "hashes": [ + "sha256:3b2503d3c7084a42b1ebd08116e5f81aadfaea95863628c80a3b774a11b7c759", + "sha256:fc53893b3da2c33de295667a0e19f078c14bf86544af307354de5fcf12a3f30d" + ], + "markers": "python_version >= '3.6'", + "version": "==2.3.2.post1" + }, + "streamlit": { + "hashes": [ + "sha256:c56d0775feb39116ff90a8b01ee15be27212ee50abb88943607205d26d1d9923", + "sha256:f0461bebd6c1b58c38f0f602ee9bb6699f66dfe14fd2e05abc25ebe96ff4ba21" + ], + "index": "pypi", + "version": "==1.12.2" + }, + "tokenizers": { + "hashes": [ + "sha256:01abe6fbfe55e4131ca0c4c3d1a9d7ef5df424a8d536e998d2a4fc0bc57935f4", + "sha256:070746f86efa6c873db341e55cf17bb5e7bdd5450330ca8eca542f5c3dab2c66", + "sha256:0bf2380ad59c50222959a9b6f231339200a826fc5cb2be09ff96d8a59f65fc5e", + "sha256:2158baf80cbc09259bfd6e0e0fc4597b611e7a72ad5443dad63918a90f1dd304", + "sha256:230f51a0a82ca7b90077eaca2415f12ff9bd144607888b9c50c2ee543452322e", + "sha256:258873634406bd1d438c799993a5e44bbc0132ff055985c03c4fe30f702e9a33", + "sha256:27d93b712aa2d4346aa506ecd4ec9e94edeebeaf2d484357b482cdeffc02b5f5", + "sha256:28825dade9e52ad464164020758f9d49eb7251c32b6ae146601c506a23c67c0e", + "sha256:38625595b2fd37bfcce64ff9bfb6868c07e9a7b7f205c909d94a615ce9472287", + "sha256:3f2647cc256d6a53d18b9dcd71d377828e9f8991fbcbd6fcd8ca2ceb174552b0", + "sha256:411ebc89228f30218ffa9d9c49d414864b0df5026a47c24820431821c4360460", + "sha256:419d113e3bcc4fe20a313afc47af81e62906306b08fe1601e1443d747d46af1f", + "sha256:5188e13fc09edfe05712ca3ae5a44e7f2b0137927b1ca210d0fad90d3e58315a", + "sha256:53b5f4012ce3ffddd5b00827441b80dc7a0f6b41f4fc5248ae6d36e7d3920c6d", + "sha256:619728df2551bdfe6f96ff177f9ded958e7ed9e2af94c8d5ac2834d1eb06d112", + "sha256:62a723bd4b18bc55121f5c34cd8efd6c651f2d3b81f81dd50e5351fb65b8a617", + "sha256:664f36f0a0d409c24f2201d495161fec4d8bc93e091fbb78814eb426f29905a3", + "sha256:6a38b2019d4807d42afeff603a119094ee00f63bea2921136524c8814e9003f8", + "sha256:6a7a106d04154c2159db6cd7d042af2e2e0e53aee432f872fe6c8be45100436a", + "sha256:7c5c54080a7d5c89c990e0d478e0882dbac88926d43323a3aa236492a3c9455f", + "sha256:7d43de14b4469b57490dbaf136a31c266cb676fa22320f01f230af9219ae9034", + "sha256:7f4cb68dc538b52240d1986d2034eb0a6373be2ab5f0787d1be3ad1444ce71b7", + "sha256:8cea98f3f9577d1541b7bb0f7a3308a911751067e1d83e01485c9d3411bbf087", + "sha256:8d4339c376b695de2ad8ccaebffa75e4dc1d7857be1103d80e7925b34af8cf78", + "sha256:91906d725cb84d8ee71ce05fbb155d39d494849622b4f9349e5176a8eb01c49b", + "sha256:ae6c04b629ac2cd2f695739988cb70b9bd8d5e7f849f5b14c4510e942bee5770", + "sha256:b9779944559cb7ace6a8516e402895f239b0d9d3c833c67dbaec496310e7e206", + "sha256:bdbca79726fe883c696088ea163715b2f902aec638a8e24bcf9790ff8fa45019", + "sha256:cdeba37c2fb44e1aec8a72af4cb369655b59ba313181b1b4b8183f08e759c49c", + "sha256:d737df0f8f26e093a82bfb106b6cfb510a0e9302d35834568e5b20b73ddc5a9c", + "sha256:eff5ff411f18a201eec137b7b32fcb55e0c48b372d370bd24f965f5bad471fa4", + "sha256:f1271224acafb27639c432e1ce4e7d38eab40305ba1c546e871d5c8a32f4f195", + "sha256:fde8dccb9033fa344ffce3ee1837939a50e7a210a768f1cf2059beeafa755481" + ], + "version": "==0.12.1" + }, + "toml": { + "hashes": [ + "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", + "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" + ], + "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==0.10.2" + }, + "toolz": { + "hashes": [ + "sha256:2059bd4148deb1884bb0eb770a3cde70e7f954cfbbdc2285f1f2de01fd21eb6f", + "sha256:88c570861c440ee3f2f6037c4654613228ff40c93a6c25e0eba70d17282c6194" + ], + "markers": "python_version >= '3.5'", + "version": "==0.12.0" + }, + "torch": { + "hashes": [ + "sha256:03e31c37711db2cd201e02de5826de875529e45a55631d317aadce2f1ed45aa8", + "sha256:0b44601ec56f7dd44ad8afc00846051162ef9c26a8579dda0a02194327f2d55e", + "sha256:42e115dab26f60c29e298559dbec88444175528b729ae994ec4c65d56fe267dd", + "sha256:42f639501928caabb9d1d55ddd17f07cd694de146686c24489ab8c615c2871f2", + "sha256:4e1b9c14cf13fd2ab8d769529050629a0e68a6fc5cb8e84b4a3cc1dd8c4fe541", + "sha256:68104e4715a55c4bb29a85c6a8d57d820e0757da363be1ba680fa8cc5be17b52", + "sha256:69fe2cae7c39ccadd65a123793d30e0db881f1c1927945519c5c17323131437e", + "sha256:6cf6f54b43c0c30335428195589bd00e764a6d27f3b9ba637aaa8c11aaf93073", + "sha256:743784ccea0dc8f2a3fe6a536bec8c4763bd82c1352f314937cb4008d4805de1", + "sha256:8a34a2fbbaa07c921e1b203f59d3d6e00ed379f2b384445773bd14e328a5b6c8", + "sha256:976c3f997cea38ee91a0dd3c3a42322785414748d1761ef926b789dfa97c6134", + "sha256:9b356aea223772cd754edb4d9ecf2a025909b8615a7668ac7d5130f86e7ec421", + "sha256:9c038662db894a23e49e385df13d47b2a777ffd56d9bcd5b832593fab0a7e286", + "sha256:a8320ba9ad87e80ca5a6a016e46ada4d1ba0c54626e135d99b2129a4541c509d", + "sha256:b5dbcca369800ce99ba7ae6dee3466607a66958afca3b740690d88168752abcf", + "sha256:bfec2843daa654f04fda23ba823af03e7b6f7650a873cdb726752d0e3718dada", + "sha256:cd26d8c5640c3a28c526d41ccdca14cf1cbca0d0f2e14e8263a7ac17194ab1d2", + "sha256:e9c8f4a311ac29fc7e8e955cfb7733deb5dbe1bdaabf5d4af2765695824b7e0d", + "sha256:f00c721f489089dc6364a01fd84906348fe02243d0af737f944fddb36003400d", + "sha256:f3b52a634e62821e747e872084ab32fbcb01b7fa7dbb7471b6218279f02a178a" + ], + "markers": "python_version >= '3.7'", + "version": "==1.12.1" + }, + "tornado": { + "hashes": [ + "sha256:1d54d13ab8414ed44de07efecb97d4ef7c39f7438cf5e976ccd356bebb1b5fca", + "sha256:20f638fd8cc85f3cbae3c732326e96addff0a15e22d80f049e00121651e82e72", + "sha256:5c87076709343557ef8032934ce5f637dbb552efa7b21d08e89ae7619ed0eb23", + "sha256:5f8c52d219d4995388119af7ccaa0bcec289535747620116a58d830e7c25d8a8", + "sha256:6fdfabffd8dfcb6cf887428849d30cf19a3ea34c2c248461e1f7d718ad30b66b", + "sha256:87dcafae3e884462f90c90ecc200defe5e580a7fbbb4365eda7c7c1eb809ebc9", + "sha256:9b630419bde84ec666bfd7ea0a4cb2a8a651c2d5cccdbdd1972a0c859dfc3c13", + "sha256:b8150f721c101abdef99073bf66d3903e292d851bee51910839831caba341a75", + "sha256:ba09ef14ca9893954244fd872798b4ccb2367c165946ce2dd7376aebdde8e3ac", + "sha256:d3a2f5999215a3a06a4fc218026cd84c61b8b2b40ac5296a6db1f1451ef04c1e", + "sha256:e5f923aa6a47e133d1cf87d60700889d7eae68988704e20c75fb2d65677a8e4b" + ], + "markers": "python_version >= '3.7'", + "version": "==6.2" + }, + "tqdm": { + "hashes": [ + "sha256:40be55d30e200777a307a7585aee69e4eabb46b4ec6a4b4a5f2d9f11e7d5408d", + "sha256:74a2cdefe14d11442cedf3ba4e21a3b84ff9a2dbdc6cfae2c34addb2a14a5ea6" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==4.64.0" + }, + "transformers": { + "hashes": [ + "sha256:07f3df80144f7f032ad5d367507445980d4aa25855a5d658cfa47ac5fff32aca", + "sha256:c03c150857e2d8f18f6dcb51e3061207522425ad57a0a6dc6cde407226a45e3e" + ], + "markers": "python_version >= '3.7'", + "version": "==4.21.2" + }, + "typing-extensions": { + "hashes": [ + "sha256:25642c956049920a5aa49edcdd6ab1e06d7e5d467fc00e0506c44ac86fbfca02", + "sha256:e6d2677a32f47fc7eb2795db1dd15c1f34eff616bcaf2cfb5e997f854fa1c4a6" + ], + "markers": "python_version >= '3.7'", + "version": "==4.3.0" + }, + "tzdata": { + "hashes": [ + "sha256:21f4f0d7241572efa7f7a4fdabb052e61b55dc48274e6842697ccdf5253e5451", + "sha256:c3119520447d68ef3eb8187a55a4f44fa455f30eb1b4238fa5691ba094f2b05b" + ], + "markers": "python_version >= '3.6'", + "version": "==2022.2" + }, + "tzlocal": { + "hashes": [ + "sha256:89885494684c929d9191c57aa27502afc87a579be5cdd3225c77c463ea043745", + "sha256:ee5842fa3a795f023514ac2d801c4a81d1743bbe642e3940143326b3a00addd7" + ], + "markers": "python_version >= '3.6'", + "version": "==4.2" + }, + "urllib3": { + "hashes": [ + "sha256:3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e", + "sha256:b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5' and python_version < '4'", + "version": "==1.26.12" + }, + "validators": { + "hashes": [ + "sha256:24148ce4e64100a2d5e267233e23e7afeb55316b47d30faae7eb6e7292bc226a" + ], + "markers": "python_version >= '3.4'", + "version": "==0.20.0" + }, + "zipp": { + "hashes": [ + "sha256:05b45f1ee8f807d0cc928485ca40a07cb491cf092ff587c0df9cb1fd154848d2", + "sha256:47c40d7fe183a6f21403a199b3e4192cca5774656965b0a4988ad2f8feb5f009" + ], + "markers": "python_version >= '3.7'", + "version": "==3.8.1" + } + }, + "develop": {} +} diff --git a/twNLP-app/README.md b/twNLP-app/README.md new file mode 100644 index 0000000000000000000000000000000000000000..3cff81332af61a70f536c4a8ceb5b9b2342325f7 --- /dev/null +++ b/twNLP-app/README.md @@ -0,0 +1 @@ +# **ckip-cwn-app** diff --git a/twNLP-app/deployment/nginx.conf b/twNLP-app/deployment/nginx.conf new file mode 100644 index 0000000000000000000000000000000000000000..fc238bcb6ba558803a3d32c2b82f3467492f26b6 --- /dev/null +++ b/twNLP-app/deployment/nginx.conf @@ -0,0 +1,30 @@ +worker_processes auto; + +events { + worker_connections 1024; + multi_accept on; +} + +http { + map $http_upgrade $connection_upgrade { + default upgrade; + '' close; + } + + upstream app { + server app:8501; + } + + server { + listen 80; + charset utf-8; + + location / { + proxy_pass http://app; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection $connection_upgrade; + auth_basic off; + } + } +} \ No newline at end of file diff --git a/twNLP-app/docker-compose.yml b/twNLP-app/docker-compose.yml new file mode 100644 index 0000000000000000000000000000000000000000..ed07eb9ff9be3a928ebad287af264efd4a78a322 --- /dev/null +++ b/twNLP-app/docker-compose.yml @@ -0,0 +1,20 @@ +version: "3" + +services: + app: + build: ./ + ports: + - 8501:8501 + command: "streamlit run ./src/app.py" + + nginx: + image: "nginx:stable" + depends_on: + - app + links: + - app + restart: always + ports: + - 80:80 + volumes: + - "./deployment/nginx.conf:/etc/nginx/nginx.conf" \ No newline at end of file diff --git a/twNLP-app/requirements.txt b/twNLP-app/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..4735b8f3f21cca73aa06fae5507e520230fcaaed --- /dev/null +++ b/twNLP-app/requirements.txt @@ -0,0 +1,7 @@ +aiofiles==0.8.0 +cwngraph==0.4.0 +distiltag==0.2.2 +streamlit==1.12.2 +python-dotenv==0.20.0 +cwnsensetagger==0.1.6 +ckip-transformers==0.3.2 \ No newline at end of file diff --git a/twNLP-app/src/app.py b/twNLP-app/src/app.py new file mode 100644 index 0000000000000000000000000000000000000000..8ce871a83cdd2a5a92d8e5309ed174675aa0dc84 --- /dev/null +++ b/twNLP-app/src/app.py @@ -0,0 +1,67 @@ +#!/usr/bin/env python3 # 學號:R09942097、姓名:陳建成、streamlit cloud link: https://jeffeuxmartin-assignment-1-jeffeuxmartin-twnlp-appsrcapp-8mil4y.streamlitapp.com/ + +import streamlit as st, pandas as pd, re, time +from views.components.spinner import dowload_ckip_package, download_cwn_drivers + +def load_corpus(path): + full_df = pd.read_json(path) + full_df.sort_values('index', ascending=False) + df = full_df[['title', 'web_url']] + return df, full_df + +def make_clickable(url, text): + # Ref.: https://discuss.streamlit.io/t/display-urls-in-dataframe-column-as-a-clickable-hyperlink/743/7 + return f'{text}' + +def run_app(path, ckip_nlp_models, cwn_upgrade) -> None: + # need to download first because CWN packages will first check whether + # there is .cwn_graph folder in the root directory. + download_cwn_drivers(cwn_upgrade) + dowload_ckip_package(ckip_nlp_models) + + from views.components.sidebar import visualize_side_bar + from views.containers import display_cwn, display_ckip, display_data_form + + st.title("PTT 語料庫搜尋分析工具 (ver. 0.1)") + input_data = display_data_form() + max_articles = st.slider('最多標題數:', min_value=0, max_value=30, step=1, value=3) + model, pipeline, active_visualizers = visualize_side_bar(ckip_nlp_models) + display_factories = { + "CKIP": display_ckip, + "CWN": display_cwn, + } + df, full_df = load_corpus(path) + if "input_data" in st.session_state: + queries = st.session_state["input_data"] + for query in queries: + df = df[df["title"].str.contains(query)] + df = df.iloc[:max_articles] + + if len(df) > 0: + st.markdown("#### 搜尋文章標題結果 ####") + st.markdown('\n'.join( + f"1. [{it.title}]({it.web_url})" + for it in df.itertuples()) + ) + + _cleaned_titles = [ + re.sub('^\[[^]]*\] *', '', + re.sub('^R\: *', '', title)) + for title in df['title']] + cleaned_titles = [] + for t in _cleaned_titles: + if t not in cleaned_titles: + cleaned_titles.append(t) + + display_factories[pipeline]( + model, active_visualizers, + cleaned_titles, + ) + else: + st.markdown("## No results match! Q_Q... ##") + + +if __name__ == "__main__": + ckip_nlp_models = ["bert-base", "albert-tiny", "bert-tiny", "albert-base"] + run_app('../data/corpus.json', ckip_nlp_models, cwn_upgrade=False) + diff --git a/twNLP-app/src/configs/__init__.py b/twNLP-app/src/configs/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ebd2cc2210f3793e424c9630ce14e0456fb7c998 --- /dev/null +++ b/twNLP-app/src/configs/__init__.py @@ -0,0 +1,10 @@ +from .ckip import ckip_path, download_ckip_drivers +from .cwn import cwn_model_path, download_cwn_models + + +__all__ = [ + "ckip_path", + "download_ckip_drivers", + "cwn_model_path", + "download_cwn_models", +] diff --git a/twNLP-app/src/configs/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/configs/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ae2f77c376cc6d2d592b239a2cc066e31768745e Binary files /dev/null and b/twNLP-app/src/configs/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/configs/__pycache__/ckip.cpython-38.pyc b/twNLP-app/src/configs/__pycache__/ckip.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c6eee87b9fb57c9d355f30000c8f3d2a31f082e Binary files /dev/null and b/twNLP-app/src/configs/__pycache__/ckip.cpython-38.pyc differ diff --git a/twNLP-app/src/configs/__pycache__/cwn.cpython-38.pyc b/twNLP-app/src/configs/__pycache__/cwn.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..884b5d2f05eddca0ee41cf0f05be0f1d3c31a4b8 Binary files /dev/null and b/twNLP-app/src/configs/__pycache__/cwn.cpython-38.pyc differ diff --git a/twNLP-app/src/configs/ckip.py b/twNLP-app/src/configs/ckip.py new file mode 100644 index 0000000000000000000000000000000000000000..8a4d19944ea3208a1ca85d2ccdbbc25c5e41e6ee --- /dev/null +++ b/twNLP-app/src/configs/ckip.py @@ -0,0 +1,45 @@ +import pickle +import asyncio +import aiofiles +from pathlib import Path + + +pkg_path = Path("__file__").resolve().parent / "src" +print('pkg_path = {}'.format(pkg_path)) +ckip_path = pkg_path / "models" / "ckip" +print('ckip_path = {}'.format(ckip_path)) +pkg_path.parent.mkdir(parents=True, exist_ok=True) +ckip_path.parent.mkdir(parents=True, exist_ok=True) +ckip_path.mkdir(parents=True, exist_ok=True) +permission_tester = ckip_path / f"drivers_permission_tester.txt" +with open(permission_tester, 'w') as f_test: pass # check permission + + +async def write_drivers(nlp_model: str) -> None: + """The write drivers function writes the ckip drivers to pickle files asynchronously. + Args: + nlp_model (str): the nlp model name + """ + driver_path = ckip_path / f"{nlp_model}_drivers.pickle" + with open(driver_path, 'w') as f_test: pass # check permission + from ckip_transformers.nlp import ( + CkipWordSegmenter, + CkipPosTagger, + CkipNerChunker, + ) + + drivers = ( + CkipWordSegmenter(model=nlp_model), + CkipPosTagger(model=nlp_model), + CkipNerChunker(model=nlp_model), + ) + + driver_path = ckip_path / f"{nlp_model}_drivers.pickle" + async with aiofiles.open(driver_path, mode="wb") as file: + result = pickle.dumps(drivers) + await file.write(result) + print(f"{nlp_model}_drivers.pickle done!") + + +async def download_ckip_drivers(ckip_nlp_models): + await asyncio.gather(*list(map(write_drivers, ckip_nlp_models))) diff --git a/twNLP-app/src/configs/cwn.py b/twNLP-app/src/configs/cwn.py new file mode 100644 index 0000000000000000000000000000000000000000..514d57ca6a54fbff856d5762eb5c2a60c694a85f --- /dev/null +++ b/twNLP-app/src/configs/cwn.py @@ -0,0 +1,14 @@ +from pathlib import Path +from typing import Optional + + +cwn_model_path = Path.home().resolve() / ".cwn_graph" + + +def download_cwn_models(upgrade: Optional[bool] = False): + import CwnSenseTagger, DistilTag + from CwnGraph import CwnImage + + DistilTag.download(upgrade=upgrade) + CwnSenseTagger.download(upgrade=upgrade) + CwnImage.latest() diff --git a/twNLP-app/src/context/__init__.py b/twNLP-app/src/context/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..6933961beaccfbd1281371dad3cb43dca0c05a7a --- /dev/null +++ b/twNLP-app/src/context/__init__.py @@ -0,0 +1,5 @@ +from .wsg import use_WSG +from .actions import WSGKind + + +__all__ = ["use_WSG", "WSGKind"] diff --git a/twNLP-app/src/context/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/context/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3e2858a7ceb0b480873fe6abebf5ac2b13c64cef Binary files /dev/null and b/twNLP-app/src/context/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/context/__pycache__/actions.cpython-38.pyc b/twNLP-app/src/context/__pycache__/actions.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..27dfeee1a32abaa90387f50abfe986f0ed41a1da Binary files /dev/null and b/twNLP-app/src/context/__pycache__/actions.cpython-38.pyc differ diff --git a/twNLP-app/src/context/__pycache__/reducer.cpython-38.pyc b/twNLP-app/src/context/__pycache__/reducer.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9101aa0b5814c066a5e2afdca45289d368a1dd67 Binary files /dev/null and b/twNLP-app/src/context/__pycache__/reducer.cpython-38.pyc differ diff --git a/twNLP-app/src/context/__pycache__/wsg.cpython-38.pyc b/twNLP-app/src/context/__pycache__/wsg.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aa42b52973dbdf0637e7e5349cc1000c0d7362ab Binary files /dev/null and b/twNLP-app/src/context/__pycache__/wsg.cpython-38.pyc differ diff --git a/twNLP-app/src/context/actions.py b/twNLP-app/src/context/actions.py new file mode 100644 index 0000000000000000000000000000000000000000..58a31ef8717a5485d65c75370acbf696d3261702 --- /dev/null +++ b/twNLP-app/src/context/actions.py @@ -0,0 +1,30 @@ +from typing import Any +from enum import Enum, auto +from types import SimpleNamespace +from dataclasses import dataclass, FrozenInstanceError + + +class WSGKind(Enum): + ADD_WSG = auto() + RESET = auto() + + +class FrozenSimpleNamespace(SimpleNamespace): + def __init__(self, **kwargs): + super().__init__(**kwargs) + + def __setattr__(self, name: str, value: Any) -> None: + raise FrozenInstanceError(f"cannot assign to field '{name}'") + + +@dataclass(frozen=True) +class Action: + """ + The Action object contains the payload of information. + """ + + kind: WSGKind + payload: dict + + def __post_init__(self): + super().__setattr__("payload", FrozenSimpleNamespace(**self.payload)) diff --git a/twNLP-app/src/context/reducer.py b/twNLP-app/src/context/reducer.py new file mode 100644 index 0000000000000000000000000000000000000000..ea1afe70685eee6c7a4a041494ffb79e0aa56025 --- /dev/null +++ b/twNLP-app/src/context/reducer.py @@ -0,0 +1,13 @@ +from typing import Any, Union +from .actions import WSGKind, Action + + +def reducer(state, action: Action) -> Union[str, Any]: + """The reducer function generates new states.""" + + initial_state = (state != None) if state else "" + + if action["kind"] == WSGKind.ADD_WSG: + return action["payload"] + + return initial_state diff --git a/twNLP-app/src/context/wsg.py b/twNLP-app/src/context/wsg.py new file mode 100644 index 0000000000000000000000000000000000000000..774649a019b536ce6f30b0a73b5ca6fbf8cfa85a --- /dev/null +++ b/twNLP-app/src/context/wsg.py @@ -0,0 +1,19 @@ +from .reducer import reducer +from utils.stores import Store +from typing import Callable, List, Union + +wsg_store = None + + +def return_value(): + return wsg_store.get_state() + + +wsg_store = Store(reducer) + +wsg_store.add_listener(return_value) + + +def use_WSG() -> List[Union[str, Callable]]: + """The use_WSG function contains wsg result and and wsg dispatcher.""" + return [wsg_store.get_state(), wsg_store.dispatch] diff --git a/twNLP-app/src/controllers/ckip/__init__.py b/twNLP-app/src/controllers/ckip/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..22de1fcd971004bd4c8e15f13e64d080386b2860 --- /dev/null +++ b/twNLP-app/src/controllers/ckip/__init__.py @@ -0,0 +1,6 @@ +from .ner import handle_create_ner +from .pos import handle_create_pos +from .wsg import handle_create_wsg + + +__all__ = ["handle_create_ner", "handle_create_pos", "handle_create_wsg"] diff --git a/twNLP-app/src/controllers/ckip/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/controllers/ckip/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..394021eb4eee839689a4236bc110411a02aede2d Binary files /dev/null and b/twNLP-app/src/controllers/ckip/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/controllers/ckip/__pycache__/ner.cpython-38.pyc b/twNLP-app/src/controllers/ckip/__pycache__/ner.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d721dfe48ca83813cf088fc1e0ec3ab4a262a202 Binary files /dev/null and b/twNLP-app/src/controllers/ckip/__pycache__/ner.cpython-38.pyc differ diff --git a/twNLP-app/src/controllers/ckip/__pycache__/pos.cpython-38.pyc b/twNLP-app/src/controllers/ckip/__pycache__/pos.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..99cf4e7c4019eeff671ae03b37f98fbddfff47f3 Binary files /dev/null and b/twNLP-app/src/controllers/ckip/__pycache__/pos.cpython-38.pyc differ diff --git a/twNLP-app/src/controllers/ckip/__pycache__/wsg.cpython-38.pyc b/twNLP-app/src/controllers/ckip/__pycache__/wsg.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..26635e174a70df1033e59b109de6162bfe4ed694 Binary files /dev/null and b/twNLP-app/src/controllers/ckip/__pycache__/wsg.cpython-38.pyc differ diff --git a/twNLP-app/src/controllers/ckip/ner.py b/twNLP-app/src/controllers/ckip/ner.py new file mode 100644 index 0000000000000000000000000000000000000000..ea1123e01e14ba74d4c47a0d5274d757a0139d00 --- /dev/null +++ b/twNLP-app/src/controllers/ckip/ner.py @@ -0,0 +1,34 @@ +import asyncio +from typing import List, Union +from models import connect_ckip_drivers +from ckip_transformers.nlp.util import NerToken +from utils.ckip.ner import chunk_multiple_entities + + +def is_list_of_empty_list(ner_token_list: List[Union[NerToken, None]]) -> bool: + """The is_list_of_empty_list function checks whether a list is full of empty lists. + Args: + ner_token_list (list): the result of the ner driver + Returns: + a bool + """ + return all(map(lambda value: not value, ner_token_list)) + + +def handle_create_ner(nlp_model: str, sentence_list: List[str]) -> List[str]: + """The handle_create_ner function handles the request that deals with NER. + Args: + nlp_model (str): the nlp model name + sentence_list (list): a list of sentences + Returns: + a list of strings + """ + ner_driver = connect_ckip_drivers(nlp_model)[2] + ner_token_list = ner_driver(sentence_list) + + if is_list_of_empty_list(ner_token_list): + return sentence_list + + returned = asyncio.run(chunk_multiple_entities(zip(sentence_list, ner_token_list))) + return returned + \ No newline at end of file diff --git a/twNLP-app/src/controllers/ckip/pos.py b/twNLP-app/src/controllers/ckip/pos.py new file mode 100644 index 0000000000000000000000000000000000000000..9ecbc0652958156a3b4df1807fb1b395a6da3904 --- /dev/null +++ b/twNLP-app/src/controllers/ckip/pos.py @@ -0,0 +1,18 @@ +import asyncio +from typing import List +from context import use_WSG +from utils.ckip.pos import PosTagging +from utils.text import add_multiple_textsubscripts + + +def handle_create_pos(nlp_model: str, sentence_list: List[str]): + """The handle_create_pos function handles the request that deals with pos-tagging. + Args: + sentence_list (list): a list of sentences + Returns: + a list of strings + """ + + ws_result = use_WSG()[0] + segmented_result = PosTagging(nlp_model, ws_result).tag() + return asyncio.run(add_multiple_textsubscripts("pos", segmented_result)) diff --git a/twNLP-app/src/controllers/ckip/wsg.py b/twNLP-app/src/controllers/ckip/wsg.py new file mode 100644 index 0000000000000000000000000000000000000000..308f3eb58bc290c05f163bbc03b341a6e40e3234 --- /dev/null +++ b/twNLP-app/src/controllers/ckip/wsg.py @@ -0,0 +1,20 @@ +import asyncio +from typing import List +from context import use_WSG, WSGKind +from utils.ckip.wsg import WordSegmentation +from utils.text import add_multiple_textsubscripts + + +def handle_create_wsg(nlp_model: str, sentence_list: List[str]) -> List[str]: + """The handle_create_wsg function handles the request that deals with word + segmentation. + Args: + sentence_list (list): a list of sentences + Returns: + a list of strings + """ + + ws_result = WordSegmentation(nlp_model, sentence_list).segment() + dispatch = use_WSG()[1] + dispatch({"kind": WSGKind.ADD_WSG, "payload": ws_result}) + return asyncio.run(add_multiple_textsubscripts("ws", ws_result)) \ No newline at end of file diff --git a/twNLP-app/src/controllers/cwn/__init__.py b/twNLP-app/src/controllers/cwn/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..6436dc0c0370170b9b74ad047bf9f8872543345c --- /dev/null +++ b/twNLP-app/src/controllers/cwn/__init__.py @@ -0,0 +1,4 @@ +from .cwn_sense_tag import handle_create_cwn_tags + + +__all__ = ["handle_cwn_sense_tag"] diff --git a/twNLP-app/src/controllers/cwn/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/controllers/cwn/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..14fa00d5ddd72053af5bdc320f78dd4e8b719da8 Binary files /dev/null and b/twNLP-app/src/controllers/cwn/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/controllers/cwn/__pycache__/cwn_sense_tag.cpython-38.pyc b/twNLP-app/src/controllers/cwn/__pycache__/cwn_sense_tag.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f36f75761c84da7fbb423ac9070ff4c2a1d8ec2 Binary files /dev/null and b/twNLP-app/src/controllers/cwn/__pycache__/cwn_sense_tag.cpython-38.pyc differ diff --git a/twNLP-app/src/controllers/cwn/cwn_sense_tag.py b/twNLP-app/src/controllers/cwn/cwn_sense_tag.py new file mode 100644 index 0000000000000000000000000000000000000000..9682dd9481ac1537f51750e661e2f5a3ba19f9ac --- /dev/null +++ b/twNLP-app/src/controllers/cwn/cwn_sense_tag.py @@ -0,0 +1,25 @@ +import asyncio +from typing import List +from utils.text import add_multiple_textsubscripts +from utils.cwn import disambiguate_word_sense, create_cwn_sense_tags + + +async def create_tags(segmented_result: List[str]): + """The create_tags function runs two asynchronous operations (i.e. + `add_multiple_textsubscripts` and `create_cwn_sense_tags`). + Args: + segmented_result (list) + """ + + return await asyncio.gather( + *[ + add_multiple_textsubscripts("cwn", segmented_result), + create_cwn_sense_tags(segmented_result), + ] + ) + + +def handle_create_cwn_tags(sentence_list: List[str]) -> List[str]: + segmented_result = asyncio.run(disambiguate_word_sense(sentence_list)) + span_tags, cwn_tags = asyncio.run(create_tags(segmented_result)) + return span_tags, cwn_tags \ No newline at end of file diff --git a/twNLP-app/src/models/__init__.py b/twNLP-app/src/models/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..067648579f79ee55e314ea4cddfc8d5028abedd0 --- /dev/null +++ b/twNLP-app/src/models/__init__.py @@ -0,0 +1,4 @@ +from .ckip import connect_ckip_drivers + + +__all__ = ["connect_ckip_drivers"] diff --git a/twNLP-app/src/models/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/models/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd406bb234e1e548fc6d864683b8d4fb8123c5a6 Binary files /dev/null and b/twNLP-app/src/models/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/models/ckip/__init__.py b/twNLP-app/src/models/ckip/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..067648579f79ee55e314ea4cddfc8d5028abedd0 --- /dev/null +++ b/twNLP-app/src/models/ckip/__init__.py @@ -0,0 +1,4 @@ +from .ckip import connect_ckip_drivers + + +__all__ = ["connect_ckip_drivers"] diff --git a/twNLP-app/src/models/ckip/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/models/ckip/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9a4551588d81f3eddffbf03209030883b3467c8 Binary files /dev/null and b/twNLP-app/src/models/ckip/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/models/ckip/__pycache__/ckip.cpython-38.pyc b/twNLP-app/src/models/ckip/__pycache__/ckip.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a82a8f5e89973d2af1ca7d08911761556beb6c35 Binary files /dev/null and b/twNLP-app/src/models/ckip/__pycache__/ckip.cpython-38.pyc differ diff --git a/twNLP-app/src/models/ckip/ckip.py b/twNLP-app/src/models/ckip/ckip.py new file mode 100644 index 0000000000000000000000000000000000000000..4022005b1950e36979d570c493d45cb452cc5ffb --- /dev/null +++ b/twNLP-app/src/models/ckip/ckip.py @@ -0,0 +1,17 @@ +import pickle +from configs import ckip_path + + +def connect_ckip_drivers(nlp_model: str) -> tuple: + """The connect_ckip_drivers function connects to the ckip drivers. + + Args: + nlp_model (str): the nlp model name + Returns: + a tuple, containing CkipWordSegmenter, CkipPosTagger and CkipNerChunker. + """ + + driver_path = ckip_path / f"{nlp_model}_drivers.pickle" + + with open(driver_path, "rb") as file: + return pickle.load(file) \ No newline at end of file diff --git a/twNLP-app/src/utils/ckip/ner/__init__.py b/twNLP-app/src/utils/ckip/ner/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..98ce5dbe4915da8d795b5d31cbb7599cec841962 --- /dev/null +++ b/twNLP-app/src/utils/ckip/ner/__init__.py @@ -0,0 +1,4 @@ +from .chunker import chunk_entities, chunk_multiple_entities + + +__all__ = ["chunk_entities", "chunk_multiple_entities"] diff --git a/twNLP-app/src/utils/ckip/ner/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/utils/ckip/ner/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..db389720c25e66d254fb6cf0c3ef2844cb01564f Binary files /dev/null and b/twNLP-app/src/utils/ckip/ner/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/ckip/ner/__pycache__/chunker.cpython-38.pyc b/twNLP-app/src/utils/ckip/ner/__pycache__/chunker.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bac96f0b2432df2974e53ea0151248acca186efb Binary files /dev/null and b/twNLP-app/src/utils/ckip/ner/__pycache__/chunker.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/ckip/ner/__pycache__/ner.cpython-38.pyc b/twNLP-app/src/utils/ckip/ner/__pycache__/ner.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..10aebf19cffe86b2e1d90fbad34d78cc56a67aee Binary files /dev/null and b/twNLP-app/src/utils/ckip/ner/__pycache__/ner.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/ckip/ner/chunker.py b/twNLP-app/src/utils/ckip/ner/chunker.py new file mode 100644 index 0000000000000000000000000000000000000000..45e2f75f4145b795fc30baf771d2b52dbe2352f1 --- /dev/null +++ b/twNLP-app/src/utils/ckip/ner/chunker.py @@ -0,0 +1,13 @@ +import asyncio +from .ner import create_ner +from typing import List, Tuple, Union +from ckip_transformers.nlp.util import NerToken + + +async def chunk_entities(zip_value: Tuple[Union[str, NerToken]]) -> str: + sentence, ner_token_list = zip_value + return create_ner(sentence, ner_token_list) + + +async def chunk_multiple_entities(data: zip) -> List[str]: + return await asyncio.gather(*list(map(chunk_entities, data))) \ No newline at end of file diff --git a/twNLP-app/src/utils/ckip/ner/ner.py b/twNLP-app/src/utils/ckip/ner/ner.py new file mode 100644 index 0000000000000000000000000000000000000000..a9b8a686b7a7bbeb3bb50cd63e17c421297e360f --- /dev/null +++ b/twNLP-app/src/utils/ckip/ner/ner.py @@ -0,0 +1,70 @@ +from functools import lru_cache +from ...text import create_entity_color +from typing import List, Tuple, Optional +from ckip_transformers.nlp.util import NerToken + + +def add_textsubscript(ner_token_list: List[NerToken]) -> Tuple[Tuple[str]]: + """The add_textsubscript function combines the token word and the + NER-tag, and specifies the NER-tag to be displayed as subscript. + Args: + ner_token_list (NerToken): a list of NerToken + Returns: + a tuple: ( + ("傅達仁PERSON", (0, 3)) + ... + ) + """ + + combine = lambda value: ( + f"{value.word}{value.ner}", + value.idx, + ) + return tuple(map(combine, ner_token_list)) + + +@lru_cache(maxsize=None) +def modify_sentence( + span_tuple: Tuple[Tuple[str]], sentence: str, increased_len: Optional[int] = 0 +) -> str: + if len(list(span_tuple)) == 1: + span_list = list(span_tuple) + modified_word, index = span_list[0] + start_index, end_index = index + start_index += increased_len + end_index += increased_len + return "".join((sentence[:start_index], modified_word, sentence[end_index:])) + + span_list = list(span_tuple) + if len(span_list) == 0: + return sentence # JEFF + modified_word, index = span_list.pop(0) + span_tuple = tuple(span_list) + + start_index, end_index = index + + if increased_len: + start_index += increased_len + end_index += increased_len + + original_word = sentence[start_index:end_index] + modified_sentence = "".join( + (sentence[:start_index], modified_word, sentence[end_index:]) + ) + + index_gap = len(modified_word) - len(original_word) + return modify_sentence(span_tuple, modified_sentence, increased_len + index_gap) + + +def create_ner(sentence: str, ner_token_list: List[NerToken]) -> str: + """The replace_entities function replaces words that are recognized + as the token words with opening and closing span tags. + Args: + sentence (str): the orignal sentence + ner_token_list (NerToken): a list of NerToken + Returns: + a str + """ + modified_ner_token_list = add_textsubscript(ner_token_list) + returned = modify_sentence(modified_ner_token_list, sentence) + return returned diff --git a/twNLP-app/src/utils/ckip/pos/__init__.py b/twNLP-app/src/utils/ckip/pos/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..30b5eea7788730079ad11214080a2d31b7d8f7b2 --- /dev/null +++ b/twNLP-app/src/utils/ckip/pos/__init__.py @@ -0,0 +1,4 @@ +from .pos import PosTagging + + +__all__ = ["PosTagging"] diff --git a/twNLP-app/src/utils/ckip/pos/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/utils/ckip/pos/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8108c492095e942e0a71a54b1c25778f14f7b811 Binary files /dev/null and b/twNLP-app/src/utils/ckip/pos/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/ckip/pos/__pycache__/pos.cpython-38.pyc b/twNLP-app/src/utils/ckip/pos/__pycache__/pos.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..779f8241d03d23c9450ad35ad92146c970816455 Binary files /dev/null and b/twNLP-app/src/utils/ckip/pos/__pycache__/pos.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/ckip/pos/pos.py b/twNLP-app/src/utils/ckip/pos/pos.py new file mode 100644 index 0000000000000000000000000000000000000000..6ba114d14f9a5e0fd65ef55c935bce6058171ac1 --- /dev/null +++ b/twNLP-app/src/utils/ckip/pos/pos.py @@ -0,0 +1,38 @@ +from typing import List, Union +from dataclasses import dataclass +from models import connect_ckip_drivers + + +@dataclass +class PosTagging: + """ + The PosTagging object marks a word in `ws_result` as corresponding to a particular part of speech. + """ + + nlp_model: str + ws_result: List[Union[List[None], List[str]]] + + def __post_init__(self) -> None: + self.pos_driver = connect_ckip_drivers(self.nlp_model)[1] + + def pack_ws_pos_sentece(self, ws_pos_pair: tuple) -> List[tuple]: + """The pack_ws_pos_sentece method packs both words and thier part-of-speech to a pair. + Args: + ws_pos_pair (tuple): the pair of a word and its corresponding part-of-speech + Returns: + a list of tuples: [ + ('我', 'Nh'), + ('喜歡', 'VK'), + ('程式', 'Na') + ] + """ + + sentence_ws, sentence_pos = ws_pos_pair + assert len(sentence_ws) == len(sentence_pos) + return list( + map(lambda word_pos_pair: word_pos_pair, zip(sentence_ws, sentence_pos)) + ) + + def tag(self): + pos_pipeline = self.pos_driver(self.ws_result, use_delim=True) + return list(map(self.pack_ws_pos_sentece, zip(self.ws_result, pos_pipeline))) diff --git a/twNLP-app/src/utils/ckip/wsg/__init__.py b/twNLP-app/src/utils/ckip/wsg/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..1eb6a36f81b396e0f3d1ea5ca67907f49256a825 --- /dev/null +++ b/twNLP-app/src/utils/ckip/wsg/__init__.py @@ -0,0 +1,4 @@ +from .wsg import WordSegmentation + + +__all__ = ["WordSegmentation"] diff --git a/twNLP-app/src/utils/ckip/wsg/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/utils/ckip/wsg/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..44e1c15a559fbfbc7f8972769e91b50cd5bf3bf6 Binary files /dev/null and b/twNLP-app/src/utils/ckip/wsg/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/ckip/wsg/__pycache__/wsg.cpython-38.pyc b/twNLP-app/src/utils/ckip/wsg/__pycache__/wsg.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a5dc72c3944d7378ccba3c0a0d6ce65f668959a3 Binary files /dev/null and b/twNLP-app/src/utils/ckip/wsg/__pycache__/wsg.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/ckip/wsg/wsg.py b/twNLP-app/src/utils/ckip/wsg/wsg.py new file mode 100644 index 0000000000000000000000000000000000000000..09973f9783613cc1509eb6c27fb03ed45644e17c --- /dev/null +++ b/twNLP-app/src/utils/ckip/wsg/wsg.py @@ -0,0 +1,40 @@ +from typing import List, Union +from dataclasses import dataclass +from models import connect_ckip_drivers + + +@dataclass +class WordSegmentation: + """ + The WordSegmentation object divides written text in `sentence_lists` into meaningful units. + """ + + nlp_model: str + sentence_list: List[str] + + def __post_init__(self) -> None: + self.ws_driver = connect_ckip_drivers(self.nlp_model)[0] + + def remove_empty_string(self, sentence_list: List[str]) -> List[str]: + """The remove_empty_string method removes empty string in `sentence_list`. + Args: + sentence_list (list) + Returns: + a list + """ + return list(filter(lambda value: value != "", sentence_list)) + + def segment(self) -> List[Union[List[None], List[List[str]]]]: + """The segment method divides written text in `sentence_lists` into meaningful units. + Returns: + a list of splitting text, an empty list otherwise. + """ + invalid_list = not self.sentence_list or all( + [value == "" for value in self.sentence_list] + ) + + if invalid_list: + return self.sentence_list + + filtered_list = self.remove_empty_string(self.sentence_list) + return self.ws_driver(filtered_list, use_delim=True) diff --git a/twNLP-app/src/utils/cwn/__init__.py b/twNLP-app/src/utils/cwn/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..5316e51e18da6e2d6b09433d66a5ac3f956d4d1a --- /dev/null +++ b/twNLP-app/src/utils/cwn/__init__.py @@ -0,0 +1,4 @@ +from .tagger import disambiguate_word_sense, create_cwn_sense_tags + + +__all__ = ["disambiguate_word_sense", "create_cwn_sense_tags"] diff --git a/twNLP-app/src/utils/cwn/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/utils/cwn/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..872ae5979884a3a02381580d8291c35577cc4723 Binary files /dev/null and b/twNLP-app/src/utils/cwn/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/cwn/__pycache__/tagger.cpython-38.pyc b/twNLP-app/src/utils/cwn/__pycache__/tagger.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b73517bbf5f18a690f6bb0ed632493dfa72b5b6d Binary files /dev/null and b/twNLP-app/src/utils/cwn/__pycache__/tagger.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/cwn/tagger.py b/twNLP-app/src/utils/cwn/tagger.py new file mode 100644 index 0000000000000000000000000000000000000000..cb1ea997701f85b93f722293f6c6f27961acf6ba --- /dev/null +++ b/twNLP-app/src/utils/cwn/tagger.py @@ -0,0 +1,39 @@ +import asyncio +from typing import List, Tuple +from DistilTag import DistilTag +from CwnSenseTagger import senseTag + + +# -------------------------------------------------------------------- +# distil tag + +tagger = DistilTag() + + +async def tag_values(value): + """The tag_values function makes `tagger.tag` function an asynchronous function.""" + return tagger.tag(value) + + +async def disambiguate_word_sense(sentence_list: List[str]) -> List[Tuple[str]]: + """The disambiguate_word_sense function disambiuates the word sense. + Args: + sentence_list (list): a list of sentences + Returns: + a list of tuples. + """ + + return await asyncio.gather(*list(map(tag_values, sentence_list))) + + +# -------------------------------------------------------------------- +# CWN sense tag + + +async def sense_value(value): + """The sense_value function makes `senseTag` function an asynchronous function.""" + return senseTag(value) + + +async def create_cwn_sense_tags(disambiguated_list: List[List[List[tuple]]]): + return await asyncio.gather(*list(map(sense_value, disambiguated_list))) diff --git a/twNLP-app/src/utils/stores/__init__.py b/twNLP-app/src/utils/stores/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..d7e0771446ebd27c4e2ea12ab57e0664fe045b38 --- /dev/null +++ b/twNLP-app/src/utils/stores/__init__.py @@ -0,0 +1,4 @@ +from .store import Store + + +__all__ = ["Store"] diff --git a/twNLP-app/src/utils/stores/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/utils/stores/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3e9ceec85034b74135131b72e0afbb435622e27f Binary files /dev/null and b/twNLP-app/src/utils/stores/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/stores/__pycache__/store.cpython-38.pyc b/twNLP-app/src/utils/stores/__pycache__/store.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..571b3989b9795c6d727f3f5ebe5687d383d3f65b Binary files /dev/null and b/twNLP-app/src/utils/stores/__pycache__/store.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/stores/store.py b/twNLP-app/src/utils/stores/store.py new file mode 100644 index 0000000000000000000000000000000000000000..581e3b9bd16d5954706af642bbe92e4dbf9a8da5 --- /dev/null +++ b/twNLP-app/src/utils/stores/store.py @@ -0,0 +1,48 @@ +from dataclasses import dataclass +from typing import Any, Callable, Dict + + +@dataclass +class Store: + """ + The Store object keeps tracks of changes and generates new states via a reducer. + """ + + reducer: Callable + + def __post_init__(self): + if callable(self.reducer) != True: + raise ValueError("Expecting a callable reducer function") + + self.__states = None + self.__listeners = list() + self.__reducer = self.reducer + + def dispatch(self, action: Dict[str, Any]): + if type(action) != dict: + raise ValueError("Expecting action to be of type dictionary") + + has_kind = "kind" in action + + if not has_kind: + raise ValueError("Action is expected to have an attribute 'kind'") + + currentStates = None + + if type(self.__states) == dict: + currentStates = self.__states.copy() + + self.__states = self.__reducer(currentStates, action) + self.__emitListeners() + pass + + def __emitListeners(self): + for listener in self.__listeners: + listener() + + def add_listener(self, callback): + if callable(callback): + self.__listeners.append(callback) + + def get_state(self): + return self.__states diff --git a/twNLP-app/src/utils/text/__init__.py b/twNLP-app/src/utils/text/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e51294f35aae1b9909ce64ea069b63ccf88b32ab --- /dev/null +++ b/twNLP-app/src/utils/text/__init__.py @@ -0,0 +1,5 @@ +from .textsubscript import add_multiple_textsubscripts +from .text_color import create_entity_color, create_pos_color + + +__all__ = ["add_multiple_textsubscripts", "create_entity_color", "create_pos_color"] diff --git a/twNLP-app/src/utils/text/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/utils/text/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5799b53c96c5afacb11604803377ca047c017c74 Binary files /dev/null and b/twNLP-app/src/utils/text/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/text/__pycache__/text_color.cpython-38.pyc b/twNLP-app/src/utils/text/__pycache__/text_color.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bf624ab8870028d323392b5fec3d3b1f003c1898 Binary files /dev/null and b/twNLP-app/src/utils/text/__pycache__/text_color.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/text/__pycache__/textsubscript.cpython-38.pyc b/twNLP-app/src/utils/text/__pycache__/textsubscript.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f8cc300a780efd88fa99c7b1da98f650133cdcb Binary files /dev/null and b/twNLP-app/src/utils/text/__pycache__/textsubscript.cpython-38.pyc differ diff --git a/twNLP-app/src/utils/text/text_color.py b/twNLP-app/src/utils/text/text_color.py new file mode 100644 index 0000000000000000000000000000000000000000..363025c9b232d4c46e092465fcfff7e9bcfc3e82 --- /dev/null +++ b/twNLP-app/src/utils/text/text_color.py @@ -0,0 +1,57 @@ +def create_pos_color(pos: str) -> str: + """The create_color function creats a text color base on the `pos` type. + Args: + pos (str): part of speech + Returns: + a str (e.g. 'rgb(255,0,0)' or '#ff0000') + """ + + if len(pos) >= 4: + return "rgb(102, 102, 102)" + + pos_color_factories = { + "A": "rgb(21, 170, 191)", + "C": "rgb(231, 41, 138)", + "D": "rgb(117, 112, 179)", + "I": "rgb(102, 166, 30)", + "N": "rgb(27, 158, 119)", + "P": "rgb(102, 166, 30)", + "S": "rgb(166, 118, 29)", + "T": "rgb(102, 166, 30)", + "V": "rgb(217, 95, 2)", + "F": "rgb(230, 171, 2)", + } + + return pos_color_factories[pos[0]] + + +def create_entity_color(entity: str): + """The create_color function creats a text color base on the `entity` type. + Args: + entity (str): an entity type from the result of NER + Returns: + a str (e.g. 'rgb(255,0,0)' or '#ff0000') + """ + + entity_color_factories = { + "GPE": "rgb(102, 166, 30)", + "PERSON": "rgb(166, 118, 29)", + "DATE": "rgb(217, 95, 2)", + "ORG": "rgb(102, 166, 30)", + "CARDINAL": "rgb(27, 158, 119)", + "ORDINAL": "rgb(231, 41, 138)", + "NORP": "rgb(117, 112, 179)", + "LOC": "rgb(27, 158, 119)", + "TIME": "rgb(117, 112, 179)", + "FAC": "rgb(231, 41, 138)", + "MONEY": "rgb(217, 95, 2)", + "ORDINAL": "rgb(231, 41, 138)", + "EVENT": "rgb(117, 112, 179)", + "WORK_OF_ART": "rgb(231, 41, 138)", + "QUANTITY": "rgb(217, 95, 2)", + "PERCENT": "rgb(230, 171, 2)", + "LANGUAGE": "rgb(230, 171, 2)", + "PRODUCT": "rgb(27, 158, 119)", + "LAW": "rgb(166, 118, 29)", + } + return entity_color_factories[entity] diff --git a/twNLP-app/src/utils/text/textsubscript.py b/twNLP-app/src/utils/text/textsubscript.py new file mode 100644 index 0000000000000000000000000000000000000000..b4fa094aade2e0bf43876cee8695fab279abdd87 --- /dev/null +++ b/twNLP-app/src/utils/text/textsubscript.py @@ -0,0 +1,39 @@ +import asyncio +from itertools import chain +from typing import List, Union +from .text_color import create_pos_color + + +async def add_pos_textsubscript(data_list: List[str]) -> str: + + create = ( + lambda value: f"""{value[0]}({value[1]})""" + ) + return "".join(list(map(create, data_list))) + + +async def add_ws_textsubscript(data_list: List[str]) -> str: + create = lambda value: f"{value}" + return "".join(list(map(create, data_list))) + + +async def add_cwn_textsubscript(segmented_list) -> str: + create = ( + lambda value: f"{value[0]}{value[1]}" + ) + return "".join(list(map(create, chain(*segmented_list)))) + + +async def add_multiple_textsubscripts( + target: str, list_of_lists: List[List[Union[str, tuple]]] +) -> List[str]: + + textsubscript_factories = { + "ws": add_ws_textsubscript, + "pos": add_pos_textsubscript, + "cwn": add_cwn_textsubscript, + } + + return await asyncio.gather( + *list(map(textsubscript_factories[target], list_of_lists)) + ) diff --git a/twNLP-app/src/views/__init__.py b/twNLP-app/src/views/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/twNLP-app/src/views/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/views/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e45911fb31f33666d10657007c4f7acfa6b761e5 Binary files /dev/null and b/twNLP-app/src/views/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/form/__init__.py b/twNLP-app/src/views/components/form/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..44232621298e24c89ff927ae9a442a4e95c503af --- /dev/null +++ b/twNLP-app/src/views/components/form/__init__.py @@ -0,0 +1,4 @@ +from .form import form_controller + + +__all__ = ["form_controller"] diff --git a/twNLP-app/src/views/components/form/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/views/components/form/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..884376aa61cf86273706ed9057ccac746816b777 Binary files /dev/null and b/twNLP-app/src/views/components/form/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/form/__pycache__/form.cpython-38.pyc b/twNLP-app/src/views/components/form/__pycache__/form.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c09999a5324feb583b226bc8058160102abc266 Binary files /dev/null and b/twNLP-app/src/views/components/form/__pycache__/form.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/form/form.py b/twNLP-app/src/views/components/form/form.py new file mode 100644 index 0000000000000000000000000000000000000000..23888c070c02a0be503d2a141a1bf54181c7c71d --- /dev/null +++ b/twNLP-app/src/views/components/form/form.py @@ -0,0 +1,13 @@ +from typing import Union +from .form_components import add_text_area, add_selectbox, add_multiselect + + +def form_controller(control: str, **kwargs) -> Union[str, int]: + """The form_controller function builds a form component based on `control`.""" + form_factories = { + "text-area": add_text_area, + "select-box": add_selectbox, + "multi-select": add_multiselect, + } + + return form_factories[control](**kwargs) diff --git a/twNLP-app/src/views/components/form/form_components/__init__.py b/twNLP-app/src/views/components/form/form_components/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..1cde5b6c4a3aa49a2f72d2b32809b2677e8f3a9f --- /dev/null +++ b/twNLP-app/src/views/components/form/form_components/__init__.py @@ -0,0 +1,6 @@ +from .text_area import add_text_area +from .select_box import add_selectbox +from .multi_select import add_multiselect + + +__all__ = ["add_text_area", "add_selectbox", "add_multiselect"] diff --git a/twNLP-app/src/views/components/form/form_components/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/views/components/form/form_components/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88d7b4f4f58ff0f99c93b9e6ce166124700d3fc7 Binary files /dev/null and b/twNLP-app/src/views/components/form/form_components/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/form/form_components/__pycache__/multi_select.cpython-38.pyc b/twNLP-app/src/views/components/form/form_components/__pycache__/multi_select.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..98b0a7da750cbb1cc7fb91306946da8d663bbbf2 Binary files /dev/null and b/twNLP-app/src/views/components/form/form_components/__pycache__/multi_select.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/form/form_components/__pycache__/select_box.cpython-38.pyc b/twNLP-app/src/views/components/form/form_components/__pycache__/select_box.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2ae55190f9d6ca9fb4116d4bd554d8af6958c734 Binary files /dev/null and b/twNLP-app/src/views/components/form/form_components/__pycache__/select_box.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/form/form_components/__pycache__/text_area.cpython-38.pyc b/twNLP-app/src/views/components/form/form_components/__pycache__/text_area.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97c6cf5d1bb3142a03e0b721fe79b21231ccf51e Binary files /dev/null and b/twNLP-app/src/views/components/form/form_components/__pycache__/text_area.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/form/form_components/multi_select.py b/twNLP-app/src/views/components/form/form_components/multi_select.py new file mode 100644 index 0000000000000000000000000000000000000000..1e280b782506055eb063b2a4dfd6da55ac5cef26 --- /dev/null +++ b/twNLP-app/src/views/components/form/form_components/multi_select.py @@ -0,0 +1,19 @@ +from streamlit import sidebar +from typing import Callable, List, Optional + + +def add_multiselect( + title: str, + options: List[str], + key: Optional[str] = None, + on_change: Optional[Callable] = None, + format_func: Optional[Callable] = None +): + return sidebar.multiselect( + title, + options=options, + default=list(options), + key=key, + on_change=on_change, + format_func=format_func + ) diff --git a/twNLP-app/src/views/components/form/form_components/select_box.py b/twNLP-app/src/views/components/form/form_components/select_box.py new file mode 100644 index 0000000000000000000000000000000000000000..aa0a0b3ebdd73bc7c33e42fd6c96615b288a25d0 --- /dev/null +++ b/twNLP-app/src/views/components/form/form_components/select_box.py @@ -0,0 +1,11 @@ +from streamlit import selectbox +from typing import Callable, Optional, Tuple + + +def add_selectbox( + title: str, + options: Tuple[str], + key: Optional[str] = None, + on_change: Optional[Callable] = None, +): + return selectbox(title, options=options, key=key, on_change=on_change) diff --git a/twNLP-app/src/views/components/form/form_components/text_area.py b/twNLP-app/src/views/components/form/form_components/text_area.py new file mode 100644 index 0000000000000000000000000000000000000000..c9134b19d4e39db9b7e337358a56bd86f3b8ec2f --- /dev/null +++ b/twNLP-app/src/views/components/form/form_components/text_area.py @@ -0,0 +1,11 @@ +from typing import Optional +from streamlit import text_area + + +def add_text_area( + title: str, + placeholder: Optional[str] = "", + height: Optional[int] = None, + key: Optional[str] = None, +): + return text_area(title, placeholder=placeholder, height=height, key=key) diff --git a/twNLP-app/src/views/components/sidebar/__init__.py b/twNLP-app/src/views/components/sidebar/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..070436e9db4005c8755981b3053a9970a249236b --- /dev/null +++ b/twNLP-app/src/views/components/sidebar/__init__.py @@ -0,0 +1,4 @@ +from .sidebar import visualize_side_bar + + +__all__ = ["visualize_side_bar"] diff --git a/twNLP-app/src/views/components/sidebar/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/views/components/sidebar/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b539b1c433faf2f32f9b9e689a3b47c1af308d1 Binary files /dev/null and b/twNLP-app/src/views/components/sidebar/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/sidebar/__pycache__/options.cpython-38.pyc b/twNLP-app/src/views/components/sidebar/__pycache__/options.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e226ff034727e88ba8c068d938a7286ad5d1c3ff Binary files /dev/null and b/twNLP-app/src/views/components/sidebar/__pycache__/options.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/sidebar/__pycache__/sidebar.cpython-38.pyc b/twNLP-app/src/views/components/sidebar/__pycache__/sidebar.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4d16c74c8752ddf3e71aabc3945cd466f2e0301 Binary files /dev/null and b/twNLP-app/src/views/components/sidebar/__pycache__/sidebar.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/sidebar/options.py b/twNLP-app/src/views/components/sidebar/options.py new file mode 100644 index 0000000000000000000000000000000000000000..d189723b405e8ff01918d10a26dd30175953641f --- /dev/null +++ b/twNLP-app/src/views/components/sidebar/options.py @@ -0,0 +1,6 @@ +PIPELINE_OPTIONS = ("CKIP", "CWN", +# "Jeff" +) +CWN_VISUALIZERS = ["DistilTag", "CwnSenseTag"] +CKIP_VISUALIZERS = [{"wsg": "斷詞系統"}, {"pos": "詞類標記"}, {"ner": "實體辨識"}] +# JEFF_VISUALIZERS = [{"abc": "我超強"}, "WHo are you?"] \ No newline at end of file diff --git a/twNLP-app/src/views/components/sidebar/sidebar.py b/twNLP-app/src/views/components/sidebar/sidebar.py new file mode 100644 index 0000000000000000000000000000000000000000..03511932328a594991564c5e9ce8b74fc862ef64 --- /dev/null +++ b/twNLP-app/src/views/components/sidebar/sidebar.py @@ -0,0 +1,79 @@ +import streamlit as st +from ..form import form_controller +from typing import Dict, List, Union +from .options import PIPELINE_OPTIONS, CKIP_VISUALIZERS, CWN_VISUALIZERS +# from .options import JEFF_VISUALIZERS + + +def remove_input_data(): + if "input_data" in st.session_state: + del st.session_state["input_data"] + + +def format_option(option: Union[str, Dict[str, str]]) -> str: + """The format_options function formats each option in a list of options. + If `option` is a dict, the function will extract the value from the dict. + + Args: + option (str or dict) + Returns: + a str + """ + + if isinstance(option, dict): + return list(option.values())[0] + + return option + + +def visualize_side_bar(ckip_nlp_models: List[str]): + with st.sidebar: + cols = st.columns(1) + cols[0].image(image=[ + "https://avatars.githubusercontent.com/u/21136511?s=200&v=4", + "https://ckip.iis.sinica.edu.tw/files/ckip_logo.png", + "https://cool.ntu.edu.tw/images/thumbnails/1026478/4b4hIhKX9yZPOlnar6J5c3LItwwDlj9FhCw1kRzc", + ], + width=100, + ) + + pipeline_options = form_controller( + control="select-box", + title="中文 NLP 管線處理:", + options=PIPELINE_OPTIONS, + on_change=remove_input_data, + ) + + model_options = None + + if pipeline_options == "CKIP": + model_options = form_controller( + control="select-box", + title="NLP 模型:", + options=ckip_nlp_models, + key="model", + ) + + visualizers = { + "CKIP": CKIP_VISUALIZERS, + "CWN": CWN_VISUALIZERS, + # "JEFF": JEFF_VISUALIZERS, + } + + active_visualizers = form_controller( + control="multi-select", + title="功能:", + options=visualizers[pipeline_options], + format_func=format_option, + ) + + st.markdown( + "## 📝 TODO 😢 ##"'\n' + "1. [ ] 自動爬文章 "'\n' + " (自動更新,登入問題?)"'\n' + "2. [ ] 分析不同語意並 cluster"'\n' + "3. [ ] 新的 NLP pipeline (用別的套件)"'\n' + "4. [ ] 語音和多模態"'\n' + ) + + return model_options, pipeline_options, active_visualizers diff --git a/twNLP-app/src/views/components/spinner/__init__.py b/twNLP-app/src/views/components/spinner/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..5ee6a819550c9c1bd582ab81d7fc9cd0df0a91ca --- /dev/null +++ b/twNLP-app/src/views/components/spinner/__init__.py @@ -0,0 +1,5 @@ +from .cwn import download_cwn_drivers +from .ckip import dowload_ckip_package + + +__all__ = ["download_cwn_drivers", "dowload_ckip_package"] diff --git a/twNLP-app/src/views/components/spinner/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/views/components/spinner/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..38349b1e41fc91239697247b0e6dcb51ce21b051 Binary files /dev/null and b/twNLP-app/src/views/components/spinner/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/spinner/__pycache__/ckip.cpython-38.pyc b/twNLP-app/src/views/components/spinner/__pycache__/ckip.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f34bed6eadf18a8fad9837ebf6d280f6bde022d4 Binary files /dev/null and b/twNLP-app/src/views/components/spinner/__pycache__/ckip.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/spinner/__pycache__/cwn.cpython-38.pyc b/twNLP-app/src/views/components/spinner/__pycache__/cwn.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..98926885480625fa979e0bb2b40a0557c6f7ed64 Binary files /dev/null and b/twNLP-app/src/views/components/spinner/__pycache__/cwn.cpython-38.pyc differ diff --git a/twNLP-app/src/views/components/spinner/ckip.py b/twNLP-app/src/views/components/spinner/ckip.py new file mode 100644 index 0000000000000000000000000000000000000000..e3a92ba4eae35a80cb7ec38bff7817ccce8dd991 --- /dev/null +++ b/twNLP-app/src/views/components/spinner/ckip.py @@ -0,0 +1,17 @@ +import asyncio +import streamlit as st +from pathlib import Path +from configs import ckip_path, download_ckip_drivers + + +def dowload_ckip_package(ckip_nlp_models): + drivers = list( + map(lambda model: ckip_path / f"{model}_drivers.pickle", ckip_nlp_models) + ) + + while not all(list(map(lambda path: Path(path).exists(), drivers))): + with st.spinner("Downloading CKIP models ..."): + asyncio.run(download_ckip_drivers(ckip_nlp_models)) + + if all(list(map(lambda path: Path(path).exists(), drivers))): + break diff --git a/twNLP-app/src/views/components/spinner/cwn.py b/twNLP-app/src/views/components/spinner/cwn.py new file mode 100644 index 0000000000000000000000000000000000000000..e908594f2350eaaef23417e1f9b72be6a9d80c15 --- /dev/null +++ b/twNLP-app/src/views/components/spinner/cwn.py @@ -0,0 +1,19 @@ +import streamlit as st +from pathlib import Path +from configs import download_cwn_models, cwn_model_path + + +def download_cwn_drivers(upgrade): + cwn_drivers = [ + cwn_model_path / "cwn-graph-v.2022.08.01.pyobj", + cwn_model_path / "manifest.json", + cwn_model_path / "cwn-wsd-model", + cwn_model_path / "tagmodel", + ] + + while not all(list(map(lambda path: Path(path).exists(), cwn_drivers))): + with st.spinner("Downloading CWN models ..."): + download_cwn_models(upgrade) + + if all(list(map(lambda path: Path(path).exists(), cwn_drivers))): + break diff --git a/twNLP-app/src/views/containers/__init__.py b/twNLP-app/src/views/containers/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ad951114ec4af29c4ccb88a0ac4cbb2f7f68dd88 --- /dev/null +++ b/twNLP-app/src/views/containers/__init__.py @@ -0,0 +1,7 @@ +from .cwn import display_cwn +from .ckip import display_ckip +from .data_form import display_data_form + + + +__all__ = ["display_data_form", "display_cwn", "display_ckip"] diff --git a/twNLP-app/src/views/containers/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/views/containers/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..08325e7edff9551049f82d144dc9408d2c051305 Binary files /dev/null and b/twNLP-app/src/views/containers/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/ckip/__init__.py b/twNLP-app/src/views/containers/ckip/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..6ae5aa3191b65aad8bfbd3902913facd6dbd55b7 --- /dev/null +++ b/twNLP-app/src/views/containers/ckip/__init__.py @@ -0,0 +1,4 @@ +from .ckip import display_ckip + + +__all__ = ["display_ckip"] diff --git a/twNLP-app/src/views/containers/ckip/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/views/containers/ckip/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..39d247ab86d488c796712f5c6b79cea67744c846 Binary files /dev/null and b/twNLP-app/src/views/containers/ckip/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/ckip/__pycache__/ckip.cpython-38.pyc b/twNLP-app/src/views/containers/ckip/__pycache__/ckip.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d7cdeee2ce8f506f9f4c7ea22ca1eff2f81d5d1 Binary files /dev/null and b/twNLP-app/src/views/containers/ckip/__pycache__/ckip.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/ckip/ckip.py b/twNLP-app/src/views/containers/ckip/ckip.py new file mode 100644 index 0000000000000000000000000000000000000000..01dac71c37eb9dea026aa77f6358fba19d3b2a64 --- /dev/null +++ b/twNLP-app/src/views/containers/ckip/ckip.py @@ -0,0 +1,20 @@ +import streamlit as st +from typing import List +from ...services import request + +divider_tag = "
" + + +def create_expander(nlp_model: str, visualizer: str, sentence_list: List[str]): + fetch_method = list(visualizer.keys())[0] + title = visualizer[fetch_method] + html_tags = request(fetch_method, nlp_model, sentence_list) + html_string = divider_tag.join(html_tags) + + with st.expander(title, expanded=True): + st.markdown(html_string, unsafe_allow_html=True) + + +def display_ckip(nlp_model: str, visualizers: List[str], sentence_list: List[str]): + for visualizer in visualizers: + create_expander(nlp_model, visualizer, sentence_list) diff --git a/twNLP-app/src/views/containers/cwn/__init__.py b/twNLP-app/src/views/containers/cwn/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e1eb4cdc131f2d3618d6c8ce19570e673120e048 --- /dev/null +++ b/twNLP-app/src/views/containers/cwn/__init__.py @@ -0,0 +1,4 @@ +from .cwn import display_cwn + + +__all__ = ["display_cwn"] diff --git a/twNLP-app/src/views/containers/cwn/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/views/containers/cwn/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b9538068af2e233073fafb745c1ae505b736b58a Binary files /dev/null and b/twNLP-app/src/views/containers/cwn/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/cwn/__pycache__/cwn.cpython-38.pyc b/twNLP-app/src/views/containers/cwn/__pycache__/cwn.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0d963919b00f2a8171abdb912cdea8603c00a87a Binary files /dev/null and b/twNLP-app/src/views/containers/cwn/__pycache__/cwn.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/cwn/blocks/__init__.py b/twNLP-app/src/views/containers/cwn/blocks/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..77051317394c70c9dfc902cc6623214d3a2baac1 --- /dev/null +++ b/twNLP-app/src/views/containers/cwn/blocks/__init__.py @@ -0,0 +1,5 @@ +from .distil_tag import DistilTagBlock +from .cwn_sense_tag import CWNSenseTagBlock + + +__all__ = ["DistilTagBlock", "CWNSenseTagBlock"] diff --git a/twNLP-app/src/views/containers/cwn/blocks/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/views/containers/cwn/blocks/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c01e8e2c7501a6f3a72cab8771f731c83c7ae9b4 Binary files /dev/null and b/twNLP-app/src/views/containers/cwn/blocks/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/cwn/blocks/__pycache__/base.cpython-38.pyc b/twNLP-app/src/views/containers/cwn/blocks/__pycache__/base.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9eda8b52e8acebbeaebc7c9ff3beb19947564e0c Binary files /dev/null and b/twNLP-app/src/views/containers/cwn/blocks/__pycache__/base.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/cwn/blocks/__pycache__/cwn_sense_tag.cpython-38.pyc b/twNLP-app/src/views/containers/cwn/blocks/__pycache__/cwn_sense_tag.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..880e78170057e17f779610e8c585e4e53298584f Binary files /dev/null and b/twNLP-app/src/views/containers/cwn/blocks/__pycache__/cwn_sense_tag.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/cwn/blocks/__pycache__/distil_tag.cpython-38.pyc b/twNLP-app/src/views/containers/cwn/blocks/__pycache__/distil_tag.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..daf9682cf9067f6232409f573e6bf1069d20dce7 Binary files /dev/null and b/twNLP-app/src/views/containers/cwn/blocks/__pycache__/distil_tag.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/cwn/blocks/base.py b/twNLP-app/src/views/containers/cwn/blocks/base.py new file mode 100644 index 0000000000000000000000000000000000000000..e5053e4e01228cc9be3b8156c61a28c6636b0779 --- /dev/null +++ b/twNLP-app/src/views/containers/cwn/blocks/base.py @@ -0,0 +1,12 @@ +from abc import ABC, abstractmethod + + +class Block(ABC): + """ + The Block object defines the behaviour for creating a display block. + """ + + @abstractmethod + def visualize(self): + """The visualize method visualizes the streamlit component.""" + pass diff --git a/twNLP-app/src/views/containers/cwn/blocks/cwn_sense_tag.py b/twNLP-app/src/views/containers/cwn/blocks/cwn_sense_tag.py new file mode 100644 index 0000000000000000000000000000000000000000..a3d56306262c816be43039bec16295a71ccc43fc --- /dev/null +++ b/twNLP-app/src/views/containers/cwn/blocks/cwn_sense_tag.py @@ -0,0 +1,39 @@ +import asyncio +import pandas as pd +import streamlit as st +from .base import Block +from typing import List +from dataclasses import dataclass + + +@dataclass +class CWNSenseTagBlock(Block): + """ + The CWNSenseTagBlock object visualizes the cwn sense tags. + """ + + title: str + sentence_list: List[str] + cwn_tags: List[List[List[tuple]]] + + def create_data_frame(self, value): + df = pd.DataFrame(value) + df = df.drop([2], axis=1) + df = df.rename({0: "詞彙", 1: "詞類", 3: "釋義"}, axis=1) + return df + + async def create_multiple_dfs(self, data: List[tuple]): + return list(map(self.create_data_frame, data)) + + async def gather_multiple_dfs(self, cwn_tags: List[List[List[tuple]]]): + return await asyncio.gather(*list(map(self.create_multiple_dfs, cwn_tags))) + + def visualize(self) -> None: + st.subheader(self.title) + data_frames = asyncio.run(self.gather_multiple_dfs(self.cwn_tags)) + table_result = zip(self.sentence_list, data_frames) + + for sentence, tables in table_result: + with st.expander(sentence, expanded=True): + for table in tables: + st.table(table) diff --git a/twNLP-app/src/views/containers/cwn/blocks/distil_tag.py b/twNLP-app/src/views/containers/cwn/blocks/distil_tag.py new file mode 100644 index 0000000000000000000000000000000000000000..00cf691b9e3973cab30cd92e114b82aca32e302b --- /dev/null +++ b/twNLP-app/src/views/containers/cwn/blocks/distil_tag.py @@ -0,0 +1,33 @@ +import streamlit as st +from .base import Block +from typing import List +from dataclasses import dataclass + +divider_tag = "
" + + +@dataclass +class DistilTagBlock(Block): + """ + The DistilTagBlock object visualizes the distil tags. + """ + + title: str + distil_tags: List[str] + + def render_horizontal_line(self, distil_tags: List[str]) -> str: + """The render_horizontal_line method inserts the `divider_tag` in between each item + in `distil_tags`. + Args: + distil_tags (List[str]): a list of span tags that are the result of word sense disambiguation. + Returns: + a str + """ + return divider_tag.join(distil_tags) + + def visualize(self) -> None: + html_code = self.render_horizontal_line(self.distil_tags) + + st.subheader(self.title) + with st.expander(self.title, expanded=True): + st.markdown(html_code, unsafe_allow_html=True) diff --git a/twNLP-app/src/views/containers/cwn/cwn.py b/twNLP-app/src/views/containers/cwn/cwn.py new file mode 100644 index 0000000000000000000000000000000000000000..828db4e327e78f0d4e9b37302ada5d5091480053 --- /dev/null +++ b/twNLP-app/src/views/containers/cwn/cwn.py @@ -0,0 +1,19 @@ +from typing import List +from ...services import request +from .blocks import DistilTagBlock, CWNSenseTagBlock + + +def create_block(visualizer, sentence_list): + distil_tags, cwn_tags = request("cwn", sentence_list) + + visualizer_factories = { + "DistilTag": DistilTagBlock(visualizer, distil_tags).visualize, + "CwnSenseTag": CWNSenseTagBlock(visualizer, sentence_list, cwn_tags).visualize, + } + + return visualizer_factories[visualizer]() + + +def display_cwn(nlp_model: str, visualizers: str, sentence_list: List[str]): + for visualizer in visualizers: + create_block(visualizer, sentence_list) diff --git a/twNLP-app/src/views/containers/data_form/__init__.py b/twNLP-app/src/views/containers/data_form/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..2f02f89449df92e0cb764bf3d992bff86f09c15f --- /dev/null +++ b/twNLP-app/src/views/containers/data_form/__init__.py @@ -0,0 +1,4 @@ +from .data_form import display_data_form + + +__all__ = ["display_data_form"] diff --git a/twNLP-app/src/views/containers/data_form/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/views/containers/data_form/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e181b3800adf7ed0390d1c790702fa2c1041b47 Binary files /dev/null and b/twNLP-app/src/views/containers/data_form/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/data_form/__pycache__/data_form.cpython-38.pyc b/twNLP-app/src/views/containers/data_form/__pycache__/data_form.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4dc6ba2342c9ccf5a966a517a5855735e136f5f7 Binary files /dev/null and b/twNLP-app/src/views/containers/data_form/__pycache__/data_form.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/data_form/__pycache__/utils.cpython-38.pyc b/twNLP-app/src/views/containers/data_form/__pycache__/utils.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..73900a2ebac288f408358fae05d0ec6c59646b4f Binary files /dev/null and b/twNLP-app/src/views/containers/data_form/__pycache__/utils.cpython-38.pyc differ diff --git a/twNLP-app/src/views/containers/data_form/data_form.py b/twNLP-app/src/views/containers/data_form/data_form.py new file mode 100644 index 0000000000000000000000000000000000000000..03e46ac326df54c0bd9cfcdf2c27026c03f23f51 --- /dev/null +++ b/twNLP-app/src/views/containers/data_form/data_form.py @@ -0,0 +1,24 @@ +import streamlit as st +from .utils import clean_data +from ...components.form import form_controller + + +def display_data_form(): + with st.form("my_form"): + input_data: str = form_controller( + "text-area", + title="請輸入搜尋關鍵字:", + height=10, + placeholder="可輸入多個關鍵字(會找到包含全部的標題)", + ) + submitted = st.form_submit_button("確定") + + if submitted: + cleaned_data = clean_data(input_data.strip()) + + if not cleaned_data: + st.error("請輸入文字!") + return False + + st.session_state["input_data"] = cleaned_data + return cleaned_data diff --git a/twNLP-app/src/views/containers/data_form/utils.py b/twNLP-app/src/views/containers/data_form/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..697cc61265de67b6f4acf6b27582dc35efcc6cf3 --- /dev/null +++ b/twNLP-app/src/views/containers/data_form/utils.py @@ -0,0 +1,25 @@ +from typing import List, Union + + +def clean_data(data: str) -> Union[str, List[str]]: + """The clean_data function cleans the `data`. + + Args: + data (str): the input data + Returns: + a list of strings if the data is not None or an empty string, an + empty string otherwise. + """ + + if (not data) or (data == ""): + return "" + + data_list = data.split("\n") + + is_empty_list = all(map(lambda value: value == "", data_list)) + + if is_empty_list: + return "" + + filtered_list = filter(None, data_list) + return list(map(lambda value: value.strip(), filtered_list)) diff --git a/twNLP-app/src/views/services/__init__.py b/twNLP-app/src/views/services/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..77c7c60d367c938eadea1c546c2f1366f42c43db --- /dev/null +++ b/twNLP-app/src/views/services/__init__.py @@ -0,0 +1,4 @@ +from .request import request + + +__all__ = ["request"] diff --git a/twNLP-app/src/views/services/__pycache__/__init__.cpython-38.pyc b/twNLP-app/src/views/services/__pycache__/__init__.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d1803887c3aefcdf134730651cbf68fca192afd Binary files /dev/null and b/twNLP-app/src/views/services/__pycache__/__init__.cpython-38.pyc differ diff --git a/twNLP-app/src/views/services/__pycache__/request.cpython-38.pyc b/twNLP-app/src/views/services/__pycache__/request.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..89954b0bce0edd3e93f1bd41c644c033e91df90a Binary files /dev/null and b/twNLP-app/src/views/services/__pycache__/request.cpython-38.pyc differ diff --git a/twNLP-app/src/views/services/request.py b/twNLP-app/src/views/services/request.py new file mode 100644 index 0000000000000000000000000000000000000000..5978d3cb44d96de307de3b11afa85fb609766301 --- /dev/null +++ b/twNLP-app/src/views/services/request.py @@ -0,0 +1,27 @@ +import streamlit as st +from typing import Callable +from controllers.cwn import handle_create_cwn_tags +from controllers.ckip import handle_create_ner, handle_create_pos, handle_create_wsg + + +TEN_MINUTES = 60 * 10 + + +@st.cache(ttl=TEN_MINUTES, show_spinner=True) +def request(method: str, *args, **kwargs) -> Callable: + """The request function fetches the data based on the `method`. + + Args: + method (str): the request method + Returns: + a controller function + """ + + methods = { + "ner": handle_create_ner, + "pos": handle_create_pos, + "wsg": handle_create_wsg, + "cwn": handle_create_cwn_tags, + } + + return methods[method](*args, **kwargs)