EventConfig.json 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610
  1. {
  2. "configList": [
  3. {
  4. "ID": 1,
  5. "EventLinksId": [
  6. 1001,
  7. 1002,
  8. 1003,
  9. 1004,
  10. 1005,
  11. 100,
  12. 102
  13. ],
  14. "EventTriggerType": 1,
  15. "EventTag": 3,
  16. "EventType": 1,
  17. "Score": 0,
  18. "EventQuality": 1,
  19. "PrizeType": [
  20. 5
  21. ],
  22. "PrizeIDs": [
  23. 999001
  24. ],
  25. "PrizeNums": [
  26. 1
  27. ],
  28. "RefreshProbability": null,
  29. "RefreshCount": null,
  30. "placeID": null,
  31. "XiantuID": 4,
  32. "EventConditionId": null,
  33. "EventCount": null,
  34. "EventName": 174,
  35. "Description": 1936
  36. },
  37. {
  38. "ID": 2,
  39. "EventLinksId": [
  40. 1010,
  41. 1011,
  42. 1012,
  43. 1013,
  44. 1014,
  45. 1015,
  46. 1016,
  47. 100,
  48. 102
  49. ],
  50. "EventTriggerType": 1,
  51. "EventTag": 3,
  52. "EventType": 1,
  53. "Score": 0,
  54. "EventQuality": 1,
  55. "PrizeType": [
  56. 6
  57. ],
  58. "PrizeIDs": [
  59. 999002
  60. ],
  61. "PrizeNums": [
  62. 1
  63. ],
  64. "RefreshProbability": null,
  65. "RefreshCount": null,
  66. "placeID": null,
  67. "XiantuID": 4,
  68. "EventConditionId": null,
  69. "EventCount": null,
  70. "EventName": 175,
  71. "Description": 1937
  72. },
  73. {
  74. "ID": 4,
  75. "EventLinksId": [
  76. 1030,
  77. 100,
  78. 102
  79. ],
  80. "EventTriggerType": 1,
  81. "EventTag": 3,
  82. "EventType": 2,
  83. "Score": 0,
  84. "EventQuality": 1,
  85. "PrizeType": [
  86. 1
  87. ],
  88. "PrizeIDs": [
  89. 1001
  90. ],
  91. "PrizeNums": [
  92. 100
  93. ],
  94. "RefreshProbability": null,
  95. "RefreshCount": null,
  96. "placeID": null,
  97. "XiantuID": 3,
  98. "EventConditionId": null,
  99. "EventCount": null,
  100. "EventName": 217,
  101. "Description": 1939
  102. },
  103. {
  104. "ID": 5,
  105. "EventLinksId": [
  106. 1040,
  107. 100,
  108. 102
  109. ],
  110. "EventTriggerType": 1,
  111. "EventTag": 3,
  112. "EventType": 2,
  113. "Score": 0,
  114. "EventQuality": 1,
  115. "PrizeType": [
  116. 2
  117. ],
  118. "PrizeIDs": [
  119. 1003
  120. ],
  121. "PrizeNums": [
  122. 100
  123. ],
  124. "RefreshProbability": null,
  125. "RefreshCount": null,
  126. "placeID": null,
  127. "XiantuID": 3,
  128. "EventConditionId": null,
  129. "EventCount": null,
  130. "EventName": 218,
  131. "Description": 1940
  132. },
  133. {
  134. "ID": 6,
  135. "EventLinksId": [
  136. 1050,
  137. 100,
  138. 102
  139. ],
  140. "EventTriggerType": 1,
  141. "EventTag": 3,
  142. "EventType": 2,
  143. "Score": 0,
  144. "EventQuality": 1,
  145. "PrizeType": [
  146. 3
  147. ],
  148. "PrizeIDs": [
  149. 1005
  150. ],
  151. "PrizeNums": [
  152. 100
  153. ],
  154. "RefreshProbability": null,
  155. "RefreshCount": null,
  156. "placeID": null,
  157. "XiantuID": 3,
  158. "EventConditionId": null,
  159. "EventCount": null,
  160. "EventName": 219,
  161. "Description": 1941
  162. },
  163. {
  164. "ID": 7,
  165. "EventLinksId": [
  166. 1060,
  167. 100,
  168. 102
  169. ],
  170. "EventTriggerType": 1,
  171. "EventTag": 3,
  172. "EventType": 2,
  173. "Score": 0,
  174. "EventQuality": 1,
  175. "PrizeType": [
  176. 4
  177. ],
  178. "PrizeIDs": [
  179. 1006
  180. ],
  181. "PrizeNums": [
  182. 100
  183. ],
  184. "RefreshProbability": null,
  185. "RefreshCount": null,
  186. "placeID": null,
  187. "XiantuID": 3,
  188. "EventConditionId": null,
  189. "EventCount": null,
  190. "EventName": 220,
  191. "Description": 1942
  192. },
  193. {
  194. "ID": 1011,
  195. "EventLinksId": [
  196. 101101,
  197. 100,
  198. 102
  199. ],
  200. "EventTriggerType": 1,
  201. "EventTag": 7,
  202. "EventType": 1,
  203. "Score": 0,
  204. "EventQuality": 1,
  205. "PrizeType": [
  206. 7
  207. ],
  208. "PrizeIDs": [
  209. 1401
  210. ],
  211. "PrizeNums": [
  212. 1
  213. ],
  214. "RefreshProbability": null,
  215. "RefreshCount": null,
  216. "placeID": null,
  217. "XiantuID": null,
  218. "EventConditionId": null,
  219. "EventCount": null,
  220. "EventName": 3017,
  221. "Description": 3018
  222. },
  223. {
  224. "ID": 1012,
  225. "EventLinksId": [
  226. 101201,
  227. 100,
  228. 102
  229. ],
  230. "EventTriggerType": 1,
  231. "EventTag": 7,
  232. "EventType": 1,
  233. "Score": 0,
  234. "EventQuality": 3,
  235. "PrizeType": [
  236. 7
  237. ],
  238. "PrizeIDs": [
  239. 1402
  240. ],
  241. "PrizeNums": [
  242. 1
  243. ],
  244. "RefreshProbability": null,
  245. "RefreshCount": null,
  246. "placeID": null,
  247. "XiantuID": null,
  248. "EventConditionId": null,
  249. "EventCount": null,
  250. "EventName": 3038,
  251. "Description": 3039
  252. },
  253. {
  254. "ID": 1013,
  255. "EventLinksId": [
  256. 101301,
  257. 100,
  258. 102
  259. ],
  260. "EventTriggerType": 1,
  261. "EventTag": 7,
  262. "EventType": 1,
  263. "Score": 0,
  264. "EventQuality": 3,
  265. "PrizeType": [
  266. 7
  267. ],
  268. "PrizeIDs": [
  269. 1403
  270. ],
  271. "PrizeNums": [
  272. 1
  273. ],
  274. "RefreshProbability": null,
  275. "RefreshCount": null,
  276. "placeID": null,
  277. "XiantuID": null,
  278. "EventConditionId": null,
  279. "EventCount": null,
  280. "EventName": 3040,
  281. "Description": 3041
  282. },
  283. {
  284. "ID": 1014,
  285. "EventLinksId": [
  286. 101401,
  287. 100,
  288. 102
  289. ],
  290. "EventTriggerType": 1,
  291. "EventTag": 7,
  292. "EventType": 1,
  293. "Score": 0,
  294. "EventQuality": 3,
  295. "PrizeType": [
  296. 7
  297. ],
  298. "PrizeIDs": [
  299. 1404
  300. ],
  301. "PrizeNums": [
  302. 1
  303. ],
  304. "RefreshProbability": null,
  305. "RefreshCount": null,
  306. "placeID": null,
  307. "XiantuID": null,
  308. "EventConditionId": null,
  309. "EventCount": null,
  310. "EventName": 3042,
  311. "Description": 3043
  312. },
  313. {
  314. "ID": 1015,
  315. "EventLinksId": [
  316. 101501,
  317. 101502,
  318. 100,
  319. 102
  320. ],
  321. "EventTriggerType": 1,
  322. "EventTag": 7,
  323. "EventType": 1,
  324. "Score": 0,
  325. "EventQuality": 1,
  326. "PrizeType": [
  327. 8
  328. ],
  329. "PrizeIDs": [
  330. 1301
  331. ],
  332. "PrizeNums": [
  333. 1
  334. ],
  335. "RefreshProbability": null,
  336. "RefreshCount": null,
  337. "placeID": null,
  338. "XiantuID": null,
  339. "EventConditionId": null,
  340. "EventCount": null,
  341. "EventName": 3046,
  342. "Description": 3047
  343. },
  344. {
  345. "ID": 1016,
  346. "EventLinksId": [
  347. 101601,
  348. 101602,
  349. 100,
  350. 102
  351. ],
  352. "EventTriggerType": 1,
  353. "EventTag": 7,
  354. "EventType": 1,
  355. "Score": 0,
  356. "EventQuality": 1,
  357. "PrizeType": [
  358. 8
  359. ],
  360. "PrizeIDs": [
  361. 1302
  362. ],
  363. "PrizeNums": [
  364. 1
  365. ],
  366. "RefreshProbability": null,
  367. "RefreshCount": null,
  368. "placeID": null,
  369. "XiantuID": null,
  370. "EventConditionId": null,
  371. "EventCount": null,
  372. "EventName": 3048,
  373. "Description": 3049
  374. },
  375. {
  376. "ID": 1017,
  377. "EventLinksId": [
  378. 101701,
  379. 100,
  380. 102
  381. ],
  382. "EventTriggerType": 1,
  383. "EventTag": 7,
  384. "EventType": 1,
  385. "Score": 0,
  386. "EventQuality": 1,
  387. "PrizeType": [
  388. 8
  389. ],
  390. "PrizeIDs": [
  391. 1303
  392. ],
  393. "PrizeNums": [
  394. 1
  395. ],
  396. "RefreshProbability": null,
  397. "RefreshCount": null,
  398. "placeID": null,
  399. "XiantuID": null,
  400. "EventConditionId": 10,
  401. "EventValue": [
  402. 30009
  403. ],
  404. "EventCount": null,
  405. "EventName": 3048,
  406. "Description": 3050
  407. },
  408. {
  409. "ID": 1018,
  410. "EventLinksId": [
  411. 101801,
  412. 101802,
  413. 101803,
  414. 101804,
  415. 100,
  416. 102
  417. ],
  418. "EventTriggerType": 1,
  419. "EventTag": 7,
  420. "EventType": 1,
  421. "Score": 0,
  422. "EventQuality": 1,
  423. "PrizeType": [
  424. 8
  425. ],
  426. "PrizeIDs": [
  427. 1304
  428. ],
  429. "PrizeNums": [
  430. 1
  431. ],
  432. "RefreshProbability": null,
  433. "RefreshCount": null,
  434. "placeID": null,
  435. "XiantuID": null,
  436. "EventConditionId": null,
  437. "EventCount": null,
  438. "EventName": 3051,
  439. "Description": 3052
  440. },
  441. {
  442. "ID": 1019,
  443. "EventLinksId": [
  444. 101901,
  445. 101902,
  446. 101903,
  447. 100,
  448. 102
  449. ],
  450. "EventTriggerType": 1,
  451. "EventTag": 7,
  452. "EventType": 1,
  453. "Score": 0,
  454. "EventQuality": 1,
  455. "PrizeType": [
  456. 9
  457. ],
  458. "PrizeIDs": [
  459. 1201
  460. ],
  461. "PrizeNums": [
  462. 1
  463. ],
  464. "RefreshProbability": null,
  465. "RefreshCount": null,
  466. "placeID": null,
  467. "XiantuID": null,
  468. "EventConditionId": null,
  469. "EventCount": null,
  470. "EventName": 3053,
  471. "Description": 3054
  472. },
  473. {
  474. "ID": 1020,
  475. "EventLinksId": [
  476. 102001,
  477. 102002,
  478. 100,
  479. 102
  480. ],
  481. "EventTriggerType": 1,
  482. "EventTag": 7,
  483. "EventType": 1,
  484. "Score": 0,
  485. "EventQuality": 1,
  486. "PrizeType": [
  487. 9
  488. ],
  489. "PrizeIDs": [
  490. 1204
  491. ],
  492. "PrizeNums": [
  493. 1
  494. ],
  495. "RefreshProbability": null,
  496. "RefreshCount": null,
  497. "placeID": null,
  498. "XiantuID": null,
  499. "EventConditionId": null,
  500. "EventCount": null,
  501. "EventName": 3055,
  502. "Description": 3056
  503. },
  504. {
  505. "ID": 1021,
  506. "EventLinksId": [
  507. 102101,
  508. 102102,
  509. 102103,
  510. 100,
  511. 102
  512. ],
  513. "EventTriggerType": 1,
  514. "EventTag": 7,
  515. "EventType": 1,
  516. "Score": 0,
  517. "EventQuality": 1,
  518. "PrizeType": [
  519. 9
  520. ],
  521. "PrizeIDs": [
  522. 1207
  523. ],
  524. "PrizeNums": [
  525. 1
  526. ],
  527. "RefreshProbability": null,
  528. "RefreshCount": null,
  529. "placeID": null,
  530. "XiantuID": null,
  531. "EventConditionId": null,
  532. "EventCount": null,
  533. "EventName": 3057,
  534. "Description": 3058
  535. },
  536. {
  537. "ID": 1022,
  538. "EventLinksId": [
  539. 102201,
  540. 102202,
  541. 102203,
  542. 102204,
  543. 102205,
  544. 102206,
  545. 102207,
  546. 100,
  547. 102
  548. ],
  549. "EventTriggerType": 1,
  550. "EventTag": 7,
  551. "EventType": 1,
  552. "Score": 0,
  553. "EventQuality": 1,
  554. "PrizeType": [
  555. 10
  556. ],
  557. "PrizeIDs": [
  558. 1501
  559. ],
  560. "PrizeNums": [
  561. 1
  562. ],
  563. "RefreshProbability": null,
  564. "RefreshCount": null,
  565. "placeID": null,
  566. "XiantuID": null,
  567. "EventConditionId": null,
  568. "EventCount": null,
  569. "EventName": 3059,
  570. "Description": 3060
  571. },
  572. {
  573. "ID": 1023,
  574. "EventLinksId": [
  575. 102301,
  576. 102302,
  577. 102303,
  578. 100,
  579. 102
  580. ],
  581. "EventTriggerType": 1,
  582. "EventTag": 7,
  583. "EventType": 1,
  584. "Score": 0,
  585. "EventQuality": 1,
  586. "PrizeType": [
  587. 10
  588. ],
  589. "PrizeIDs": [
  590. 1502
  591. ],
  592. "PrizeNums": [
  593. 1
  594. ],
  595. "RefreshProbability": null,
  596. "RefreshCount": null,
  597. "placeID": null,
  598. "XiantuID": null,
  599. "EventConditionId": null,
  600. "EventCount": null,
  601. "EventName": 3061,
  602. "Description": 3062
  603. },
  604. {
  605. "ID": 1024,
  606. "EventLinksId": [
  607. 102401,
  608. 102402,
  609. 102403,
  610. 100,
  611. 102
  612. ],
  613. "EventTriggerType": 1,
  614. "EventTag": 7,
  615. "EventType": 1,
  616. "Score": 0,
  617. "EventQuality": 1,
  618. "PrizeType": [
  619. 11
  620. ],
  621. "PrizeIDs": [
  622. 1601
  623. ],
  624. "PrizeNums": [
  625. 1
  626. ],
  627. "RefreshProbability": null,
  628. "RefreshCount": null,
  629. "placeID": null,
  630. "XiantuID": null,
  631. "EventConditionId": null,
  632. "EventCount": null,
  633. "EventName": 3063,
  634. "Description": 3064
  635. },
  636. {
  637. "ID": 1025,
  638. "EventLinksId": [
  639. 102501,
  640. 102502,
  641. 102503,
  642. 100,
  643. 102
  644. ],
  645. "EventTriggerType": 1,
  646. "EventTag": 7,
  647. "EventType": 1,
  648. "Score": 0,
  649. "EventQuality": 1,
  650. "PrizeType": [
  651. 1
  652. ],
  653. "PrizeIDs": [
  654. 1001
  655. ],
  656. "PrizeNums": [
  657. 100
  658. ],
  659. "RefreshProbability": null,
  660. "RefreshCount": null,
  661. "placeID": null,
  662. "XiantuID": null,
  663. "EventConditionId": null,
  664. "EventCount": null,
  665. "EventName": 3065,
  666. "Description": 3066
  667. },
  668. {
  669. "ID": 1026,
  670. "EventLinksId": [
  671. 102601,
  672. 102602,
  673. 100,
  674. 102
  675. ],
  676. "EventTriggerType": 1,
  677. "EventTag": 7,
  678. "EventType": 1,
  679. "Score": 0,
  680. "EventQuality": 1,
  681. "PrizeType": [
  682. 2
  683. ],
  684. "PrizeIDs": [
  685. 1003
  686. ],
  687. "PrizeNums": [
  688. 100
  689. ],
  690. "RefreshProbability": null,
  691. "RefreshCount": null,
  692. "placeID": null,
  693. "XiantuID": null,
  694. "EventConditionId": null,
  695. "EventCount": null,
  696. "EventName": 3067,
  697. "Description": 3068
  698. },
  699. {
  700. "ID": 1027,
  701. "EventLinksId": [
  702. 102701,
  703. 102702,
  704. 100,
  705. 102
  706. ],
  707. "EventTriggerType": 1,
  708. "EventTag": 7,
  709. "EventType": 1,
  710. "Score": 0,
  711. "EventQuality": 1,
  712. "PrizeType": [
  713. 3
  714. ],
  715. "PrizeIDs": [
  716. 1005
  717. ],
  718. "PrizeNums": [
  719. 100
  720. ],
  721. "RefreshProbability": null,
  722. "RefreshCount": null,
  723. "placeID": null,
  724. "XiantuID": null,
  725. "EventConditionId": null,
  726. "EventCount": null,
  727. "EventName": 3069,
  728. "Description": 3070
  729. },
  730. {
  731. "ID": 1028,
  732. "EventLinksId": [
  733. 102801,
  734. 102802,
  735. 102803,
  736. 102804,
  737. 102805,
  738. 100,
  739. 102
  740. ],
  741. "EventTriggerType": 1,
  742. "EventTag": 7,
  743. "EventType": 1,
  744. "Score": 0,
  745. "EventQuality": 1,
  746. "PrizeType": [
  747. 4
  748. ],
  749. "PrizeIDs": [
  750. 1006
  751. ],
  752. "PrizeNums": [
  753. 100
  754. ],
  755. "RefreshProbability": null,
  756. "RefreshCount": null,
  757. "placeID": null,
  758. "XiantuID": null,
  759. "EventConditionId": null,
  760. "EventCount": null,
  761. "EventName": 3071,
  762. "Description": 3072
  763. },
  764. {
  765. "ID": 1029,
  766. "EventLinksId": [
  767. 102901,
  768. 102902,
  769. 102903,
  770. 102904,
  771. 102905,
  772. 102906,
  773. 102907,
  774. 102908,
  775. 100,
  776. 102
  777. ],
  778. "EventTriggerType": 1,
  779. "EventTag": 7,
  780. "EventType": 1,
  781. "Score": 0,
  782. "EventQuality": 1,
  783. "PrizeType": [
  784. 7
  785. ],
  786. "PrizeIDs": [
  787. 1401
  788. ],
  789. "PrizeNums": [
  790. 1
  791. ],
  792. "RefreshProbability": null,
  793. "RefreshCount": null,
  794. "placeID": null,
  795. "XiantuID": null,
  796. "EventConditionId": null,
  797. "EventCount": null,
  798. "EventName": 3073,
  799. "Description": 3074
  800. },
  801. {
  802. "ID": 1030,
  803. "EventLinksId": [
  804. 103001,
  805. 103002,
  806. 103003,
  807. 103004,
  808. 103005,
  809. 103006,
  810. 103007,
  811. 100,
  812. 102
  813. ],
  814. "EventTriggerType": 1,
  815. "EventTag": 7,
  816. "EventType": 1,
  817. "Score": 0,
  818. "EventQuality": 1,
  819. "PrizeType": [
  820. 8
  821. ],
  822. "PrizeIDs": [
  823. 1301
  824. ],
  825. "PrizeNums": [
  826. 1
  827. ],
  828. "RefreshProbability": null,
  829. "RefreshCount": null,
  830. "placeID": null,
  831. "XiantuID": null,
  832. "EventConditionId": null,
  833. "EventCount": null,
  834. "EventName": 3075,
  835. "Description": 3076
  836. },
  837. {
  838. "ID": 1031,
  839. "EventLinksId": [
  840. 103101,
  841. 103102,
  842. 103103,
  843. 103104,
  844. 103105,
  845. 100,
  846. 102
  847. ],
  848. "EventTriggerType": 1,
  849. "EventTag": 7,
  850. "EventType": 1,
  851. "Score": 0,
  852. "EventQuality": 1,
  853. "PrizeType": [
  854. 9
  855. ],
  856. "PrizeIDs": [
  857. 1201
  858. ],
  859. "PrizeNums": [
  860. 1
  861. ],
  862. "RefreshProbability": null,
  863. "RefreshCount": null,
  864. "placeID": null,
  865. "XiantuID": null,
  866. "EventConditionId": null,
  867. "EventCount": null,
  868. "EventName": 3077,
  869. "Description": 3074
  870. },
  871. {
  872. "ID": 11,
  873. "EventLinksId": [
  874. 1101,
  875. 1102,
  876. 1103,
  877. 100,
  878. 102
  879. ],
  880. "EventTriggerType": 2,
  881. "EventTag": 3,
  882. "EventType": 1,
  883. "Score": 0,
  884. "EventQuality": 1,
  885. "RefreshProbability": null,
  886. "RefreshCount": null,
  887. "placeID": null,
  888. "XiantuID": null,
  889. "EventConditionId": null,
  890. "EventCount": null,
  891. "EventName": null,
  892. "Description": null
  893. },
  894. {
  895. "ID": 12,
  896. "EventLinksId": [
  897. 1201,
  898. 1202,
  899. 1203,
  900. 100,
  901. 102
  902. ],
  903. "EventTriggerType": 2,
  904. "EventTag": 3,
  905. "EventType": 1,
  906. "Score": 0,
  907. "EventQuality": 1,
  908. "RefreshProbability": null,
  909. "RefreshCount": null,
  910. "placeID": null,
  911. "XiantuID": null,
  912. "EventConditionId": null,
  913. "EventCount": null,
  914. "EventName": null,
  915. "Description": null
  916. },
  917. {
  918. "ID": 13,
  919. "EventLinksId": [
  920. 1301,
  921. 1302,
  922. 1303,
  923. 1304,
  924. 100,
  925. 102
  926. ],
  927. "EventTriggerType": 2,
  928. "EventTag": 3,
  929. "EventType": 1,
  930. "Score": 0,
  931. "EventQuality": 1,
  932. "RefreshProbability": null,
  933. "RefreshCount": null,
  934. "placeID": null,
  935. "XiantuID": null,
  936. "EventConditionId": null,
  937. "EventCount": null,
  938. "EventName": null,
  939. "Description": null
  940. },
  941. {
  942. "ID": 14,
  943. "EventLinksId": [
  944. 1401,
  945. 1402,
  946. 1403,
  947. 100,
  948. 102
  949. ],
  950. "EventTriggerType": 2,
  951. "EventTag": 3,
  952. "EventType": 1,
  953. "Score": 0,
  954. "EventQuality": 1,
  955. "RefreshProbability": null,
  956. "RefreshCount": null,
  957. "placeID": null,
  958. "XiantuID": null,
  959. "EventConditionId": null,
  960. "EventCount": null,
  961. "EventName": null,
  962. "Description": null
  963. },
  964. {
  965. "ID": 15,
  966. "EventLinksId": [
  967. 1501,
  968. 1502,
  969. 1503,
  970. 1504,
  971. 100,
  972. 102
  973. ],
  974. "EventTriggerType": 2,
  975. "EventTag": 3,
  976. "EventType": 1,
  977. "Score": 0,
  978. "EventQuality": 1,
  979. "RefreshProbability": null,
  980. "RefreshCount": null,
  981. "placeID": null,
  982. "XiantuID": null,
  983. "EventConditionId": null,
  984. "EventCount": null,
  985. "EventName": null,
  986. "Description": null
  987. },
  988. {
  989. "ID": 16,
  990. "EventLinksId": [
  991. 1601,
  992. 1602,
  993. 1603,
  994. 100,
  995. 102
  996. ],
  997. "EventTriggerType": 2,
  998. "EventTag": 3,
  999. "EventType": 1,
  1000. "Score": 0,
  1001. "EventQuality": 1,
  1002. "RefreshProbability": null,
  1003. "RefreshCount": null,
  1004. "placeID": null,
  1005. "XiantuID": null,
  1006. "EventConditionId": null,
  1007. "EventCount": null,
  1008. "EventName": null,
  1009. "Description": null
  1010. },
  1011. {
  1012. "ID": 10001,
  1013. "EventLinksId": [
  1014. 1000101,
  1015. 1000102,
  1016. 1000103,
  1017. 1000104,
  1018. 102
  1019. ],
  1020. "EventTriggerType": 4,
  1021. "EventTag": 1,
  1022. "EventType": 1,
  1023. "Score": 10,
  1024. "EventQuality": 1,
  1025. "PrizeIDs": [
  1026. 1001
  1027. ],
  1028. "PrizeNums": [
  1029. 10
  1030. ],
  1031. "RefreshProbability": null,
  1032. "RefreshCount": null,
  1033. "placeID": 1,
  1034. "XiantuID": 1,
  1035. "EventConditionId": null,
  1036. "EventCount": null,
  1037. "EventName": 1906,
  1038. "Description": 1914
  1039. },
  1040. {
  1041. "ID": 10002,
  1042. "EventLinksId": [
  1043. 1000201,
  1044. 1000202,
  1045. 1000203,
  1046. 102
  1047. ],
  1048. "EventTriggerType": 4,
  1049. "EventTag": 1,
  1050. "EventType": 1,
  1051. "Score": 10,
  1052. "EventQuality": 1,
  1053. "PrizeIDs": [
  1054. 1001
  1055. ],
  1056. "PrizeNums": [
  1057. 10
  1058. ],
  1059. "RefreshProbability": null,
  1060. "RefreshCount": null,
  1061. "placeID": 1,
  1062. "XiantuID": 1,
  1063. "EventConditionId": null,
  1064. "EventCount": null,
  1065. "EventName": 1907,
  1066. "Description": 1915
  1067. },
  1068. {
  1069. "ID": 10003,
  1070. "EventLinksId": [
  1071. 1000301,
  1072. 1000302,
  1073. 1000303,
  1074. 1000304,
  1075. 1000305,
  1076. 1000306,
  1077. 1000307,
  1078. 1000308,
  1079. 1000309,
  1080. 102
  1081. ],
  1082. "EventTriggerType": 4,
  1083. "EventTag": 1,
  1084. "EventType": 1,
  1085. "Score": 10,
  1086. "EventQuality": 1,
  1087. "PrizeIDs": [
  1088. 1001
  1089. ],
  1090. "PrizeNums": [
  1091. 10
  1092. ],
  1093. "RefreshProbability": null,
  1094. "RefreshCount": null,
  1095. "placeID": 1,
  1096. "XiantuID": 1,
  1097. "EventConditionId": null,
  1098. "EventCount": null,
  1099. "EventName": 1908,
  1100. "Description": 1916
  1101. },
  1102. {
  1103. "ID": 10004,
  1104. "EventLinksId": [
  1105. 1000401,
  1106. 1000402,
  1107. 1000403,
  1108. 1000404,
  1109. 102
  1110. ],
  1111. "EventTriggerType": 4,
  1112. "EventTag": 1,
  1113. "EventType": 1,
  1114. "Score": 10,
  1115. "EventQuality": 1,
  1116. "PrizeIDs": [
  1117. 1001
  1118. ],
  1119. "PrizeNums": [
  1120. 10
  1121. ],
  1122. "RefreshProbability": null,
  1123. "RefreshCount": null,
  1124. "placeID": 1,
  1125. "XiantuID": 1,
  1126. "EventConditionId": null,
  1127. "EventCount": null,
  1128. "EventName": 1909,
  1129. "Description": 1917
  1130. },
  1131. {
  1132. "ID": 10005,
  1133. "EventLinksId": [
  1134. 1000501,
  1135. 1000502,
  1136. 1000503,
  1137. 1000504,
  1138. 1000505,
  1139. 1000506,
  1140. 1000507,
  1141. 1000508,
  1142. 1000509,
  1143. 1000510,
  1144. 1000511,
  1145. 1000512,
  1146. 1000513,
  1147. 1000514,
  1148. 102
  1149. ],
  1150. "EventTriggerType": 4,
  1151. "EventTag": 1,
  1152. "EventType": 1,
  1153. "Score": 10,
  1154. "EventQuality": 1,
  1155. "PrizeIDs": [
  1156. 1001
  1157. ],
  1158. "PrizeNums": [
  1159. 10
  1160. ],
  1161. "RefreshProbability": null,
  1162. "RefreshCount": null,
  1163. "placeID": 1,
  1164. "XiantuID": 1,
  1165. "EventConditionId": null,
  1166. "EventCount": null,
  1167. "EventName": 2135,
  1168. "Description": 2137
  1169. },
  1170. {
  1171. "ID": 10006,
  1172. "EventLinksId": [
  1173. 1000601,
  1174. 1000602,
  1175. 1000603,
  1176. 1000604,
  1177. 1000605,
  1178. 1000606,
  1179. 102
  1180. ],
  1181. "EventTriggerType": 4,
  1182. "EventTag": 1,
  1183. "EventType": 1,
  1184. "Score": 10,
  1185. "EventQuality": 1,
  1186. "PrizeIDs": [
  1187. 1001
  1188. ],
  1189. "PrizeNums": [
  1190. 10
  1191. ],
  1192. "RefreshProbability": null,
  1193. "RefreshCount": null,
  1194. "placeID": 1,
  1195. "XiantuID": 1,
  1196. "EventConditionId": null,
  1197. "EventCount": null,
  1198. "EventName": 2136,
  1199. "Description": 2138
  1200. },
  1201. {
  1202. "ID": 10007,
  1203. "EventLinksId": [
  1204. 1000701,
  1205. 1000702,
  1206. 1000703,
  1207. 1000704,
  1208. 1000705,
  1209. 102
  1210. ],
  1211. "EventTriggerType": 4,
  1212. "EventTag": 1,
  1213. "EventType": 1,
  1214. "Score": 10,
  1215. "EventQuality": 1,
  1216. "PrizeIDs": [
  1217. 1001
  1218. ],
  1219. "PrizeNums": [
  1220. 10
  1221. ],
  1222. "RefreshProbability": null,
  1223. "RefreshCount": null,
  1224. "placeID": 1,
  1225. "XiantuID": 1,
  1226. "EventConditionId": null,
  1227. "EventCount": null,
  1228. "EventName": 2801,
  1229. "Description": 2822
  1230. },
  1231. {
  1232. "ID": 10008,
  1233. "EventLinksId": [
  1234. 1000801,
  1235. 1000802,
  1236. 1000803,
  1237. 1000804,
  1238. 1000805,
  1239. 1000806,
  1240. 1000807,
  1241. 1000808,
  1242. 1000809,
  1243. 1000810,
  1244. 1000811,
  1245. 1000812,
  1246. 1000813,
  1247. 1000814,
  1248. 102
  1249. ],
  1250. "EventTriggerType": 4,
  1251. "EventTag": 1,
  1252. "EventType": 1,
  1253. "Score": 10,
  1254. "EventQuality": 1,
  1255. "PrizeIDs": [
  1256. 1001
  1257. ],
  1258. "PrizeNums": [
  1259. 10
  1260. ],
  1261. "RefreshProbability": null,
  1262. "RefreshCount": null,
  1263. "placeID": 1,
  1264. "XiantuID": 1,
  1265. "EventConditionId": null,
  1266. "EventCount": null,
  1267. "EventName": 2802,
  1268. "Description": 2823
  1269. },
  1270. {
  1271. "ID": 10009,
  1272. "EventLinksId": [
  1273. 1000901,
  1274. 1000902,
  1275. 1000903,
  1276. 102
  1277. ],
  1278. "EventTriggerType": 4,
  1279. "EventTag": 1,
  1280. "EventType": 1,
  1281. "Score": 10,
  1282. "EventQuality": 1,
  1283. "PrizeIDs": [
  1284. 1001
  1285. ],
  1286. "PrizeNums": [
  1287. 10
  1288. ],
  1289. "RefreshProbability": null,
  1290. "RefreshCount": null,
  1291. "placeID": 1,
  1292. "XiantuID": 1,
  1293. "EventConditionId": null,
  1294. "EventCount": null,
  1295. "EventName": 2803,
  1296. "Description": 2824
  1297. },
  1298. {
  1299. "ID": 10010,
  1300. "EventLinksId": [
  1301. 1001001,
  1302. 102
  1303. ],
  1304. "EventTriggerType": 4,
  1305. "EventTag": 1,
  1306. "EventType": 1,
  1307. "Score": 10,
  1308. "EventQuality": 1,
  1309. "PrizeIDs": [
  1310. 1001
  1311. ],
  1312. "PrizeNums": [
  1313. 10
  1314. ],
  1315. "RefreshProbability": null,
  1316. "RefreshCount": null,
  1317. "placeID": 1,
  1318. "XiantuID": 1,
  1319. "EventConditionId": null,
  1320. "EventCount": null,
  1321. "EventName": 2804,
  1322. "Description": 2825
  1323. },
  1324. {
  1325. "ID": 10011,
  1326. "EventLinksId": [
  1327. 1001101,
  1328. 102
  1329. ],
  1330. "EventTriggerType": 4,
  1331. "EventTag": 1,
  1332. "EventType": 1,
  1333. "Score": 10,
  1334. "EventQuality": 1,
  1335. "PrizeIDs": [
  1336. 1001
  1337. ],
  1338. "PrizeNums": [
  1339. 10
  1340. ],
  1341. "RefreshProbability": null,
  1342. "RefreshCount": null,
  1343. "placeID": 1,
  1344. "XiantuID": 1,
  1345. "EventConditionId": null,
  1346. "EventCount": null,
  1347. "EventName": 2805,
  1348. "Description": 2826
  1349. },
  1350. {
  1351. "ID": 10012,
  1352. "EventLinksId": [
  1353. 1001201,
  1354. 1001202,
  1355. 1001203,
  1356. 1001204,
  1357. 1001205,
  1358. 1001206,
  1359. 1001207,
  1360. 1001208,
  1361. 1001209,
  1362. 1001210,
  1363. 1001211,
  1364. 1001212,
  1365. 102
  1366. ],
  1367. "EventTriggerType": 4,
  1368. "EventTag": 1,
  1369. "EventType": 1,
  1370. "Score": 10,
  1371. "EventQuality": 1,
  1372. "PrizeIDs": [
  1373. 1001
  1374. ],
  1375. "PrizeNums": [
  1376. 10
  1377. ],
  1378. "RefreshProbability": null,
  1379. "RefreshCount": null,
  1380. "placeID": 2,
  1381. "XiantuID": 1,
  1382. "EventConditionId": null,
  1383. "EventCount": null,
  1384. "EventName": 2806,
  1385. "Description": 2827
  1386. },
  1387. {
  1388. "ID": 10013,
  1389. "EventLinksId": [
  1390. 1001301,
  1391. 1001302,
  1392. 1001303,
  1393. 1001304,
  1394. 1001305,
  1395. 1001306,
  1396. 1001307,
  1397. 1001308,
  1398. 1001309,
  1399. 1001310,
  1400. 1001311,
  1401. 1001312,
  1402. 1001313,
  1403. 1001314,
  1404. 1001315,
  1405. 1001316,
  1406. 102
  1407. ],
  1408. "EventTriggerType": 4,
  1409. "EventTag": 1,
  1410. "EventType": 1,
  1411. "Score": 10,
  1412. "EventQuality": 1,
  1413. "PrizeIDs": [
  1414. 1001
  1415. ],
  1416. "PrizeNums": [
  1417. 10
  1418. ],
  1419. "RefreshProbability": null,
  1420. "RefreshCount": null,
  1421. "placeID": 2,
  1422. "XiantuID": 1,
  1423. "EventConditionId": null,
  1424. "EventCount": null,
  1425. "EventName": 2807,
  1426. "Description": 2828
  1427. },
  1428. {
  1429. "ID": 10014,
  1430. "EventLinksId": [
  1431. 1001401,
  1432. 1001402,
  1433. 1001403,
  1434. 1001404,
  1435. 1001405,
  1436. 1001406,
  1437. 1001407,
  1438. 1001408,
  1439. 102
  1440. ],
  1441. "EventTriggerType": 4,
  1442. "EventTag": 1,
  1443. "EventType": 1,
  1444. "Score": 10,
  1445. "EventQuality": 1,
  1446. "PrizeIDs": [
  1447. 1001
  1448. ],
  1449. "PrizeNums": [
  1450. 10
  1451. ],
  1452. "RefreshProbability": null,
  1453. "RefreshCount": null,
  1454. "placeID": 2,
  1455. "XiantuID": 1,
  1456. "EventConditionId": null,
  1457. "EventCount": null,
  1458. "EventName": 2808,
  1459. "Description": 2829
  1460. },
  1461. {
  1462. "ID": 10015,
  1463. "EventLinksId": [
  1464. 1001501,
  1465. 1001502,
  1466. 1001503,
  1467. 1001504,
  1468. 1001505,
  1469. 1001506,
  1470. 1001507,
  1471. 1001508,
  1472. 102
  1473. ],
  1474. "EventTriggerType": 4,
  1475. "EventTag": 1,
  1476. "EventType": 1,
  1477. "Score": 10,
  1478. "EventQuality": 1,
  1479. "PrizeIDs": [
  1480. 1001
  1481. ],
  1482. "PrizeNums": [
  1483. 10
  1484. ],
  1485. "RefreshProbability": null,
  1486. "RefreshCount": null,
  1487. "placeID": 2,
  1488. "XiantuID": 1,
  1489. "EventConditionId": null,
  1490. "EventCount": null,
  1491. "EventName": 2809,
  1492. "Description": 2830
  1493. },
  1494. {
  1495. "ID": 10016,
  1496. "EventLinksId": [
  1497. 1001601,
  1498. 1001602,
  1499. 1001603,
  1500. 1001604,
  1501. 1001605,
  1502. 1001606,
  1503. 1001607,
  1504. 1001608,
  1505. 1001609,
  1506. 1001610,
  1507. 1001611,
  1508. 1001612,
  1509. 1001613,
  1510. 102
  1511. ],
  1512. "EventTriggerType": 4,
  1513. "EventTag": 1,
  1514. "EventType": 1,
  1515. "Score": 10,
  1516. "EventQuality": 1,
  1517. "PrizeIDs": [
  1518. 1001
  1519. ],
  1520. "PrizeNums": [
  1521. 10
  1522. ],
  1523. "RefreshProbability": null,
  1524. "RefreshCount": null,
  1525. "placeID": 2,
  1526. "XiantuID": 1,
  1527. "EventConditionId": null,
  1528. "EventCount": null,
  1529. "EventName": 2810,
  1530. "Description": 2831
  1531. },
  1532. {
  1533. "ID": 10017,
  1534. "EventLinksId": [
  1535. 1001701,
  1536. 1001702,
  1537. 1001703,
  1538. 1001704,
  1539. 1001705,
  1540. 1001706,
  1541. 1001707,
  1542. 1001708,
  1543. 1001709,
  1544. 1001710,
  1545. 102
  1546. ],
  1547. "EventTriggerType": 4,
  1548. "EventTag": 1,
  1549. "EventType": 1,
  1550. "Score": 10,
  1551. "EventQuality": 1,
  1552. "PrizeIDs": [
  1553. 1001
  1554. ],
  1555. "PrizeNums": [
  1556. 10
  1557. ],
  1558. "RefreshProbability": null,
  1559. "RefreshCount": null,
  1560. "placeID": 2,
  1561. "XiantuID": 1,
  1562. "EventConditionId": null,
  1563. "EventCount": null,
  1564. "EventName": 2811,
  1565. "Description": 2832
  1566. },
  1567. {
  1568. "ID": 10018,
  1569. "EventLinksId": [
  1570. 1001801,
  1571. 1001802,
  1572. 1001803,
  1573. 1001804,
  1574. 1001805,
  1575. 1001806,
  1576. 1001807,
  1577. 1001808,
  1578. 1001809,
  1579. 1001810,
  1580. 1001811,
  1581. 1001812,
  1582. 1001813,
  1583. 1001814,
  1584. 1001815,
  1585. 1001816,
  1586. 1001817,
  1587. 1001818,
  1588. 1001819,
  1589. 1001820,
  1590. 102
  1591. ],
  1592. "EventTriggerType": 4,
  1593. "EventTag": 1,
  1594. "EventType": 1,
  1595. "Score": 10,
  1596. "EventQuality": 1,
  1597. "PrizeIDs": [
  1598. 1001
  1599. ],
  1600. "PrizeNums": [
  1601. 10
  1602. ],
  1603. "RefreshProbability": null,
  1604. "RefreshCount": null,
  1605. "placeID": 2,
  1606. "XiantuID": 1,
  1607. "EventConditionId": null,
  1608. "EventCount": null,
  1609. "EventName": 2812,
  1610. "Description": 2833
  1611. },
  1612. {
  1613. "ID": 10019,
  1614. "EventLinksId": [
  1615. 1001901,
  1616. 1001902,
  1617. 102
  1618. ],
  1619. "EventTriggerType": 4,
  1620. "EventTag": 1,
  1621. "EventType": 1,
  1622. "Score": 10,
  1623. "EventQuality": 1,
  1624. "PrizeIDs": [
  1625. 1001
  1626. ],
  1627. "PrizeNums": [
  1628. 10
  1629. ],
  1630. "RefreshProbability": null,
  1631. "RefreshCount": null,
  1632. "placeID": 2,
  1633. "XiantuID": 1,
  1634. "EventConditionId": null,
  1635. "EventCount": null,
  1636. "EventName": 2813,
  1637. "Description": 2834
  1638. },
  1639. {
  1640. "ID": 10020,
  1641. "EventLinksId": [
  1642. 1002001,
  1643. 1002002,
  1644. 1002003,
  1645. 1002004,
  1646. 102
  1647. ],
  1648. "EventTriggerType": 4,
  1649. "EventTag": 1,
  1650. "EventType": 1,
  1651. "Score": 10,
  1652. "EventQuality": 1,
  1653. "PrizeIDs": [
  1654. 1001
  1655. ],
  1656. "PrizeNums": [
  1657. 10
  1658. ],
  1659. "RefreshProbability": null,
  1660. "RefreshCount": null,
  1661. "placeID": 2,
  1662. "XiantuID": 1,
  1663. "EventConditionId": null,
  1664. "EventCount": null,
  1665. "EventName": 2814,
  1666. "Description": 2835
  1667. },
  1668. {
  1669. "ID": 10021,
  1670. "EventLinksId": [
  1671. 1002101,
  1672. 1002102,
  1673. 1002103,
  1674. 1002104,
  1675. 1002105,
  1676. 1002106,
  1677. 1002107,
  1678. 1002108,
  1679. 1002109,
  1680. 1002110,
  1681. 1002111,
  1682. 1002112,
  1683. 102
  1684. ],
  1685. "EventTriggerType": 4,
  1686. "EventTag": 1,
  1687. "EventType": 1,
  1688. "Score": 10,
  1689. "EventQuality": 1,
  1690. "PrizeIDs": [
  1691. 1001
  1692. ],
  1693. "PrizeNums": [
  1694. 10
  1695. ],
  1696. "RefreshProbability": null,
  1697. "RefreshCount": null,
  1698. "placeID": 2,
  1699. "XiantuID": 1,
  1700. "EventConditionId": null,
  1701. "EventCount": null,
  1702. "EventName": 2815,
  1703. "Description": 2836
  1704. },
  1705. {
  1706. "ID": 10022,
  1707. "EventLinksId": [
  1708. 1002201,
  1709. 1002202,
  1710. 1002203,
  1711. 102
  1712. ],
  1713. "EventTriggerType": 4,
  1714. "EventTag": 1,
  1715. "EventType": 1,
  1716. "Score": 10,
  1717. "EventQuality": 1,
  1718. "PrizeIDs": [
  1719. 1001
  1720. ],
  1721. "PrizeNums": [
  1722. 10
  1723. ],
  1724. "RefreshProbability": null,
  1725. "RefreshCount": null,
  1726. "placeID": 3,
  1727. "XiantuID": 1,
  1728. "EventConditionId": null,
  1729. "EventCount": null,
  1730. "EventName": 2816,
  1731. "Description": 2837
  1732. },
  1733. {
  1734. "ID": 10023,
  1735. "EventLinksId": [
  1736. 1002301,
  1737. 1002302,
  1738. 1002303,
  1739. 1002304,
  1740. 1002305,
  1741. 1002306,
  1742. 1002307,
  1743. 1002308,
  1744. 1002309,
  1745. 1002310,
  1746. 1002311,
  1747. 1002312,
  1748. 1002313,
  1749. 102
  1750. ],
  1751. "EventTriggerType": 4,
  1752. "EventTag": 1,
  1753. "EventType": 1,
  1754. "Score": 10,
  1755. "EventQuality": 1,
  1756. "PrizeIDs": [
  1757. 1001
  1758. ],
  1759. "PrizeNums": [
  1760. 10
  1761. ],
  1762. "RefreshProbability": null,
  1763. "RefreshCount": null,
  1764. "placeID": 3,
  1765. "XiantuID": 1,
  1766. "EventConditionId": null,
  1767. "EventCount": null,
  1768. "EventName": 2817,
  1769. "Description": 2838
  1770. },
  1771. {
  1772. "ID": 10024,
  1773. "EventLinksId": [
  1774. 1002401,
  1775. 1002402,
  1776. 1002403,
  1777. 1002404,
  1778. 1002405,
  1779. 1002406,
  1780. 1002407,
  1781. 102
  1782. ],
  1783. "EventTriggerType": 4,
  1784. "EventTag": 1,
  1785. "EventType": 1,
  1786. "Score": 10,
  1787. "EventQuality": 1,
  1788. "PrizeIDs": [
  1789. 1001
  1790. ],
  1791. "PrizeNums": [
  1792. 10
  1793. ],
  1794. "RefreshProbability": null,
  1795. "RefreshCount": null,
  1796. "placeID": 3,
  1797. "XiantuID": 1,
  1798. "EventConditionId": null,
  1799. "EventCount": null,
  1800. "EventName": 2818,
  1801. "Description": 2839
  1802. },
  1803. {
  1804. "ID": 10025,
  1805. "EventLinksId": [
  1806. 1002501,
  1807. 1002502,
  1808. 1002503,
  1809. 1002504,
  1810. 1002505,
  1811. 1002506,
  1812. 1002507,
  1813. 1002508,
  1814. 1002509,
  1815. 102
  1816. ],
  1817. "EventTriggerType": 4,
  1818. "EventTag": 1,
  1819. "EventType": 1,
  1820. "Score": 10,
  1821. "EventQuality": 1,
  1822. "PrizeIDs": [
  1823. 1001
  1824. ],
  1825. "PrizeNums": [
  1826. 10
  1827. ],
  1828. "RefreshProbability": null,
  1829. "RefreshCount": null,
  1830. "placeID": 3,
  1831. "XiantuID": 1,
  1832. "EventConditionId": null,
  1833. "EventCount": null,
  1834. "EventName": 2819,
  1835. "Description": 2840
  1836. },
  1837. {
  1838. "ID": 10026,
  1839. "EventLinksId": [
  1840. 102
  1841. ],
  1842. "EventTriggerType": 4,
  1843. "EventTag": 1,
  1844. "EventType": 1,
  1845. "Score": 10,
  1846. "EventQuality": 1,
  1847. "PrizeIDs": [
  1848. 1001
  1849. ],
  1850. "PrizeNums": [
  1851. 10
  1852. ],
  1853. "RefreshProbability": null,
  1854. "RefreshCount": null,
  1855. "placeID": 3,
  1856. "XiantuID": 1,
  1857. "EventConditionId": null,
  1858. "EventCount": null,
  1859. "EventName": 2820,
  1860. "Description": 2841
  1861. },
  1862. {
  1863. "ID": 10027,
  1864. "EventLinksId": [
  1865. 102
  1866. ],
  1867. "EventTriggerType": 4,
  1868. "EventTag": 1,
  1869. "EventType": 1,
  1870. "Score": 10,
  1871. "EventQuality": 1,
  1872. "PrizeIDs": [
  1873. 1001
  1874. ],
  1875. "PrizeNums": [
  1876. 10
  1877. ],
  1878. "RefreshProbability": null,
  1879. "RefreshCount": null,
  1880. "placeID": 3,
  1881. "XiantuID": 1,
  1882. "EventConditionId": null,
  1883. "EventCount": null,
  1884. "EventName": 2821,
  1885. "Description": 2842
  1886. },
  1887. {
  1888. "ID": 20001,
  1889. "EventLinksId": [
  1890. 1001,
  1891. 1002,
  1892. 1003,
  1893. 1004,
  1894. 1005,
  1895. 102
  1896. ],
  1897. "EventTriggerType": 5,
  1898. "EventTag": null,
  1899. "EventType": 1,
  1900. "Score": 0,
  1901. "EventQuality": 1,
  1902. "PrizeIDs": [
  1903. 1001
  1904. ],
  1905. "PrizeNums": [
  1906. 10
  1907. ],
  1908. "RefreshProbability": null,
  1909. "RefreshCount": null,
  1910. "placeID": null,
  1911. "XiantuID": null,
  1912. "EventConditionId": null,
  1913. "EventCount": null,
  1914. "EventName": 174,
  1915. "Description": 1936
  1916. },
  1917. {
  1918. "ID": 20002,
  1919. "EventLinksId": [
  1920. 1010,
  1921. 1011,
  1922. 1012,
  1923. 1013,
  1924. 1014,
  1925. 1015,
  1926. 1016,
  1927. 102
  1928. ],
  1929. "EventTriggerType": 5,
  1930. "EventTag": null,
  1931. "EventType": 1,
  1932. "Score": 0,
  1933. "EventQuality": 1,
  1934. "PrizeIDs": [
  1935. 1001
  1936. ],
  1937. "PrizeNums": [
  1938. 10
  1939. ],
  1940. "RefreshProbability": null,
  1941. "RefreshCount": null,
  1942. "placeID": null,
  1943. "XiantuID": null,
  1944. "EventConditionId": null,
  1945. "EventCount": null,
  1946. "EventName": 175,
  1947. "Description": 1937
  1948. },
  1949. {
  1950. "ID": 20003,
  1951. "EventLinksId": [
  1952. 1001,
  1953. 1002,
  1954. 1003,
  1955. 1004,
  1956. 1005,
  1957. 102
  1958. ],
  1959. "EventTriggerType": 5,
  1960. "EventTag": null,
  1961. "EventType": 1,
  1962. "Score": 0,
  1963. "EventQuality": 1,
  1964. "PrizeIDs": [
  1965. 1001
  1966. ],
  1967. "PrizeNums": [
  1968. 10
  1969. ],
  1970. "RefreshProbability": null,
  1971. "RefreshCount": null,
  1972. "placeID": null,
  1973. "XiantuID": null,
  1974. "EventConditionId": null,
  1975. "EventCount": null,
  1976. "EventName": 1943,
  1977. "Description": 1944
  1978. },
  1979. {
  1980. "ID": 9001,
  1981. "EventLinksId": [
  1982. 1001,
  1983. 1002,
  1984. 1003,
  1985. 1004,
  1986. 1005,
  1987. 102
  1988. ],
  1989. "EventTriggerType": 6,
  1990. "EventTag": 3,
  1991. "EventType": 1,
  1992. "Score": 0,
  1993. "EventQuality": 1,
  1994. "PrizeIDs": [
  1995. 1001
  1996. ],
  1997. "PrizeNums": [
  1998. 10
  1999. ],
  2000. "RefreshProbability": null,
  2001. "RefreshCount": null,
  2002. "placeID": null,
  2003. "XiantuID": null,
  2004. "EventConditionId": null,
  2005. "EventCount": null,
  2006. "EventName": 174,
  2007. "Description": 1936
  2008. },
  2009. {
  2010. "ID": 9002,
  2011. "EventLinksId": [
  2012. 1010,
  2013. 1011,
  2014. 1012,
  2015. 1013,
  2016. 1014,
  2017. 1015,
  2018. 1016,
  2019. 102
  2020. ],
  2021. "EventTriggerType": 6,
  2022. "EventTag": 3,
  2023. "EventType": 1,
  2024. "Score": 0,
  2025. "EventQuality": 1,
  2026. "PrizeIDs": [
  2027. 1001
  2028. ],
  2029. "PrizeNums": [
  2030. 10
  2031. ],
  2032. "RefreshProbability": null,
  2033. "RefreshCount": null,
  2034. "placeID": null,
  2035. "XiantuID": null,
  2036. "EventConditionId": null,
  2037. "EventCount": null,
  2038. "EventName": 175,
  2039. "Description": 1937
  2040. },
  2041. {
  2042. "ID": 9003,
  2043. "EventLinksId": [
  2044. 9003,
  2045. 9004,
  2046. 9005,
  2047. 9006,
  2048. 9007,
  2049. 9008,
  2050. 102
  2051. ],
  2052. "EventTriggerType": 6,
  2053. "EventTag": 5,
  2054. "EventType": 1,
  2055. "Score": 0,
  2056. "EventQuality": 1,
  2057. "PrizeIDs": [
  2058. 1001
  2059. ],
  2060. "PrizeNums": [
  2061. 10
  2062. ],
  2063. "RefreshProbability": null,
  2064. "RefreshCount": null,
  2065. "placeID": null,
  2066. "XiantuID": null,
  2067. "EventConditionId": null,
  2068. "EventCount": null,
  2069. "EventName": 2035,
  2070. "Description": 2036
  2071. },
  2072. {
  2073. "ID": 9025,
  2074. "EventLinksId": [
  2075. 102
  2076. ],
  2077. "EventTriggerType": 6,
  2078. "EventTag": 3,
  2079. "EventType": 1,
  2080. "Score": 0,
  2081. "EventQuality": 1,
  2082. "PrizeIDs": [
  2083. 1001
  2084. ],
  2085. "PrizeNums": [
  2086. 10
  2087. ],
  2088. "RefreshProbability": null,
  2089. "RefreshCount": null,
  2090. "placeID": 1,
  2091. "XiantuID": 2,
  2092. "EventConditionId": null,
  2093. "EventCount": null,
  2094. "EventName": 2067,
  2095. "Description": 2068
  2096. },
  2097. {
  2098. "ID": 9014,
  2099. "EventLinksId": [
  2100. 9014,
  2101. 102
  2102. ],
  2103. "EventTriggerType": 6,
  2104. "EventTag": 3,
  2105. "EventType": 1,
  2106. "Score": 0,
  2107. "EventQuality": 1,
  2108. "PrizeIDs": [
  2109. 1001
  2110. ],
  2111. "PrizeNums": [
  2112. 10
  2113. ],
  2114. "RefreshProbability": null,
  2115. "RefreshCount": null,
  2116. "placeID": 2,
  2117. "XiantuID": 2,
  2118. "EventConditionId": null,
  2119. "EventCount": null,
  2120. "EventName": 2069,
  2121. "Description": 2070
  2122. },
  2123. {
  2124. "ID": 9031,
  2125. "EventLinksId": [
  2126. 9031,
  2127. 102
  2128. ],
  2129. "EventTriggerType": 6,
  2130. "EventTag": 3,
  2131. "EventType": 1,
  2132. "Score": 0,
  2133. "EventQuality": 1,
  2134. "PrizeIDs": [
  2135. 1001
  2136. ],
  2137. "PrizeNums": [
  2138. 10
  2139. ],
  2140. "RefreshProbability": 30,
  2141. "RefreshCount": 2,
  2142. "placeID": 3,
  2143. "XiantuID": 2,
  2144. "EventConditionId": null,
  2145. "EventCount": null,
  2146. "EventName": 2071,
  2147. "Description": 2072
  2148. },
  2149. {
  2150. "ID": 3,
  2151. "EventLinksId": [
  2152. 1020,
  2153. 1021,
  2154. 1022,
  2155. 1023,
  2156. 1024,
  2157. 1025,
  2158. 1026,
  2159. 102
  2160. ],
  2161. "EventTriggerType": 99,
  2162. "EventTag": 2,
  2163. "EventType": 1,
  2164. "Score": 10,
  2165. "EventQuality": 1,
  2166. "PrizeIDs": [
  2167. 1001
  2168. ],
  2169. "PrizeNums": [
  2170. 10
  2171. ],
  2172. "RefreshProbability": null,
  2173. "RefreshCount": null,
  2174. "placeID": 1,
  2175. "XiantuID": 4,
  2176. "EventConditionId": 1,
  2177. "EventValue": [
  2178. 1004
  2179. ],
  2180. "EventCount": 1,
  2181. "EventName": 176,
  2182. "Description": 1938
  2183. },
  2184. {
  2185. "ID": 1001,
  2186. "EventLinksId": [
  2187. 1001,
  2188. 1002,
  2189. 1003,
  2190. 1004,
  2191. 1005,
  2192. 100,
  2193. 102
  2194. ],
  2195. "EventTriggerType": 99,
  2196. "EventTag": 4,
  2197. "EventType": 1,
  2198. "Score": 10,
  2199. "EventQuality": 1,
  2200. "PrizeIDs": [
  2201. 1001
  2202. ],
  2203. "PrizeNums": [
  2204. 10
  2205. ],
  2206. "RefreshProbability": null,
  2207. "RefreshCount": null,
  2208. "placeID": null,
  2209. "XiantuID": null,
  2210. "EventConditionId": null,
  2211. "EventCount": null,
  2212. "EventName": 1943,
  2213. "Description": 1944
  2214. },
  2215. {
  2216. "ID": 30001,
  2217. "EventLinksId": [
  2218. 100,
  2219. 102
  2220. ],
  2221. "EventTriggerType": 99,
  2222. "EventTag": 6,
  2223. "EventType": 1,
  2224. "Score": 0,
  2225. "EventQuality": 1,
  2226. "RefreshProbability": 50,
  2227. "RefreshCount": 5,
  2228. "placeID": null,
  2229. "XiantuID": null,
  2230. "EventConditionId": null,
  2231. "EventCount": null,
  2232. "EventName": null,
  2233. "Description": null
  2234. },
  2235. {
  2236. "ID": 30002,
  2237. "EventLinksId": [
  2238. 100,
  2239. 102
  2240. ],
  2241. "EventTriggerType": 99,
  2242. "EventTag": 6,
  2243. "EventType": 1,
  2244. "Score": 0,
  2245. "EventQuality": 1,
  2246. "RefreshProbability": 50,
  2247. "RefreshCount": 1,
  2248. "placeID": null,
  2249. "XiantuID": null,
  2250. "EventConditionId": null,
  2251. "EventCount": null,
  2252. "EventName": null,
  2253. "Description": null
  2254. },
  2255. {
  2256. "ID": 30003,
  2257. "EventLinksId": [
  2258. 3000301,
  2259. 100,
  2260. 102
  2261. ],
  2262. "EventTriggerType": 99,
  2263. "EventTag": 6,
  2264. "EventType": 1,
  2265. "Score": 0,
  2266. "EventQuality": 1,
  2267. "RefreshProbability": 50,
  2268. "RefreshCount": 1,
  2269. "placeID": 1,
  2270. "XiantuID": null,
  2271. "EventConditionId": null,
  2272. "EventCount": null,
  2273. "EventName": null,
  2274. "Description": null
  2275. },
  2276. {
  2277. "ID": 30004,
  2278. "EventLinksId": [
  2279. 3000401,
  2280. 100,
  2281. 102
  2282. ],
  2283. "EventTriggerType": 99,
  2284. "EventTag": 6,
  2285. "EventType": 1,
  2286. "Score": 0,
  2287. "EventQuality": 1,
  2288. "RefreshProbability": 50,
  2289. "RefreshCount": 3,
  2290. "placeID": 2,
  2291. "XiantuID": null,
  2292. "EventConditionId": null,
  2293. "EventCount": null,
  2294. "EventName": null,
  2295. "Description": null
  2296. },
  2297. {
  2298. "ID": 30005,
  2299. "EventLinksId": [
  2300. 3000501,
  2301. 100,
  2302. 102
  2303. ],
  2304. "EventTriggerType": 99,
  2305. "EventTag": 6,
  2306. "EventType": 1,
  2307. "Score": 0,
  2308. "EventQuality": 1,
  2309. "RefreshProbability": 50,
  2310. "RefreshCount": 1,
  2311. "placeID": 2,
  2312. "XiantuID": null,
  2313. "EventConditionId": null,
  2314. "EventCount": null,
  2315. "EventName": null,
  2316. "Description": null
  2317. },
  2318. {
  2319. "ID": 30006,
  2320. "EventLinksId": [
  2321. 3000601,
  2322. 100,
  2323. 102
  2324. ],
  2325. "EventTriggerType": 99,
  2326. "EventTag": 6,
  2327. "EventType": 1,
  2328. "Score": 0,
  2329. "EventQuality": 1,
  2330. "RefreshProbability": 50,
  2331. "RefreshCount": 1,
  2332. "placeID": 2,
  2333. "XiantuID": null,
  2334. "EventConditionId": null,
  2335. "EventCount": null,
  2336. "EventName": null,
  2337. "Description": null
  2338. },
  2339. {
  2340. "ID": 30007,
  2341. "EventLinksId": [
  2342. 3000701,
  2343. 100,
  2344. 102
  2345. ],
  2346. "EventTriggerType": 99,
  2347. "EventTag": 6,
  2348. "EventType": 1,
  2349. "Score": 0,
  2350. "EventQuality": 1,
  2351. "RefreshProbability": 50,
  2352. "RefreshCount": 1,
  2353. "placeID": 3,
  2354. "XiantuID": null,
  2355. "EventConditionId": null,
  2356. "EventCount": null,
  2357. "EventName": null,
  2358. "Description": null
  2359. },
  2360. {
  2361. "ID": 30008,
  2362. "EventLinksId": [
  2363. 3000801,
  2364. 100,
  2365. 102
  2366. ],
  2367. "EventTriggerType": 99,
  2368. "EventTag": 6,
  2369. "EventType": 1,
  2370. "Score": 0,
  2371. "EventQuality": 1,
  2372. "RefreshProbability": 15,
  2373. "RefreshCount": 1,
  2374. "placeID": 3,
  2375. "XiantuID": null,
  2376. "EventConditionId": null,
  2377. "EventCount": null,
  2378. "EventName": null,
  2379. "Description": null
  2380. },
  2381. {
  2382. "ID": 30009,
  2383. "EventLinksId": [
  2384. 3000901,
  2385. 3000902,
  2386. 100,
  2387. 102
  2388. ],
  2389. "EventTriggerType": 99,
  2390. "EventTag": 6,
  2391. "EventType": 1,
  2392. "Score": 0,
  2393. "EventQuality": 1,
  2394. "PrizeIDs": [
  2395. 1301
  2396. ],
  2397. "PrizeNums": [
  2398. 1
  2399. ],
  2400. "RefreshProbability": 100,
  2401. "RefreshCount": 1,
  2402. "placeID": 3,
  2403. "XiantuID": null,
  2404. "EventConditionId": null,
  2405. "EventCount": null,
  2406. "EventName": null,
  2407. "Description": null
  2408. },
  2409. {
  2410. "ID": 30010,
  2411. "EventLinksId": [
  2412. 3001001,
  2413. 100,
  2414. 102
  2415. ],
  2416. "EventTriggerType": 99,
  2417. "EventTag": 6,
  2418. "EventType": 1,
  2419. "Score": 0,
  2420. "EventQuality": 1,
  2421. "PrizeIDs": [
  2422. 1001
  2423. ],
  2424. "PrizeNums": [
  2425. 1
  2426. ],
  2427. "RefreshProbability": 100,
  2428. "RefreshCount": 1,
  2429. "placeID": 3,
  2430. "XiantuID": null,
  2431. "EventConditionId": 10,
  2432. "EventValue": [
  2433. 1021
  2434. ],
  2435. "EventCount": null,
  2436. "EventName": null,
  2437. "Description": null
  2438. },
  2439. {
  2440. "ID": 30011,
  2441. "EventLinksId": [
  2442. 3001101,
  2443. 3001102,
  2444. 100,
  2445. 102
  2446. ],
  2447. "EventTriggerType": 99,
  2448. "EventTag": 6,
  2449. "EventType": 1,
  2450. "Score": 0,
  2451. "EventQuality": 1,
  2452. "PrizeIDs": [
  2453. 20003
  2454. ],
  2455. "PrizeNums": [
  2456. 3
  2457. ],
  2458. "RefreshProbability": 100,
  2459. "RefreshCount": 1,
  2460. "placeID": 2,
  2461. "XiantuID": null,
  2462. "EventConditionId": null,
  2463. "EventCount": null,
  2464. "EventName": null,
  2465. "Description": null
  2466. },
  2467. {
  2468. "ID": 5001,
  2469. "EventLinksId": [
  2470. 500101,
  2471. 500102,
  2472. 500103,
  2473. 500104,
  2474. 500105,
  2475. 500106,
  2476. 500107,
  2477. 500108,
  2478. 500109,
  2479. 500110,
  2480. 500111,
  2481. 500112,
  2482. 500113,
  2483. 500114,
  2484. 500115,
  2485. 500116,
  2486. 500117,
  2487. 500118,
  2488. 500119,
  2489. 102
  2490. ],
  2491. "EventTriggerType": 99,
  2492. "EventTag": 5,
  2493. "EventType": 1,
  2494. "Score": 10,
  2495. "EventQuality": 1,
  2496. "PrizeType": [
  2497. 10
  2498. ],
  2499. "PrizeIDs": [
  2500. 1501
  2501. ],
  2502. "PrizeNums": [
  2503. 1
  2504. ],
  2505. "RefreshProbability": null,
  2506. "RefreshCount": null,
  2507. "placeID": 1,
  2508. "XiantuID": 1,
  2509. "EventConditionId": null,
  2510. "EventCount": null,
  2511. "EventName": 3019,
  2512. "Description": 3020
  2513. },
  2514. {
  2515. "ID": 5002,
  2516. "EventLinksId": [
  2517. 500201,
  2518. 500202,
  2519. 500203,
  2520. 500204,
  2521. 500205,
  2522. 500206,
  2523. 500207,
  2524. 500208,
  2525. 500209,
  2526. 500210,
  2527. 500211,
  2528. 500212,
  2529. 500213,
  2530. 500214,
  2531. 500215,
  2532. 500216,
  2533. 102
  2534. ],
  2535. "EventTriggerType": 99,
  2536. "EventTag": 5,
  2537. "EventType": 1,
  2538. "Score": 10,
  2539. "EventQuality": 1,
  2540. "PrizeType": [
  2541. 11
  2542. ],
  2543. "PrizeIDs": [
  2544. 1601
  2545. ],
  2546. "PrizeNums": [
  2547. 1
  2548. ],
  2549. "RefreshProbability": null,
  2550. "RefreshCount": null,
  2551. "placeID": 1,
  2552. "XiantuID": 1,
  2553. "EventConditionId": 10,
  2554. "EventValue": [
  2555. 5001
  2556. ],
  2557. "EventCount": null,
  2558. "EventName": 3036,
  2559. "Description": 3037
  2560. },
  2561. {
  2562. "ID": 5003,
  2563. "EventLinksId": [
  2564. 500301,
  2565. 500302,
  2566. 500303,
  2567. 500304,
  2568. 500305,
  2569. 500306,
  2570. 500307,
  2571. 500308,
  2572. 500309,
  2573. 500310,
  2574. 500311,
  2575. 500312,
  2576. 500313,
  2577. 500314,
  2578. 500315,
  2579. 500316,
  2580. 500317,
  2581. 500318,
  2582. 500319,
  2583. 500320,
  2584. 102
  2585. ],
  2586. "EventTriggerType": 99,
  2587. "EventTag": 2,
  2588. "EventType": 1,
  2589. "Score": 10,
  2590. "EventQuality": 1,
  2591. "PrizeType": [
  2592. 1
  2593. ],
  2594. "PrizeIDs": [
  2595. 1001
  2596. ],
  2597. "PrizeNums": [
  2598. 500
  2599. ],
  2600. "RefreshProbability": null,
  2601. "RefreshCount": null,
  2602. "placeID": 1,
  2603. "XiantuID": 1,
  2604. "EventConditionId": null,
  2605. "EventCount": null,
  2606. "EventName": 3034,
  2607. "Description": 3035
  2608. }
  2609. ]
  2610. }