__init__.py 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585
  1. """
  2. @author: luojunhui
  3. """
  4. import json
  5. planConfigDict = {
  6. # "20240721063854162433630": "动漫二次元",
  7. # "20240721064001535851572": "游戏",
  8. "20240721064012570747614": "装修设计",
  9. "20240721064027033693901": "家居生活",
  10. "20240721064037856692958": "创意美学",
  11. "20240721064054346901161": "时尚潮流",
  12. "20240721065139955704312": "美容美妆",
  13. "20240721065144690822816": "服饰穿搭",
  14. "20240721065204600967818": "好物种草",
  15. "20240721065216328783909": "影视影评",
  16. "20240721065222773392809": "娱乐八卦",
  17. "20240721065313016877129": "情感生活",
  18. "20240721065418085156676": "文化文学",
  19. "20240721065444407933304": "生活方式",
  20. # "20240721065448295911613": "宗教历史",
  21. # "20240721065456074517643": "军事政法",
  22. "20240721065536790163449": "金融财经",
  23. "20240721065541597979774": "房产楼市",
  24. "20240721065548525430079": "科学科普",
  25. "20240721065636638920221": "互联网",
  26. # "20240721065642988552526": "数码3C",
  27. "20240721065757870627696": "新闻媒体",
  28. "20240721065858360363927": "行业资讯",
  29. "20240721065936394197711": "区域生活",
  30. "20240721070021406546573": "健康养生",
  31. "20240721070027562219631": "体育赛事",
  32. "20240721070031464491910": "运动健身",
  33. # "20240721070120535645091": "母婴育儿",
  34. "20240721070316597585132": "教育培训",
  35. "20240721070328794991834": "校园生活",
  36. "20240721070341572360754": "职场管理",
  37. "20240721070358450257397": "餐饮美食",
  38. "20240721070400833119871": "星座命理",
  39. "20240721070405096586304": "搞笑幽默",
  40. "20240721070427794574827": "旅游出行",
  41. # "20240721070443436973433": "汽车",
  42. # "20240721070450497257695": "音乐",
  43. "20240723131249517316218": "军事政法-年龄56-66",
  44. "20240723131151203388473": "宗教历史-年龄56-66"
  45. }
  46. poolLevelConfig = {
  47. "1": [
  48. "指尖奇文--1",
  49. "老友闲谈--1",
  50. "老友欢聚地--1",
  51. "趣味晚年--1",
  52. "情为老友--1",
  53. "退休老年圈--1"
  54. ],
  55. "2": [
  56. "指尖奇文--2",
  57. "老友闲谈--2",
  58. "老友欢聚地--2",
  59. "情为老友--2",
  60. "多彩妙生活--1",
  61. "多彩妙生活--2",
  62. "家家生活指南--1",
  63. "老友快乐谈--1",
  64. "人生百事观--1",
  65. "农耕趣时刻--1",
  66. "幸福启示--1",
  67. "路边闲聊社--1",
  68. "快乐精选集--1",
  69. "生活百态观--1",
  70. "生活百态观--2",
  71. "日常巧思集--1",
  72. "趣史论--1",
  73. "畅聊奇闻--1",
  74. "生活指示录--1",
  75. "奇趣百味生活--1",
  76. "无忧自在生活--1",
  77. "喜乐生活派--1",
  78. "态度说--1",
  79. "缘来养心厅--1",
  80. "便捷生活好方法--1",
  81. "看不够妙招--1"
  82. ],
  83. "3": [
  84. "趣味晚年--2",
  85. "退休老年圈--2",
  86. "家家生活指南--2",
  87. "老友快乐谈--2",
  88. "农耕趣时刻--2",
  89. "幸福启示--2",
  90. "路边闲聊社--2",
  91. "快乐精选集--2",
  92. "日常巧思集--2",
  93. "趣史论--2",
  94. "畅聊奇闻--2",
  95. "生活指示录--2",
  96. "奇趣百味生活--2",
  97. "无忧自在生活--2",
  98. "喜乐生活派--2",
  99. "态度说--2",
  100. "缘来养心厅--2",
  101. "便捷生活好方法--2",
  102. "看不够妙招--2",
  103. "日常生活小技巧集--1",
  104. "日常生活小技巧集--2",
  105. "都市镜头--1",
  106. "都市镜头--2",
  107. "退休无忧生活--1",
  108. "退休无忧生活--2",
  109. "心灵情感驿站--1",
  110. "心灵情感驿站--2",
  111. "票圈极速版--1",
  112. "票圈极速版--2",
  113. "生活良读--1",
  114. "生活良读--2",
  115. "史记有言--1",
  116. "史记有言--2",
  117. "幸福妙招合集--1",
  118. "幸福妙招合集--2",
  119. "妙招持家帮手--1",
  120. "妙招持家帮手--2",
  121. "乐享生活小窍门--1",
  122. "乐享生活小窍门--2",
  123. "天天学生活技巧--1",
  124. "天天学生活技巧--2",
  125. "音药金曲厅--1",
  126. "日常小妙招秘籍--1",
  127. "日常小妙招秘籍--2",
  128. "窦都事说--1",
  129. "巷尾风声--1",
  130. "趣谈史记--1",
  131. "趣谈史记--2",
  132. "趣味生活达人--1",
  133. "趣味生活达人--2",
  134. "异闻趣事多--1",
  135. "异闻趣事多--2",
  136. "无忧生活小妙招--1",
  137. "幸福晚年知音--1",
  138. "麒阁史记--1",
  139. "老来生活家--1",
  140. "那些历史--1",
  141. "祝福养心厅--1",
  142. "音药养心馆--1",
  143. "史记趣言--1",
  144. "生活晓常识--1",
  145. "生活情感叁读--1",
  146. "心海情澜起--1",
  147. "繁花史阁--1",
  148. "小贝生活课堂--1"
  149. ],
  150. "4": [
  151. "指尖奇文--3",
  152. "指尖奇文--4",
  153. "指尖奇文--5",
  154. "指尖奇文--6",
  155. "老友闲谈--3",
  156. "老友闲谈--4",
  157. "老友闲谈--5",
  158. "老友闲谈--6",
  159. "老友欢聚地--3",
  160. "老友欢聚地--4",
  161. "老友欢聚地--5",
  162. "老友欢聚地--6",
  163. "老友欢聚地--7",
  164. "老友欢聚地--8",
  165. "趣味晚年--3",
  166. "趣味晚年--4",
  167. "趣味晚年--5",
  168. "趣味晚年--6",
  169. "情为老友--3",
  170. "情为老友--4",
  171. "情为老友--5",
  172. "情为老友--6",
  173. "退休老年圈--3",
  174. "退休老年圈--4",
  175. "退休老年圈--5",
  176. "退休老年圈--6",
  177. "多彩妙生活--3",
  178. "多彩妙生活--4",
  179. "多彩妙生活--5",
  180. "多彩妙生活--6",
  181. "多彩妙生活--7",
  182. "多彩妙生活--8",
  183. "家家生活指南--3",
  184. "家家生活指南--4",
  185. "家家生活指南--5",
  186. "家家生活指南--6",
  187. "家家生活指南--7",
  188. "家家生活指南--8",
  189. "老友快乐谈--3",
  190. "人生百事观--2",
  191. "人生百事观--3",
  192. "农耕趣时刻--3",
  193. "农耕趣时刻--4",
  194. "农耕趣时刻--5",
  195. "农耕趣时刻--6",
  196. "路边闲聊社--3",
  197. "路边闲聊社--4",
  198. "路边闲聊社--5",
  199. "路边闲聊社--6",
  200. "生活百态观--3",
  201. "生活百态观--4",
  202. "生活百态观--5",
  203. "生活百态观--6",
  204. "日常巧思集--3",
  205. "日常巧思集--4",
  206. "日常巧思集--5",
  207. "日常巧思集--6",
  208. "趣史论--3",
  209. "趣史论--4",
  210. "趣史论--5",
  211. "趣史论--6",
  212. "缘来养心厅--3",
  213. "缘来养心厅--4",
  214. "缘来养心厅--5",
  215. "缘来养心厅--6",
  216. "心灵情感驿站--3",
  217. "票圈极速版--3",
  218. "史记有言--3",
  219. "史记有言--4",
  220. "史记有言--5",
  221. "史记有言--6",
  222. "音药金曲厅--2",
  223. "日常小妙招秘籍--3",
  224. "日常小妙招秘籍--4",
  225. "日常小妙招秘籍--5",
  226. "日常小妙招秘籍--6",
  227. "窦都事说--2",
  228. "巷尾风声--2",
  229. "趣谈史记--3",
  230. "趣谈史记--4",
  231. "趣谈史记--5",
  232. "趣谈史记--6",
  233. "无忧生活小妙招--2",
  234. "幸福晚年知音--2",
  235. "麒阁史记--2",
  236. "老来生活家--2",
  237. "那些历史--2",
  238. "祝福养心厅--2",
  239. "音药养心馆--2",
  240. "史记趣言--2",
  241. "生活晓常识--2",
  242. "生活情感叁读--2",
  243. "心海情澜起--2",
  244. "繁花史阁--2",
  245. "小贝生活课堂--2",
  246. "无忧潮生活--1",
  247. "无忧潮生活--2",
  248. "实用妙招800个--1",
  249. "实用妙招800个--2",
  250. "票圈美文速递--1",
  251. "票圈美文速递--2",
  252. "票圈美文速递--3",
  253. "小惠爱厨房--1",
  254. "小惠爱厨房--2",
  255. "小惠爱厨房--3",
  256. "小惠爱厨房--4",
  257. "小惠爱厨房--5",
  258. "小惠爱厨房--6",
  259. "小惠爱厨房--7",
  260. "小惠爱厨房--8",
  261. "小阳看天下--1",
  262. "小阳看天下--2",
  263. "票圈正能量--1",
  264. "票圈正能量--2",
  265. "票圈大事件--1",
  266. "票圈大事件--2"
  267. ],
  268. "5": [
  269. "老友快乐谈--4",
  270. "人生百事观--4",
  271. "幸福启示--3",
  272. "幸福启示--4",
  273. "快乐精选集--3",
  274. "快乐精选集--4",
  275. "畅聊奇闻--3",
  276. "畅聊奇闻--4",
  277. "生活指示录--3",
  278. "生活指示录--4",
  279. "奇趣百味生活--3",
  280. "奇趣百味生活--4",
  281. "无忧自在生活--3",
  282. "无忧自在生活--4",
  283. "喜乐生活派--3",
  284. "喜乐生活派--4",
  285. "态度说--3",
  286. "态度说--4",
  287. "便捷生活好方法--3",
  288. "便捷生活好方法--4",
  289. "看不够妙招--3",
  290. "日常生活小技巧集--3",
  291. "日常生活小技巧集--4",
  292. "都市镜头--3",
  293. "都市镜头--4",
  294. "退休无忧生活--3",
  295. "退休无忧生活--4",
  296. "票圈极速版--4",
  297. "幸福妙招合集--3",
  298. "妙招持家帮手--3",
  299. "乐享生活小窍门--3",
  300. "天天学生活技巧--3",
  301. "天天学生活技巧--4",
  302. "音药金曲厅--3",
  303. "音药金曲厅--4",
  304. "巷尾风声--3",
  305. "巷尾风声--4",
  306. "趣味生活达人--3",
  307. "异闻趣事多--3",
  308. "异闻趣事多--4",
  309. "无忧生活小妙招--3",
  310. "麒阁史记--3",
  311. "麒阁史记--4",
  312. "那些历史--3",
  313. "那些历史--4",
  314. "祝福养心厅--3",
  315. "音药养心馆--3",
  316. "音药养心馆--4",
  317. "史记趣言--3",
  318. "心海情澜起--3",
  319. "小阳看天下--3"
  320. ]
  321. }
  322. cateMap = {
  323. "军事政法": 0.2,
  324. "宗教历史": 0.2,
  325. "新闻媒体": 0.15,
  326. "情感生活": 0.15,
  327. "健康养生": 0.15,
  328. "娱乐八卦": 0.15,
  329. # "其他": 0.2
  330. }
  331. poolTagMap = {
  332. "Level4": "autoArticlePoolLevel4",
  333. "Level3": "autoArticlePoolLevel3",
  334. "Level2": "autoArticlePoolLevel2",
  335. "Level1": "autoArticlePoolLevel1"
  336. }
  337. coldPoolArticlesNum = 400
  338. accountBaseInfo = {
  339. "gh_6d205db62f04_1": {
  340. "accountName": "指尖奇文",
  341. "ghId": "gh_6d205db62f04",
  342. "fans": 845936,
  343. "position": "1",
  344. "readAvg": 17612.61,
  345. "likeAvg": 49.95
  346. },
  347. "gh_56ca3dae948c_1": {
  348. "accountName": "老友闲谈",
  349. "ghId": "gh_56ca3dae948c",
  350. "fans": 857670,
  351. "position": "1",
  352. "readAvg": 15220.42,
  353. "likeAvg": 34.95
  354. },
  355. "gh_c69776baf2cd_1": {
  356. "accountName": "老友欢聚地",
  357. "ghId": "gh_c69776baf2cd",
  358. "fans": 966567,
  359. "position": "1",
  360. "readAvg": 11657.52,
  361. "likeAvg": 38.64
  362. },
  363. "gh_9877c8541764_1": {
  364. "accountName": "退休老年圈",
  365. "ghId": "gh_9877c8541764",
  366. "fans": 803701,
  367. "position": "1",
  368. "readAvg": 10019.59,
  369. "likeAvg": 33.36
  370. },
  371. "gh_6cfd1132df94_1": {
  372. "accountName": "趣味晚年",
  373. "ghId": "gh_6cfd1132df94",
  374. "fans": 957374,
  375. "position": "1",
  376. "readAvg": 9891.27,
  377. "likeAvg": 30.05
  378. },
  379. "gh_058e41145a0c_1": {
  380. "accountName": "多彩妙生活",
  381. "ghId": "gh_058e41145a0c",
  382. "fans": 253532,
  383. "position": "1",
  384. "readAvg": 9046.74,
  385. "likeAvg": 29.42
  386. },
  387. "gh_89ef4798d3ea_1": {
  388. "accountName": "生活百态观",
  389. "ghId": "gh_89ef4798d3ea",
  390. "fans": 835095,
  391. "position": "1",
  392. "readAvg": 8826.29,
  393. "likeAvg": 23.27
  394. },
  395. "gh_56ca3dae948c_2": {
  396. "accountName": "老友闲谈",
  397. "ghId": "gh_56ca3dae948c",
  398. "fans": 857670,
  399. "position": "2",
  400. "readAvg": 8787.56,
  401. "likeAvg": 16.75
  402. },
  403. "gh_b15de7c99912_1": {
  404. "accountName": "人生百事观",
  405. "ghId": "gh_b15de7c99912",
  406. "fans": 887469,
  407. "position": "1",
  408. "readAvg": 8510.52,
  409. "likeAvg": 29.62
  410. },
  411. "gh_6d205db62f04_2": {
  412. "accountName": "指尖奇文",
  413. "ghId": "gh_6d205db62f04",
  414. "fans": 845936,
  415. "position": "2",
  416. "readAvg": 8322.2,
  417. "likeAvg": 22.73
  418. },
  419. "gh_d4dffc34ac39_1": {
  420. "accountName": "情为老友",
  421. "ghId": "gh_d4dffc34ac39",
  422. "fans": 828444,
  423. "position": "1",
  424. "readAvg": 8179.1,
  425. "likeAvg": 24.44
  426. },
  427. "gh_744cb16f6e16_1": {
  428. "accountName": "趣史论",
  429. "ghId": "gh_744cb16f6e16",
  430. "fans": 242817,
  431. "position": "1",
  432. "readAvg": 8177.88,
  433. "likeAvg": 32.85
  434. },
  435. "gh_c91b42649690_1": {
  436. "accountName": "农耕趣时刻",
  437. "ghId": "gh_c91b42649690",
  438. "fans": 226994,
  439. "position": "1",
  440. "readAvg": 7669.17,
  441. "likeAvg": 23.54
  442. },
  443. "gh_970460d9ccec_1": {
  444. "accountName": "生活之大全",
  445. "ghId": "gh_970460d9ccec",
  446. "fans": 277699,
  447. "position": "1",
  448. "readAvg": 7433.5,
  449. "likeAvg": 26.0
  450. },
  451. "gh_5ae65db96cb7_1": {
  452. "accountName": "路边闲聊社",
  453. "ghId": "gh_5ae65db96cb7",
  454. "fans": 264349,
  455. "position": "1",
  456. "readAvg": 6758.06,
  457. "likeAvg": 16.98
  458. },
  459. "gh_c5cdf60d9ab4_1": {
  460. "accountName": "老友快乐谈",
  461. "ghId": "gh_c5cdf60d9ab4",
  462. "fans": 512895,
  463. "position": "1",
  464. "readAvg": 6640.98,
  465. "likeAvg": 18.24
  466. },
  467. "gh_4c058673c07e_1": {
  468. "accountName": "家家生活指南",
  469. "ghId": "gh_4c058673c07e",
  470. "fans": 272538,
  471. "position": "1",
  472. "readAvg": 6277.29,
  473. "likeAvg": 18.35
  474. },
  475. "gh_30816d8adb52_1": {
  476. "accountName": "日常巧思集",
  477. "ghId": "gh_30816d8adb52",
  478. "fans": 255337,
  479. "position": "1",
  480. "readAvg": 6185.7,
  481. "likeAvg": 23.3
  482. },
  483. "gh_c69776baf2cd_2": {
  484. "accountName": "老友欢聚地",
  485. "ghId": "gh_c69776baf2cd",
  486. "fans": 966567,
  487. "position": "2",
  488. "readAvg": 5717.82,
  489. "likeAvg": 17.75
  490. },
  491. "gh_a2901d34f75b_1": {
  492. "accountName": "畅聊奇闻",
  493. "ghId": "gh_a2901d34f75b",
  494. "fans": 389185,
  495. "position": "1",
  496. "readAvg": 5595.2,
  497. "likeAvg": 16.62
  498. },
  499. "gh_0c89e11f8bf3_1": {
  500. "accountName": "幸福启示",
  501. "ghId": "gh_0c89e11f8bf3",
  502. "fans": 486906,
  503. "position": "1",
  504. "readAvg": 5041.48,
  505. "likeAvg": 14.96
  506. },
  507. "gh_9877c8541764_2": {
  508. "accountName": "退休老年圈",
  509. "ghId": "gh_9877c8541764",
  510. "fans": 803701,
  511. "position": "2",
  512. "readAvg": 4981.66,
  513. "likeAvg": 14.88
  514. },
  515. "gh_d49df5e974ca_1": {
  516. "accountName": "生活指示录",
  517. "ghId": "gh_d49df5e974ca",
  518. "fans": 437523,
  519. "position": "1",
  520. "readAvg": 4904.91,
  521. "likeAvg": 14.55
  522. },
  523. "gh_bff0bcb0694a_1": {
  524. "accountName": "喜乐生活派",
  525. "ghId": "gh_bff0bcb0694a",
  526. "fans": 404179,
  527. "position": "1",
  528. "readAvg": 4886.4,
  529. "likeAvg": 13.74
  530. },
  531. "gh_e24da99dc899_1": {
  532. "accountName": "缘来养心厅",
  533. "ghId": "gh_e24da99dc899",
  534. "fans": 415852,
  535. "position": "1",
  536. "readAvg": 4468.55,
  537. "likeAvg": 9.67
  538. },
  539. "gh_bfe5b705324a_1": {
  540. "accountName": "奇趣百味生活",
  541. "ghId": "gh_bfe5b705324a",
  542. "fans": 323615,
  543. "position": "1",
  544. "readAvg": 4397.41,
  545. "likeAvg": 10.65
  546. },
  547. "gh_b15de7c99912_2": {
  548. "accountName": "人生百事观",
  549. "ghId": "gh_b15de7c99912",
  550. "fans": 887469,
  551. "position": "2",
  552. "readAvg": 4247.91,
  553. "likeAvg": 16.02
  554. },
  555. "gh_89ef4798d3ea_2": {
  556. "accountName": "生活百态观",
  557. "ghId": "gh_89ef4798d3ea",
  558. "fans": 835095,
  559. "position": "2",
  560. "readAvg": 4247.33,
  561. "likeAvg": 12.2
  562. },
  563. "gh_970460d9ccec_2": {
  564. "accountName": "生活之大全",
  565. "ghId": "gh_970460d9ccec",
  566. "fans": 277699,
  567. "position": "2",
  568. "readAvg": 4178.0,
  569. "likeAvg": 12.0
  570. },
  571. "gh_080bb43aa0dc_1": {
  572. "accountName": "态度说",
  573. "ghId": "gh_080bb43aa0dc",
  574. "fans": 435916,
  575. "position": "1",
  576. "readAvg": 4166.75,
  577. "likeAvg": 10.63
  578. },
  579. "gh_7f5075624a50_1": {
  580. "accountName": "都市镜头",
  581. "ghId": "gh_7f5075624a50",
  582. "fans": 199214,
  583. "position": "1",
  584. "readAvg": 4122.41,
  585. "likeAvg": 15.34
  586. },
  587. "gh_d4dffc34ac39_2": {
  588. "accountName": "情为老友",
  589. "ghId": "gh_d4dffc34ac39",
  590. "fans": 828444,
  591. "position": "2",
  592. "readAvg": 3933.26,
  593. "likeAvg": 14.81
  594. },
  595. "gh_9eef14ad6c16_1": {
  596. "accountName": "快乐精选集",
  597. "ghId": "gh_9eef14ad6c16",
  598. "fans": 515674,
  599. "position": "1",
  600. "readAvg": 3932.46,
  601. "likeAvg": 13.71
  602. },
  603. "gh_45beb952dc74_1": {
  604. "accountName": "票圈乐活",
  605. "ghId": "gh_45beb952dc74",
  606. "fans": 126479,
  607. "position": "1",
  608. "readAvg": 3813.2,
  609. "likeAvg": 37.6
  610. },
  611. "gh_6cfd1132df94_2": {
  612. "accountName": "趣味晚年",
  613. "ghId": "gh_6cfd1132df94",
  614. "fans": 957374,
  615. "position": "2",
  616. "readAvg": 3811.49,
  617. "likeAvg": 11.27
  618. },
  619. "gh_0e4fd9e88386_1": {
  620. "accountName": "持家有妙招",
  621. "ghId": "gh_0e4fd9e88386",
  622. "fans": 171774,
  623. "position": "1",
  624. "readAvg": 3694.2,
  625. "likeAvg": 12.6
  626. },
  627. "gh_ac43eb24376d_1": {
  628. "accountName": "麒阁史记",
  629. "ghId": "gh_ac43eb24376d",
  630. "fans": 108877,
  631. "position": "1",
  632. "readAvg": 3630.53,
  633. "likeAvg": 13.0
  634. },
  635. "gh_058e41145a0c_5": {
  636. "accountName": "多彩妙生活",
  637. "ghId": "gh_058e41145a0c",
  638. "fans": 253532,
  639. "position": "5",
  640. "readAvg": 3595.0,
  641. "likeAvg": 14.5
  642. },
  643. "gh_dd4c857bbb36_1": {
  644. "accountName": "无忧自在生活",
  645. "ghId": "gh_dd4c857bbb36",
  646. "fans": 354334,
  647. "position": "1",
  648. "readAvg": 3560.54,
  649. "likeAvg": 11.55
  650. },
  651. "gh_3ed305b5817f_1": {
  652. "accountName": "看不够妙招",
  653. "ghId": "gh_3ed305b5817f",
  654. "fans": 368223,
  655. "position": "1",
  656. "readAvg": 3509.22,
  657. "likeAvg": 10.3
  658. },
  659. "gh_008ef23062ee_1": {
  660. "accountName": "日常生活小技巧集",
  661. "ghId": "gh_008ef23062ee",
  662. "fans": 218145,
  663. "position": "1",
  664. "readAvg": 3492.08,
  665. "likeAvg": 14.83
  666. },
  667. "gh_be8c29139989_1": {
  668. "accountName": "退休无忧生活",
  669. "ghId": "gh_be8c29139989",
  670. "fans": 197750,
  671. "position": "1",
  672. "readAvg": 3453.08,
  673. "likeAvg": 17.33
  674. },
  675. "gh_de9f9ebc976b_1": {
  676. "accountName": "妙招持家帮手",
  677. "ghId": "gh_de9f9ebc976b",
  678. "fans": 166062,
  679. "position": "1",
  680. "readAvg": 3345.95,
  681. "likeAvg": 12.19
  682. },
  683. "gh_5ae65db96cb7_2": {
  684. "accountName": "路边闲聊社",
  685. "ghId": "gh_5ae65db96cb7",
  686. "fans": 264349,
  687. "position": "2",
  688. "readAvg": 3318.04,
  689. "likeAvg": 8.96
  690. },
  691. "gh_058e41145a0c_2": {
  692. "accountName": "多彩妙生活",
  693. "ghId": "gh_058e41145a0c",
  694. "fans": 253532,
  695. "position": "2",
  696. "readAvg": 3313.19,
  697. "likeAvg": 10.76
  698. },
  699. "gh_744cb16f6e16_2": {
  700. "accountName": "趣史论",
  701. "ghId": "gh_744cb16f6e16",
  702. "fans": 242817,
  703. "position": "2",
  704. "readAvg": 3287.73,
  705. "likeAvg": 12.96
  706. },
  707. "gh_7e5818b2dd83_1": {
  708. "accountName": "便捷生活好方法",
  709. "ghId": "gh_7e5818b2dd83",
  710. "fans": 437854,
  711. "position": "1",
  712. "readAvg": 3276.38,
  713. "likeAvg": 10.19
  714. },
  715. "gh_de9f9ebc976b_5": {
  716. "accountName": "妙招持家帮手",
  717. "ghId": "gh_de9f9ebc976b",
  718. "fans": 166062,
  719. "position": "5",
  720. "readAvg": 3133.25,
  721. "likeAvg": 12.5
  722. },
  723. "gh_57573f01b2ee_1": {
  724. "accountName": "那些历史",
  725. "ghId": "gh_57573f01b2ee",
  726. "fans": 148233,
  727. "position": "1",
  728. "readAvg": 3126.46,
  729. "likeAvg": 12.38
  730. },
  731. "gh_058e41145a0c_6": {
  732. "accountName": "多彩妙生活",
  733. "ghId": "gh_058e41145a0c",
  734. "fans": 253532,
  735. "position": "6",
  736. "readAvg": 3040.4,
  737. "likeAvg": 13.4
  738. },
  739. "gh_c91b42649690_2": {
  740. "accountName": "农耕趣时刻",
  741. "ghId": "gh_c91b42649690",
  742. "fans": 226994,
  743. "position": "2",
  744. "readAvg": 2852.0,
  745. "likeAvg": 9.05
  746. },
  747. "gh_058e41145a0c_8": {
  748. "accountName": "多彩妙生活",
  749. "ghId": "gh_058e41145a0c",
  750. "fans": 253532,
  751. "position": "8",
  752. "readAvg": 2851.6,
  753. "likeAvg": 11.2
  754. },
  755. "gh_30816d8adb52_2": {
  756. "accountName": "日常巧思集",
  757. "ghId": "gh_30816d8adb52",
  758. "fans": 255337,
  759. "position": "2",
  760. "readAvg": 2693.2,
  761. "likeAvg": 9.1
  762. },
  763. "gh_4c058673c07e_2": {
  764. "accountName": "家家生活指南",
  765. "ghId": "gh_4c058673c07e",
  766. "fans": 272538,
  767. "position": "2",
  768. "readAvg": 2625.41,
  769. "likeAvg": 8.59
  770. },
  771. "gh_789a40fe7935_1": {
  772. "accountName": "史记有言",
  773. "ghId": "gh_789a40fe7935",
  774. "fans": 135657,
  775. "position": "1",
  776. "readAvg": 2600.54,
  777. "likeAvg": 11.62
  778. },
  779. "gh_c5cdf60d9ab4_2": {
  780. "accountName": "老友快乐谈",
  781. "ghId": "gh_c5cdf60d9ab4",
  782. "fans": 512895,
  783. "position": "2",
  784. "readAvg": 2583.53,
  785. "likeAvg": 7.35
  786. },
  787. "gh_a2901d34f75b_2": {
  788. "accountName": "畅聊奇闻",
  789. "ghId": "gh_a2901d34f75b",
  790. "fans": 389185,
  791. "position": "2",
  792. "readAvg": 2557.0,
  793. "likeAvg": 7.57
  794. },
  795. "gh_0c89e11f8bf3_2": {
  796. "accountName": "幸福启示",
  797. "ghId": "gh_0c89e11f8bf3",
  798. "fans": 486906,
  799. "position": "2",
  800. "readAvg": 2517.93,
  801. "likeAvg": 7.45
  802. },
  803. "gh_3e91f0624545_1": {
  804. "accountName": "趣谈史记",
  805. "ghId": "gh_3e91f0624545",
  806. "fans": 123680,
  807. "position": "1",
  808. "readAvg": 2482.44,
  809. "likeAvg": 8.78
  810. },
  811. "gh_969f5ea5fee1_1": {
  812. "accountName": "心海情澜起",
  813. "ghId": "gh_969f5ea5fee1",
  814. "fans": 166686,
  815. "position": "1",
  816. "readAvg": 2463.08,
  817. "likeAvg": 7.92
  818. },
  819. "gh_1d887d61088c_1": {
  820. "accountName": "乐享生活小窍门",
  821. "ghId": "gh_1d887d61088c",
  822. "fans": 214677,
  823. "position": "1",
  824. "readAvg": 2422.35,
  825. "likeAvg": 6.16
  826. },
  827. "gh_03d32e83122f_1": {
  828. "accountName": "快乐生活妙技巧",
  829. "ghId": "gh_03d32e83122f",
  830. "fans": 201051,
  831. "position": "1",
  832. "readAvg": 2403.0,
  833. "likeAvg": 9.17
  834. },
  835. "gh_d49df5e974ca_2": {
  836. "accountName": "生活指示录",
  837. "ghId": "gh_d49df5e974ca",
  838. "fans": 437523,
  839. "position": "2",
  840. "readAvg": 2399.95,
  841. "likeAvg": 8.05
  842. },
  843. "gh_058e41145a0c_7": {
  844. "accountName": "多彩妙生活",
  845. "ghId": "gh_058e41145a0c",
  846. "fans": 253532,
  847. "position": "7",
  848. "readAvg": 2391.6,
  849. "likeAvg": 8.0
  850. },
  851. "gh_192c9cf58b13_1": {
  852. "accountName": "天天学生活技巧",
  853. "ghId": "gh_192c9cf58b13",
  854. "fans": 200829,
  855. "position": "1",
  856. "readAvg": 2391.12,
  857. "likeAvg": 6.43
  858. },
  859. "gh_d2cc901deca7_1": {
  860. "accountName": "票圈极速版",
  861. "ghId": "gh_d2cc901deca7",
  862. "fans": 203462,
  863. "position": "1",
  864. "readAvg": 2370.97,
  865. "likeAvg": 14.5
  866. },
  867. "gh_ff487cb5dab3_1": {
  868. "accountName": "趣味生活达人",
  869. "ghId": "gh_ff487cb5dab3",
  870. "fans": 240559,
  871. "position": "1",
  872. "readAvg": 2370.86,
  873. "likeAvg": 6.75
  874. },
  875. "gh_de9f9ebc976b_7": {
  876. "accountName": "妙招持家帮手",
  877. "ghId": "gh_de9f9ebc976b",
  878. "fans": 166062,
  879. "position": "7",
  880. "readAvg": 2346.75,
  881. "likeAvg": 9.75
  882. },
  883. "gh_d5f935d0d1f2_1": {
  884. "accountName": "繁花史阁",
  885. "ghId": "gh_d5f935d0d1f2",
  886. "fans": 144435,
  887. "position": "1",
  888. "readAvg": 2300.38,
  889. "likeAvg": 8.69
  890. },
  891. "gh_9cf3b7ff486b_1": {
  892. "accountName": "票圈热门",
  893. "ghId": "gh_9cf3b7ff486b",
  894. "fans": 42450,
  895. "position": "1",
  896. "readAvg": 2288.4,
  897. "likeAvg": 29.8
  898. },
  899. "gh_51e4ad40466d_1": {
  900. "accountName": "日常小妙招秘籍",
  901. "ghId": "gh_51e4ad40466d",
  902. "fans": 153526,
  903. "position": "1",
  904. "readAvg": 2234.6,
  905. "likeAvg": 9.7
  906. },
  907. "gh_ac43eb24376d_5": {
  908. "accountName": "麒阁史记",
  909. "ghId": "gh_ac43eb24376d",
  910. "fans": 108877,
  911. "position": "5",
  912. "readAvg": 2232.67,
  913. "likeAvg": 7.83
  914. },
  915. "gh_efaf7da157f5_1": {
  916. "accountName": "票圈热议",
  917. "ghId": "gh_efaf7da157f5",
  918. "fans": 20306,
  919. "position": "1",
  920. "readAvg": 2229.8,
  921. "likeAvg": 27.8
  922. },
  923. "gh_b6f2c5332c72_1": {
  924. "accountName": "巷尾风声",
  925. "ghId": "gh_b6f2c5332c72",
  926. "fans": 109057,
  927. "position": "1",
  928. "readAvg": 2189.07,
  929. "likeAvg": 7.85
  930. },
  931. "gh_adca24a8f429_1": {
  932. "accountName": "史记趣言",
  933. "ghId": "gh_adca24a8f429",
  934. "fans": 126634,
  935. "position": "1",
  936. "readAvg": 2168.87,
  937. "likeAvg": 8.06
  938. },
  939. "gh_e24da99dc899_2": {
  940. "accountName": "缘来养心厅",
  941. "ghId": "gh_e24da99dc899",
  942. "fans": 415852,
  943. "position": "2",
  944. "readAvg": 2157.14,
  945. "likeAvg": 3.63
  946. },
  947. "gh_6b7c2a257263_1": {
  948. "accountName": "幸福晚年知音",
  949. "ghId": "gh_6b7c2a257263",
  950. "fans": 243535,
  951. "position": "1",
  952. "readAvg": 2155.98,
  953. "likeAvg": 4.56
  954. },
  955. "gh_95ed5ecf9363_1": {
  956. "accountName": "生活小优招",
  957. "ghId": "gh_95ed5ecf9363",
  958. "fans": 156489,
  959. "position": "1",
  960. "readAvg": 2134.0,
  961. "likeAvg": 9.2
  962. },
  963. "gh_7f5075624a50_2": {
  964. "accountName": "都市镜头",
  965. "ghId": "gh_7f5075624a50",
  966. "fans": 199214,
  967. "position": "2",
  968. "readAvg": 2100.24,
  969. "likeAvg": 9.25
  970. },
  971. "gh_bff0bcb0694a_2": {
  972. "accountName": "喜乐生活派",
  973. "ghId": "gh_bff0bcb0694a",
  974. "fans": 404179,
  975. "position": "2",
  976. "readAvg": 2099.55,
  977. "likeAvg": 5.09
  978. },
  979. "gh_bfe5b705324a_2": {
  980. "accountName": "奇趣百味生活",
  981. "ghId": "gh_bfe5b705324a",
  982. "fans": 323615,
  983. "position": "2",
  984. "readAvg": 2074.87,
  985. "likeAvg": 5.76
  986. },
  987. "gh_e0eb490115f5_1": {
  988. "accountName": "心灵情感驿站",
  989. "ghId": "gh_e0eb490115f5",
  990. "fans": 315146,
  991. "position": "1",
  992. "readAvg": 2057.45,
  993. "likeAvg": 6.62
  994. },
  995. "gh_03d32e83122f_2": {
  996. "accountName": "快乐生活妙技巧",
  997. "ghId": "gh_03d32e83122f",
  998. "fans": 201051,
  999. "position": "2",
  1000. "readAvg": 2022.0,
  1001. "likeAvg": 4.4
  1002. },
  1003. "gh_72bace6b3059_1": {
  1004. "accountName": "幸福妙招合集",
  1005. "ghId": "gh_72bace6b3059",
  1006. "fans": 425935,
  1007. "position": "1",
  1008. "readAvg": 1982.73,
  1009. "likeAvg": 7.75
  1010. },
  1011. "gh_9f8dc5b0c74e_1": {
  1012. "accountName": "音药金曲厅",
  1013. "ghId": "gh_9f8dc5b0c74e",
  1014. "fans": 162850,
  1015. "position": "1",
  1016. "readAvg": 1982.36,
  1017. "likeAvg": 7.96
  1018. },
  1019. "gh_de9f9ebc976b_6": {
  1020. "accountName": "妙招持家帮手",
  1021. "ghId": "gh_de9f9ebc976b",
  1022. "fans": 166062,
  1023. "position": "6",
  1024. "readAvg": 1982.25,
  1025. "likeAvg": 7.0
  1026. },
  1027. "gh_080bb43aa0dc_2": {
  1028. "accountName": "态度说",
  1029. "ghId": "gh_080bb43aa0dc",
  1030. "fans": 435916,
  1031. "position": "2",
  1032. "readAvg": 1956.73,
  1033. "likeAvg": 5.55
  1034. },
  1035. "gh_0e4fd9e88386_2": {
  1036. "accountName": "持家有妙招",
  1037. "ghId": "gh_0e4fd9e88386",
  1038. "fans": 171774,
  1039. "position": "2",
  1040. "readAvg": 1951.0,
  1041. "likeAvg": 6.8
  1042. },
  1043. "gh_6d9f36e3a7be_1": {
  1044. "accountName": "音药养心馆",
  1045. "ghId": "gh_6d9f36e3a7be",
  1046. "fans": 205282,
  1047. "position": "1",
  1048. "readAvg": 1934.88,
  1049. "likeAvg": 4.25
  1050. },
  1051. "gh_7b4a5f86d68c_1": {
  1052. "accountName": "异闻趣事多",
  1053. "ghId": "gh_7b4a5f86d68c",
  1054. "fans": 149539,
  1055. "position": "1",
  1056. "readAvg": 1929.08,
  1057. "likeAvg": 6.17
  1058. },
  1059. "gh_b676b7ad9b74_1": {
  1060. "accountName": "无忧生活小妙招",
  1061. "ghId": "gh_b676b7ad9b74",
  1062. "fans": 215401,
  1063. "position": "1",
  1064. "readAvg": 1833.66,
  1065. "likeAvg": 6.36
  1066. },
  1067. "gh_ac43eb24376d_6": {
  1068. "accountName": "麒阁史记",
  1069. "ghId": "gh_ac43eb24376d",
  1070. "fans": 108877,
  1071. "position": "6",
  1072. "readAvg": 1813.67,
  1073. "likeAvg": 8.33
  1074. },
  1075. "gh_b8baac4296cb_1": {
  1076. "accountName": "票圈原创视频精选",
  1077. "ghId": "gh_b8baac4296cb",
  1078. "fans": 49884,
  1079. "position": "1",
  1080. "readAvg": 1812.4,
  1081. "likeAvg": 15.0
  1082. },
  1083. "gh_95ed5ecf9363_2": {
  1084. "accountName": "生活小优招",
  1085. "ghId": "gh_95ed5ecf9363",
  1086. "fans": 156489,
  1087. "position": "2",
  1088. "readAvg": 1806.4,
  1089. "likeAvg": 3.6
  1090. },
  1091. "gh_183d80deffb8_1": {
  1092. "accountName": "生活良读",
  1093. "ghId": "gh_183d80deffb8",
  1094. "fans": 89392,
  1095. "position": "1",
  1096. "readAvg": 1801.56,
  1097. "likeAvg": 6.78
  1098. },
  1099. "gh_29074b51f2b7_1": {
  1100. "accountName": "老来生活家",
  1101. "ghId": "gh_29074b51f2b7",
  1102. "fans": 197360,
  1103. "position": "1",
  1104. "readAvg": 1801.53,
  1105. "likeAvg": 5.12
  1106. },
  1107. "gh_9eef14ad6c16_2": {
  1108. "accountName": "快乐精选集",
  1109. "ghId": "gh_9eef14ad6c16",
  1110. "fans": 515674,
  1111. "position": "2",
  1112. "readAvg": 1789.82,
  1113. "likeAvg": 6.43
  1114. },
  1115. "gh_0e4fd9e88386_5": {
  1116. "accountName": "持家有妙招",
  1117. "ghId": "gh_0e4fd9e88386",
  1118. "fans": 171774,
  1119. "position": "5",
  1120. "readAvg": 1788.67,
  1121. "likeAvg": 6.67
  1122. },
  1123. "gh_3ed305b5817f_2": {
  1124. "accountName": "看不够妙招",
  1125. "ghId": "gh_3ed305b5817f",
  1126. "fans": 368223,
  1127. "position": "2",
  1128. "readAvg": 1761.12,
  1129. "likeAvg": 6.0
  1130. },
  1131. "gh_7e5818b2dd83_2": {
  1132. "accountName": "便捷生活好方法",
  1133. "ghId": "gh_7e5818b2dd83",
  1134. "fans": 437854,
  1135. "position": "2",
  1136. "readAvg": 1737.68,
  1137. "likeAvg": 5.58
  1138. },
  1139. "gh_dd4c857bbb36_2": {
  1140. "accountName": "无忧自在生活",
  1141. "ghId": "gh_dd4c857bbb36",
  1142. "fans": 354334,
  1143. "position": "2",
  1144. "readAvg": 1663.8,
  1145. "likeAvg": 5.88
  1146. },
  1147. "gh_de9f9ebc976b_8": {
  1148. "accountName": "妙招持家帮手",
  1149. "ghId": "gh_de9f9ebc976b",
  1150. "fans": 166062,
  1151. "position": "8",
  1152. "readAvg": 1650.5,
  1153. "likeAvg": 8.5
  1154. },
  1155. "gh_b32125c73861_1": {
  1156. "accountName": "票圈奇闻",
  1157. "ghId": "gh_b32125c73861",
  1158. "fans": 30063,
  1159. "position": "1",
  1160. "readAvg": 1568.4,
  1161. "likeAvg": 13.8
  1162. },
  1163. "gh_f25b5fb01977_1": {
  1164. "accountName": "生活晓常识",
  1165. "ghId": "gh_f25b5fb01977",
  1166. "fans": 177200,
  1167. "position": "1",
  1168. "readAvg": 1524.62,
  1169. "likeAvg": 4.77
  1170. },
  1171. "gh_adca24a8f429_5": {
  1172. "accountName": "史记趣言",
  1173. "ghId": "gh_adca24a8f429",
  1174. "fans": 126634,
  1175. "position": "5",
  1176. "readAvg": 1502.0,
  1177. "likeAvg": 5.0
  1178. },
  1179. "gh_0e4fd9e88386_6": {
  1180. "accountName": "持家有妙招",
  1181. "ghId": "gh_0e4fd9e88386",
  1182. "fans": 171774,
  1183. "position": "6",
  1184. "readAvg": 1501.5,
  1185. "likeAvg": 7.67
  1186. },
  1187. "gh_adca24a8f429_6": {
  1188. "accountName": "史记趣言",
  1189. "ghId": "gh_adca24a8f429",
  1190. "fans": 126634,
  1191. "position": "6",
  1192. "readAvg": 1493.5,
  1193. "likeAvg": 4.5
  1194. },
  1195. "gh_008ef23062ee_2": {
  1196. "accountName": "日常生活小技巧集",
  1197. "ghId": "gh_008ef23062ee",
  1198. "fans": 218145,
  1199. "position": "2",
  1200. "readAvg": 1486.0,
  1201. "likeAvg": 5.62
  1202. },
  1203. "gh_4568b5a7e2fe_1": {
  1204. "accountName": "窦都事说",
  1205. "ghId": "gh_4568b5a7e2fe",
  1206. "fans": 329707,
  1207. "position": "1",
  1208. "readAvg": 1471.94,
  1209. "likeAvg": 5.82
  1210. },
  1211. "gh_ac43eb24376d_2": {
  1212. "accountName": "麒阁史记",
  1213. "ghId": "gh_ac43eb24376d",
  1214. "fans": 108877,
  1215. "position": "2",
  1216. "readAvg": 1455.21,
  1217. "likeAvg": 4.89
  1218. },
  1219. "gh_ac43eb24376d_8": {
  1220. "accountName": "麒阁史记",
  1221. "ghId": "gh_ac43eb24376d",
  1222. "fans": 108877,
  1223. "position": "8",
  1224. "readAvg": 1450.17,
  1225. "likeAvg": 5.0
  1226. },
  1227. "gh_adca24a8f429_7": {
  1228. "accountName": "史记趣言",
  1229. "ghId": "gh_adca24a8f429",
  1230. "fans": 126634,
  1231. "position": "7",
  1232. "readAvg": 1443.5,
  1233. "likeAvg": 6.5
  1234. },
  1235. "gh_ac43eb24376d_7": {
  1236. "accountName": "麒阁史记",
  1237. "ghId": "gh_ac43eb24376d",
  1238. "fans": 108877,
  1239. "position": "7",
  1240. "readAvg": 1440.5,
  1241. "likeAvg": 6.67
  1242. },
  1243. "gh_be8c29139989_2": {
  1244. "accountName": "退休无忧生活",
  1245. "ghId": "gh_be8c29139989",
  1246. "fans": 197750,
  1247. "position": "2",
  1248. "readAvg": 1423.85,
  1249. "likeAvg": 6.08
  1250. },
  1251. "gh_de9f9ebc976b_2": {
  1252. "accountName": "妙招持家帮手",
  1253. "ghId": "gh_de9f9ebc976b",
  1254. "fans": 166062,
  1255. "position": "2",
  1256. "readAvg": 1365.0,
  1257. "likeAvg": 5.71
  1258. },
  1259. "gh_1d887d61088c_2": {
  1260. "accountName": "乐享生活小窍门",
  1261. "ghId": "gh_1d887d61088c",
  1262. "fans": 214677,
  1263. "position": "2",
  1264. "readAvg": 1358.86,
  1265. "likeAvg": 3.84
  1266. },
  1267. "gh_192c9cf58b13_2": {
  1268. "accountName": "天天学生活技巧",
  1269. "ghId": "gh_192c9cf58b13",
  1270. "fans": 200829,
  1271. "position": "2",
  1272. "readAvg": 1349.96,
  1273. "likeAvg": 3.37
  1274. },
  1275. "gh_adca24a8f429_8": {
  1276. "accountName": "史记趣言",
  1277. "ghId": "gh_adca24a8f429",
  1278. "fans": 126634,
  1279. "position": "8",
  1280. "readAvg": 1329.5,
  1281. "likeAvg": 8.5
  1282. },
  1283. "gh_45beb952dc74_2": {
  1284. "accountName": "票圈乐活",
  1285. "ghId": "gh_45beb952dc74",
  1286. "fans": 126479,
  1287. "position": "2",
  1288. "readAvg": 1324.67,
  1289. "likeAvg": 17.83
  1290. },
  1291. "gh_adca24a8f429_2": {
  1292. "accountName": "史记趣言",
  1293. "ghId": "gh_adca24a8f429",
  1294. "fans": 126634,
  1295. "position": "2",
  1296. "readAvg": 1287.87,
  1297. "likeAvg": 5.23
  1298. },
  1299. "gh_5ff48e9fb9ef_1": {
  1300. "accountName": "祝福养心厅",
  1301. "ghId": "gh_5ff48e9fb9ef",
  1302. "fans": 147236,
  1303. "position": "1",
  1304. "readAvg": 1287.22,
  1305. "likeAvg": 5.66
  1306. },
  1307. "gh_f902cea89e48_1": {
  1308. "accountName": "无忧潮生活",
  1309. "ghId": "gh_f902cea89e48",
  1310. "fans": 162528,
  1311. "position": "1",
  1312. "readAvg": 1271.74,
  1313. "likeAvg": 4.55
  1314. },
  1315. "gh_ff487cb5dab3_2": {
  1316. "accountName": "趣味生活达人",
  1317. "ghId": "gh_ff487cb5dab3",
  1318. "fans": 240559,
  1319. "position": "2",
  1320. "readAvg": 1267.53,
  1321. "likeAvg": 3.13
  1322. },
  1323. "gh_789a40fe7935_2": {
  1324. "accountName": "史记有言",
  1325. "ghId": "gh_789a40fe7935",
  1326. "fans": 135657,
  1327. "position": "2",
  1328. "readAvg": 1263.0,
  1329. "likeAvg": 3.85
  1330. },
  1331. "gh_3e91f0624545_2": {
  1332. "accountName": "趣谈史记",
  1333. "ghId": "gh_3e91f0624545",
  1334. "fans": 123680,
  1335. "position": "2",
  1336. "readAvg": 1233.89,
  1337. "likeAvg": 4.22
  1338. },
  1339. "gh_57573f01b2ee_2": {
  1340. "accountName": "那些历史",
  1341. "ghId": "gh_57573f01b2ee",
  1342. "fans": 148233,
  1343. "position": "2",
  1344. "readAvg": 1222.0,
  1345. "likeAvg": 4.0
  1346. },
  1347. "gh_0e4fd9e88386_7": {
  1348. "accountName": "持家有妙招",
  1349. "ghId": "gh_0e4fd9e88386",
  1350. "fans": 171774,
  1351. "position": "7",
  1352. "readAvg": 1200.17,
  1353. "likeAvg": 4.5
  1354. },
  1355. "gh_b3ffc1ca3a04_1": {
  1356. "accountName": "票圈内容精选",
  1357. "ghId": "gh_b3ffc1ca3a04",
  1358. "fans": 17876,
  1359. "position": "1",
  1360. "readAvg": 1166.0,
  1361. "likeAvg": 13.4
  1362. },
  1363. "gh_058e41145a0c_3": {
  1364. "accountName": "多彩妙生活",
  1365. "ghId": "gh_058e41145a0c",
  1366. "fans": 253532,
  1367. "position": "3",
  1368. "readAvg": 1161.73,
  1369. "likeAvg": 3.45
  1370. },
  1371. "gh_b6f2c5332c72_2": {
  1372. "accountName": "巷尾风声",
  1373. "ghId": "gh_b6f2c5332c72",
  1374. "fans": 109057,
  1375. "position": "2",
  1376. "readAvg": 1146.07,
  1377. "likeAvg": 4.49
  1378. },
  1379. "gh_51e4ad40466d_2": {
  1380. "accountName": "日常小妙招秘籍",
  1381. "ghId": "gh_51e4ad40466d",
  1382. "fans": 153526,
  1383. "position": "2",
  1384. "readAvg": 1082.7,
  1385. "likeAvg": 4.5
  1386. },
  1387. "gh_0e4fd9e88386_4": {
  1388. "accountName": "持家有妙招",
  1389. "ghId": "gh_0e4fd9e88386",
  1390. "fans": 171774,
  1391. "position": "4",
  1392. "readAvg": 1059.18,
  1393. "likeAvg": 4.45
  1394. },
  1395. "gh_0e4fd9e88386_3": {
  1396. "accountName": "持家有妙招",
  1397. "ghId": "gh_0e4fd9e88386",
  1398. "fans": 171774,
  1399. "position": "3",
  1400. "readAvg": 1054.27,
  1401. "likeAvg": 6.09
  1402. },
  1403. "gh_e0eb490115f5_2": {
  1404. "accountName": "心灵情感驿站",
  1405. "ghId": "gh_e0eb490115f5",
  1406. "fans": 315146,
  1407. "position": "2",
  1408. "readAvg": 1053.91,
  1409. "likeAvg": 3.65
  1410. },
  1411. "gh_72bace6b3059_2": {
  1412. "accountName": "幸福妙招合集",
  1413. "ghId": "gh_72bace6b3059",
  1414. "fans": 425935,
  1415. "position": "2",
  1416. "readAvg": 1039.64,
  1417. "likeAvg": 5.11
  1418. },
  1419. "gh_084a485e859a_1": {
  1420. "accountName": "生活情感叁读",
  1421. "ghId": "gh_084a485e859a",
  1422. "fans": 120693,
  1423. "position": "1",
  1424. "readAvg": 1022.07,
  1425. "likeAvg": 3.69
  1426. },
  1427. "gh_9cf3b7ff486b_2": {
  1428. "accountName": "票圈热门",
  1429. "ghId": "gh_9cf3b7ff486b",
  1430. "fans": 42450,
  1431. "position": "2",
  1432. "readAvg": 1002.33,
  1433. "likeAvg": 23.67
  1434. },
  1435. "gh_058e41145a0c_4": {
  1436. "accountName": "多彩妙生活",
  1437. "ghId": "gh_058e41145a0c",
  1438. "fans": 253532,
  1439. "position": "4",
  1440. "readAvg": 988.43,
  1441. "likeAvg": 3.24
  1442. },
  1443. "gh_9f8dc5b0c74e_2": {
  1444. "accountName": "音药金曲厅",
  1445. "ghId": "gh_9f8dc5b0c74e",
  1446. "fans": 162850,
  1447. "position": "2",
  1448. "readAvg": 969.79,
  1449. "likeAvg": 3.79
  1450. },
  1451. "gh_b676b7ad9b74_2": {
  1452. "accountName": "无忧生活小妙招",
  1453. "ghId": "gh_b676b7ad9b74",
  1454. "fans": 215401,
  1455. "position": "2",
  1456. "readAvg": 961.81,
  1457. "likeAvg": 3.03
  1458. },
  1459. "gh_efaf7da157f5_2": {
  1460. "accountName": "票圈热议",
  1461. "ghId": "gh_efaf7da157f5",
  1462. "fans": 20306,
  1463. "position": "2",
  1464. "readAvg": 955.4,
  1465. "likeAvg": 20.8
  1466. },
  1467. "gh_d2cc901deca7_2": {
  1468. "accountName": "票圈极速版",
  1469. "ghId": "gh_d2cc901deca7",
  1470. "fans": 203462,
  1471. "position": "2",
  1472. "readAvg": 955.1,
  1473. "likeAvg": 6.77
  1474. },
  1475. "gh_45beb952dc74_5": {
  1476. "accountName": "票圈乐活",
  1477. "ghId": "gh_45beb952dc74",
  1478. "fans": 126479,
  1479. "position": "5",
  1480. "readAvg": 954.5,
  1481. "likeAvg": 10.17
  1482. },
  1483. "gh_1b27dd1beeca_1": {
  1484. "accountName": "小贝生活课堂",
  1485. "ghId": "gh_1b27dd1beeca",
  1486. "fans": 155419,
  1487. "position": "1",
  1488. "readAvg": 942.95,
  1489. "likeAvg": 2.58
  1490. },
  1491. "gh_d5f935d0d1f2_2": {
  1492. "accountName": "繁花史阁",
  1493. "ghId": "gh_d5f935d0d1f2",
  1494. "fans": 144435,
  1495. "position": "2",
  1496. "readAvg": 938.15,
  1497. "likeAvg": 4.08
  1498. },
  1499. "gh_7b4a5f86d68c_2": {
  1500. "accountName": "异闻趣事多",
  1501. "ghId": "gh_7b4a5f86d68c",
  1502. "fans": 149539,
  1503. "position": "2",
  1504. "readAvg": 922.33,
  1505. "likeAvg": 2.62
  1506. },
  1507. "gh_45beb952dc74_3": {
  1508. "accountName": "票圈乐活",
  1509. "ghId": "gh_45beb952dc74",
  1510. "fans": 126479,
  1511. "position": "3",
  1512. "readAvg": 878.83,
  1513. "likeAvg": 12.67
  1514. },
  1515. "gh_6d9f36e3a7be_2": {
  1516. "accountName": "音药养心馆",
  1517. "ghId": "gh_6d9f36e3a7be",
  1518. "fans": 205282,
  1519. "position": "2",
  1520. "readAvg": 862.12,
  1521. "likeAvg": 2.0
  1522. },
  1523. "gh_ee78360d06f5_1": {
  1524. "accountName": "实用妙招800个",
  1525. "ghId": "gh_ee78360d06f5",
  1526. "fans": 120597,
  1527. "position": "1",
  1528. "readAvg": 841.79,
  1529. "likeAvg": 2.55
  1530. },
  1531. "gh_45beb952dc74_4": {
  1532. "accountName": "票圈乐活",
  1533. "ghId": "gh_45beb952dc74",
  1534. "fans": 126479,
  1535. "position": "4",
  1536. "readAvg": 829.33,
  1537. "likeAvg": 10.83
  1538. },
  1539. "gh_0e4fd9e88386_8": {
  1540. "accountName": "持家有妙招",
  1541. "ghId": "gh_0e4fd9e88386",
  1542. "fans": 171774,
  1543. "position": "8",
  1544. "readAvg": 828.17,
  1545. "likeAvg": 3.5
  1546. },
  1547. "gh_29074b51f2b7_2": {
  1548. "accountName": "老来生活家",
  1549. "ghId": "gh_29074b51f2b7",
  1550. "fans": 197360,
  1551. "position": "2",
  1552. "readAvg": 827.29,
  1553. "likeAvg": 2.73
  1554. },
  1555. "gh_744cb16f6e16_3": {
  1556. "accountName": "趣史论",
  1557. "ghId": "gh_744cb16f6e16",
  1558. "fans": 242817,
  1559. "position": "3",
  1560. "readAvg": 825.78,
  1561. "likeAvg": 4.26
  1562. },
  1563. "gh_6b7c2a257263_2": {
  1564. "accountName": "幸福晚年知音",
  1565. "ghId": "gh_6b7c2a257263",
  1566. "fans": 243535,
  1567. "position": "2",
  1568. "readAvg": 816.58,
  1569. "likeAvg": 2.28
  1570. },
  1571. "gh_183d80deffb8_2": {
  1572. "accountName": "生活良读",
  1573. "ghId": "gh_183d80deffb8",
  1574. "fans": 89392,
  1575. "position": "2",
  1576. "readAvg": 792.57,
  1577. "likeAvg": 3.02
  1578. },
  1579. "gh_9cf3b7ff486b_3": {
  1580. "accountName": "票圈热门",
  1581. "ghId": "gh_9cf3b7ff486b",
  1582. "fans": 42450,
  1583. "position": "3",
  1584. "readAvg": 746.33,
  1585. "likeAvg": 17.0
  1586. },
  1587. "gh_ac43eb24376d_4": {
  1588. "accountName": "麒阁史记",
  1589. "ghId": "gh_ac43eb24376d",
  1590. "fans": 108877,
  1591. "position": "4",
  1592. "readAvg": 731.42,
  1593. "likeAvg": 2.53
  1594. },
  1595. "gh_b8baac4296cb_2": {
  1596. "accountName": "票圈原创视频精选",
  1597. "ghId": "gh_b8baac4296cb",
  1598. "fans": 49884,
  1599. "position": "2",
  1600. "readAvg": 725.33,
  1601. "likeAvg": 7.67
  1602. },
  1603. "gh_f25b5fb01977_2": {
  1604. "accountName": "生活晓常识",
  1605. "ghId": "gh_f25b5fb01977",
  1606. "fans": 177200,
  1607. "position": "2",
  1608. "readAvg": 705.11,
  1609. "likeAvg": 2.28
  1610. },
  1611. "gh_ac43eb24376d_3": {
  1612. "accountName": "麒阁史记",
  1613. "ghId": "gh_ac43eb24376d",
  1614. "fans": 108877,
  1615. "position": "3",
  1616. "readAvg": 703.06,
  1617. "likeAvg": 3.17
  1618. },
  1619. "gh_970460d9ccec_3": {
  1620. "accountName": "生活之大全",
  1621. "ghId": "gh_970460d9ccec",
  1622. "fans": 277699,
  1623. "position": "3",
  1624. "readAvg": 668.8,
  1625. "likeAvg": 2.8
  1626. },
  1627. "gh_b32125c73861_2": {
  1628. "accountName": "票圈奇闻",
  1629. "ghId": "gh_b32125c73861",
  1630. "fans": 30063,
  1631. "position": "2",
  1632. "readAvg": 668.0,
  1633. "likeAvg": 5.17
  1634. },
  1635. "gh_9cf3b7ff486b_5": {
  1636. "accountName": "票圈热门",
  1637. "ghId": "gh_9cf3b7ff486b",
  1638. "fans": 42450,
  1639. "position": "5",
  1640. "readAvg": 660.67,
  1641. "likeAvg": 6.17
  1642. },
  1643. "gh_969f5ea5fee1_2": {
  1644. "accountName": "心海情澜起",
  1645. "ghId": "gh_969f5ea5fee1",
  1646. "fans": 166686,
  1647. "position": "2",
  1648. "readAvg": 638.42,
  1649. "likeAvg": 2.25
  1650. },
  1651. "gh_45beb952dc74_6": {
  1652. "accountName": "票圈乐活",
  1653. "ghId": "gh_45beb952dc74",
  1654. "fans": 126479,
  1655. "position": "6",
  1656. "readAvg": 624.83,
  1657. "likeAvg": 7.83
  1658. },
  1659. "gh_5ff48e9fb9ef_2": {
  1660. "accountName": "祝福养心厅",
  1661. "ghId": "gh_5ff48e9fb9ef",
  1662. "fans": 147236,
  1663. "position": "2",
  1664. "readAvg": 622.37,
  1665. "likeAvg": 2.86
  1666. },
  1667. "gh_efaf7da157f5_3": {
  1668. "accountName": "票圈热议",
  1669. "ghId": "gh_efaf7da157f5",
  1670. "fans": 20306,
  1671. "position": "3",
  1672. "readAvg": 616.0,
  1673. "likeAvg": 9.29
  1674. },
  1675. "gh_45beb952dc74_8": {
  1676. "accountName": "票圈乐活",
  1677. "ghId": "gh_45beb952dc74",
  1678. "fans": 126479,
  1679. "position": "8",
  1680. "readAvg": 601.71,
  1681. "likeAvg": 9.57
  1682. },
  1683. "gh_b8baac4296cb_3": {
  1684. "accountName": "票圈原创视频精选",
  1685. "ghId": "gh_b8baac4296cb",
  1686. "fans": 49884,
  1687. "position": "3",
  1688. "readAvg": 596.57,
  1689. "likeAvg": 7.57
  1690. },
  1691. "gh_56ca3dae948c_3": {
  1692. "accountName": "老友闲谈",
  1693. "ghId": "gh_56ca3dae948c",
  1694. "fans": 857670,
  1695. "position": "3",
  1696. "readAvg": 550.27,
  1697. "likeAvg": 2.03
  1698. },
  1699. "gh_b32125c73861_3": {
  1700. "accountName": "票圈奇闻",
  1701. "ghId": "gh_b32125c73861",
  1702. "fans": 30063,
  1703. "position": "3",
  1704. "readAvg": 542.71,
  1705. "likeAvg": 5.14
  1706. },
  1707. "gh_9cf3b7ff486b_4": {
  1708. "accountName": "票圈热门",
  1709. "ghId": "gh_9cf3b7ff486b",
  1710. "fans": 42450,
  1711. "position": "4",
  1712. "readAvg": 527.33,
  1713. "likeAvg": 7.83
  1714. },
  1715. "gh_b8baac4296cb_5": {
  1716. "accountName": "票圈原创视频精选",
  1717. "ghId": "gh_b8baac4296cb",
  1718. "fans": 49884,
  1719. "position": "5",
  1720. "readAvg": 518.0,
  1721. "likeAvg": 3.33
  1722. },
  1723. "gh_c91b42649690_3": {
  1724. "accountName": "农耕趣时刻",
  1725. "ghId": "gh_c91b42649690",
  1726. "fans": 226994,
  1727. "position": "3",
  1728. "readAvg": 513.41,
  1729. "likeAvg": 1.59
  1730. },
  1731. "gh_b32125c73861_5": {
  1732. "accountName": "票圈奇闻",
  1733. "ghId": "gh_b32125c73861",
  1734. "fans": 30063,
  1735. "position": "5",
  1736. "readAvg": 505.0,
  1737. "likeAvg": 4.67
  1738. },
  1739. "gh_084a485e859a_2": {
  1740. "accountName": "生活情感叁读",
  1741. "ghId": "gh_084a485e859a",
  1742. "fans": 120693,
  1743. "position": "2",
  1744. "readAvg": 497.68,
  1745. "likeAvg": 1.93
  1746. },
  1747. "gh_b3ffc1ca3a04_2": {
  1748. "accountName": "票圈内容精选",
  1749. "ghId": "gh_b3ffc1ca3a04",
  1750. "fans": 17876,
  1751. "position": "2",
  1752. "readAvg": 495.0,
  1753. "likeAvg": 6.67
  1754. },
  1755. "gh_f902cea89e48_2": {
  1756. "accountName": "无忧潮生活",
  1757. "ghId": "gh_f902cea89e48",
  1758. "fans": 162528,
  1759. "position": "2",
  1760. "readAvg": 472.73,
  1761. "likeAvg": 2.12
  1762. },
  1763. "gh_1b27dd1beeca_2": {
  1764. "accountName": "小贝生活课堂",
  1765. "ghId": "gh_1b27dd1beeca",
  1766. "fans": 155419,
  1767. "position": "2",
  1768. "readAvg": 462.3,
  1769. "likeAvg": 1.14
  1770. },
  1771. "gh_c91b42649690_4": {
  1772. "accountName": "农耕趣时刻",
  1773. "ghId": "gh_c91b42649690",
  1774. "fans": 226994,
  1775. "position": "4",
  1776. "readAvg": 452.64,
  1777. "likeAvg": 1.86
  1778. },
  1779. "gh_26a307578776_1": {
  1780. "accountName": "票圈美文速递",
  1781. "ghId": "gh_26a307578776",
  1782. "fans": 18670,
  1783. "position": "1",
  1784. "readAvg": 446.54,
  1785. "likeAvg": 10.36
  1786. },
  1787. "gh_45beb952dc74_7": {
  1788. "accountName": "票圈乐活",
  1789. "ghId": "gh_45beb952dc74",
  1790. "fans": 126479,
  1791. "position": "7",
  1792. "readAvg": 425.83,
  1793. "likeAvg": 5.83
  1794. },
  1795. "gh_6d205db62f04_3": {
  1796. "accountName": "指尖奇文",
  1797. "ghId": "gh_6d205db62f04",
  1798. "fans": 845936,
  1799. "position": "3",
  1800. "readAvg": 424.75,
  1801. "likeAvg": 1.9
  1802. },
  1803. "gh_5e543853d8f0_1": {
  1804. "accountName": "票圈精彩",
  1805. "ghId": "gh_5e543853d8f0",
  1806. "fans": 7780,
  1807. "position": "1",
  1808. "readAvg": 418.83,
  1809. "likeAvg": 4.67
  1810. },
  1811. "gh_789a40fe7935_8": {
  1812. "accountName": "史记有言",
  1813. "ghId": "gh_789a40fe7935",
  1814. "fans": 135657,
  1815. "position": "8",
  1816. "readAvg": 417.0,
  1817. "likeAvg": 2.0
  1818. },
  1819. "gh_ee78360d06f5_2": {
  1820. "accountName": "实用妙招800个",
  1821. "ghId": "gh_ee78360d06f5",
  1822. "fans": 120597,
  1823. "position": "2",
  1824. "readAvg": 413.32,
  1825. "likeAvg": 1.25
  1826. },
  1827. "gh_b8baac4296cb_4": {
  1828. "accountName": "票圈原创视频精选",
  1829. "ghId": "gh_b8baac4296cb",
  1830. "fans": 49884,
  1831. "position": "4",
  1832. "readAvg": 412.71,
  1833. "likeAvg": 4.86
  1834. },
  1835. "gh_b3ffc1ca3a04_5": {
  1836. "accountName": "票圈内容精选",
  1837. "ghId": "gh_b3ffc1ca3a04",
  1838. "fans": 17876,
  1839. "position": "5",
  1840. "readAvg": 402.83,
  1841. "likeAvg": 4.83
  1842. },
  1843. "gh_b32125c73861_4": {
  1844. "accountName": "票圈奇闻",
  1845. "ghId": "gh_b32125c73861",
  1846. "fans": 30063,
  1847. "position": "4",
  1848. "readAvg": 398.43,
  1849. "likeAvg": 3.86
  1850. },
  1851. "gh_e24da99dc899_3": {
  1852. "accountName": "缘来养心厅",
  1853. "ghId": "gh_e24da99dc899",
  1854. "fans": 415852,
  1855. "position": "3",
  1856. "readAvg": 395.57,
  1857. "likeAvg": 0.72
  1858. },
  1859. "gh_970460d9ccec_4": {
  1860. "accountName": "生活之大全",
  1861. "ghId": "gh_970460d9ccec",
  1862. "fans": 277699,
  1863. "position": "4",
  1864. "readAvg": 394.0,
  1865. "likeAvg": 2.8
  1866. },
  1867. "gh_9cf3b7ff486b_6": {
  1868. "accountName": "票圈热门",
  1869. "ghId": "gh_9cf3b7ff486b",
  1870. "fans": 42450,
  1871. "position": "6",
  1872. "readAvg": 384.17,
  1873. "likeAvg": 2.83
  1874. },
  1875. "gh_efaf7da157f5_5": {
  1876. "accountName": "票圈热议",
  1877. "ghId": "gh_efaf7da157f5",
  1878. "fans": 20306,
  1879. "position": "5",
  1880. "readAvg": 363.33,
  1881. "likeAvg": 4.67
  1882. },
  1883. "gh_b3ffc1ca3a04_3": {
  1884. "accountName": "票圈内容精选",
  1885. "ghId": "gh_b3ffc1ca3a04",
  1886. "fans": 17876,
  1887. "position": "3",
  1888. "readAvg": 359.83,
  1889. "likeAvg": 5.5
  1890. },
  1891. "gh_4c058673c07e_3": {
  1892. "accountName": "家家生活指南",
  1893. "ghId": "gh_4c058673c07e",
  1894. "fans": 272538,
  1895. "position": "3",
  1896. "readAvg": 356.59,
  1897. "likeAvg": 1.41
  1898. },
  1899. "gh_4568b5a7e2fe_2": {
  1900. "accountName": "窦都事说",
  1901. "ghId": "gh_4568b5a7e2fe",
  1902. "fans": 329707,
  1903. "position": "2",
  1904. "readAvg": 338.16,
  1905. "likeAvg": 1.41
  1906. },
  1907. "gh_9cf3b7ff486b_8": {
  1908. "accountName": "票圈热门",
  1909. "ghId": "gh_9cf3b7ff486b",
  1910. "fans": 42450,
  1911. "position": "8",
  1912. "readAvg": 336.0,
  1913. "likeAvg": 2.33
  1914. },
  1915. "gh_b3ffc1ca3a04_4": {
  1916. "accountName": "票圈内容精选",
  1917. "ghId": "gh_b3ffc1ca3a04",
  1918. "fans": 17876,
  1919. "position": "4",
  1920. "readAvg": 327.14,
  1921. "likeAvg": 4.57
  1922. },
  1923. "gh_56ca3dae948c_5": {
  1924. "accountName": "老友闲谈",
  1925. "ghId": "gh_56ca3dae948c",
  1926. "fans": 857670,
  1927. "position": "5",
  1928. "readAvg": 324.94,
  1929. "likeAvg": 0.96
  1930. },
  1931. "gh_b32125c73861_8": {
  1932. "accountName": "票圈奇闻",
  1933. "ghId": "gh_b32125c73861",
  1934. "fans": 30063,
  1935. "position": "8",
  1936. "readAvg": 324.0,
  1937. "likeAvg": 3.0
  1938. },
  1939. "gh_26a307578776_2": {
  1940. "accountName": "票圈美文速递",
  1941. "ghId": "gh_26a307578776",
  1942. "fans": 18670,
  1943. "position": "2",
  1944. "readAvg": 323.44,
  1945. "likeAvg": 8.19
  1946. },
  1947. "gh_03d32e83122f_3": {
  1948. "accountName": "快乐生活妙技巧",
  1949. "ghId": "gh_03d32e83122f",
  1950. "fans": 201051,
  1951. "position": "3",
  1952. "readAvg": 323.4,
  1953. "likeAvg": 0.4
  1954. },
  1955. "gh_b8baac4296cb_8": {
  1956. "accountName": "票圈原创视频精选",
  1957. "ghId": "gh_b8baac4296cb",
  1958. "fans": 49884,
  1959. "position": "8",
  1960. "readAvg": 321.14,
  1961. "likeAvg": 2.86
  1962. },
  1963. "gh_56ca3dae948c_4": {
  1964. "accountName": "老友闲谈",
  1965. "ghId": "gh_56ca3dae948c",
  1966. "fans": 857670,
  1967. "position": "4",
  1968. "readAvg": 321.07,
  1969. "likeAvg": 0.79
  1970. },
  1971. "gh_b8baac4296cb_6": {
  1972. "accountName": "票圈原创视频精选",
  1973. "ghId": "gh_b8baac4296cb",
  1974. "fans": 49884,
  1975. "position": "6",
  1976. "readAvg": 312.33,
  1977. "likeAvg": 2.83
  1978. },
  1979. "gh_744cb16f6e16_4": {
  1980. "accountName": "趣史论",
  1981. "ghId": "gh_744cb16f6e16",
  1982. "fans": 242817,
  1983. "position": "4",
  1984. "readAvg": 308.68,
  1985. "likeAvg": 2.41
  1986. },
  1987. "gh_e75dbdc73d80_1": {
  1988. "accountName": "票圈正能量",
  1989. "ghId": "gh_e75dbdc73d80",
  1990. "fans": 21179,
  1991. "position": "1",
  1992. "readAvg": 306.86,
  1993. "likeAvg": 2.02
  1994. },
  1995. "gh_6d205db62f04_4": {
  1996. "accountName": "指尖奇文",
  1997. "ghId": "gh_6d205db62f04",
  1998. "fans": 845936,
  1999. "position": "4",
  2000. "readAvg": 303.67,
  2001. "likeAvg": 0.92
  2002. },
  2003. "gh_efaf7da157f5_4": {
  2004. "accountName": "票圈热议",
  2005. "ghId": "gh_efaf7da157f5",
  2006. "fans": 20306,
  2007. "position": "4",
  2008. "readAvg": 297.0,
  2009. "likeAvg": 4.29
  2010. },
  2011. "gh_b32125c73861_6": {
  2012. "accountName": "票圈奇闻",
  2013. "ghId": "gh_b32125c73861",
  2014. "fans": 30063,
  2015. "position": "6",
  2016. "readAvg": 296.83,
  2017. "likeAvg": 2.17
  2018. },
  2019. "gh_9cf3b7ff486b_7": {
  2020. "accountName": "票圈热门",
  2021. "ghId": "gh_9cf3b7ff486b",
  2022. "fans": 42450,
  2023. "position": "7",
  2024. "readAvg": 294.5,
  2025. "likeAvg": 2.33
  2026. },
  2027. "gh_c69776baf2cd_3": {
  2028. "accountName": "老友欢聚地",
  2029. "ghId": "gh_c69776baf2cd",
  2030. "fans": 966567,
  2031. "position": "3",
  2032. "readAvg": 292.97,
  2033. "likeAvg": 1.92
  2034. },
  2035. "gh_e24da99dc899_5": {
  2036. "accountName": "缘来养心厅",
  2037. "ghId": "gh_e24da99dc899",
  2038. "fans": 415852,
  2039. "position": "5",
  2040. "readAvg": 292.31,
  2041. "likeAvg": 0.62
  2042. },
  2043. "gh_789a40fe7935_5": {
  2044. "accountName": "史记有言",
  2045. "ghId": "gh_789a40fe7935",
  2046. "fans": 135657,
  2047. "position": "5",
  2048. "readAvg": 289.67,
  2049. "likeAvg": 2.0
  2050. },
  2051. "gh_30816d8adb52_3": {
  2052. "accountName": "日常巧思集",
  2053. "ghId": "gh_30816d8adb52",
  2054. "fans": 255337,
  2055. "position": "3",
  2056. "readAvg": 280.67,
  2057. "likeAvg": 1.56
  2058. },
  2059. "gh_789a40fe7935_3": {
  2060. "accountName": "史记有言",
  2061. "ghId": "gh_789a40fe7935",
  2062. "fans": 135657,
  2063. "position": "3",
  2064. "readAvg": 276.56,
  2065. "likeAvg": 0.67
  2066. },
  2067. "gh_4c058673c07e_4": {
  2068. "accountName": "家家生活指南",
  2069. "ghId": "gh_4c058673c07e",
  2070. "fans": 272538,
  2071. "position": "4",
  2072. "readAvg": 276.0,
  2073. "likeAvg": 0.76
  2074. },
  2075. "gh_b3ffc1ca3a04_8": {
  2076. "accountName": "票圈内容精选",
  2077. "ghId": "gh_b3ffc1ca3a04",
  2078. "fans": 17876,
  2079. "position": "8",
  2080. "readAvg": 272.0,
  2081. "likeAvg": 3.43
  2082. },
  2083. "gh_95ed5ecf9363_3": {
  2084. "accountName": "生活小优招",
  2085. "ghId": "gh_95ed5ecf9363",
  2086. "fans": 156489,
  2087. "position": "3",
  2088. "readAvg": 270.6,
  2089. "likeAvg": 1.0
  2090. },
  2091. "gh_30816d8adb52_4": {
  2092. "accountName": "日常巧思集",
  2093. "ghId": "gh_30816d8adb52",
  2094. "fans": 255337,
  2095. "position": "4",
  2096. "readAvg": 261.44,
  2097. "likeAvg": 1.22
  2098. },
  2099. "gh_789a40fe7935_7": {
  2100. "accountName": "史记有言",
  2101. "ghId": "gh_789a40fe7935",
  2102. "fans": 135657,
  2103. "position": "7",
  2104. "readAvg": 258.67,
  2105. "likeAvg": 2.67
  2106. },
  2107. "gh_789a40fe7935_4": {
  2108. "accountName": "史记有言",
  2109. "ghId": "gh_789a40fe7935",
  2110. "fans": 135657,
  2111. "position": "4",
  2112. "readAvg": 256.42,
  2113. "likeAvg": 0.67
  2114. },
  2115. "gh_6d205db62f04_5": {
  2116. "accountName": "指尖奇文",
  2117. "ghId": "gh_6d205db62f04",
  2118. "fans": 845936,
  2119. "position": "5",
  2120. "readAvg": 253.39,
  2121. "likeAvg": 0.52
  2122. },
  2123. "gh_03d32e83122f_4": {
  2124. "accountName": "快乐生活妙技巧",
  2125. "ghId": "gh_03d32e83122f",
  2126. "fans": 201051,
  2127. "position": "4",
  2128. "readAvg": 250.2,
  2129. "likeAvg": 0.6
  2130. },
  2131. "gh_f902cea89e48_5": {
  2132. "accountName": "无忧潮生活",
  2133. "ghId": "gh_f902cea89e48",
  2134. "fans": 162528,
  2135. "position": "5",
  2136. "readAvg": 246.5,
  2137. "likeAvg": 0.5
  2138. },
  2139. "gh_b3ffc1ca3a04_6": {
  2140. "accountName": "票圈内容精选",
  2141. "ghId": "gh_b3ffc1ca3a04",
  2142. "fans": 17876,
  2143. "position": "6",
  2144. "readAvg": 237.33,
  2145. "likeAvg": 2.17
  2146. },
  2147. "gh_b8baac4296cb_7": {
  2148. "accountName": "票圈原创视频精选",
  2149. "ghId": "gh_b8baac4296cb",
  2150. "fans": 49884,
  2151. "position": "7",
  2152. "readAvg": 235.0,
  2153. "likeAvg": 1.67
  2154. },
  2155. "gh_3e91f0624545_3": {
  2156. "accountName": "趣谈史记",
  2157. "ghId": "gh_3e91f0624545",
  2158. "fans": 123680,
  2159. "position": "3",
  2160. "readAvg": 233.78,
  2161. "likeAvg": 0.89
  2162. },
  2163. "gh_e24da99dc899_4": {
  2164. "accountName": "缘来养心厅",
  2165. "ghId": "gh_e24da99dc899",
  2166. "fans": 415852,
  2167. "position": "4",
  2168. "readAvg": 230.85,
  2169. "likeAvg": 0.57
  2170. },
  2171. "gh_6d205db62f04_6": {
  2172. "accountName": "指尖奇文",
  2173. "ghId": "gh_6d205db62f04",
  2174. "fans": 845936,
  2175. "position": "6",
  2176. "readAvg": 228.62,
  2177. "likeAvg": 0.5
  2178. },
  2179. "gh_b32125c73861_7": {
  2180. "accountName": "票圈奇闻",
  2181. "ghId": "gh_b32125c73861",
  2182. "fans": 30063,
  2183. "position": "7",
  2184. "readAvg": 225.67,
  2185. "likeAvg": 2.67
  2186. },
  2187. "gh_57573f01b2ee_3": {
  2188. "accountName": "那些历史",
  2189. "ghId": "gh_57573f01b2ee",
  2190. "fans": 148233,
  2191. "position": "3",
  2192. "readAvg": 213.38,
  2193. "likeAvg": 0.54
  2194. },
  2195. "gh_9877c8541764_3": {
  2196. "accountName": "退休老年圈",
  2197. "ghId": "gh_9877c8541764",
  2198. "fans": 803701,
  2199. "position": "3",
  2200. "readAvg": 213.02,
  2201. "likeAvg": 1.74
  2202. },
  2203. "gh_9e559b3b94ca_1": {
  2204. "accountName": "票圈大事件",
  2205. "ghId": "gh_9e559b3b94ca",
  2206. "fans": 20375,
  2207. "position": "1",
  2208. "readAvg": 212.05,
  2209. "likeAvg": 2.1
  2210. },
  2211. "gh_6cfd1132df94_3": {
  2212. "accountName": "趣味晚年",
  2213. "ghId": "gh_6cfd1132df94",
  2214. "fans": 957374,
  2215. "position": "3",
  2216. "readAvg": 209.54,
  2217. "likeAvg": 1.66
  2218. },
  2219. "gh_efaf7da157f5_6": {
  2220. "accountName": "票圈热议",
  2221. "ghId": "gh_efaf7da157f5",
  2222. "fans": 20306,
  2223. "position": "6",
  2224. "readAvg": 208.83,
  2225. "likeAvg": 3.33
  2226. },
  2227. "gh_008ef23062ee_3": {
  2228. "accountName": "日常生活小技巧集",
  2229. "ghId": "gh_008ef23062ee",
  2230. "fans": 218145,
  2231. "position": "3",
  2232. "readAvg": 206.0,
  2233. "likeAvg": 1.23
  2234. },
  2235. "gh_6d205db62f04_7": {
  2236. "accountName": "指尖奇文",
  2237. "ghId": "gh_6d205db62f04",
  2238. "fans": 845936,
  2239. "position": "7",
  2240. "readAvg": 201.33,
  2241. "likeAvg": 0.2
  2242. },
  2243. "gh_c69776baf2cd_4": {
  2244. "accountName": "老友欢聚地",
  2245. "ghId": "gh_c69776baf2cd",
  2246. "fans": 966567,
  2247. "position": "4",
  2248. "readAvg": 197.91,
  2249. "likeAvg": 1.55
  2250. },
  2251. "gh_5ae65db96cb7_3": {
  2252. "accountName": "路边闲聊社",
  2253. "ghId": "gh_5ae65db96cb7",
  2254. "fans": 264349,
  2255. "position": "3",
  2256. "readAvg": 189.53,
  2257. "likeAvg": 1.42
  2258. },
  2259. "gh_008ef23062ee_4": {
  2260. "accountName": "日常生活小技巧集",
  2261. "ghId": "gh_008ef23062ee",
  2262. "fans": 218145,
  2263. "position": "4",
  2264. "readAvg": 188.92,
  2265. "likeAvg": 1.33
  2266. },
  2267. "gh_5e543853d8f0_2": {
  2268. "accountName": "票圈精彩",
  2269. "ghId": "gh_5e543853d8f0",
  2270. "fans": 7780,
  2271. "position": "2",
  2272. "readAvg": 188.71,
  2273. "likeAvg": 2.71
  2274. },
  2275. "gh_b3ffc1ca3a04_7": {
  2276. "accountName": "票圈内容精选",
  2277. "ghId": "gh_b3ffc1ca3a04",
  2278. "fans": 17876,
  2279. "position": "7",
  2280. "readAvg": 188.33,
  2281. "likeAvg": 2.5
  2282. },
  2283. "gh_efaf7da157f5_8": {
  2284. "accountName": "票圈热议",
  2285. "ghId": "gh_efaf7da157f5",
  2286. "fans": 20306,
  2287. "position": "8",
  2288. "readAvg": 183.43,
  2289. "likeAvg": 4.29
  2290. },
  2291. "gh_6d205db62f04_8": {
  2292. "accountName": "指尖奇文",
  2293. "ghId": "gh_6d205db62f04",
  2294. "fans": 845936,
  2295. "position": "8",
  2296. "readAvg": 183.27,
  2297. "likeAvg": 0.33
  2298. },
  2299. "gh_be8c29139989_3": {
  2300. "accountName": "退休无忧生活",
  2301. "ghId": "gh_be8c29139989",
  2302. "fans": 197750,
  2303. "position": "3",
  2304. "readAvg": 182.62,
  2305. "likeAvg": 1.23
  2306. },
  2307. "gh_c69776baf2cd_6": {
  2308. "accountName": "老友欢聚地",
  2309. "ghId": "gh_c69776baf2cd",
  2310. "fans": 966567,
  2311. "position": "6",
  2312. "readAvg": 181.24,
  2313. "likeAvg": 1.0
  2314. },
  2315. "gh_51e4ad40466d_3": {
  2316. "accountName": "日常小妙招秘籍",
  2317. "ghId": "gh_51e4ad40466d",
  2318. "fans": 153526,
  2319. "position": "3",
  2320. "readAvg": 181.0,
  2321. "likeAvg": 0.7
  2322. },
  2323. "gh_d4dffc34ac39_3": {
  2324. "accountName": "情为老友",
  2325. "ghId": "gh_d4dffc34ac39",
  2326. "fans": 828444,
  2327. "position": "3",
  2328. "readAvg": 178.35,
  2329. "likeAvg": 1.37
  2330. },
  2331. "gh_89ef4798d3ea_3": {
  2332. "accountName": "生活百态观",
  2333. "ghId": "gh_89ef4798d3ea",
  2334. "fans": 835095,
  2335. "position": "3",
  2336. "readAvg": 178.32,
  2337. "likeAvg": 0.93
  2338. },
  2339. "gh_95ed5ecf9363_4": {
  2340. "accountName": "生活小优招",
  2341. "ghId": "gh_95ed5ecf9363",
  2342. "fans": 156489,
  2343. "position": "4",
  2344. "readAvg": 173.6,
  2345. "likeAvg": 0.4
  2346. },
  2347. "gh_b15de7c99912_3": {
  2348. "accountName": "人生百事观",
  2349. "ghId": "gh_b15de7c99912",
  2350. "fans": 887469,
  2351. "position": "3",
  2352. "readAvg": 173.59,
  2353. "likeAvg": 1.41
  2354. },
  2355. "gh_57573f01b2ee_4": {
  2356. "accountName": "那些历史",
  2357. "ghId": "gh_57573f01b2ee",
  2358. "fans": 148233,
  2359. "position": "4",
  2360. "readAvg": 166.08,
  2361. "likeAvg": 0.62
  2362. },
  2363. "gh_e75dbdc73d80_2": {
  2364. "accountName": "票圈正能量",
  2365. "ghId": "gh_e75dbdc73d80",
  2366. "fans": 21179,
  2367. "position": "2",
  2368. "readAvg": 160.46,
  2369. "likeAvg": 0.98
  2370. },
  2371. "gh_5e543853d8f0_3": {
  2372. "accountName": "票圈精彩",
  2373. "ghId": "gh_5e543853d8f0",
  2374. "fans": 7780,
  2375. "position": "3",
  2376. "readAvg": 159.38,
  2377. "likeAvg": 2.0
  2378. },
  2379. "gh_5ae65db96cb7_4": {
  2380. "accountName": "路边闲聊社",
  2381. "ghId": "gh_5ae65db96cb7",
  2382. "fans": 264349,
  2383. "position": "4",
  2384. "readAvg": 156.3,
  2385. "likeAvg": 1.35
  2386. },
  2387. "gh_3e91f0624545_4": {
  2388. "accountName": "趣谈史记",
  2389. "ghId": "gh_3e91f0624545",
  2390. "fans": 123680,
  2391. "position": "4",
  2392. "readAvg": 151.22,
  2393. "likeAvg": 1.0
  2394. },
  2395. "gh_d2cc901deca7_3": {
  2396. "accountName": "票圈极速版",
  2397. "ghId": "gh_d2cc901deca7",
  2398. "fans": 203462,
  2399. "position": "3",
  2400. "readAvg": 150.04,
  2401. "likeAvg": 1.5
  2402. },
  2403. "gh_c69776baf2cd_5": {
  2404. "accountName": "老友欢聚地",
  2405. "ghId": "gh_c69776baf2cd",
  2406. "fans": 966567,
  2407. "position": "5",
  2408. "readAvg": 147.1,
  2409. "likeAvg": 0.33
  2410. },
  2411. "gh_9f8dc5b0c74e_3": {
  2412. "accountName": "音药金曲厅",
  2413. "ghId": "gh_9f8dc5b0c74e",
  2414. "fans": 162850,
  2415. "position": "3",
  2416. "readAvg": 143.42,
  2417. "likeAvg": 0.49
  2418. },
  2419. "gh_efaf7da157f5_7": {
  2420. "accountName": "票圈热议",
  2421. "ghId": "gh_efaf7da157f5",
  2422. "fans": 20306,
  2423. "position": "7",
  2424. "readAvg": 141.17,
  2425. "likeAvg": 2.17
  2426. },
  2427. "gh_c69776baf2cd_7": {
  2428. "accountName": "老友欢聚地",
  2429. "ghId": "gh_c69776baf2cd",
  2430. "fans": 966567,
  2431. "position": "7",
  2432. "readAvg": 140.13,
  2433. "likeAvg": 0.67
  2434. },
  2435. "gh_c69776baf2cd_8": {
  2436. "accountName": "老友欢聚地",
  2437. "ghId": "gh_c69776baf2cd",
  2438. "fans": 966567,
  2439. "position": "8",
  2440. "readAvg": 139.07,
  2441. "likeAvg": 0.6
  2442. },
  2443. "gh_6cfd1132df94_5": {
  2444. "accountName": "趣味晚年",
  2445. "ghId": "gh_6cfd1132df94",
  2446. "fans": 957374,
  2447. "position": "5",
  2448. "readAvg": 138.0,
  2449. "likeAvg": 2.0
  2450. },
  2451. "gh_be8c29139989_4": {
  2452. "accountName": "退休无忧生活",
  2453. "ghId": "gh_be8c29139989",
  2454. "fans": 197750,
  2455. "position": "4",
  2456. "readAvg": 137.33,
  2457. "likeAvg": 0.58
  2458. },
  2459. "gh_7b4a5f86d68c_3": {
  2460. "accountName": "异闻趣事多",
  2461. "ghId": "gh_7b4a5f86d68c",
  2462. "fans": 149539,
  2463. "position": "3",
  2464. "readAvg": 136.21,
  2465. "likeAvg": 0.42
  2466. },
  2467. "gh_9f8dc5b0c74e_4": {
  2468. "accountName": "音药金曲厅",
  2469. "ghId": "gh_9f8dc5b0c74e",
  2470. "fans": 162850,
  2471. "position": "4",
  2472. "readAvg": 134.4,
  2473. "likeAvg": 0.38
  2474. },
  2475. "gh_9877c8541764_4": {
  2476. "accountName": "退休老年圈",
  2477. "ghId": "gh_9877c8541764",
  2478. "fans": 803701,
  2479. "position": "4",
  2480. "readAvg": 133.43,
  2481. "likeAvg": 1.34
  2482. },
  2483. "gh_89ef4798d3ea_4": {
  2484. "accountName": "生活百态观",
  2485. "ghId": "gh_89ef4798d3ea",
  2486. "fans": 835095,
  2487. "position": "4",
  2488. "readAvg": 133.23,
  2489. "likeAvg": 0.34
  2490. },
  2491. "gh_d4dffc34ac39_4": {
  2492. "accountName": "情为老友",
  2493. "ghId": "gh_d4dffc34ac39",
  2494. "fans": 828444,
  2495. "position": "4",
  2496. "readAvg": 130.57,
  2497. "likeAvg": 0.93
  2498. },
  2499. "gh_51e4ad40466d_4": {
  2500. "accountName": "日常小妙招秘籍",
  2501. "ghId": "gh_51e4ad40466d",
  2502. "fans": 153526,
  2503. "position": "4",
  2504. "readAvg": 128.6,
  2505. "likeAvg": 0.7
  2506. },
  2507. "gh_9877c8541764_6": {
  2508. "accountName": "退休老年圈",
  2509. "ghId": "gh_9877c8541764",
  2510. "fans": 803701,
  2511. "position": "6",
  2512. "readAvg": 127.09,
  2513. "likeAvg": 0.61
  2514. },
  2515. "gh_5e543853d8f0_5": {
  2516. "accountName": "票圈精彩",
  2517. "ghId": "gh_5e543853d8f0",
  2518. "fans": 7780,
  2519. "position": "5",
  2520. "readAvg": 127.0,
  2521. "likeAvg": 1.71
  2522. },
  2523. "gh_c5cdf60d9ab4_3": {
  2524. "accountName": "老友快乐谈",
  2525. "ghId": "gh_c5cdf60d9ab4",
  2526. "fans": 512895,
  2527. "position": "3",
  2528. "readAvg": 124.81,
  2529. "likeAvg": 0.88
  2530. },
  2531. "gh_0c89e11f8bf3_3": {
  2532. "accountName": "幸福启示",
  2533. "ghId": "gh_0c89e11f8bf3",
  2534. "fans": 486906,
  2535. "position": "3",
  2536. "readAvg": 123.98,
  2537. "likeAvg": 0.67
  2538. },
  2539. "gh_e0eb490115f5_3": {
  2540. "accountName": "心灵情感驿站",
  2541. "ghId": "gh_e0eb490115f5",
  2542. "fans": 315146,
  2543. "position": "3",
  2544. "readAvg": 123.28,
  2545. "likeAvg": 0.63
  2546. },
  2547. "gh_6cfd1132df94_4": {
  2548. "accountName": "趣味晚年",
  2549. "ghId": "gh_6cfd1132df94",
  2550. "fans": 957374,
  2551. "position": "4",
  2552. "readAvg": 119.5,
  2553. "likeAvg": 0.56
  2554. },
  2555. "gh_26a307578776_3": {
  2556. "accountName": "票圈美文速递",
  2557. "ghId": "gh_26a307578776",
  2558. "fans": 18670,
  2559. "position": "3",
  2560. "readAvg": 118.61,
  2561. "likeAvg": 5.7
  2562. },
  2563. "gh_d5f935d0d1f2_4": {
  2564. "accountName": "繁花史阁",
  2565. "ghId": "gh_d5f935d0d1f2",
  2566. "fans": 144435,
  2567. "position": "4",
  2568. "readAvg": 114.54,
  2569. "likeAvg": 0.85
  2570. },
  2571. "gh_b15de7c99912_4": {
  2572. "accountName": "人生百事观",
  2573. "ghId": "gh_b15de7c99912",
  2574. "fans": 887469,
  2575. "position": "4",
  2576. "readAvg": 110.47,
  2577. "likeAvg": 0.58
  2578. },
  2579. "gh_89ef4798d3ea_6": {
  2580. "accountName": "生活百态观",
  2581. "ghId": "gh_89ef4798d3ea",
  2582. "fans": 835095,
  2583. "position": "6",
  2584. "readAvg": 109.9,
  2585. "likeAvg": 0.62
  2586. },
  2587. "gh_a2901d34f75b_3": {
  2588. "accountName": "畅聊奇闻",
  2589. "ghId": "gh_a2901d34f75b",
  2590. "fans": 389185,
  2591. "position": "3",
  2592. "readAvg": 109.74,
  2593. "likeAvg": 0.71
  2594. },
  2595. "gh_9877c8541764_5": {
  2596. "accountName": "退休老年圈",
  2597. "ghId": "gh_9877c8541764",
  2598. "fans": 803701,
  2599. "position": "5",
  2600. "readAvg": 109.38,
  2601. "likeAvg": 0.71
  2602. },
  2603. "gh_9e559b3b94ca_2": {
  2604. "accountName": "票圈大事件",
  2605. "ghId": "gh_9e559b3b94ca",
  2606. "fans": 20375,
  2607. "position": "2",
  2608. "readAvg": 109.29,
  2609. "likeAvg": 1.48
  2610. },
  2611. "gh_d5f935d0d1f2_3": {
  2612. "accountName": "繁花史阁",
  2613. "ghId": "gh_d5f935d0d1f2",
  2614. "fans": 144435,
  2615. "position": "3",
  2616. "readAvg": 109.0,
  2617. "likeAvg": 0.69
  2618. },
  2619. "gh_5e543853d8f0_4": {
  2620. "accountName": "票圈精彩",
  2621. "ghId": "gh_5e543853d8f0",
  2622. "fans": 7780,
  2623. "position": "4",
  2624. "readAvg": 108.12,
  2625. "likeAvg": 1.25
  2626. },
  2627. "gh_7b4a5f86d68c_4": {
  2628. "accountName": "异闻趣事多",
  2629. "ghId": "gh_7b4a5f86d68c",
  2630. "fans": 149539,
  2631. "position": "4",
  2632. "readAvg": 107.45,
  2633. "likeAvg": 0.27
  2634. },
  2635. "gh_3ed305b5817f_5": {
  2636. "accountName": "看不够妙招",
  2637. "ghId": "gh_3ed305b5817f",
  2638. "fans": 368223,
  2639. "position": "5",
  2640. "readAvg": 104.0,
  2641. "likeAvg": 0.0
  2642. },
  2643. "gh_d49df5e974ca_3": {
  2644. "accountName": "生活指示录",
  2645. "ghId": "gh_d49df5e974ca",
  2646. "fans": 437523,
  2647. "position": "3",
  2648. "readAvg": 98.45,
  2649. "likeAvg": 0.6
  2650. },
  2651. "gh_bfe5b705324a_3": {
  2652. "accountName": "奇趣百味生活",
  2653. "ghId": "gh_bfe5b705324a",
  2654. "fans": 323615,
  2655. "position": "3",
  2656. "readAvg": 94.16,
  2657. "likeAvg": 0.62
  2658. },
  2659. "gh_adca24a8f429_3": {
  2660. "accountName": "史记趣言",
  2661. "ghId": "gh_adca24a8f429",
  2662. "fans": 126634,
  2663. "position": "3",
  2664. "readAvg": 94.08,
  2665. "likeAvg": 0.81
  2666. },
  2667. "gh_bff0bcb0694a_3": {
  2668. "accountName": "喜乐生活派",
  2669. "ghId": "gh_bff0bcb0694a",
  2670. "fans": 404179,
  2671. "position": "3",
  2672. "readAvg": 93.55,
  2673. "likeAvg": 0.33
  2674. },
  2675. "gh_183d80deffb8_3": {
  2676. "accountName": "生活良读",
  2677. "ghId": "gh_183d80deffb8",
  2678. "fans": 89392,
  2679. "position": "3",
  2680. "readAvg": 93.25,
  2681. "likeAvg": 0.56
  2682. },
  2683. "gh_89ef4798d3ea_5": {
  2684. "accountName": "生活百态观",
  2685. "ghId": "gh_89ef4798d3ea",
  2686. "fans": 835095,
  2687. "position": "5",
  2688. "readAvg": 93.0,
  2689. "likeAvg": 0.43
  2690. },
  2691. "gh_9877c8541764_7": {
  2692. "accountName": "退休老年圈",
  2693. "ghId": "gh_9877c8541764",
  2694. "fans": 803701,
  2695. "position": "7",
  2696. "readAvg": 92.79,
  2697. "likeAvg": 0.29
  2698. },
  2699. "gh_7f5075624a50_3": {
  2700. "accountName": "都市镜头",
  2701. "ghId": "gh_7f5075624a50",
  2702. "fans": 199214,
  2703. "position": "3",
  2704. "readAvg": 89.12,
  2705. "likeAvg": 0.79
  2706. },
  2707. "gh_de9f9ebc976b_4": {
  2708. "accountName": "妙招持家帮手",
  2709. "ghId": "gh_de9f9ebc976b",
  2710. "fans": 166062,
  2711. "position": "4",
  2712. "readAvg": 88.63,
  2713. "likeAvg": 0.05
  2714. },
  2715. "gh_5ff48e9fb9ef_3": {
  2716. "accountName": "祝福养心厅",
  2717. "ghId": "gh_5ff48e9fb9ef",
  2718. "fans": 147236,
  2719. "position": "3",
  2720. "readAvg": 87.87,
  2721. "likeAvg": 0.28
  2722. },
  2723. "gh_d2cc901deca7_4": {
  2724. "accountName": "票圈极速版",
  2725. "ghId": "gh_d2cc901deca7",
  2726. "fans": 203462,
  2727. "position": "4",
  2728. "readAvg": 87.75,
  2729. "likeAvg": 0.79
  2730. },
  2731. "gh_bff0bcb0694a_5": {
  2732. "accountName": "喜乐生活派",
  2733. "ghId": "gh_bff0bcb0694a",
  2734. "fans": 404179,
  2735. "position": "5",
  2736. "readAvg": 87.5,
  2737. "likeAvg": 0.25
  2738. },
  2739. "gh_e0eb490115f5_4": {
  2740. "accountName": "心灵情感驿站",
  2741. "ghId": "gh_e0eb490115f5",
  2742. "fans": 315146,
  2743. "position": "4",
  2744. "readAvg": 86.65,
  2745. "likeAvg": 0.16
  2746. },
  2747. "gh_9877c8541764_8": {
  2748. "accountName": "退休老年圈",
  2749. "ghId": "gh_9877c8541764",
  2750. "fans": 803701,
  2751. "position": "8",
  2752. "readAvg": 85.71,
  2753. "likeAvg": 0.36
  2754. },
  2755. "gh_c5cdf60d9ab4_4": {
  2756. "accountName": "老友快乐谈",
  2757. "ghId": "gh_c5cdf60d9ab4",
  2758. "fans": 512895,
  2759. "position": "4",
  2760. "readAvg": 85.13,
  2761. "likeAvg": 0.32
  2762. },
  2763. "gh_adca24a8f429_4": {
  2764. "accountName": "史记趣言",
  2765. "ghId": "gh_adca24a8f429",
  2766. "fans": 126634,
  2767. "position": "4",
  2768. "readAvg": 83.48,
  2769. "likeAvg": 0.63
  2770. },
  2771. "gh_b15de7c99912_5": {
  2772. "accountName": "人生百事观",
  2773. "ghId": "gh_b15de7c99912",
  2774. "fans": 887469,
  2775. "position": "5",
  2776. "readAvg": 82.09,
  2777. "likeAvg": 0.32
  2778. },
  2779. "gh_080bb43aa0dc_3": {
  2780. "accountName": "态度说",
  2781. "ghId": "gh_080bb43aa0dc",
  2782. "fans": 435916,
  2783. "position": "3",
  2784. "readAvg": 81.85,
  2785. "likeAvg": 0.4
  2786. },
  2787. "gh_89ef4798d3ea_7": {
  2788. "accountName": "生活百态观",
  2789. "ghId": "gh_89ef4798d3ea",
  2790. "fans": 835095,
  2791. "position": "7",
  2792. "readAvg": 81.63,
  2793. "likeAvg": 0.42
  2794. },
  2795. "gh_5e543853d8f0_6": {
  2796. "accountName": "票圈精彩",
  2797. "ghId": "gh_5e543853d8f0",
  2798. "fans": 7780,
  2799. "position": "6",
  2800. "readAvg": 79.86,
  2801. "likeAvg": 1.0
  2802. },
  2803. "gh_3ed305b5817f_3": {
  2804. "accountName": "看不够妙招",
  2805. "ghId": "gh_3ed305b5817f",
  2806. "fans": 368223,
  2807. "position": "3",
  2808. "readAvg": 79.68,
  2809. "likeAvg": 0.54
  2810. },
  2811. "gh_9eef14ad6c16_3": {
  2812. "accountName": "快乐精选集",
  2813. "ghId": "gh_9eef14ad6c16",
  2814. "fans": 515674,
  2815. "position": "3",
  2816. "readAvg": 79.57,
  2817. "likeAvg": 0.69
  2818. },
  2819. "gh_7e5818b2dd83_3": {
  2820. "accountName": "便捷生活好方法",
  2821. "ghId": "gh_7e5818b2dd83",
  2822. "fans": 437854,
  2823. "position": "3",
  2824. "readAvg": 78.26,
  2825. "likeAvg": 0.41
  2826. },
  2827. "gh_c5cdf60d9ab4_5": {
  2828. "accountName": "老友快乐谈",
  2829. "ghId": "gh_c5cdf60d9ab4",
  2830. "fans": 512895,
  2831. "position": "5",
  2832. "readAvg": 77.8,
  2833. "likeAvg": 0.8
  2834. },
  2835. "gh_ee78360d06f5_3": {
  2836. "accountName": "实用妙招800个",
  2837. "ghId": "gh_ee78360d06f5",
  2838. "fans": 120597,
  2839. "position": "3",
  2840. "readAvg": 77.07,
  2841. "likeAvg": 0.4
  2842. },
  2843. "gh_192c9cf58b13_3": {
  2844. "accountName": "天天学生活技巧",
  2845. "ghId": "gh_192c9cf58b13",
  2846. "fans": 200829,
  2847. "position": "3",
  2848. "readAvg": 76.53,
  2849. "likeAvg": 0.39
  2850. },
  2851. "gh_dd4c857bbb36_3": {
  2852. "accountName": "无忧自在生活",
  2853. "ghId": "gh_dd4c857bbb36",
  2854. "fans": 354334,
  2855. "position": "3",
  2856. "readAvg": 76.17,
  2857. "likeAvg": 0.63
  2858. },
  2859. "gh_1d887d61088c_3": {
  2860. "accountName": "乐享生活小窍门",
  2861. "ghId": "gh_1d887d61088c",
  2862. "fans": 214677,
  2863. "position": "3",
  2864. "readAvg": 75.03,
  2865. "likeAvg": 0.45
  2866. },
  2867. "gh_f902cea89e48_3": {
  2868. "accountName": "无忧潮生活",
  2869. "ghId": "gh_f902cea89e48",
  2870. "fans": 162528,
  2871. "position": "3",
  2872. "readAvg": 74.93,
  2873. "likeAvg": 0.53
  2874. },
  2875. "gh_a2901d34f75b_4": {
  2876. "accountName": "畅聊奇闻",
  2877. "ghId": "gh_a2901d34f75b",
  2878. "fans": 389185,
  2879. "position": "4",
  2880. "readAvg": 74.16,
  2881. "likeAvg": 0.24
  2882. },
  2883. "gh_bfe5b705324a_4": {
  2884. "accountName": "奇趣百味生活",
  2885. "ghId": "gh_bfe5b705324a",
  2886. "fans": 323615,
  2887. "position": "4",
  2888. "readAvg": 73.77,
  2889. "likeAvg": 0.33
  2890. },
  2891. "gh_6d9f36e3a7be_3": {
  2892. "accountName": "音药养心馆",
  2893. "ghId": "gh_6d9f36e3a7be",
  2894. "fans": 205282,
  2895. "position": "3",
  2896. "readAvg": 73.46,
  2897. "likeAvg": 0.71
  2898. },
  2899. "gh_0c89e11f8bf3_4": {
  2900. "accountName": "幸福启示",
  2901. "ghId": "gh_0c89e11f8bf3",
  2902. "fans": 486906,
  2903. "position": "4",
  2904. "readAvg": 73.2,
  2905. "likeAvg": 0.35
  2906. },
  2907. "gh_de9f9ebc976b_3": {
  2908. "accountName": "妙招持家帮手",
  2909. "ghId": "gh_de9f9ebc976b",
  2910. "fans": 166062,
  2911. "position": "3",
  2912. "readAvg": 71.95,
  2913. "likeAvg": 0.32
  2914. },
  2915. "gh_969f5ea5fee1_3": {
  2916. "accountName": "心海情澜起",
  2917. "ghId": "gh_969f5ea5fee1",
  2918. "fans": 166686,
  2919. "position": "3",
  2920. "readAvg": 71.83,
  2921. "likeAvg": 0.25
  2922. },
  2923. "gh_5e543853d8f0_8": {
  2924. "accountName": "票圈精彩",
  2925. "ghId": "gh_5e543853d8f0",
  2926. "fans": 7780,
  2927. "position": "8",
  2928. "readAvg": 71.43,
  2929. "likeAvg": 1.29
  2930. },
  2931. "gh_e24da99dc899_6": {
  2932. "accountName": "缘来养心厅",
  2933. "ghId": "gh_e24da99dc899",
  2934. "fans": 415852,
  2935. "position": "6",
  2936. "readAvg": 71.2,
  2937. "likeAvg": 0.47
  2938. },
  2939. "gh_5e543853d8f0_7": {
  2940. "accountName": "票圈精彩",
  2941. "ghId": "gh_5e543853d8f0",
  2942. "fans": 7780,
  2943. "position": "7",
  2944. "readAvg": 71.17,
  2945. "likeAvg": 1.17
  2946. },
  2947. "gh_b15de7c99912_6": {
  2948. "accountName": "人生百事观",
  2949. "ghId": "gh_b15de7c99912",
  2950. "fans": 887469,
  2951. "position": "6",
  2952. "readAvg": 70.68,
  2953. "likeAvg": 0.23
  2954. },
  2955. "gh_0c89e11f8bf3_5": {
  2956. "accountName": "幸福启示",
  2957. "ghId": "gh_0c89e11f8bf3",
  2958. "fans": 486906,
  2959. "position": "5",
  2960. "readAvg": 68.29,
  2961. "likeAvg": 0.29
  2962. },
  2963. "gh_080bb43aa0dc_5": {
  2964. "accountName": "态度说",
  2965. "ghId": "gh_080bb43aa0dc",
  2966. "fans": 435916,
  2967. "position": "5",
  2968. "readAvg": 67.75,
  2969. "likeAvg": 0.25
  2970. },
  2971. "gh_969f5ea5fee1_4": {
  2972. "accountName": "心海情澜起",
  2973. "ghId": "gh_969f5ea5fee1",
  2974. "fans": 166686,
  2975. "position": "4",
  2976. "readAvg": 66.83,
  2977. "likeAvg": 0.08
  2978. },
  2979. "gh_bfe5b705324a_5": {
  2980. "accountName": "奇趣百味生活",
  2981. "ghId": "gh_bfe5b705324a",
  2982. "fans": 323615,
  2983. "position": "5",
  2984. "readAvg": 66.5,
  2985. "likeAvg": 0.0
  2986. },
  2987. "gh_d49df5e974ca_4": {
  2988. "accountName": "生活指示录",
  2989. "ghId": "gh_d49df5e974ca",
  2990. "fans": 437523,
  2991. "position": "4",
  2992. "readAvg": 64.55,
  2993. "likeAvg": 0.36
  2994. },
  2995. "gh_ff487cb5dab3_3": {
  2996. "accountName": "趣味生活达人",
  2997. "ghId": "gh_ff487cb5dab3",
  2998. "fans": 240559,
  2999. "position": "3",
  3000. "readAvg": 62.76,
  3001. "likeAvg": 0.52
  3002. },
  3003. "gh_89ef4798d3ea_8": {
  3004. "accountName": "生活百态观",
  3005. "ghId": "gh_89ef4798d3ea",
  3006. "fans": 835095,
  3007. "position": "8",
  3008. "readAvg": 62.72,
  3009. "likeAvg": 0.17
  3010. },
  3011. "gh_183d80deffb8_4": {
  3012. "accountName": "生活良读",
  3013. "ghId": "gh_183d80deffb8",
  3014. "fans": 89392,
  3015. "position": "4",
  3016. "readAvg": 62.02,
  3017. "likeAvg": 0.32
  3018. },
  3019. "gh_b15de7c99912_8": {
  3020. "accountName": "人生百事观",
  3021. "ghId": "gh_b15de7c99912",
  3022. "fans": 887469,
  3023. "position": "8",
  3024. "readAvg": 61.79,
  3025. "likeAvg": 0.21
  3026. },
  3027. "gh_bff0bcb0694a_4": {
  3028. "accountName": "喜乐生活派",
  3029. "ghId": "gh_bff0bcb0694a",
  3030. "fans": 404179,
  3031. "position": "4",
  3032. "readAvg": 61.58,
  3033. "likeAvg": 0.16
  3034. },
  3035. "gh_080bb43aa0dc_4": {
  3036. "accountName": "态度说",
  3037. "ghId": "gh_080bb43aa0dc",
  3038. "fans": 435916,
  3039. "position": "4",
  3040. "readAvg": 60.3,
  3041. "likeAvg": 0.28
  3042. },
  3043. "gh_9eef14ad6c16_5": {
  3044. "accountName": "快乐精选集",
  3045. "ghId": "gh_9eef14ad6c16",
  3046. "fans": 515674,
  3047. "position": "5",
  3048. "readAvg": 59.4,
  3049. "likeAvg": 1.0
  3050. },
  3051. "gh_7f5075624a50_4": {
  3052. "accountName": "都市镜头",
  3053. "ghId": "gh_7f5075624a50",
  3054. "fans": 199214,
  3055. "position": "4",
  3056. "readAvg": 58.29,
  3057. "likeAvg": 0.43
  3058. },
  3059. "gh_a2901d34f75b_6": {
  3060. "accountName": "畅聊奇闻",
  3061. "ghId": "gh_a2901d34f75b",
  3062. "fans": 389185,
  3063. "position": "6",
  3064. "readAvg": 57.7,
  3065. "likeAvg": 0.13
  3066. },
  3067. "gh_a2901d34f75b_5": {
  3068. "accountName": "畅聊奇闻",
  3069. "ghId": "gh_a2901d34f75b",
  3070. "fans": 389185,
  3071. "position": "5",
  3072. "readAvg": 57.12,
  3073. "likeAvg": 0.12
  3074. },
  3075. "gh_3ed305b5817f_4": {
  3076. "accountName": "看不够妙招",
  3077. "ghId": "gh_3ed305b5817f",
  3078. "fans": 368223,
  3079. "position": "4",
  3080. "readAvg": 57.08,
  3081. "likeAvg": 0.25
  3082. },
  3083. "gh_b15de7c99912_7": {
  3084. "accountName": "人生百事观",
  3085. "ghId": "gh_b15de7c99912",
  3086. "fans": 887469,
  3087. "position": "7",
  3088. "readAvg": 56.53,
  3089. "likeAvg": 0.4
  3090. },
  3091. "gh_192c9cf58b13_4": {
  3092. "accountName": "天天学生活技巧",
  3093. "ghId": "gh_192c9cf58b13",
  3094. "fans": 200829,
  3095. "position": "4",
  3096. "readAvg": 56.5,
  3097. "likeAvg": 0.1
  3098. },
  3099. "gh_f902cea89e48_4": {
  3100. "accountName": "无忧潮生活",
  3101. "ghId": "gh_f902cea89e48",
  3102. "fans": 162528,
  3103. "position": "4",
  3104. "readAvg": 56.14,
  3105. "likeAvg": 0.55
  3106. },
  3107. "gh_d49df5e974ca_5": {
  3108. "accountName": "生活指示录",
  3109. "ghId": "gh_d49df5e974ca",
  3110. "fans": 437523,
  3111. "position": "5",
  3112. "readAvg": 55.9,
  3113. "likeAvg": 0.25
  3114. },
  3115. "gh_b6f2c5332c72_3": {
  3116. "accountName": "巷尾风声",
  3117. "ghId": "gh_b6f2c5332c72",
  3118. "fans": 109057,
  3119. "position": "3",
  3120. "readAvg": 55.42,
  3121. "likeAvg": 0.33
  3122. },
  3123. "gh_72bace6b3059_3": {
  3124. "accountName": "幸福妙招合集",
  3125. "ghId": "gh_72bace6b3059",
  3126. "fans": 425935,
  3127. "position": "3",
  3128. "readAvg": 55.38,
  3129. "likeAvg": 0.62
  3130. },
  3131. "gh_5ff48e9fb9ef_4": {
  3132. "accountName": "祝福养心厅",
  3133. "ghId": "gh_5ff48e9fb9ef",
  3134. "fans": 147236,
  3135. "position": "4",
  3136. "readAvg": 54.78,
  3137. "likeAvg": 0.18
  3138. },
  3139. "gh_6d9f36e3a7be_4": {
  3140. "accountName": "音药养心馆",
  3141. "ghId": "gh_6d9f36e3a7be",
  3142. "fans": 205282,
  3143. "position": "4",
  3144. "readAvg": 54.77,
  3145. "likeAvg": 0.4
  3146. },
  3147. "gh_b676b7ad9b74_3": {
  3148. "accountName": "无忧生活小妙招",
  3149. "ghId": "gh_b676b7ad9b74",
  3150. "fans": 215401,
  3151. "position": "3",
  3152. "readAvg": 51.92,
  3153. "likeAvg": 0.23
  3154. },
  3155. "gh_ee78360d06f5_4": {
  3156. "accountName": "实用妙招800个",
  3157. "ghId": "gh_ee78360d06f5",
  3158. "fans": 120597,
  3159. "position": "4",
  3160. "readAvg": 49.49,
  3161. "likeAvg": 0.0
  3162. },
  3163. "gh_7e5818b2dd83_4": {
  3164. "accountName": "便捷生活好方法",
  3165. "ghId": "gh_7e5818b2dd83",
  3166. "fans": 437854,
  3167. "position": "4",
  3168. "readAvg": 48.91,
  3169. "likeAvg": 0.33
  3170. },
  3171. "gh_9f8dc5b0c74e_5": {
  3172. "accountName": "音药金曲厅",
  3173. "ghId": "gh_9f8dc5b0c74e",
  3174. "fans": 162850,
  3175. "position": "5",
  3176. "readAvg": 46.81,
  3177. "likeAvg": 0.5
  3178. },
  3179. "gh_1d887d61088c_4": {
  3180. "accountName": "乐享生活小窍门",
  3181. "ghId": "gh_1d887d61088c",
  3182. "fans": 214677,
  3183. "position": "4",
  3184. "readAvg": 45.74,
  3185. "likeAvg": 0.19
  3186. },
  3187. "gh_26a307578776_4": {
  3188. "accountName": "票圈美文速递",
  3189. "ghId": "gh_26a307578776",
  3190. "fans": 18670,
  3191. "position": "4",
  3192. "readAvg": 45.31,
  3193. "likeAvg": 1.56
  3194. },
  3195. "gh_6b7c2a257263_3": {
  3196. "accountName": "幸福晚年知音",
  3197. "ghId": "gh_6b7c2a257263",
  3198. "fans": 243535,
  3199. "position": "3",
  3200. "readAvg": 43.49,
  3201. "likeAvg": 0.2
  3202. },
  3203. "gh_4568b5a7e2fe_3": {
  3204. "accountName": "窦都事说",
  3205. "ghId": "gh_4568b5a7e2fe",
  3206. "fans": 329707,
  3207. "position": "3",
  3208. "readAvg": 43.15,
  3209. "likeAvg": 0.3
  3210. },
  3211. "gh_a2901d34f75b_8": {
  3212. "accountName": "畅聊奇闻",
  3213. "ghId": "gh_a2901d34f75b",
  3214. "fans": 389185,
  3215. "position": "8",
  3216. "readAvg": 43.11,
  3217. "likeAvg": 0.0
  3218. },
  3219. "gh_dd4c857bbb36_4": {
  3220. "accountName": "无忧自在生活",
  3221. "ghId": "gh_dd4c857bbb36",
  3222. "fans": 354334,
  3223. "position": "4",
  3224. "readAvg": 42.88,
  3225. "likeAvg": 0.14
  3226. },
  3227. "gh_29074b51f2b7_3": {
  3228. "accountName": "老来生活家",
  3229. "ghId": "gh_29074b51f2b7",
  3230. "fans": 197360,
  3231. "position": "3",
  3232. "readAvg": 41.3,
  3233. "likeAvg": 0.25
  3234. },
  3235. "gh_a2901d34f75b_7": {
  3236. "accountName": "畅聊奇闻",
  3237. "ghId": "gh_a2901d34f75b",
  3238. "fans": 389185,
  3239. "position": "7",
  3240. "readAvg": 39.79,
  3241. "likeAvg": 0.11
  3242. },
  3243. "gh_7e5818b2dd83_5": {
  3244. "accountName": "便捷生活好方法",
  3245. "ghId": "gh_7e5818b2dd83",
  3246. "fans": 437854,
  3247. "position": "5",
  3248. "readAvg": 38.91,
  3249. "likeAvg": 0.17
  3250. },
  3251. "gh_ff487cb5dab3_4": {
  3252. "accountName": "趣味生活达人",
  3253. "ghId": "gh_ff487cb5dab3",
  3254. "fans": 240559,
  3255. "position": "4",
  3256. "readAvg": 38.21,
  3257. "likeAvg": 0.07
  3258. },
  3259. "gh_9eef14ad6c16_4": {
  3260. "accountName": "快乐精选集",
  3261. "ghId": "gh_9eef14ad6c16",
  3262. "fans": 515674,
  3263. "position": "4",
  3264. "readAvg": 36.53,
  3265. "likeAvg": 0.09
  3266. },
  3267. "gh_b6f2c5332c72_4": {
  3268. "accountName": "巷尾风声",
  3269. "ghId": "gh_b6f2c5332c72",
  3270. "fans": 109057,
  3271. "position": "4",
  3272. "readAvg": 33.64,
  3273. "likeAvg": 0.34
  3274. },
  3275. "gh_f25b5fb01977_3": {
  3276. "accountName": "生活晓常识",
  3277. "ghId": "gh_f25b5fb01977",
  3278. "fans": 177200,
  3279. "position": "3",
  3280. "readAvg": 33.23,
  3281. "likeAvg": 0.23
  3282. },
  3283. "gh_72bace6b3059_5": {
  3284. "accountName": "幸福妙招合集",
  3285. "ghId": "gh_72bace6b3059",
  3286. "fans": 425935,
  3287. "position": "5",
  3288. "readAvg": 33.17,
  3289. "likeAvg": 0.67
  3290. },
  3291. "gh_b676b7ad9b74_4": {
  3292. "accountName": "无忧生活小妙招",
  3293. "ghId": "gh_b676b7ad9b74",
  3294. "fans": 215401,
  3295. "position": "4",
  3296. "readAvg": 31.7,
  3297. "likeAvg": 0.06
  3298. },
  3299. "gh_72bace6b3059_4": {
  3300. "accountName": "幸福妙招合集",
  3301. "ghId": "gh_72bace6b3059",
  3302. "fans": 425935,
  3303. "position": "4",
  3304. "readAvg": 31.62,
  3305. "likeAvg": 0.41
  3306. },
  3307. "gh_ff487cb5dab3_5": {
  3308. "accountName": "趣味生活达人",
  3309. "ghId": "gh_ff487cb5dab3",
  3310. "fans": 240559,
  3311. "position": "5",
  3312. "readAvg": 31.5,
  3313. "likeAvg": 0.0
  3314. },
  3315. "gh_7e5818b2dd83_6": {
  3316. "accountName": "便捷生活好方法",
  3317. "ghId": "gh_7e5818b2dd83",
  3318. "fans": 437854,
  3319. "position": "6",
  3320. "readAvg": 31.43,
  3321. "likeAvg": 0.1
  3322. },
  3323. "gh_1ee2e1b39ccf_1": {
  3324. "accountName": "票圈最新消息",
  3325. "ghId": "gh_1ee2e1b39ccf",
  3326. "fans": 2416,
  3327. "position": "1",
  3328. "readAvg": 29.6,
  3329. "likeAvg": 0.49
  3330. },
  3331. "gh_084a485e859a_3": {
  3332. "accountName": "生活情感叁读",
  3333. "ghId": "gh_084a485e859a",
  3334. "fans": 120693,
  3335. "position": "3",
  3336. "readAvg": 29.25,
  3337. "likeAvg": 0.23
  3338. },
  3339. "gh_e0eb490115f5_5": {
  3340. "accountName": "心灵情感驿站",
  3341. "ghId": "gh_e0eb490115f5",
  3342. "fans": 315146,
  3343. "position": "5",
  3344. "readAvg": 28.94,
  3345. "likeAvg": 0.06
  3346. },
  3347. "gh_9f8dc5b0c74e_6": {
  3348. "accountName": "音药金曲厅",
  3349. "ghId": "gh_9f8dc5b0c74e",
  3350. "fans": 162850,
  3351. "position": "6",
  3352. "readAvg": 28.73,
  3353. "likeAvg": 0.07
  3354. },
  3355. "gh_6b7c2a257263_4": {
  3356. "accountName": "幸福晚年知音",
  3357. "ghId": "gh_6b7c2a257263",
  3358. "fans": 243535,
  3359. "position": "4",
  3360. "readAvg": 28.29,
  3361. "likeAvg": 0.17
  3362. },
  3363. "gh_183d80deffb8_5": {
  3364. "accountName": "生活良读",
  3365. "ghId": "gh_183d80deffb8",
  3366. "fans": 89392,
  3367. "position": "5",
  3368. "readAvg": 27.75,
  3369. "likeAvg": 0.06
  3370. },
  3371. "gh_7e5818b2dd83_7": {
  3372. "accountName": "便捷生活好方法",
  3373. "ghId": "gh_7e5818b2dd83",
  3374. "fans": 437854,
  3375. "position": "7",
  3376. "readAvg": 25.94,
  3377. "likeAvg": 0.0
  3378. },
  3379. "gh_7e5818b2dd83_8": {
  3380. "accountName": "便捷生活好方法",
  3381. "ghId": "gh_7e5818b2dd83",
  3382. "fans": 437854,
  3383. "position": "8",
  3384. "readAvg": 25.71,
  3385. "likeAvg": 0.12
  3386. },
  3387. "gh_6d9f36e3a7be_5": {
  3388. "accountName": "音药养心馆",
  3389. "ghId": "gh_6d9f36e3a7be",
  3390. "fans": 205282,
  3391. "position": "5",
  3392. "readAvg": 25.38,
  3393. "likeAvg": 0.31
  3394. },
  3395. "gh_29074b51f2b7_4": {
  3396. "accountName": "老来生活家",
  3397. "ghId": "gh_29074b51f2b7",
  3398. "fans": 197360,
  3399. "position": "4",
  3400. "readAvg": 25.31,
  3401. "likeAvg": 0.12
  3402. },
  3403. "gh_5ff48e9fb9ef_5": {
  3404. "accountName": "祝福养心厅",
  3405. "ghId": "gh_5ff48e9fb9ef",
  3406. "fans": 147236,
  3407. "position": "5",
  3408. "readAvg": 24.94,
  3409. "likeAvg": 0.12
  3410. },
  3411. "gh_dd4c857bbb36_5": {
  3412. "accountName": "无忧自在生活",
  3413. "ghId": "gh_dd4c857bbb36",
  3414. "fans": 354334,
  3415. "position": "5",
  3416. "readAvg": 24.0,
  3417. "likeAvg": 0.0
  3418. },
  3419. "gh_1b27dd1beeca_3": {
  3420. "accountName": "小贝生活课堂",
  3421. "ghId": "gh_1b27dd1beeca",
  3422. "fans": 155419,
  3423. "position": "3",
  3424. "readAvg": 23.84,
  3425. "likeAvg": 0.07
  3426. },
  3427. "gh_1ee2e1b39ccf_2": {
  3428. "accountName": "票圈最新消息",
  3429. "ghId": "gh_1ee2e1b39ccf",
  3430. "fans": 2416,
  3431. "position": "2",
  3432. "readAvg": 23.68,
  3433. "likeAvg": 0.35
  3434. },
  3435. "gh_4568b5a7e2fe_4": {
  3436. "accountName": "窦都事说",
  3437. "ghId": "gh_4568b5a7e2fe",
  3438. "fans": 329707,
  3439. "position": "4",
  3440. "readAvg": 22.38,
  3441. "likeAvg": 0.08
  3442. },
  3443. "gh_29074b51f2b7_5": {
  3444. "accountName": "老来生活家",
  3445. "ghId": "gh_29074b51f2b7",
  3446. "fans": 197360,
  3447. "position": "5",
  3448. "readAvg": 21.58,
  3449. "likeAvg": 0.11
  3450. },
  3451. "gh_5ff48e9fb9ef_6": {
  3452. "accountName": "祝福养心厅",
  3453. "ghId": "gh_5ff48e9fb9ef",
  3454. "fans": 147236,
  3455. "position": "6",
  3456. "readAvg": 21.44,
  3457. "likeAvg": 0.12
  3458. },
  3459. "gh_f25b5fb01977_4": {
  3460. "accountName": "生活晓常识",
  3461. "ghId": "gh_f25b5fb01977",
  3462. "fans": 177200,
  3463. "position": "4",
  3464. "readAvg": 21.27,
  3465. "likeAvg": 0.16
  3466. },
  3467. "gh_084a485e859a_4": {
  3468. "accountName": "生活情感叁读",
  3469. "ghId": "gh_084a485e859a",
  3470. "fans": 120693,
  3471. "position": "4",
  3472. "readAvg": 18.96,
  3473. "likeAvg": 0.08
  3474. },
  3475. "gh_6d9f36e3a7be_6": {
  3476. "accountName": "音药养心馆",
  3477. "ghId": "gh_6d9f36e3a7be",
  3478. "fans": 205282,
  3479. "position": "6",
  3480. "readAvg": 18.87,
  3481. "likeAvg": 0.2
  3482. },
  3483. "gh_e0eb490115f5_6": {
  3484. "accountName": "心灵情感驿站",
  3485. "ghId": "gh_e0eb490115f5",
  3486. "fans": 315146,
  3487. "position": "6",
  3488. "readAvg": 18.25,
  3489. "likeAvg": 0.12
  3490. },
  3491. "gh_e75dbdc73d80_3": {
  3492. "accountName": "票圈正能量",
  3493. "ghId": "gh_e75dbdc73d80",
  3494. "fans": 21179,
  3495. "position": "3",
  3496. "readAvg": 17.87,
  3497. "likeAvg": 0.13
  3498. },
  3499. "gh_1b27dd1beeca_4": {
  3500. "accountName": "小贝生活课堂",
  3501. "ghId": "gh_1b27dd1beeca",
  3502. "fans": 155419,
  3503. "position": "4",
  3504. "readAvg": 16.98,
  3505. "likeAvg": 0.05
  3506. },
  3507. "gh_1b27dd1beeca_5": {
  3508. "accountName": "小贝生活课堂",
  3509. "ghId": "gh_1b27dd1beeca",
  3510. "fans": 155419,
  3511. "position": "5",
  3512. "readAvg": 15.33,
  3513. "likeAvg": 0.0
  3514. },
  3515. "gh_e75dbdc73d80_4": {
  3516. "accountName": "票圈正能量",
  3517. "ghId": "gh_e75dbdc73d80",
  3518. "fans": 21179,
  3519. "position": "4",
  3520. "readAvg": 14.26,
  3521. "likeAvg": 0.0
  3522. },
  3523. "gh_9e559b3b94ca_3": {
  3524. "accountName": "票圈大事件",
  3525. "ghId": "gh_9e559b3b94ca",
  3526. "fans": 20375,
  3527. "position": "3",
  3528. "readAvg": 13.91,
  3529. "likeAvg": 0.32
  3530. },
  3531. "gh_183d80deffb8_6": {
  3532. "accountName": "生活良读",
  3533. "ghId": "gh_183d80deffb8",
  3534. "fans": 89392,
  3535. "position": "6",
  3536. "readAvg": 10.8,
  3537. "likeAvg": 0.07
  3538. },
  3539. "gh_084a485e859a_5": {
  3540. "accountName": "生活情感叁读",
  3541. "ghId": "gh_084a485e859a",
  3542. "fans": 120693,
  3543. "position": "5",
  3544. "readAvg": 9.87,
  3545. "likeAvg": 0.13
  3546. },
  3547. "gh_9e559b3b94ca_4": {
  3548. "accountName": "票圈大事件",
  3549. "ghId": "gh_9e559b3b94ca",
  3550. "fans": 20375,
  3551. "position": "4",
  3552. "readAvg": 8.38,
  3553. "likeAvg": 0.05
  3554. },
  3555. "gh_084a485e859a_6": {
  3556. "accountName": "生活情感叁读",
  3557. "ghId": "gh_084a485e859a",
  3558. "fans": 120693,
  3559. "position": "6",
  3560. "readAvg": 7.29,
  3561. "likeAvg": 0.0
  3562. },
  3563. "gh_7b4a5f86d68c_5": {
  3564. "accountName": "异闻趣事多",
  3565. "ghId": "gh_7b4a5f86d68c",
  3566. "fans": 149539,
  3567. "position": "5",
  3568. "readAvg": 0.83,
  3569. "likeAvg": 0.0
  3570. },
  3571. "gh_7b4a5f86d68c_6": {
  3572. "accountName": "异闻趣事多",
  3573. "ghId": "gh_7b4a5f86d68c",
  3574. "fans": 149539,
  3575. "position": "6",
  3576. "readAvg": 0.0,
  3577. "likeAvg": 0.0
  3578. }
  3579. }