Guest User

scimag-seeder-count-v2.py

a guest
May 16th, 2021
720
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 110.22 KB | None | 0 0
  1. #####################
  2. # If you want to get seeder numbers from all trackers, there are
  3. # some sections to comment/uncomment. Which sections to
  4. # comment/uncomment is written below. Else, it'll only scrap
  5. # one tracker (udp://tracker.opentrackr.org:1337/announce)
  6. # to save time.
  7. # It'll print out a list of tuples of the link and seeder count,
  8. # and also 10 randonly chosen torrents from the 100 least seeded torrents.
  9. #
  10. # v2: Use scrape instead of announce, hardcoded info_hash (u/TorrentWizard)
  11. #     Randomly choose 10 torrents out of 100 least seeded torrents (u/TheRealDji)
  12. ######################
  13.  
  14. import bencoding
  15. import hashlib
  16. import secrets
  17. import requests
  18. import urllib
  19. from urllib.parse import urlparse
  20. from urllib.parse import urlunsplit
  21. import binascii, socket, random, struct
  22. import re
  23. import operator
  24.  
  25. def scrape_udp(tracker,payload):
  26.     tracker = tracker.lower()
  27.     parsed = urlparse(tracker)
  28.     # Teporarly Change udp:// to http:// to get hostname and portnumbe
  29.     url = parsed.geturl()[3:]
  30.     url = "http" + url
  31.     hostname = urlparse(url).hostname
  32.     port = urlparse(url).port
  33.     sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  34.     sock.settimeout(8)
  35.     conn = (socket.gethostbyname(hostname), port)
  36.     #sock.bind((socket.gethostname(),s_port))
  37.     #Get connection ID
  38.     req, transaction_id = udp_create_connection_request()
  39.     sock.sendto(req, conn);
  40.     buf = sock.recvfrom(2048)[0]
  41.     connection_id = udp_parse_connection_response(buf, transaction_id)
  42.     #Scraping
  43.     s_port = sock.getsockname()[1] #get port number to which socket is connected
  44.     req, transaction_id = udp_create_scrape_request(connection_id, payload,s_port)
  45.     sock.sendto(req, conn)
  46.     # print("Scrape Request Sent")
  47.     buf = sock.recvfrom(2048)[0]
  48.     # print("Response received")
  49.     return udp_parse_scrape_response(buf, transaction_id)
  50.  
  51.  
  52.  
  53. def udp_create_scrape_request(connection_id, payload, s_port):
  54.     action = 0x2 #action (2 = scrape)
  55.     transaction_id = udp_get_transaction_id()
  56.     # print("2.Transaction ID :", transaction_id)
  57.     buf = struct.pack("!q", connection_id)                                          #first 8 bytes is connection id
  58.     buf += struct.pack("!i", action)                                                #next 4 bytes is action
  59.     buf += struct.pack("!i", transaction_id)                                        #followed by 4 byte transaction id
  60.     buf += struct.pack("!20s", payload['info_hash'])                                #the info hash of the torrent we announce ourselves in
  61.     return (buf, transaction_id)
  62.  
  63.  
  64.  
  65. def udp_parse_scrape_response(buf, sent_transaction_id):
  66.     # print("Response is:"+str(buf)  )
  67.     if len(buf) < 8:
  68.         raise RuntimeError("Wrong response length while announcing: %s" % len(buf))
  69.     action = struct.unpack_from("!i", buf)[0] #first 4 bytes is action
  70.     res_transaction_id = struct.unpack_from("!i", buf, 4)[0] #next 4 bytes is transaction id    
  71.     if res_transaction_id != sent_transaction_id:
  72.         raise RuntimeError("Transaction ID doesnt match in announce response! Expected %s, got %s"
  73.             % (sent_transaction_id, res_transaction_id))
  74.     # print("Reading Response")
  75.     if action == 0x2:
  76.         ret = dict()
  77.         offset = 8; #next 4 bytes after action is transaction_id, so data doesnt start till byte 8      
  78.         ret['seeds'] = struct.unpack_from("!i", buf, offset)[0]
  79.         offset += 4
  80.         ret['completed'] = struct.unpack_from("!i", buf, offset)[0]
  81.         offset += 4
  82.         ret['leechs'] = struct.unpack_from("!i", buf, offset)[0]
  83.         offset += 4
  84.         peers = list()
  85.         x = 0
  86.         return ret
  87.     else:
  88.         #an error occured, try and extract the error string
  89.         error = struct.unpack_from("!s", buf, 8)
  90.         # print("Action="+str(action))
  91.         raise RuntimeError("Error while annoucing: %s" % error)
  92.  
  93.  
  94.  
  95. def udp_create_connection_request():
  96.     connection_id = 0x41727101980                   #default connection id
  97.     action = 0x0                                    #action (0 = give me a new connection id)  
  98.     transaction_id = udp_get_transaction_id()
  99.     # print("1.Transaction ID :", transaction_id)
  100.     buf = struct.pack("!q", connection_id)          #first 8 bytes is connection id
  101.     buf += struct.pack("!i", action)                #next 4 bytes is action
  102.     buf += struct.pack("!i", transaction_id)        #next 4 bytes is transaction id
  103.     return (buf, transaction_id)
  104.  
  105.  
  106.  
  107. def udp_parse_connection_response(buf, sent_transaction_id):
  108.     if len(buf) < 16:
  109.         raise RuntimeError("Wrong response length getting connection id: %s" % len(buf))            
  110.     action = struct.unpack_from("!i", buf)[0] #first 4 bytes is action
  111.     res_transaction_id = struct.unpack_from("!i", buf, 4)[0] #next 4 bytes is transaction id
  112.     if res_transaction_id != sent_transaction_id:
  113.         raise RuntimeError("Transaction ID doesnt match in connection response! Expected %s, got %s"
  114.             % (sent_transaction_id, res_transaction_id))
  115.     if action == 0x0:
  116.         connection_id = struct.unpack_from("!q", buf, 8)[0] #unpack 8 bytes from byte 8, should be the connection_id
  117.         return connection_id
  118.     elif action == 0x3:    
  119.         error = struct.unpack_from("!s", buf, 8)
  120.         raise RuntimeError("Error while trying to get a connection response: %s" % error)
  121.     pass
  122.  
  123.  
  124.  
  125. def udp_get_transaction_id():
  126.     return int(random.randrange(0, 255))
  127.  
  128. url_root = 'http://libgen.rs/scimag/repository_torrent/'
  129.    
  130. # since the website will not be updated anymore in the foreseeable furture, just hardcode the links and info_hash
  131. torhash = {'http://libgen.rs/scimag/repository_torrent/sm_00000000-00099999.torrent': '99663320037082381eab3876cd981c6941c2a656',
  132. 'http://libgen.rs/scimag/repository_torrent/sm_00100000-00199999.torrent': '904b876d52890c342e24ca5d1972ecbad59676ee',
  133. 'http://libgen.rs/scimag/repository_torrent/sm_00200000-00299999.torrent': 'cc06334872d8dbd838ad695564a2bb798251cda0',
  134. 'http://libgen.rs/scimag/repository_torrent/sm_00300000-00399999.torrent': '36d65e524cbbdf833ba691e8e49c752b14d466e2',
  135. 'http://libgen.rs/scimag/repository_torrent/sm_00400000-00499999.torrent': '25cf45866dc64b4ba21b71a67380ab7fa19ed453',
  136. 'http://libgen.rs/scimag/repository_torrent/sm_00500000-00599999.torrent': 'b95049d65eb84a1a266e19f464000d717adf5bb7',
  137. 'http://libgen.rs/scimag/repository_torrent/sm_00600000-00699999.torrent': '9b3367f3128ac90e8b6a45f259b08dc259af5824',
  138. 'http://libgen.rs/scimag/repository_torrent/sm_00700000-00799999.torrent': '1edf45790a21e86ed3fcaef68f7573c4c4b325d3',
  139. 'http://libgen.rs/scimag/repository_torrent/sm_00800000-00899999.torrent': '60a18915ac5888635e08e12c13775ee6b9c93071',
  140. 'http://libgen.rs/scimag/repository_torrent/sm_00900000-00999999.torrent': 'f0eca1c76ab98059cba3570d906ba226e56dc609',
  141. 'http://libgen.rs/scimag/repository_torrent/sm_01000000-01099999.torrent': 'd96df36ebb87b2c8132d4dac7d88cba29e306d0c',
  142. 'http://libgen.rs/scimag/repository_torrent/sm_01100000-01199999.torrent': '6da92dc9242057e89c35651680323683022fb86c',
  143. 'http://libgen.rs/scimag/repository_torrent/sm_01200000-01299999.torrent': '5ca8220f4dfcc9bf354dc61e62491dbbf56c02b2',
  144. 'http://libgen.rs/scimag/repository_torrent/sm_01300000-01399999.torrent': '703716065650612fdc3d83e333fb493ff809de1a',
  145. 'http://libgen.rs/scimag/repository_torrent/sm_01400000-01499999.torrent': '0fcebea4678e3dac338abe16044eaa6afa534b49',
  146. 'http://libgen.rs/scimag/repository_torrent/sm_01500000-01599999.torrent': '262c2f22382ec6bbe42604fa62e4061ca04ed7a4',
  147. 'http://libgen.rs/scimag/repository_torrent/sm_01600000-01699999.torrent': 'fe20fe0f1e7277c3788cbf5ea2deb9a0284b7415',
  148. 'http://libgen.rs/scimag/repository_torrent/sm_01700000-01799999.torrent': '356227440f062eefbb7c83e1274eac01cf7f3b06',
  149. 'http://libgen.rs/scimag/repository_torrent/sm_01800000-01899999.torrent': '5eb63cc7d28adedb7bbb6c9ee04128e6ea1bb509',
  150. 'http://libgen.rs/scimag/repository_torrent/sm_01900000-01999999.torrent': '7fe1b525a1f3c9bfec58e2cff29588aa71888d91',
  151. 'http://libgen.rs/scimag/repository_torrent/sm_02000000-02099999.torrent': '9a21f373aa73a3d5a52ed8cd738df75685862e42',
  152. 'http://libgen.rs/scimag/repository_torrent/sm_02100000-02199999.torrent': '8895ebe458199a760948093e75a77a41e6cc9ae1',
  153. 'http://libgen.rs/scimag/repository_torrent/sm_02200000-02299999.torrent': '63e79334270e92ffe93a692a5472fff7bf04dbf7',
  154. 'http://libgen.rs/scimag/repository_torrent/sm_02300000-02399999.torrent': 'fd8c15cec2fac765b4a596039a1f61fb1e7a704e',
  155. 'http://libgen.rs/scimag/repository_torrent/sm_02400000-02499999.torrent': '14ee068abecfeac14964a2a178922960d0b3a164',
  156. 'http://libgen.rs/scimag/repository_torrent/sm_02500000-02599999.torrent': '2e3e67ebdddcaeba500e76b21b2cce907b4beddf',
  157. 'http://libgen.rs/scimag/repository_torrent/sm_02600000-02699999.torrent': '266767a1286327b15389a05edaaed2e2154e40b8',
  158. 'http://libgen.rs/scimag/repository_torrent/sm_02700000-02799999.torrent': 'd8c0948ef4482242177e3b211cc3e39d97d552e3',
  159. 'http://libgen.rs/scimag/repository_torrent/sm_02800000-02899999.torrent': '628576a863a538ceb0918102a4d0079c97422215',
  160. 'http://libgen.rs/scimag/repository_torrent/sm_02900000-02999999.torrent': '9d0f594f48c4751f08cc130f7055878c1b66021e',
  161. 'http://libgen.rs/scimag/repository_torrent/sm_03000000-03099999.torrent': 'd3b86f91c11805b586fe695de32cbb3c3e155ca5',
  162. 'http://libgen.rs/scimag/repository_torrent/sm_03100000-03199999.torrent': 'b437db7d0c47a6a44bf7c2666794db273b8c0763',
  163. 'http://libgen.rs/scimag/repository_torrent/sm_03200000-03299999.torrent': '2bb989379ce0b47a926b39b62950c7dd420d8afb',
  164. 'http://libgen.rs/scimag/repository_torrent/sm_03300000-03399999.torrent': '05ae0276576867d26caa59da8eeb706132b33920',
  165. 'http://libgen.rs/scimag/repository_torrent/sm_03400000-03499999.torrent': '88dcaaafc71fcf78782bef8e40abb6d42ce6ca51',
  166. 'http://libgen.rs/scimag/repository_torrent/sm_03500000-03599999.torrent': '349682fda8836e5a9d77d631be577fe767033aa8',
  167. 'http://libgen.rs/scimag/repository_torrent/sm_03600000-03699999.torrent': '8c7f698905c9a01b5efcaa2e135ae7ec9d54581f',
  168. 'http://libgen.rs/scimag/repository_torrent/sm_03700000-03799999.torrent': 'fa209df62043471ae63d1980fa06c6bd39c5d59c',
  169. 'http://libgen.rs/scimag/repository_torrent/sm_03800000-03899999.torrent': '8a7271304f0ff6172ca9d9f3197420807c47dbc8',
  170. 'http://libgen.rs/scimag/repository_torrent/sm_03900000-03999999.torrent': '7128c9f359976b9bf0a49bc890376a64e465dca9',
  171. 'http://libgen.rs/scimag/repository_torrent/sm_04000000-04099999.torrent': 'a9c5a753b0013683b23904742bd10ab70544a1b1',
  172. 'http://libgen.rs/scimag/repository_torrent/sm_04100000-04199999.torrent': '77b9bb7107e13f40d93d4899b015de1aac00d70c',
  173. 'http://libgen.rs/scimag/repository_torrent/sm_04200000-04299999.torrent': '09ad98c90f1c6a751d77e08a218774863f368433',
  174. 'http://libgen.rs/scimag/repository_torrent/sm_04300000-04399999.torrent': '4c237402d1c54030356937b5bf31d09a784f6bdc',
  175. 'http://libgen.rs/scimag/repository_torrent/sm_04400000-04499999.torrent': '84b098f73a227aa5948a22a894956975d790c020',
  176. 'http://libgen.rs/scimag/repository_torrent/sm_04500000-04599999.torrent': 'e11b4cac70bb3050b0812737111afa7df5db71d0',
  177. 'http://libgen.rs/scimag/repository_torrent/sm_04600000-04699999.torrent': '49d94b4711afe40114cb67e931ad308aed9b1072',
  178. 'http://libgen.rs/scimag/repository_torrent/sm_04700000-04799999.torrent': '5b688c0473cee76825e2ebd4c6b51c3b95833418',
  179. 'http://libgen.rs/scimag/repository_torrent/sm_04800000-04899999.torrent': '7c2522cf8b4e32a6b05550072489045a9e8fb432',
  180. 'http://libgen.rs/scimag/repository_torrent/sm_04900000-04999999.torrent': 'efe47692d6607b1a70f1ccbc53019bd309203796',
  181. 'http://libgen.rs/scimag/repository_torrent/sm_05000000-05099999.torrent': 'ad000c4df861c4ac167863e322729f985479b8a1',
  182. 'http://libgen.rs/scimag/repository_torrent/sm_05100000-05199999.torrent': '734193a43dc745ae29d41f9ffc68f666f66b7691',
  183. 'http://libgen.rs/scimag/repository_torrent/sm_05200000-05299999.torrent': '45dc3e4a3c831fd4b36f99d6a06cceab500bde6a',
  184. 'http://libgen.rs/scimag/repository_torrent/sm_05300000-05399999.torrent': 'e572dd34445002e2d0a0f0d5f87bdfbfb529027d',
  185. 'http://libgen.rs/scimag/repository_torrent/sm_05400000-05499999.torrent': 'cc4f09cefd28e7b3eb871a9a1c9fd19107b740a9',
  186. 'http://libgen.rs/scimag/repository_torrent/sm_05500000-05599999.torrent': '53d893e5166d2afef97753ca0ec46ea61eeea76a',
  187. 'http://libgen.rs/scimag/repository_torrent/sm_05600000-05699999.torrent': '0f2c802e0e32e74589d5c0c83e9ad99a68bd6fef',
  188. 'http://libgen.rs/scimag/repository_torrent/sm_05700000-05799999.torrent': '87240886c64c3c76b762b38d910a0526bb5cb239',
  189. 'http://libgen.rs/scimag/repository_torrent/sm_05800000-05899999.torrent': 'a88657748efbece1b61a2e4358c11a2400eda822',
  190. 'http://libgen.rs/scimag/repository_torrent/sm_05900000-05999999.torrent': 'ee3e3250d6497d206302674cebae0a506066689b',
  191. 'http://libgen.rs/scimag/repository_torrent/sm_06000000-06099999.torrent': 'd6b0bc0f8da5a48321fafbb9a96a819cdd464ed7',
  192. 'http://libgen.rs/scimag/repository_torrent/sm_06100000-06199999.torrent': 'd2f7616b86b2cada2d5e4c3f10e8aadf5a0e33dc',
  193. 'http://libgen.rs/scimag/repository_torrent/sm_06200000-06299999.torrent': '51e0a9e4d3a81b130d845edf558f83d7fa263aac',
  194. 'http://libgen.rs/scimag/repository_torrent/sm_06300000-06399999.torrent': 'fca730313c0a947f5fa39d30aa0fbcebf56ddb50',
  195. 'http://libgen.rs/scimag/repository_torrent/sm_06400000-06499999.torrent': '24e9701d045a2b6bf80818a4fb6ed2a59435a57e',
  196. 'http://libgen.rs/scimag/repository_torrent/sm_06500000-06599999.torrent': '6f069dc1a9e7997c971fb3d30368c09d9d20a6f8',
  197. 'http://libgen.rs/scimag/repository_torrent/sm_06600000-06699999.torrent': 'ca7c623eb026a6c292b1bccf9880c42d4a6ca50d',
  198. 'http://libgen.rs/scimag/repository_torrent/sm_06700000-06799999.torrent': '531edc5b4a03dbfdb9bce035059902ffb1a36dbf',
  199. 'http://libgen.rs/scimag/repository_torrent/sm_06800000-06899999.torrent': '10f4fb2a78c06da197f6e223c96fa526003dc3a0',
  200. 'http://libgen.rs/scimag/repository_torrent/sm_06900000-06999999.torrent': '83d21aca0d04f4dd53ac133aa33010fa3646153c',
  201. 'http://libgen.rs/scimag/repository_torrent/sm_07000000-07099999.torrent': 'aa1d6bce600783a46e1b05b156eedbead1641a46',
  202. 'http://libgen.rs/scimag/repository_torrent/sm_07100000-07199999.torrent': '1e47a1ed791c44cfe6f61321a99c91d92f0aa6d1',
  203. 'http://libgen.rs/scimag/repository_torrent/sm_07200000-07299999.torrent': 'c89794fc6085cc35c68f72e4a8d7a89221b416ce',
  204. 'http://libgen.rs/scimag/repository_torrent/sm_07300000-07399999.torrent': '9b41f425de53be8aa6b251b06985fbcbd3a179f4',
  205. 'http://libgen.rs/scimag/repository_torrent/sm_07400000-07499999.torrent': '9a24493d94bbfe94fb4cca7caa29b0af4d9b2c9c',
  206. 'http://libgen.rs/scimag/repository_torrent/sm_07500000-07599999.torrent': '1dfd539e4b820bd9cdbbfd904dbe0e07c7008ee8',
  207. 'http://libgen.rs/scimag/repository_torrent/sm_07600000-07699999.torrent': 'f995f72ad3e7d354ddde2f5e6d52e2121bb799ef',
  208. 'http://libgen.rs/scimag/repository_torrent/sm_07700000-07799999.torrent': 'bd100a589b07216c9579c7ee2215088993ca6970',
  209. 'http://libgen.rs/scimag/repository_torrent/sm_07800000-07899999.torrent': '23416394cec88b2aa81c962a6dc0ff625f2c2189',
  210. 'http://libgen.rs/scimag/repository_torrent/sm_07900000-07999999.torrent': '0d4a9cbf181fc1725916ee81f38628b5066e5c35',
  211. 'http://libgen.rs/scimag/repository_torrent/sm_08000000-08099999.torrent': '6d07d1193cb96f973db60259b4e9670c467b8670',
  212. 'http://libgen.rs/scimag/repository_torrent/sm_08100000-08199999.torrent': '5b84d18ff36a013d14909c6702dc4ce392d62b6d',
  213. 'http://libgen.rs/scimag/repository_torrent/sm_08200000-08299999.torrent': '1c6fc26f67e06fa3838be9bad43286907db029e1',
  214. 'http://libgen.rs/scimag/repository_torrent/sm_08300000-08399999.torrent': '42f398ab2cd5e9f1bb12c71497a4b38d6590883c',
  215. 'http://libgen.rs/scimag/repository_torrent/sm_08400000-08499999.torrent': '25948c6712d2d4911de057a9ebd7fca225151590',
  216. 'http://libgen.rs/scimag/repository_torrent/sm_08500000-08599999.torrent': '667727692adc3358cca8c2590bd895fd1389e5a5',
  217. 'http://libgen.rs/scimag/repository_torrent/sm_08600000-08699999.torrent': '9bfe7252d9876c5b555537ef262f0ef81b16a90f',
  218. 'http://libgen.rs/scimag/repository_torrent/sm_08700000-08799999.torrent': 'a143dd9a3a2c35d681107b830fea0724c777c8a5',
  219. 'http://libgen.rs/scimag/repository_torrent/sm_08800000-08899999.torrent': '84e928586c56483080b18fe611f7d1beb20d51cc',
  220. 'http://libgen.rs/scimag/repository_torrent/sm_08900000-08999999.torrent': 'd334fd91fb421c4c021926e7c87536e850685d48',
  221. 'http://libgen.rs/scimag/repository_torrent/sm_09000000-09099999.torrent': 'b4fc18b8f9c30158995521fc29ce661818bbcc72',
  222. 'http://libgen.rs/scimag/repository_torrent/sm_09100000-09199999.torrent': '210316c3977373720ee36cd0436a9f09a6ed6c05',
  223. 'http://libgen.rs/scimag/repository_torrent/sm_09200000-09299999.torrent': '43271d8f577913fe9de341867081f2b9a2ca742c',
  224. 'http://libgen.rs/scimag/repository_torrent/sm_09300000-09399999.torrent': '40dedf29b080004ba42c5c1034edd4a51d7521fb',
  225. 'http://libgen.rs/scimag/repository_torrent/sm_09400000-09499999.torrent': '1470e94e52b181b26db64ab51eae06afa8c0bdb5',
  226. 'http://libgen.rs/scimag/repository_torrent/sm_09500000-09599999.torrent': '8368ae0b2438f920a6ce6a0fc403f20e00138d00',
  227. 'http://libgen.rs/scimag/repository_torrent/sm_09600000-09699999.torrent': 'ea8309fa03ecea0b256157194051fcbaf167bfe5',
  228. 'http://libgen.rs/scimag/repository_torrent/sm_09700000-09799999.torrent': '76e123403b4fbb3ecda216cab0af359044dfab08',
  229. 'http://libgen.rs/scimag/repository_torrent/sm_09800000-09899999.torrent': '2896e2c75820aaa7fd9f88d29426096ce6328166',
  230. 'http://libgen.rs/scimag/repository_torrent/sm_09900000-09999999.torrent': 'aad6f3f44e83bf9634b6639b6f438f0d441223b6',
  231. 'http://libgen.rs/scimag/repository_torrent/sm_10000000-10099999.torrent': 'e83b4a39186f7acc93a8c50ba031d030af885418',
  232. 'http://libgen.rs/scimag/repository_torrent/sm_10100000-10199999.torrent': '773c69a5d0fdf768e82233e945f07ba752a8a17e',
  233. 'http://libgen.rs/scimag/repository_torrent/sm_10200000-10299999.torrent': '97b568d7ce3748665cf8566f1872427cce4e0a37',
  234. 'http://libgen.rs/scimag/repository_torrent/sm_10300000-10399999.torrent': 'e5b92ebbfdd0be048aaf14e3844cf230c7e99500',
  235. 'http://libgen.rs/scimag/repository_torrent/sm_10400000-10499999.torrent': '1fbe36c3fc74b894170fd88f2e24561b0dff0c79',
  236. 'http://libgen.rs/scimag/repository_torrent/sm_10500000-10599999.torrent': '4fbbe9703f6c2a04ee659a96c700eef2baec73b5',
  237. 'http://libgen.rs/scimag/repository_torrent/sm_10600000-10699999.torrent': 'b49cc12d2443f2b786b388bdfcd30d03c1d9b9e0',
  238. 'http://libgen.rs/scimag/repository_torrent/sm_10700000-10799999.torrent': 'b648cdb11351193e78e69632bf33079e937c1d40',
  239. 'http://libgen.rs/scimag/repository_torrent/sm_10800000-10899999.torrent': '382ad2b7c4ef3a5395c106f9f9eda3f5869294dd',
  240. 'http://libgen.rs/scimag/repository_torrent/sm_10900000-10999999.torrent': '849a88dc7e1df1680fe1b1611f26b86fd6f768ac',
  241. 'http://libgen.rs/scimag/repository_torrent/sm_11000000-11099999.torrent': 'fce96241ad51ee25986d7ecead3760499cc07fd3',
  242. 'http://libgen.rs/scimag/repository_torrent/sm_11100000-11199999.torrent': '5eb9f0298eca3d2e5f1e16fba8d34886ec96b67c',
  243. 'http://libgen.rs/scimag/repository_torrent/sm_11200000-11299999.torrent': 'd57b1013eee9138a8906bcd274d727b5d7e8a307',
  244. 'http://libgen.rs/scimag/repository_torrent/sm_11300000-11399999.torrent': '2c7cd3b8c12be2fdd970686e93dcb2c42859ec16',
  245. 'http://libgen.rs/scimag/repository_torrent/sm_11400000-11499999.torrent': 'fb48ad47043795c61de8089e472824338366324d',
  246. 'http://libgen.rs/scimag/repository_torrent/sm_11500000-11599999.torrent': 'f14f7ca12e70ed04d54bbce91a6a02cd775cdc86',
  247. 'http://libgen.rs/scimag/repository_torrent/sm_11600000-11699999.torrent': '16900081668ae6aff7dd22a41c54a0d9cbac17a2',
  248. 'http://libgen.rs/scimag/repository_torrent/sm_11700000-11799999.torrent': '36c0a4b29b71f9650aa2da1aece81370f59ad673',
  249. 'http://libgen.rs/scimag/repository_torrent/sm_11800000-11899999.torrent': 'afa5872d32878f9e5aac188a25d5b071049d60d4',
  250. 'http://libgen.rs/scimag/repository_torrent/sm_11900000-11999999.torrent': 'd2562469b1df8cf8b0a509bd09cfa463e451fd08',
  251. 'http://libgen.rs/scimag/repository_torrent/sm_12000000-12099999.torrent': '7c898db38f1c96d9bfd11a6c43dbe23ed2bd0015',
  252. 'http://libgen.rs/scimag/repository_torrent/sm_12100000-12199999.torrent': '4b00e06129685fa5afcc142ccae5975673b129f0',
  253. 'http://libgen.rs/scimag/repository_torrent/sm_12200000-12299999.torrent': '006f09ccfd0a7abc9c0e59f2ee66305cfd700930',
  254. 'http://libgen.rs/scimag/repository_torrent/sm_12300000-12399999.torrent': 'a202704fb0cb96ea8a040811e23971d16bcff0b8',
  255. 'http://libgen.rs/scimag/repository_torrent/sm_12400000-12499999.torrent': '4c846a2a0e11c11855ea990d969eef0adcc3882b',
  256. 'http://libgen.rs/scimag/repository_torrent/sm_12500000-12599999.torrent': 'fe7b15cf61251a42399cafdc3b105ca7e3350445',
  257. 'http://libgen.rs/scimag/repository_torrent/sm_12600000-12699999.torrent': '1d84baec7ab0a3e10505a86ab746cd345a05c156',
  258. 'http://libgen.rs/scimag/repository_torrent/sm_12700000-12799999.torrent': '5670b8193089a536da12e6a71f62a099646bba5d',
  259. 'http://libgen.rs/scimag/repository_torrent/sm_12800000-12899999.torrent': 'b0a26188ea049580976774dc72edee8b88dbc7ec',
  260. 'http://libgen.rs/scimag/repository_torrent/sm_12900000-12999999.torrent': 'fcfc5473b042a4dc5370af538dfe5380c3a11acb',
  261. 'http://libgen.rs/scimag/repository_torrent/sm_13000000-13099999.torrent': '9acc86e8a2c9a0c4e22f64758445bb4c131087cb',
  262. 'http://libgen.rs/scimag/repository_torrent/sm_13100000-13199999.torrent': '771e03e264691842cfd6f984aedb3e9e21fcd3a2',
  263. 'http://libgen.rs/scimag/repository_torrent/sm_13200000-13299999.torrent': '3809197a589ad42a372b5f466b55e649def9991c',
  264. 'http://libgen.rs/scimag/repository_torrent/sm_13300000-13399999.torrent': '4be48634e9e75ddfc2317c062d111525af0a90ac',
  265. 'http://libgen.rs/scimag/repository_torrent/sm_13400000-13499999.torrent': 'b06a9a31bb80f7709cae48ed584f31b0052d3c62',
  266. 'http://libgen.rs/scimag/repository_torrent/sm_13500000-13599999.torrent': '3712150d4a43475a7b4dfcdeb4c777ceb6f30ae6',
  267. 'http://libgen.rs/scimag/repository_torrent/sm_13600000-13699999.torrent': 'f605ecf9d2d074b7ba80ce2fe1c85915f10cb2fd',
  268. 'http://libgen.rs/scimag/repository_torrent/sm_13700000-13799999.torrent': 'ea84e8a0811eeafa1d908ff59af7252564916d1b',
  269. 'http://libgen.rs/scimag/repository_torrent/sm_13800000-13899999.torrent': 'b7b4160574b03d118f1fac02cb721b4fd7439584',
  270. 'http://libgen.rs/scimag/repository_torrent/sm_13900000-13999999.torrent': '2a937937f089e94d2991e5386ad1912640ee08ed',
  271. 'http://libgen.rs/scimag/repository_torrent/sm_14000000-14099999.torrent': 'fcfc6e936ebd2de22eafb2b3de03756641d0833c',
  272. 'http://libgen.rs/scimag/repository_torrent/sm_14100000-14199999.torrent': '29ed408243efa0281e909ea90cc4266f4797e4c5',
  273. 'http://libgen.rs/scimag/repository_torrent/sm_14200000-14299999.torrent': '1e1c113b651874bd01d41c32daa3318fc36fed10',
  274. 'http://libgen.rs/scimag/repository_torrent/sm_14300000-14399999.torrent': '6d7e79aa07134a7132d509387b97ed8ee7e823b7',
  275. 'http://libgen.rs/scimag/repository_torrent/sm_14400000-14499999.torrent': '7c9de3f3132045f95cce836419c1e9d42a95906e',
  276. 'http://libgen.rs/scimag/repository_torrent/sm_14500000-14599999.torrent': '7b5c00aa89d42de71a8226c00c0317601fce5e2e',
  277. 'http://libgen.rs/scimag/repository_torrent/sm_14600000-14699999.torrent': '07fac4e95e1daa47cd25844e3d31af141f1c3a86',
  278. 'http://libgen.rs/scimag/repository_torrent/sm_14700000-14799999.torrent': '784cd716c28d7171769c30989abdb527399d1758',
  279. 'http://libgen.rs/scimag/repository_torrent/sm_14800000-14899999.torrent': '7268116832d960aa0727d63034feb711e7ce7ab3',
  280. 'http://libgen.rs/scimag/repository_torrent/sm_14900000-14999999.torrent': 'bec19d0b3d8cb15ab1e525e68821170696d5d5e1',
  281. 'http://libgen.rs/scimag/repository_torrent/sm_15000000-15099999.torrent': '574c70f52fa94d4f0efa64817c69a302329f7e96',
  282. 'http://libgen.rs/scimag/repository_torrent/sm_15100000-15199999.torrent': 'e5a5fce77ee1ebfcadd4f91743295b2760b35ca9',
  283. 'http://libgen.rs/scimag/repository_torrent/sm_15200000-15299999.torrent': '46b22e6651633405c8e82a1ee592006a8193ffcb',
  284. 'http://libgen.rs/scimag/repository_torrent/sm_15300000-15399999.torrent': 'd9719e5ef67681ba07f343e26c583e338dbdc6b3',
  285. 'http://libgen.rs/scimag/repository_torrent/sm_15400000-15499999.torrent': '55e52fd45c5ddca183faf00bc199083d5109737b',
  286. 'http://libgen.rs/scimag/repository_torrent/sm_15500000-15599999.torrent': '4e364bee7c73e19b86b60056a4794811a5227b46',
  287. 'http://libgen.rs/scimag/repository_torrent/sm_15600000-15699999.torrent': '253e194b8fb0d57c233e25afb40a5d7a4a9c36d6',
  288. 'http://libgen.rs/scimag/repository_torrent/sm_15700000-15799999.torrent': '0cd3a3ae849628e1b6266f2602a67dd0fffd5f1b',
  289. 'http://libgen.rs/scimag/repository_torrent/sm_15800000-15899999.torrent': '1271f29e55d1051dfcbeed7ec111da3e431d0533',
  290. 'http://libgen.rs/scimag/repository_torrent/sm_15900000-15999999.torrent': '6d9b97394b999ed0ddd710de2ba83462520b8e1d',
  291. 'http://libgen.rs/scimag/repository_torrent/sm_16000000-16099999.torrent': '798f15abb138a431f6728f53f64396b2ea3777dd',
  292. 'http://libgen.rs/scimag/repository_torrent/sm_16100000-16199999.torrent': '7b78d3e49fb52d8fd19273b6685e0a4c624744d9',
  293. 'http://libgen.rs/scimag/repository_torrent/sm_16200000-16299999.torrent': '1b16a8ae6f86cbcc6cea8b97386576b4e50c64bd',
  294. 'http://libgen.rs/scimag/repository_torrent/sm_16300000-16399999.torrent': '62dfeaddef56526661e7968ae0ab4f7c60c7f6ee',
  295. 'http://libgen.rs/scimag/repository_torrent/sm_16400000-16499999.torrent': '90e8b73c378ae96c502ec3c8bea09a634a08b86e',
  296. 'http://libgen.rs/scimag/repository_torrent/sm_16500000-16599999.torrent': '40c1320b9b2a60255084a6a36717f689601bb7c5',
  297. 'http://libgen.rs/scimag/repository_torrent/sm_16600000-16699999.torrent': 'b1555618adef2c80854c23fca942d287be2078a3',
  298. 'http://libgen.rs/scimag/repository_torrent/sm_16700000-16799999.torrent': 'e48d449aaa6577d2c3416802276376adedf63321',
  299. 'http://libgen.rs/scimag/repository_torrent/sm_16800000-16899999.torrent': 'e16569dc6d674368c07d2b2d7827048b591b6d1c',
  300. 'http://libgen.rs/scimag/repository_torrent/sm_16900000-16999999.torrent': 'e268ab4cb5cb8af3e544242c47b06fc96f8ca65a',
  301. 'http://libgen.rs/scimag/repository_torrent/sm_17000000-17099999.torrent': '5331ab913d59c76655b6755d46d0d9d8e5f6d0d8',
  302. 'http://libgen.rs/scimag/repository_torrent/sm_17100000-17199999.torrent': '510d9c6f4df8d500d06ab59d65ef2dd043999588',
  303. 'http://libgen.rs/scimag/repository_torrent/sm_17200000-17299999.torrent': '79b56a81ba753a5c1127a1155e8c0bfee1e3a4de',
  304. 'http://libgen.rs/scimag/repository_torrent/sm_17300000-17399999.torrent': '13a595cc4217b7841af32a7d4d722dba7c8cf5e0',
  305. 'http://libgen.rs/scimag/repository_torrent/sm_17400000-17499999.torrent': '0bc6fd1a4c27f2ddb67295f8c0bd421511395e40',
  306. 'http://libgen.rs/scimag/repository_torrent/sm_17500000-17599999.torrent': 'd610b8c5b7cd818f5d16e0b6d68a36c70c17b514',
  307. 'http://libgen.rs/scimag/repository_torrent/sm_17600000-17699999.torrent': 'aef55f343d77a2bb2b1bd077d451f4d654ea999b',
  308. 'http://libgen.rs/scimag/repository_torrent/sm_17700000-17799999.torrent': '2d20d6b37bfe649d0ec21efc98b901781175b705',
  309. 'http://libgen.rs/scimag/repository_torrent/sm_17800000-17899999.torrent': 'db14adc94390de4d7917141031b6be092bb605a9',
  310. 'http://libgen.rs/scimag/repository_torrent/sm_17900000-17999999.torrent': 'd309930374bbf772df4df697ea78b57e17bf40f7',
  311. 'http://libgen.rs/scimag/repository_torrent/sm_18000000-18099999.torrent': '681314133d3cc79719cd786307923b25f929bb11',
  312. 'http://libgen.rs/scimag/repository_torrent/sm_18100000-18199999.torrent': '8225d50fac6817071bb00cd427843137790c6d1b',
  313. 'http://libgen.rs/scimag/repository_torrent/sm_18200000-18299999.torrent': '2af6faf21449dd95ff53a947ebd86de7db4117d4',
  314. 'http://libgen.rs/scimag/repository_torrent/sm_18300000-18399999.torrent': '8ca487e8b527ba3a540763d8b415312704a258e6',
  315. 'http://libgen.rs/scimag/repository_torrent/sm_18400000-18499999.torrent': '40641017eb4a22001631efcdd367e284a8ac01b5',
  316. 'http://libgen.rs/scimag/repository_torrent/sm_18500000-18599999.torrent': 'fdc0f1795d923adca8fe52a87da58d028d5125bd',
  317. 'http://libgen.rs/scimag/repository_torrent/sm_18600000-18699999.torrent': 'd6ab3b01e08095583e5cd18f9ac8549edf19905d',
  318. 'http://libgen.rs/scimag/repository_torrent/sm_18700000-18799999.torrent': '042f3c4c0286106c076add95c4ba880966af9139',
  319. 'http://libgen.rs/scimag/repository_torrent/sm_18800000-18899999.torrent': 'a79278018299659c37f8d938a4b86d20e7b34fe2',
  320. 'http://libgen.rs/scimag/repository_torrent/sm_18900000-18999999.torrent': '650c268dbfc89742df83d923728f8b6770ffc9b8',
  321. 'http://libgen.rs/scimag/repository_torrent/sm_19000000-19099999.torrent': 'ce1f54c979d229dc6b7c12d51e3bbe2908ac277e',
  322. 'http://libgen.rs/scimag/repository_torrent/sm_19100000-19199999.torrent': '11e0813a313edc02ecebc4a9b0ab262d3b36b948',
  323. 'http://libgen.rs/scimag/repository_torrent/sm_19200000-19299999.torrent': '39786e596c1e3296ece2fbd00d4f3b4a7a19174b',
  324. 'http://libgen.rs/scimag/repository_torrent/sm_19300000-19399999.torrent': '4103796b5adb4fcf852764e4d4a2749b1966af5b',
  325. 'http://libgen.rs/scimag/repository_torrent/sm_19400000-19499999.torrent': '2caa2935ff390c9a6b60c7f0a5b2c3da5ed265d7',
  326. 'http://libgen.rs/scimag/repository_torrent/sm_19500000-19599999.torrent': 'c983c6bae3815e82d19a76c3df4e4adff61e0bb2',
  327. 'http://libgen.rs/scimag/repository_torrent/sm_19600000-19699999.torrent': '20aa754de16fcf1dd65dbc09a6eb0df275153f5d',
  328. 'http://libgen.rs/scimag/repository_torrent/sm_19700000-19799999.torrent': '48eb3b77881f37e976fa3190354df9abe952a67e',
  329. 'http://libgen.rs/scimag/repository_torrent/sm_19800000-19899999.torrent': 'f951f0c412b4fa03886dc9d01bb829c58b038d74',
  330. 'http://libgen.rs/scimag/repository_torrent/sm_19900000-19999999.torrent': 'ab74ce2161b218d296b35c433e66d56f87491d02',
  331. 'http://libgen.rs/scimag/repository_torrent/sm_20000000-20099999.torrent': '910d727e9607ce683fd939c146982b02972da78d',
  332. 'http://libgen.rs/scimag/repository_torrent/sm_20100000-20199999.torrent': 'c40d301ff9a8358bde1a8b2d19a727b035c14cbd',
  333. 'http://libgen.rs/scimag/repository_torrent/sm_20200000-20299999.torrent': '60961b49f0eb0ed29fc60e00e515e7d12a756b90',
  334. 'http://libgen.rs/scimag/repository_torrent/sm_20300000-20399999.torrent': '003626872aa81f6a65550c38379d143b337102ff',
  335. 'http://libgen.rs/scimag/repository_torrent/sm_20400000-20499999.torrent': 'a3ae825bdbc970aa92ecc30d8e57932f3e250131',
  336. 'http://libgen.rs/scimag/repository_torrent/sm_20500000-20599999.torrent': '23dacae4f8ee1e740446a56daaadb94adc0006c7',
  337. 'http://libgen.rs/scimag/repository_torrent/sm_20600000-20699999.torrent': 'd99a5bc4a2c1972aa399f4647af1db46e6f83c79',
  338. 'http://libgen.rs/scimag/repository_torrent/sm_20700000-20799999.torrent': '6db6cef0c23df8ec144e3b34c426dd5ad3505a0b',
  339. 'http://libgen.rs/scimag/repository_torrent/sm_20800000-20899999.torrent': '7531663e2053e5a8c10e954bc56656558a622ce4',
  340. 'http://libgen.rs/scimag/repository_torrent/sm_20900000-20999999.torrent': '3ae60b0793309eb96a58ac772393ed61f2b40f35',
  341. 'http://libgen.rs/scimag/repository_torrent/sm_21000000-21099999.torrent': '952f922567a10903044a09ca9e1f26442b85f7cc',
  342. 'http://libgen.rs/scimag/repository_torrent/sm_21100000-21199999.torrent': '3f443a4c98ae683dfbbc46b830358266f8fdfe35',
  343. 'http://libgen.rs/scimag/repository_torrent/sm_21200000-21299999.torrent': 'b940e7fa4c246fb0ebbc0b0aad4d7de40e4e712e',
  344. 'http://libgen.rs/scimag/repository_torrent/sm_21300000-21399999.torrent': '2599e0c411bf465c7d4ef72d140d4739b21bae74',
  345. 'http://libgen.rs/scimag/repository_torrent/sm_21400000-21499999.torrent': 'e950b044e05f13551d35fcd6e29dd0ca62c63693',
  346. 'http://libgen.rs/scimag/repository_torrent/sm_21500000-21599999.torrent': '2b7098de96119dce93cd71847572ea46429eb732',
  347. 'http://libgen.rs/scimag/repository_torrent/sm_21600000-21699999.torrent': 'ab8e3ec0a17139458935af46deb4a98172be0eb5',
  348. 'http://libgen.rs/scimag/repository_torrent/sm_21700000-21799999.torrent': 'e5d872a7def67011d6aa3d908e0e29a0641cf1e0',
  349. 'http://libgen.rs/scimag/repository_torrent/sm_21800000-21899999.torrent': '3a820bbb6d717a8b3401d1382907b9cebcbd194e',
  350. 'http://libgen.rs/scimag/repository_torrent/sm_21900000-21999999.torrent': '805aa20ca132574e74c59d1f9c9db31126724c68',
  351. 'http://libgen.rs/scimag/repository_torrent/sm_22000000-22099999.torrent': '4738b03d82e62b847ef120695b664b6e978d385c',
  352. 'http://libgen.rs/scimag/repository_torrent/sm_22100000-22199999.torrent': '5ce810efb4d9d7df15d93619002572b8f5726a92',
  353. 'http://libgen.rs/scimag/repository_torrent/sm_22200000-22299999.torrent': 'bb83ecbf274f9cf418de82044f3361fae8f98c65',
  354. 'http://libgen.rs/scimag/repository_torrent/sm_22300000-22399999.torrent': 'f9fcf7113b8a8317f9458812077cb45c8f099702',
  355. 'http://libgen.rs/scimag/repository_torrent/sm_22400000-22499999.torrent': 'cadd9e7556c073658626019e8d5ef9788cbdcdb5',
  356. 'http://libgen.rs/scimag/repository_torrent/sm_22500000-22599999.torrent': '8ad52c09d4a98fc6582e1313985b478f58037ef6',
  357. 'http://libgen.rs/scimag/repository_torrent/sm_22600000-22699999.torrent': 'c0700b0a9649fc647775cd5f7ef0e713212b234b',
  358. 'http://libgen.rs/scimag/repository_torrent/sm_22700000-22799999.torrent': 'ce92fbd9f2a395e0b78c6cf1fc778024f5ec27b8',
  359. 'http://libgen.rs/scimag/repository_torrent/sm_22800000-22899999.torrent': '5b8a95fb28d1adc94968fed3cdde1804341f8568',
  360. 'http://libgen.rs/scimag/repository_torrent/sm_22900000-22999999.torrent': '5fabed18a89dcc2a825f6b20359a082801c24d40',
  361. 'http://libgen.rs/scimag/repository_torrent/sm_23000000-23099999.torrent': 'e50ce159fa0e25118c27602ea5f5ffaa93bc8e43',
  362. 'http://libgen.rs/scimag/repository_torrent/sm_23100000-23199999.torrent': '93b0771c8ccd5719305d3c446d19b0de3b9a1f47',
  363. 'http://libgen.rs/scimag/repository_torrent/sm_23200000-23299999.torrent': '709c4ac9d7bf69d8dc9904c409e399fd7f91901f',
  364. 'http://libgen.rs/scimag/repository_torrent/sm_23300000-23399999.torrent': '410797768e7ef4729aaf29cc913f2a31460b31cf',
  365. 'http://libgen.rs/scimag/repository_torrent/sm_23400000-23499999.torrent': 'cd86701185a8dd9a4afebf089cbcee32ac1a6e35',
  366. 'http://libgen.rs/scimag/repository_torrent/sm_23500000-23599999.torrent': 'ec0542e37f9ce3edb494281b5656fc17e05284d5',
  367. 'http://libgen.rs/scimag/repository_torrent/sm_23600000-23699999.torrent': 'e0979b28c10bb38122732338ebc97091e76a2897',
  368. 'http://libgen.rs/scimag/repository_torrent/sm_23700000-23799999.torrent': '103827c87e0e63dae8580979c18acac6a2982eb6',
  369. 'http://libgen.rs/scimag/repository_torrent/sm_23800000-23899999.torrent': '3ff5032f49d8a3321bbc0ac6e7e857d213546953',
  370. 'http://libgen.rs/scimag/repository_torrent/sm_23900000-23999999.torrent': '745981ab9d2d62e2482136abc53633cfeab5e1d0',
  371. 'http://libgen.rs/scimag/repository_torrent/sm_24000000-24099999.torrent': 'a49eda1aa410aefb9747e64bd2df99e319abf617',
  372. 'http://libgen.rs/scimag/repository_torrent/sm_24100000-24199999.torrent': '202149ce5d033748df1f9f6b5a4524c452efdb96',
  373. 'http://libgen.rs/scimag/repository_torrent/sm_24200000-24299999.torrent': '2dae056714cd3b6aacbf4712514dafdd3bd87f3a',
  374. 'http://libgen.rs/scimag/repository_torrent/sm_24300000-24399999.torrent': 'cf05c258f5e7f48ecd02359971b15e71bcb21e2e',
  375. 'http://libgen.rs/scimag/repository_torrent/sm_24400000-24499999.torrent': '28d648ccfe3c0a771cf14c3ae659b525536bd30b',
  376. 'http://libgen.rs/scimag/repository_torrent/sm_24500000-24599999.torrent': '52f12afd0d279ca554ff70d27fd586252ccbe4f8',
  377. 'http://libgen.rs/scimag/repository_torrent/sm_24600000-24699999.torrent': 'd559ed19d34de532630971bec59c491458aa6bed',
  378. 'http://libgen.rs/scimag/repository_torrent/sm_24700000-24799999.torrent': 'e9c3b677ae3e3f7881d20c08caad73dae5e3eb98',
  379. 'http://libgen.rs/scimag/repository_torrent/sm_24800000-24899999.torrent': '7dccdd61efc952aa4ada9fe96b28be3492cdce45',
  380. 'http://libgen.rs/scimag/repository_torrent/sm_24900000-24999999.torrent': 'd623054af1d49feec713e4facd47e909c68a2292',
  381. 'http://libgen.rs/scimag/repository_torrent/sm_25000000-25099999.torrent': '48c0bb280346a92db000f96223dcd194b0bd78c5',
  382. 'http://libgen.rs/scimag/repository_torrent/sm_25100000-25199999.torrent': '447aa9163bb9b20a0ef40fa0939c4fcda3d47525',
  383. 'http://libgen.rs/scimag/repository_torrent/sm_25200000-25299999.torrent': '963061075f43a4a202c5fe46f99abbc9c022989a',
  384. 'http://libgen.rs/scimag/repository_torrent/sm_25300000-25399999.torrent': 'f5d5bc75995fa6f1cbfe1dff6d01c3443e31a163',
  385. 'http://libgen.rs/scimag/repository_torrent/sm_25400000-25499999.torrent': '977541cc4c4f3f55072af4a601ebc90748dd189e',
  386. 'http://libgen.rs/scimag/repository_torrent/sm_25500000-25599999.torrent': '8505612c1d6bbeb237269a6545e08d62933d6d3a',
  387. 'http://libgen.rs/scimag/repository_torrent/sm_25600000-25699999.torrent': 'ec32d632382e4ecbe4a2ab8e7fb56290a7f680f8',
  388. 'http://libgen.rs/scimag/repository_torrent/sm_25700000-25799999.torrent': '84f09a98238ac9436e928f8859aa40fae67f7e8a',
  389. 'http://libgen.rs/scimag/repository_torrent/sm_25800000-25899999.torrent': '830075ca281c57281f9b3af50030021ff41b7d67',
  390. 'http://libgen.rs/scimag/repository_torrent/sm_25900000-25999999.torrent': '7f3b244bfc1a2c21cd5f1f9d4845a899d2762f9b',
  391. 'http://libgen.rs/scimag/repository_torrent/sm_26000000-26099999.torrent': '53cac3a7423bd8ea7debf68829a8b85adfb4f8cb',
  392. 'http://libgen.rs/scimag/repository_torrent/sm_26100000-26199999.torrent': 'a518c76d729b21cc5c0780053fae2d66a35fb3c6',
  393. 'http://libgen.rs/scimag/repository_torrent/sm_26200000-26299999.torrent': '9a03bdd5f3ab8fa63affea88c732186619e077f3',
  394. 'http://libgen.rs/scimag/repository_torrent/sm_26300000-26399999.torrent': '08a4c22abc515540e39516380cd606c1c3473017',
  395. 'http://libgen.rs/scimag/repository_torrent/sm_26400000-26499999.torrent': '63c383506c2887920879526d16ac0db3d6efc7f9',
  396. 'http://libgen.rs/scimag/repository_torrent/sm_26500000-26599999.torrent': 'c10960590ea6a60ae8e76a7718b0fdcbda6b2a23',
  397. 'http://libgen.rs/scimag/repository_torrent/sm_26600000-26699999.torrent': 'ba55647793b602b21f75cf70ee49eb073dd87d92',
  398. 'http://libgen.rs/scimag/repository_torrent/sm_26700000-26799999.torrent': 'd20b436758ea1c8be7b7080ce00ca5b39ee6f28a',
  399. 'http://libgen.rs/scimag/repository_torrent/sm_26800000-26899999.torrent': '0f8b1354d533a400496d9647f398c9f875ac54b0',
  400. 'http://libgen.rs/scimag/repository_torrent/sm_26900000-26999999.torrent': '1641ca5f62d49ee0bbe15c947091d32f616b098b',
  401. 'http://libgen.rs/scimag/repository_torrent/sm_27000000-27099999.torrent': '41ffb7142d4e10397f913f52bb0f6956c808e52a',
  402. 'http://libgen.rs/scimag/repository_torrent/sm_27100000-27199999.torrent': 'f2ce88af370afeed27c4a5fcc0d92a1a89d9c7f8',
  403. 'http://libgen.rs/scimag/repository_torrent/sm_27200000-27299999.torrent': 'cb9c3b54ce84fb06717d90eab47927dc4b71ab20',
  404. 'http://libgen.rs/scimag/repository_torrent/sm_27300000-27399999.torrent': '4c8f8e91ff197ebc2aa6d1aa06eb66b40474f733',
  405. 'http://libgen.rs/scimag/repository_torrent/sm_27400000-27499999.torrent': 'c1f51ace341751211bbfc2e64ecb657c56ba6d95',
  406. 'http://libgen.rs/scimag/repository_torrent/sm_27500000-27599999.torrent': 'dd8df1604479db745ce62df9b008eb4c15ea2339',
  407. 'http://libgen.rs/scimag/repository_torrent/sm_27600000-27699999.torrent': '92795fedb4c60fa81c60d55e4591072ac211d38e',
  408. 'http://libgen.rs/scimag/repository_torrent/sm_27700000-27799999.torrent': '239f3f9b58960e8aa5417bd9425fdf8917c4a383',
  409. 'http://libgen.rs/scimag/repository_torrent/sm_27800000-27899999.torrent': 'aec4daf9b0df79e7dc5808cb725c73831d4a7c69',
  410. 'http://libgen.rs/scimag/repository_torrent/sm_27900000-27999999.torrent': '395851aad699b9e23d2ee8735fac413d31ba6d2e',
  411. 'http://libgen.rs/scimag/repository_torrent/sm_28000000-28099999.torrent': '631a036066b86532ba658c7947e9d6f2703a0b12',
  412. 'http://libgen.rs/scimag/repository_torrent/sm_28100000-28199999.torrent': 'ee5a448720e205b921458a712398bc2e8c51b283',
  413. 'http://libgen.rs/scimag/repository_torrent/sm_28200000-28299999.torrent': '4de7fcfc11f9f8f619eee3cd66ddee42fd496de8',
  414. 'http://libgen.rs/scimag/repository_torrent/sm_28300000-28399999.torrent': 'abd264f54f8d2ec4454350403c443047bfdef75c',
  415. 'http://libgen.rs/scimag/repository_torrent/sm_28400000-28499999.torrent': 'a4203875aef163d0ea23a303b1686d842cba1e52',
  416. 'http://libgen.rs/scimag/repository_torrent/sm_28500000-28599999.torrent': '0c03a7a21c7145ccbda44f7ee4e6a3f2ae1cfdf5',
  417. 'http://libgen.rs/scimag/repository_torrent/sm_28600000-28699999.torrent': '9b60858c76f8f588f338f7250d32c1819d9b9465',
  418. 'http://libgen.rs/scimag/repository_torrent/sm_28700000-28799999.torrent': 'e9b15addfd429fb087c39af1fac735a6b6e82ecd',
  419. 'http://libgen.rs/scimag/repository_torrent/sm_28800000-28899999.torrent': '61e5d0c03ea24543d384b95f9129aa7f8cfb8283',
  420. 'http://libgen.rs/scimag/repository_torrent/sm_28900000-28999999.torrent': 'ab0f81f553f2bd881b6d9808ab3ce62ea10a7b76',
  421. 'http://libgen.rs/scimag/repository_torrent/sm_29000000-29099999.torrent': '3de9e74f6b85e98ce124dad82cc9e22d6fc83e46',
  422. 'http://libgen.rs/scimag/repository_torrent/sm_29100000-29199999.torrent': 'ed457b316f4806107487be0e861cd69118e04e63',
  423. 'http://libgen.rs/scimag/repository_torrent/sm_29200000-29299999.torrent': '577912e613df12bf15295adf07fbd6df96fc3798',
  424. 'http://libgen.rs/scimag/repository_torrent/sm_29300000-29399999.torrent': '402fae647e0bb84484b3fc7c85f8eb999480daae',
  425. 'http://libgen.rs/scimag/repository_torrent/sm_29400000-29499999.torrent': '12efa5ed59cac260f5af8bffa51be6da8b898aec',
  426. 'http://libgen.rs/scimag/repository_torrent/sm_29500000-29599999.torrent': '0ac2fdb9b0777ed3931e19e62c727601353e5727',
  427. 'http://libgen.rs/scimag/repository_torrent/sm_29600000-29699999.torrent': '06af1b7041323ce39cb5021e4a956e3079c76058',
  428. 'http://libgen.rs/scimag/repository_torrent/sm_29700000-29799999.torrent': 'b333538521f6057ed28363270cb5e0f0fe622892',
  429. 'http://libgen.rs/scimag/repository_torrent/sm_29800000-29899999.torrent': '077b455e790d3e339b23df8a2e18c9c30b63376d',
  430. 'http://libgen.rs/scimag/repository_torrent/sm_29900000-29999999.torrent': '93416c19d636349695967c70406bf381bf7a37ec',
  431. 'http://libgen.rs/scimag/repository_torrent/sm_30000000-30099999.torrent': '6e9efa4038f3976da450c56670e5c7c3699e30da',
  432. 'http://libgen.rs/scimag/repository_torrent/sm_30100000-30199999.torrent': '47679e846d59e809c605fef2f5dcbe03aee8ceab',
  433. 'http://libgen.rs/scimag/repository_torrent/sm_30200000-30299999.torrent': '6fe81f8cb31848d9d3a25bd6c59534f4c25231ec',
  434. 'http://libgen.rs/scimag/repository_torrent/sm_30300000-30399999.torrent': 'fc0c145f2945b09ed13167144bb053811796c537',
  435. 'http://libgen.rs/scimag/repository_torrent/sm_30400000-30499999.torrent': 'f6a05bdd20abd1771a550b161a42ddf267c438e7',
  436. 'http://libgen.rs/scimag/repository_torrent/sm_30500000-30599999.torrent': '866265a3b574078df1b825ddc0000f6f13d5574f',
  437. 'http://libgen.rs/scimag/repository_torrent/sm_30600000-30699999.torrent': '169f79a791007375b4bcf31ff0521b9821e6660e',
  438. 'http://libgen.rs/scimag/repository_torrent/sm_30700000-30799999.torrent': 'c2abd5a970118bceb4666ba550a3b217e954c4bb',
  439. 'http://libgen.rs/scimag/repository_torrent/sm_30800000-30899999.torrent': '9831194b51c6672ff6aa090c7b60559dee6c6d9b',
  440. 'http://libgen.rs/scimag/repository_torrent/sm_30900000-30999999.torrent': '9576442da4154af3a0fe02aca19c97b7bab84f81',
  441. 'http://libgen.rs/scimag/repository_torrent/sm_31000000-31099999.torrent': 'e58fc5cdb35909d6a49d3406da0fff6e049ecc4d',
  442. 'http://libgen.rs/scimag/repository_torrent/sm_31100000-31199999.torrent': 'b59281d1fd4d607b63c863f3841709228a8fc501',
  443. 'http://libgen.rs/scimag/repository_torrent/sm_31200000-31299999.torrent': '7e93577b39d1e080deffa9f222f816fa5a807b7f',
  444. 'http://libgen.rs/scimag/repository_torrent/sm_31300000-31399999.torrent': 'dba1ca905b5f0fc43616431eec46b5d30cb15e0e',
  445. 'http://libgen.rs/scimag/repository_torrent/sm_31400000-31499999.torrent': '5cb2293a066168dbe377336ee89dfd28fe756cc0',
  446. 'http://libgen.rs/scimag/repository_torrent/sm_31500000-31599999.torrent': '48bd6eb1820ec192b4ef50cb94bd184d325f1e51',
  447. 'http://libgen.rs/scimag/repository_torrent/sm_31600000-31699999.torrent': 'f87fad1652713f037c59f426348ad942c0d3bc9f',
  448. 'http://libgen.rs/scimag/repository_torrent/sm_31700000-31799999.torrent': '74b04f7531455ecaffda48428b70350f29f1fb92',
  449. 'http://libgen.rs/scimag/repository_torrent/sm_31800000-31899999.torrent': '598af6b08051e8f95070dc756c000ff7332312a9',
  450. 'http://libgen.rs/scimag/repository_torrent/sm_31900000-31999999.torrent': '52dc566cbbfa5c729f03019dad1c17b31ba2bce5',
  451. 'http://libgen.rs/scimag/repository_torrent/sm_32000000-32099999.torrent': '8dd1f2420259970c15feb3c86100135b502b3ff3',
  452. 'http://libgen.rs/scimag/repository_torrent/sm_32100000-32199999.torrent': '60d613d55bc5d746a43b8ef7092a7261c0d57d1f',
  453. 'http://libgen.rs/scimag/repository_torrent/sm_32200000-32299999.torrent': '1afecb7893e1d3b613107fdfc826cac8a09e1ed2',
  454. 'http://libgen.rs/scimag/repository_torrent/sm_32300000-32399999.torrent': '4d26e3aebeb6357e53639f8201ce1956d6a08a84',
  455. 'http://libgen.rs/scimag/repository_torrent/sm_32400000-32499999.torrent': 'a5e6e061206e7f16bdd24f491bf8e9919e399759',
  456. 'http://libgen.rs/scimag/repository_torrent/sm_32500000-32599999.torrent': 'a1fe87b8bc3d6466c2697f7e4f18fa6583c1e1ee',
  457. 'http://libgen.rs/scimag/repository_torrent/sm_32600000-32699999.torrent': '9f219e257ea0102816f5f5622c9be8ea0c4670de',
  458. 'http://libgen.rs/scimag/repository_torrent/sm_32700000-32799999.torrent': '16ae10c9afea500f24b406dbf629266ef182bb31',
  459. 'http://libgen.rs/scimag/repository_torrent/sm_32800000-32899999.torrent': '66d139122ad524689a154bea0aeba885cd3b5b46',
  460. 'http://libgen.rs/scimag/repository_torrent/sm_32900000-32999999.torrent': '33de4d1ffc2bfc95612b3345092ae4513323b4a9',
  461. 'http://libgen.rs/scimag/repository_torrent/sm_33000000-33099999.torrent': '7baa98631853a53b049d030118b9e7339347bfbb',
  462. 'http://libgen.rs/scimag/repository_torrent/sm_33100000-33199999.torrent': '21c8fd70c4dae6d79adb268a88c7e0929a3431c0',
  463. 'http://libgen.rs/scimag/repository_torrent/sm_33200000-33299999.torrent': 'bafc8487a3cf8be2d6e15349cbe01a894fa1c32c',
  464. 'http://libgen.rs/scimag/repository_torrent/sm_33300000-33399999.torrent': '873cbc7d1da293ca10a9200cff7166f913b3e18f',
  465. 'http://libgen.rs/scimag/repository_torrent/sm_33400000-33499999.torrent': '947dad42a824c665155126684c67cde1a6d296d9',
  466. 'http://libgen.rs/scimag/repository_torrent/sm_33500000-33599999.torrent': '6efec7b877ba4f74487803d39c6155fbdcc3b9fb',
  467. 'http://libgen.rs/scimag/repository_torrent/sm_33600000-33699999.torrent': '3621f8c29cdd5860d7af60e4849f8c07d401c2c7',
  468. 'http://libgen.rs/scimag/repository_torrent/sm_33700000-33799999.torrent': 'c7303bfbb8803bc84c17bc9d2e6b17671847a2f1',
  469. 'http://libgen.rs/scimag/repository_torrent/sm_33800000-33899999.torrent': '414db016109fe0f72a9fa35bbf3ea9c766955430',
  470. 'http://libgen.rs/scimag/repository_torrent/sm_33900000-33999999.torrent': 'b4a3dc7aa006a024d18b06c50165cc732ca10c75',
  471. 'http://libgen.rs/scimag/repository_torrent/sm_34000000-34099999.torrent': '426a8d09675e591c08ca53540a98d2070af20092',
  472. 'http://libgen.rs/scimag/repository_torrent/sm_34100000-34199999.torrent': '3ba2c20024bffa72e5a5276d396b49b88813cf26',
  473. 'http://libgen.rs/scimag/repository_torrent/sm_34200000-34299999.torrent': 'f3132e2965cd5aa5d41b02026a63cb27705a0275',
  474. 'http://libgen.rs/scimag/repository_torrent/sm_34300000-34399999.torrent': '24bbf3df95981c6ad4aedb4ec3199c3f6be58d01',
  475. 'http://libgen.rs/scimag/repository_torrent/sm_34400000-34499999.torrent': 'a621f5dbc23c57ef93a57142ce48c3e070166ceb',
  476. 'http://libgen.rs/scimag/repository_torrent/sm_34500000-34599999.torrent': 'abe2b911242171ea89fbd8e14bb0b8f4ecd899e2',
  477. 'http://libgen.rs/scimag/repository_torrent/sm_34600000-34699999.torrent': '998789422b81e9076b9cdfcdcb67aa7d9cda37a2',
  478. 'http://libgen.rs/scimag/repository_torrent/sm_34700000-34799999.torrent': 'c1689774b2e47bf4f9ea6807dca438e49379c964',
  479. 'http://libgen.rs/scimag/repository_torrent/sm_34800000-34899999.torrent': '6f5a954e75e640808e6a98b96d4bb8cd205f572a',
  480. 'http://libgen.rs/scimag/repository_torrent/sm_34900000-34999999.torrent': '1be108d0e316ff77db641d69a7d2f9238cc95b42',
  481. 'http://libgen.rs/scimag/repository_torrent/sm_35000000-35099999.torrent': 'a92e384daed9fb8248fdd38b08bb3ddff880dc40',
  482. 'http://libgen.rs/scimag/repository_torrent/sm_35100000-35199999.torrent': '36595c213d27a618931b7ec2d7fdda870556cd31',
  483. 'http://libgen.rs/scimag/repository_torrent/sm_35200000-35299999.torrent': 'd144dfbc0167dfe39526fad1c90285489bbcb8ef',
  484. 'http://libgen.rs/scimag/repository_torrent/sm_35300000-35399999.torrent': 'a5cd48a9df528e2cd0177fe8ad8fef875336bfd0',
  485. 'http://libgen.rs/scimag/repository_torrent/sm_35400000-35499999.torrent': '03e870daededb13e78d07aaaf77b2692577bcaf2',
  486. 'http://libgen.rs/scimag/repository_torrent/sm_35500000-35599999.torrent': 'fc775fdc91a55d307a14ec3da5a920fb748505a8',
  487. 'http://libgen.rs/scimag/repository_torrent/sm_35600000-35699999.torrent': 'afe18470137f9563188a43b3cd50c7475b831d68',
  488. 'http://libgen.rs/scimag/repository_torrent/sm_35700000-35799999.torrent': '8c95a8237584bb348cee7dc55df7b41abf6150ab',
  489. 'http://libgen.rs/scimag/repository_torrent/sm_35800000-35899999.torrent': 'bd0ad85a5640a2979ad8e36a73d2dd3af1606d2b',
  490. 'http://libgen.rs/scimag/repository_torrent/sm_35900000-35999999.torrent': '3ecb5d6b5ef634d124f0fccc6e0192d7a052db61',
  491. 'http://libgen.rs/scimag/repository_torrent/sm_36000000-36099999.torrent': 'cddcfc4e484ec99b60348e9fe3a52256e9eced9d',
  492. 'http://libgen.rs/scimag/repository_torrent/sm_36100000-36199999.torrent': 'efa547b1256e3867a2b3a6ba60336d821daaa0e0',
  493. 'http://libgen.rs/scimag/repository_torrent/sm_36200000-36299999.torrent': 'f447da0ab08377c2135bbb32e378e89ea5bab246',
  494. 'http://libgen.rs/scimag/repository_torrent/sm_36300000-36399999.torrent': 'fc104819fa4bd799ba4e09454ab8b9d98f4546d8',
  495. 'http://libgen.rs/scimag/repository_torrent/sm_36400000-36499999.torrent': 'e6ca661c57881a0a59d0d8d8a2e8798ce6cdaf17',
  496. 'http://libgen.rs/scimag/repository_torrent/sm_36500000-36599999.torrent': '864557c6d431a394f1df5e7acc3f179cb23e6145',
  497. 'http://libgen.rs/scimag/repository_torrent/sm_36600000-36699999.torrent': '76b47a5904c899f10e93b4d03334724f524eb11a',
  498. 'http://libgen.rs/scimag/repository_torrent/sm_36700000-36799999.torrent': '1fa362a27afb11809e301431813421c34eb16c56',
  499. 'http://libgen.rs/scimag/repository_torrent/sm_36800000-36899999.torrent': 'b663398b2f644308a31caf5e901e8cabef3f82db',
  500. 'http://libgen.rs/scimag/repository_torrent/sm_36900000-36999999.torrent': '2c9157b7855781f04df8a6d2a4bafe3598c98f50',
  501. 'http://libgen.rs/scimag/repository_torrent/sm_37000000-37099999.torrent': 'b3e91b64898317934894d0562a1ff9ff62011ef5',
  502. 'http://libgen.rs/scimag/repository_torrent/sm_37100000-37199999.torrent': 'a8a23b1ced475338973c05aad733878cb090f22d',
  503. 'http://libgen.rs/scimag/repository_torrent/sm_37200000-37299999.torrent': '43b9445b17b72613f5366df4320d11b9395b923e',
  504. 'http://libgen.rs/scimag/repository_torrent/sm_37300000-37399999.torrent': '49ae02bdecfd723525ad6a7e2e633ae7f0443923',
  505. 'http://libgen.rs/scimag/repository_torrent/sm_37400000-37499999.torrent': 'e146b64377c7eab3075ca0f093d6e8e7c5f35fed',
  506. 'http://libgen.rs/scimag/repository_torrent/sm_37500000-37599999.torrent': 'd9401cc3e6266f3ac0f65e23b6c4e69a34d844e7',
  507. 'http://libgen.rs/scimag/repository_torrent/sm_37600000-37699999.torrent': 'ff7b46024e39870430c91c4482550143787682da',
  508. 'http://libgen.rs/scimag/repository_torrent/sm_37700000-37799999.torrent': '10e971811b430666f86746b02f4281114a299ab0',
  509. 'http://libgen.rs/scimag/repository_torrent/sm_37800000-37899999.torrent': '6c53f5c0fe293eae0ac4967ce9be64320d6b21cd',
  510. 'http://libgen.rs/scimag/repository_torrent/sm_37900000-37999999.torrent': 'adce425894580f8a2d5fe0613b2eb5e693e868d3',
  511. 'http://libgen.rs/scimag/repository_torrent/sm_38000000-38099999.torrent': 'b80d1ca3791ff8a95e6c710c79c67cd6760cf20e',
  512. 'http://libgen.rs/scimag/repository_torrent/sm_38100000-38199999.torrent': '947bd6ca243f3035453b118335bc5538db2c5794',
  513. 'http://libgen.rs/scimag/repository_torrent/sm_38200000-38299999.torrent': 'b3cb5871bd62451de0590543bf14021577678397',
  514. 'http://libgen.rs/scimag/repository_torrent/sm_38300000-38399999.torrent': '0ce9def4ba25bb18dc023db7aa08bce64d62f1b0',
  515. 'http://libgen.rs/scimag/repository_torrent/sm_38400000-38499999.torrent': 'cf806a5159738b1959e9ac5c42dfe808d3feb34b',
  516. 'http://libgen.rs/scimag/repository_torrent/sm_38500000-38599999.torrent': 'dc651b4ad1cb1f8193f54abbb73ea8773c7b78f6',
  517. 'http://libgen.rs/scimag/repository_torrent/sm_38600000-38699999.torrent': 'e91936d332298c8db76b38593e096f9c6d776d9a',
  518. 'http://libgen.rs/scimag/repository_torrent/sm_38700000-38799999.torrent': '20c1469d519848cce3ed7ac2e36856b66fe62acc',
  519. 'http://libgen.rs/scimag/repository_torrent/sm_38800000-38899999.torrent': '69634b454560e6f90aba3a6f37f1d9c1ef50feb9',
  520. 'http://libgen.rs/scimag/repository_torrent/sm_38900000-38999999.torrent': 'd4e5a6c53df760cba74be4520e6e256ad813c87a',
  521. 'http://libgen.rs/scimag/repository_torrent/sm_39000000-39099999.torrent': '5ac008d276a0baad315e3553ab8ffbb3f0344161',
  522. 'http://libgen.rs/scimag/repository_torrent/sm_39100000-39199999.torrent': '787fc5e2dbef8f9edb74b93c159b5446a007d69c',
  523. 'http://libgen.rs/scimag/repository_torrent/sm_39200000-39299999.torrent': 'f3c181dc581824a28f1377387499627b945c376e',
  524. 'http://libgen.rs/scimag/repository_torrent/sm_39300000-39399999.torrent': '48369fc32f852f8cd2242faaa5f3706e25fb3582',
  525. 'http://libgen.rs/scimag/repository_torrent/sm_39400000-39499999.torrent': '8ce066c368dfa6f8571d29adeb8997b0f9a16a28',
  526. 'http://libgen.rs/scimag/repository_torrent/sm_39500000-39599999.torrent': '94778324629ed5da6e9649b2201dd89048ed3a65',
  527. 'http://libgen.rs/scimag/repository_torrent/sm_39600000-39699999.torrent': '983bebf88fac515bff449fb590371f257d4b8574',
  528. 'http://libgen.rs/scimag/repository_torrent/sm_39700000-39799999.torrent': 'dd6007e28f32e264fddb668adc3a6e4606c5f038',
  529. 'http://libgen.rs/scimag/repository_torrent/sm_39800000-39899999.torrent': '0387c879368d89107b3784eb42c56eaeb664c188',
  530. 'http://libgen.rs/scimag/repository_torrent/sm_39900000-39999999.torrent': '78d5d4562cb78e4559975049c198e9147b1e1f2a',
  531. 'http://libgen.rs/scimag/repository_torrent/sm_40000000-40099999.torrent': '00e6c6ae67149c79ce4868ef63e540bacd23e39d',
  532. 'http://libgen.rs/scimag/repository_torrent/sm_40100000-40199999.torrent': 'a7f101bffd3c7984c2a4afefc2556447e27fe37d',
  533. 'http://libgen.rs/scimag/repository_torrent/sm_40200000-40299999.torrent': '2ef0f0b9d12a83bfa80625ca049f58b5259e5d51',
  534. 'http://libgen.rs/scimag/repository_torrent/sm_40300000-40399999.torrent': '8943fec2dbe867ca3b7b3651be669d59a4093f37',
  535. 'http://libgen.rs/scimag/repository_torrent/sm_40400000-40499999.torrent': 'a6549be6ef8162706e3ed4e0943fd7344303aa52',
  536. 'http://libgen.rs/scimag/repository_torrent/sm_40500000-40599999.torrent': '91187211e17b8068b6861ece4e25f835ce7c0c40',
  537. 'http://libgen.rs/scimag/repository_torrent/sm_40600000-40699999.torrent': 'a37a4efddd158008509a27cd33088ba25bba2131',
  538. 'http://libgen.rs/scimag/repository_torrent/sm_40700000-40799999.torrent': '6a3e403b5fb615d7ae5231e2d1b06eed0cf9a22d',
  539. 'http://libgen.rs/scimag/repository_torrent/sm_40800000-40899999.torrent': '53cad5631a56c3b0924ccccf3eb346cfbe6e8004',
  540. 'http://libgen.rs/scimag/repository_torrent/sm_40900000-40999999.torrent': '71303be8d049e442cc11eddb7d6ef31ee65c49c5',
  541. 'http://libgen.rs/scimag/repository_torrent/sm_41000000-41099999.torrent': '364cb41ea1f96d4d6189b8bd7fbe37ea3b17fc4f',
  542. 'http://libgen.rs/scimag/repository_torrent/sm_41100000-41199999.torrent': 'ddfa88760628e65bef83f73b1d4bfc4e0ff3780e',
  543. 'http://libgen.rs/scimag/repository_torrent/sm_41200000-41299999.torrent': 'cb8423875fa8d99ece199e0f52631f515f600fec',
  544. 'http://libgen.rs/scimag/repository_torrent/sm_41300000-41399999.torrent': 'e1f2cd5c54da02f85558023385ef9401948c75fc',
  545. 'http://libgen.rs/scimag/repository_torrent/sm_41400000-41499999.torrent': '66ad01b3cfa8903ee953608d978f05b80d17a001',
  546. 'http://libgen.rs/scimag/repository_torrent/sm_41500000-41599999.torrent': 'c5866661093fbab6eceb903416929385941b9f55',
  547. 'http://libgen.rs/scimag/repository_torrent/sm_41600000-41699999.torrent': '75f24ce2a1dacfe8e373363f1f9536a997d47749',
  548. 'http://libgen.rs/scimag/repository_torrent/sm_41700000-41799999.torrent': '6fd9cc3a1c903658c360c53cc4b0e192214221f3',
  549. 'http://libgen.rs/scimag/repository_torrent/sm_41800000-41899999.torrent': 'ceb04a1647b410d6e6eb4b295f52572ff295a589',
  550. 'http://libgen.rs/scimag/repository_torrent/sm_41900000-41999999.torrent': 'afbdbef66c329c44f383ce08b2e3881e7f1d69c1',
  551. 'http://libgen.rs/scimag/repository_torrent/sm_42000000-42099999.torrent': '7eb7ea687db0b00e348db77dd63434420b5cbc33',
  552. 'http://libgen.rs/scimag/repository_torrent/sm_42100000-42199999.torrent': '36f6b8e3ac723281ab4f93a18f6c6eb3bb535692',
  553. 'http://libgen.rs/scimag/repository_torrent/sm_42200000-42299999.torrent': '0ff972f1b3bbd9a4ff05ffdcdd3b6387bf04867e',
  554. 'http://libgen.rs/scimag/repository_torrent/sm_42300000-42399999.torrent': 'd098bc76b267d4ba0082676fde94848192b04aa8',
  555. 'http://libgen.rs/scimag/repository_torrent/sm_42400000-42499999.torrent': '38cf3bf5bde0039c4f6f203cae8e30dac4290e94',
  556. 'http://libgen.rs/scimag/repository_torrent/sm_42500000-42599999.torrent': '232b957045585cf7564705c55f086f1074256b5b',
  557. 'http://libgen.rs/scimag/repository_torrent/sm_42600000-42699999.torrent': '72eae866856f4a14bfed1fe9a60cf3cd14b7a510',
  558. 'http://libgen.rs/scimag/repository_torrent/sm_42700000-42799999.torrent': 'e7d9baf1925ba7f5ecab2406feafb361240bf65c',
  559. 'http://libgen.rs/scimag/repository_torrent/sm_42800000-42899999.torrent': '9db656d6aadd7196852c8fc32d5df7e9194f89d3',
  560. 'http://libgen.rs/scimag/repository_torrent/sm_42900000-42999999.torrent': '3e50be8792c1b10284ee023fa6e98b80fc14b307',
  561. 'http://libgen.rs/scimag/repository_torrent/sm_43000000-43099999.torrent': '9f2a67f37737c52c21b9e831174bf028c0b86562',
  562. 'http://libgen.rs/scimag/repository_torrent/sm_43100000-43199999.torrent': '01f2419cd1a2a615b09297dad5d84d31e4d02b0d',
  563. 'http://libgen.rs/scimag/repository_torrent/sm_43200000-43299999.torrent': 'd7fa7e804156d86985f2c1a395c3f71cb5c7ca0c',
  564. 'http://libgen.rs/scimag/repository_torrent/sm_43300000-43399999.torrent': '526785d32d419f128f40db5615d8a547d51cc9f3',
  565. 'http://libgen.rs/scimag/repository_torrent/sm_43400000-43499999.torrent': 'b7fb39c4f2064aa9e79b83d68e965090a7de8d62',
  566. 'http://libgen.rs/scimag/repository_torrent/sm_43500000-43599999.torrent': '7c5334d1ce62d24b2356838dfaa3d4ed120a35a7',
  567. 'http://libgen.rs/scimag/repository_torrent/sm_43600000-43699999.torrent': '18ec64296f1183b51aaf925a03ceb385abd12442',
  568. 'http://libgen.rs/scimag/repository_torrent/sm_43700000-43799999.torrent': 'ec6335c543edf8bc4d395bca022dc339fd6e8a1a',
  569. 'http://libgen.rs/scimag/repository_torrent/sm_43800000-43899999.torrent': 'e2aae00a0c434d2efef953d2f7e78a2d4b40eb54',
  570. 'http://libgen.rs/scimag/repository_torrent/sm_43900000-43999999.torrent': '6b1142bcf3702233d4b13068d849c150c557008b',
  571. 'http://libgen.rs/scimag/repository_torrent/sm_44000000-44099999.torrent': '67b2f6c21ffcc4b1a747e83525ebc179a61da9e5',
  572. 'http://libgen.rs/scimag/repository_torrent/sm_44100000-44199999.torrent': 'e4fd9faba34945809b205eb6f323e15b3e9a08bb',
  573. 'http://libgen.rs/scimag/repository_torrent/sm_44200000-44299999.torrent': 'af5f5434d632761e181c92aac9ab68f489f93b88',
  574. 'http://libgen.rs/scimag/repository_torrent/sm_44300000-44399999.torrent': '711a7167bd54179be4e8fca852a8a76bc35557fe',
  575. 'http://libgen.rs/scimag/repository_torrent/sm_44400000-44499999.torrent': '1279e7abe60e3e5c267efeb91085bd6aa6186a34',
  576. 'http://libgen.rs/scimag/repository_torrent/sm_44500000-44599999.torrent': '978cc079689e663da1955a82bbaef87893d93c1d',
  577. 'http://libgen.rs/scimag/repository_torrent/sm_44600000-44699999.torrent': '87750af0ff63ce2209ae888d1aad7c73c8d8a624',
  578. 'http://libgen.rs/scimag/repository_torrent/sm_44700000-44799999.torrent': 'fe85a9db153393396eeb412938097af6d2c3f722',
  579. 'http://libgen.rs/scimag/repository_torrent/sm_44800000-44899999.torrent': '4d19066aea06e440bf9e872800a6b1a21ee55b54',
  580. 'http://libgen.rs/scimag/repository_torrent/sm_44900000-44999999.torrent': '107b0c9190d7109e48341595a7b1b51fe09440a1',
  581. 'http://libgen.rs/scimag/repository_torrent/sm_45000000-45099999.torrent': 'd1e8f1821df21ffa30686ea3dbf52f6e3f961aa9',
  582. 'http://libgen.rs/scimag/repository_torrent/sm_45100000-45199999.torrent': '674fbdad97d3b76d09c6d75968e5067ebaa08676',
  583. 'http://libgen.rs/scimag/repository_torrent/sm_45200000-45299999.torrent': '52f90896f43aca5a4d35d9dc34049313b8c81ecf',
  584. 'http://libgen.rs/scimag/repository_torrent/sm_45300000-45399999.torrent': 'a6a194e2f86c5a31951f565feaa020e4fa5a64bb',
  585. 'http://libgen.rs/scimag/repository_torrent/sm_45400000-45499999.torrent': '55ef36b91abc5271c110899cfc7d5983084f0c4d',
  586. 'http://libgen.rs/scimag/repository_torrent/sm_45500000-45599999.torrent': '181754445324574962b9aa27767ff2fbf04703e3',
  587. 'http://libgen.rs/scimag/repository_torrent/sm_45600000-45699999.torrent': 'c6ac7bdceae94495855e062ca1a121fb1d2541cf',
  588. 'http://libgen.rs/scimag/repository_torrent/sm_45700000-45799999.torrent': '71f4345a8535a919bb21363ce4f0dc9289d12cea',
  589. 'http://libgen.rs/scimag/repository_torrent/sm_45800000-45899999.torrent': 'e38e9f8a4e317e6161da557546a83c07c945cc4f',
  590. 'http://libgen.rs/scimag/repository_torrent/sm_45900000-45999999.torrent': 'ecf9ce41c339b30cea972807cf20f02def15f1aa',
  591. 'http://libgen.rs/scimag/repository_torrent/sm_46000000-46099999.torrent': 'add7529165b8d8952ab49a74e4051f6d93c7d0eb',
  592. 'http://libgen.rs/scimag/repository_torrent/sm_46100000-46199999.torrent': '2c317490ca9180f37816f52139818b2290a937a7',
  593. 'http://libgen.rs/scimag/repository_torrent/sm_46200000-46299999.torrent': 'eeb080d4e670151f7de6451084dfd8a71d3e66a4',
  594. 'http://libgen.rs/scimag/repository_torrent/sm_46300000-46399999.torrent': '1993887b09f35ea50342cb4a782e73910619b490',
  595. 'http://libgen.rs/scimag/repository_torrent/sm_46400000-46499999.torrent': 'a0aa67296877f01017b5468625071dd28c73b4b2',
  596. 'http://libgen.rs/scimag/repository_torrent/sm_46500000-46599999.torrent': '45c0920da8d74cb859ddfa727aaf82e585734cc9',
  597. 'http://libgen.rs/scimag/repository_torrent/sm_46600000-46699999.torrent': '07be1495e48a8014c83c923effced55e264ed9d1',
  598. 'http://libgen.rs/scimag/repository_torrent/sm_46700000-46799999.torrent': '25dc275393e60ac873eabe61ebd38dbac29499a8',
  599. 'http://libgen.rs/scimag/repository_torrent/sm_46800000-46899999.torrent': 'fe509b2aea28f35bc048dfe25242252b9f5b504f',
  600. 'http://libgen.rs/scimag/repository_torrent/sm_46900000-46999999.torrent': 'c5e02b25503d4116a4a3954a4a673d2ed0c53fc8',
  601. 'http://libgen.rs/scimag/repository_torrent/sm_47000000-47099999.torrent': '3314f3a79bebb371cf107c7429b884bcf8c2512a',
  602. 'http://libgen.rs/scimag/repository_torrent/sm_47100000-47199999.torrent': '8290fdb76ede2b014300d9673e1d1c8431d236b4',
  603. 'http://libgen.rs/scimag/repository_torrent/sm_47200000-47299999.torrent': 'fcdc12df7d5c5a3145fec53f04ca4cf741570658',
  604. 'http://libgen.rs/scimag/repository_torrent/sm_47300000-47399999.torrent': 'b6833c3100590821f21359d6cc32265f170359d3',
  605. 'http://libgen.rs/scimag/repository_torrent/sm_47400000-47499999.torrent': 'e2398c91fa18bab0d86ee320cd405147923abb87',
  606. 'http://libgen.rs/scimag/repository_torrent/sm_47500000-47599999.torrent': 'e3503797d077fb0b45b070da57f03d5d46bd49c3',
  607. 'http://libgen.rs/scimag/repository_torrent/sm_47600000-47699999.torrent': 'ccf2911f41ec2c9dc33f12414cda62264ae7a398',
  608. 'http://libgen.rs/scimag/repository_torrent/sm_47700000-47799999.torrent': 'e572e4c4f087aed812cbef48411fab3741ecce47',
  609. 'http://libgen.rs/scimag/repository_torrent/sm_47800000-47899999.torrent': '708d783288729d43b2ba96674ad3a8e3d68e23f3',
  610. 'http://libgen.rs/scimag/repository_torrent/sm_47900000-47999999.torrent': '93bf1e2d55194daccfa43b977a8a7a44712d5444',
  611. 'http://libgen.rs/scimag/repository_torrent/sm_48000000-48099999.torrent': 'c1f8ee00b1d71752a1837680a0161b4bfe57c8bb',
  612. 'http://libgen.rs/scimag/repository_torrent/sm_48100000-48199999.torrent': 'e6b1ec12e9fb2e93b21629eeb2db518eb502859a',
  613. 'http://libgen.rs/scimag/repository_torrent/sm_48200000-48299999.torrent': '678488bbc432f106f6e20ef76a670fcbf26c81c0',
  614. 'http://libgen.rs/scimag/repository_torrent/sm_48300000-48399999.torrent': '72abdcd2cc716734bfd66636cef6d8cedd7e4634',
  615. 'http://libgen.rs/scimag/repository_torrent/sm_48400000-48499999.torrent': 'ae57413dddaa8bcc96bd44a73442b02d45a97f7f',
  616. 'http://libgen.rs/scimag/repository_torrent/sm_48500000-48599999.torrent': 'e432d84b966fa6657bdba9cc38cd4dc1844a2944',
  617. 'http://libgen.rs/scimag/repository_torrent/sm_48600000-48699999.torrent': '419ac7b80553b407ee92694ecbc4d26f6bfe1a57',
  618. 'http://libgen.rs/scimag/repository_torrent/sm_48700000-48799999.torrent': '14bc604ac1467c6ca2954ffd9de73150c0341400',
  619. 'http://libgen.rs/scimag/repository_torrent/sm_48800000-48899999.torrent': 'd93485b6287aba794c13c1e625a28c9477a986b7',
  620. 'http://libgen.rs/scimag/repository_torrent/sm_48900000-48999999.torrent': '0d742315fb9d34f479f362d5a85d01220e4614a8',
  621. 'http://libgen.rs/scimag/repository_torrent/sm_49000000-49099999.torrent': '0576e2b5e1bee17e92c11c8619d56d19f55b3ef4',
  622. 'http://libgen.rs/scimag/repository_torrent/sm_49100000-49199999.torrent': 'a24480f8faf72e6c4f3c91c19368e36c73a4eff0',
  623. 'http://libgen.rs/scimag/repository_torrent/sm_49200000-49299999.torrent': '71c7d3a13d7f70487657ac947375b638ea324f19',
  624. 'http://libgen.rs/scimag/repository_torrent/sm_49300000-49399999.torrent': '38d4723364515adb070c097127e3a4584db3287d',
  625. 'http://libgen.rs/scimag/repository_torrent/sm_49400000-49499999.torrent': '0435ad10407f5dbdbf94398af2af9aa003d718e7',
  626. 'http://libgen.rs/scimag/repository_torrent/sm_49500000-49599999.torrent': '7feb90d73ae75e629a40a3ef31888462e91392cf',
  627. 'http://libgen.rs/scimag/repository_torrent/sm_49600000-49699999.torrent': '95c1909e52497656ff2a12cca47b9d65dcf72bc0',
  628. 'http://libgen.rs/scimag/repository_torrent/sm_49700000-49799999.torrent': '4932028cf2e3742664895a9716b2ee259d04ffb2',
  629. 'http://libgen.rs/scimag/repository_torrent/sm_49800000-49899999.torrent': 'bbe8b2bfac07d8ec5c8d613597889389ca402728',
  630. 'http://libgen.rs/scimag/repository_torrent/sm_49900000-49999999.torrent': '839cf8edff0b7b313e5a243073c57b3952cb80f6',
  631. 'http://libgen.rs/scimag/repository_torrent/sm_50000000-50099999.torrent': 'd4187378e334434235ec8d8bc13f059aae83dd68',
  632. 'http://libgen.rs/scimag/repository_torrent/sm_50100000-50199999.torrent': '9fd2668d8ee6bbffdfa1c1ff2bc5671b3e7d432a',
  633. 'http://libgen.rs/scimag/repository_torrent/sm_50200000-50299999.torrent': '34f5977ee28b87289a68e678c7d05d649ef86dde',
  634. 'http://libgen.rs/scimag/repository_torrent/sm_50300000-50399999.torrent': 'c84767b1034c36b2ad1d43ccdca2f5bf47f159e6',
  635. 'http://libgen.rs/scimag/repository_torrent/sm_50400000-50499999.torrent': 'afe2eaca679793137a11f3a178610f23f02b2886',
  636. 'http://libgen.rs/scimag/repository_torrent/sm_50500000-50599999.torrent': 'a335b3a816d968ed3dfcf8e88655278f02271868',
  637. 'http://libgen.rs/scimag/repository_torrent/sm_50600000-50699999.torrent': '7d57b18febf9a143af618f4935dae4915e83e831',
  638. 'http://libgen.rs/scimag/repository_torrent/sm_50700000-50799999.torrent': '1bea24e7e1032bbf268cfba870f22a3207279168',
  639. 'http://libgen.rs/scimag/repository_torrent/sm_50800000-50899999.torrent': 'e753c03a9cc469ee02c1db4a651a68fd7f84505c',
  640. 'http://libgen.rs/scimag/repository_torrent/sm_50900000-50999999.torrent': 'bab8090f94799dcf50d69f49ce45547d0372c3d3',
  641. 'http://libgen.rs/scimag/repository_torrent/sm_51000000-51099999.torrent': 'd5031451de284140aba2a35e87636818fd86bae9',
  642. 'http://libgen.rs/scimag/repository_torrent/sm_51100000-51199999.torrent': '1b25775584d22677636526fba60b6ffb5f6fd2d6',
  643. 'http://libgen.rs/scimag/repository_torrent/sm_51200000-51299999.torrent': '8e3cfd557f5d0f22ef9f894f4f2de846a77ec3ba',
  644. 'http://libgen.rs/scimag/repository_torrent/sm_51300000-51399999.torrent': 'e66fcf4030c1501ab0bc6b28d1c80eaba19dac90',
  645. 'http://libgen.rs/scimag/repository_torrent/sm_51400000-51499999.torrent': '2be36b76b022f02c0740cc2a7f6cc23eef15553f',
  646. 'http://libgen.rs/scimag/repository_torrent/sm_51500000-51599999.torrent': 'f565f93e7d64788c4b81e479712a0e05ebcc6898',
  647. 'http://libgen.rs/scimag/repository_torrent/sm_51600000-51699999.torrent': '35be05afa9aedd6fc3e57a5acc59de59f76f1b60',
  648. 'http://libgen.rs/scimag/repository_torrent/sm_51700000-51799999.torrent': '8055d2d88508453a1f751ab8acf48c380ad5f3c1',
  649. 'http://libgen.rs/scimag/repository_torrent/sm_51800000-51899999.torrent': '15f1b73afde30f455c54b2972ca9520a13cc857c',
  650. 'http://libgen.rs/scimag/repository_torrent/sm_51900000-51999999.torrent': 'cb293680bd6253272ec88642a2cae923d311d4d6',
  651. 'http://libgen.rs/scimag/repository_torrent/sm_52000000-52099999.torrent': 'ab29a0c4398b262ef5775f01cb1acff58836b4ce',
  652. 'http://libgen.rs/scimag/repository_torrent/sm_52100000-52199999.torrent': '259094649767d34001911a49288aba8eb987bdee',
  653. 'http://libgen.rs/scimag/repository_torrent/sm_52200000-52299999.torrent': '73e6f73d71596c1d292683b7c9a7883966ab0904',
  654. 'http://libgen.rs/scimag/repository_torrent/sm_52300000-52399999.torrent': '8c674ac2869cd52efde15ba726aa8d6ba024eebd',
  655. 'http://libgen.rs/scimag/repository_torrent/sm_52400000-52499999.torrent': 'f97e28fbf7ae2cf83a87b2b19b52ef3fb89be73c',
  656. 'http://libgen.rs/scimag/repository_torrent/sm_52500000-52599999.torrent': '221f126d6c07e3becc484af46c2429c6882fdfa6',
  657. 'http://libgen.rs/scimag/repository_torrent/sm_52600000-52699999.torrent': '7c87e3ab65842cfeeb40a9828c13ae75d7d1891d',
  658. 'http://libgen.rs/scimag/repository_torrent/sm_52700000-52799999.torrent': 'b0ff9562858b8290a94de8580b1f7637b93acc17',
  659. 'http://libgen.rs/scimag/repository_torrent/sm_52800000-52899999.torrent': 'a019eca24d43aebc75d4c194f5311ca02ab25119',
  660. 'http://libgen.rs/scimag/repository_torrent/sm_52900000-52999999.torrent': 'c32d2da3da35b63671c5455214e31c43eb8d8a56',
  661. 'http://libgen.rs/scimag/repository_torrent/sm_53000000-53099999.torrent': '263e0a0ff88e03cb43e74bddafc49c0823cb9976',
  662. 'http://libgen.rs/scimag/repository_torrent/sm_53100000-53199999.torrent': 'c0f4b9c0b57d43d5eaefc9917c2a79a8febcdc8b',
  663. 'http://libgen.rs/scimag/repository_torrent/sm_53200000-53299999.torrent': '528cbc2abc891f50588c80c1b7637e2ea2fcd12b',
  664. 'http://libgen.rs/scimag/repository_torrent/sm_53300000-53399999.torrent': '3e2c1c207147cecdc0742c82769241f43cbcbf0d',
  665. 'http://libgen.rs/scimag/repository_torrent/sm_53400000-53499999.torrent': 'e6526f4eaa9d1d4afbc3f889e0aeabe0b8bc4d4b',
  666. 'http://libgen.rs/scimag/repository_torrent/sm_53500000-53599999.torrent': '562bf874099694c5840e1b2c3d2d6de144c1d68d',
  667. 'http://libgen.rs/scimag/repository_torrent/sm_53600000-53699999.torrent': '5f615fe58b4e0c465c09221b2dbfa47ccda72f4a',
  668. 'http://libgen.rs/scimag/repository_torrent/sm_53700000-53799999.torrent': 'f33fd791c44e06ca961954967802c121c39c455c',
  669. 'http://libgen.rs/scimag/repository_torrent/sm_53800000-53899999.torrent': '528dd4bb818ba8b6a2a99b282122cda68346ec1e',
  670. 'http://libgen.rs/scimag/repository_torrent/sm_53900000-53999999.torrent': 'df54920fbe5ab8bbec75079806241efe7f993b42',
  671. 'http://libgen.rs/scimag/repository_torrent/sm_54000000-54099999.torrent': '1fa089eac79debe4900006b1f36c1974473cb84d',
  672. 'http://libgen.rs/scimag/repository_torrent/sm_54100000-54199999.torrent': '43cad634db928bcc27156cad915ba62dcf98b021',
  673. 'http://libgen.rs/scimag/repository_torrent/sm_54200000-54299999.torrent': 'b3b1308abf430796b257a84bbfa6a635726c42ac',
  674. 'http://libgen.rs/scimag/repository_torrent/sm_54300000-54399999.torrent': 'b76876ec30ac7cce0b728754f0fc567bccd3ee36',
  675. 'http://libgen.rs/scimag/repository_torrent/sm_54400000-54499999.torrent': '842ff1c070517cf3ff13ff90f960bc47ed28dd04',
  676. 'http://libgen.rs/scimag/repository_torrent/sm_54500000-54599999.torrent': 'debb33535324d40d7feb8263d3768d024d0fcbc7',
  677. 'http://libgen.rs/scimag/repository_torrent/sm_54600000-54699999.torrent': 'f57ef178bb9de73bc95744d9d792f2219cb59ca7',
  678. 'http://libgen.rs/scimag/repository_torrent/sm_54700000-54799999.torrent': '16f9f8ba4d654e029c2854865d8291bfb2c95305',
  679. 'http://libgen.rs/scimag/repository_torrent/sm_54800000-54899999.torrent': '14f1c8b1315b66b3e5208a24b7c98099964b78cb',
  680. 'http://libgen.rs/scimag/repository_torrent/sm_54900000-54999999.torrent': '4506febd3cdc2b9143ae82d531d98373d87109e9',
  681. 'http://libgen.rs/scimag/repository_torrent/sm_55000000-55099999.torrent': '1774fc7d8bae63b29eb369cca88171d67511cb24',
  682. 'http://libgen.rs/scimag/repository_torrent/sm_55100000-55199999.torrent': '3e471a7a1d4f4bbf922450c53c53043443769dce',
  683. 'http://libgen.rs/scimag/repository_torrent/sm_55200000-55299999.torrent': '7e78411eba350ad58ed87471ccc396c7c9614487',
  684. 'http://libgen.rs/scimag/repository_torrent/sm_55300000-55399999.torrent': 'b6087e20be6d1e9a5dc7f1eefd454a67cd08f517',
  685. 'http://libgen.rs/scimag/repository_torrent/sm_55400000-55499999.torrent': '6999c3b2c32d8fe90d2fb06315dc7db12577075a',
  686. 'http://libgen.rs/scimag/repository_torrent/sm_55500000-55599999.torrent': '29ea960ff986b4fb21ed84e14252e7f79737be63',
  687. 'http://libgen.rs/scimag/repository_torrent/sm_55600000-55699999.torrent': 'd7d37cc84a2cb0bdd5125d08dacf2a52c5ab60fe',
  688. 'http://libgen.rs/scimag/repository_torrent/sm_55700000-55799999.torrent': '2590861217d3ab0de8b3bece6021d01184ee93ea',
  689. 'http://libgen.rs/scimag/repository_torrent/sm_55800000-55899999.torrent': '3be90e6d69d5a7bdb98a0ce33b094c34d3ca0e1d',
  690. 'http://libgen.rs/scimag/repository_torrent/sm_55900000-55999999.torrent': '2afe5336ccf75d633fc7aac7c95342556745ad39',
  691. 'http://libgen.rs/scimag/repository_torrent/sm_56000000-56099999.torrent': '1fe13ec2b7451d52d4a5695abd91410dda7d8016',
  692. 'http://libgen.rs/scimag/repository_torrent/sm_56100000-56199999.torrent': '7abf274ec17047808a957003cfd724c67d765488',
  693. 'http://libgen.rs/scimag/repository_torrent/sm_56200000-56299999.torrent': '1b2b01fba4794ff4633efdeba374f9974b6bdc88',
  694. 'http://libgen.rs/scimag/repository_torrent/sm_56300000-56399999.torrent': '4cc9f7c1868692a7a83ea0d09a81ca183f010d6a',
  695. 'http://libgen.rs/scimag/repository_torrent/sm_56400000-56499999.torrent': '45727a73bb3d44a623a0fcbcb9ebc36d4ffb0ebf',
  696. 'http://libgen.rs/scimag/repository_torrent/sm_56500000-56599999.torrent': '395c4ad83a1b26a0e58a6e47c043b49ae0ff7581',
  697. 'http://libgen.rs/scimag/repository_torrent/sm_56600000-56699999.torrent': 'bb9afcfe3ce3e733faf9fbf52784608069aa38a8',
  698. 'http://libgen.rs/scimag/repository_torrent/sm_56700000-56799999.torrent': 'f4bcec797e6786d23cda80dbd9e1ece5dac95dd6',
  699. 'http://libgen.rs/scimag/repository_torrent/sm_56800000-56899999.torrent': '25e7ac80523a025078393b2528dad55b7ebfc082',
  700. 'http://libgen.rs/scimag/repository_torrent/sm_56900000-56999999.torrent': 'f97a87e57e6fbcd7bb9cab47375aa6110f9da405',
  701. 'http://libgen.rs/scimag/repository_torrent/sm_57000000-57099999.torrent': '18f8a9de62fc338ce3ec06e78b42a7c8e8895aea',
  702. 'http://libgen.rs/scimag/repository_torrent/sm_57100000-57199999.torrent': '4133062a94b9571c538610594509ccc37b8a0a0d',
  703. 'http://libgen.rs/scimag/repository_torrent/sm_57200000-57299999.torrent': 'aace18d10697f90518241580b7d2824781ea223d',
  704. 'http://libgen.rs/scimag/repository_torrent/sm_57300000-57399999.torrent': '51ff9a32e068749bee79f84cfa7821f86593f868',
  705. 'http://libgen.rs/scimag/repository_torrent/sm_57400000-57499999.torrent': '62d3fbba34bcf74b6e71e34998fccca04bb7d7f5',
  706. 'http://libgen.rs/scimag/repository_torrent/sm_57500000-57599999.torrent': 'cf4062720e6ab3d42c2f62f8dca61bfab8dc0c7a',
  707. 'http://libgen.rs/scimag/repository_torrent/sm_57600000-57699999.torrent': '300f911b21836cbc2be92b8bbebaeb1cbfc901d0',
  708. 'http://libgen.rs/scimag/repository_torrent/sm_57700000-57799999.torrent': '617b69ce871da6747d9e17e875f371b84e891d33',
  709. 'http://libgen.rs/scimag/repository_torrent/sm_57800000-57899999.torrent': 'd09240702046a3b6986f0e2532b63f5da45cce93',
  710. 'http://libgen.rs/scimag/repository_torrent/sm_57900000-57999999.torrent': '00ebaf364d999331cc462a2556c49ecf0d10f077',
  711. 'http://libgen.rs/scimag/repository_torrent/sm_58000000-58099999.torrent': 'cedca8ecfc49591248583a5d55e1be5ddc084649',
  712. 'http://libgen.rs/scimag/repository_torrent/sm_58100000-58199999.torrent': 'be1e52a9e12843fc74dffc177b318fa62d25fe30',
  713. 'http://libgen.rs/scimag/repository_torrent/sm_58200000-58299999.torrent': '8ff23878b34124d7e3d109f1de505c2bd89d4645',
  714. 'http://libgen.rs/scimag/repository_torrent/sm_58300000-58399999.torrent': '11078d73ad0788bdd1a915d77f25fd19543422d7',
  715. 'http://libgen.rs/scimag/repository_torrent/sm_58400000-58499999.torrent': '780060826fb79986111e298f7527d08b25d0088d',
  716. 'http://libgen.rs/scimag/repository_torrent/sm_58500000-58599999.torrent': '999a5f7a483b28f14a2a555d0631e13e77ddec90',
  717. 'http://libgen.rs/scimag/repository_torrent/sm_58600000-58699999.torrent': 'acdba65fa109041fa0a3911e5a90a4aa22317ba9',
  718. 'http://libgen.rs/scimag/repository_torrent/sm_58700000-58799999.torrent': 'fdec5fa9106e9c278d96a5335fcc92800a42599e',
  719. 'http://libgen.rs/scimag/repository_torrent/sm_58800000-58899999.torrent': 'cf0d6516dfc49ab26667616c12e8cddc03f9ed2f',
  720. 'http://libgen.rs/scimag/repository_torrent/sm_58900000-58999999.torrent': 'cdf7d781a783e535c66506027d250ce46f9ddf3b',
  721. 'http://libgen.rs/scimag/repository_torrent/sm_59000000-59099999.torrent': '6fb8edd784fc9e8d540eaf68ac6addb427499fc5',
  722. 'http://libgen.rs/scimag/repository_torrent/sm_59100000-59199999.torrent': '1a96f296cfec8a326a94b8d984f7378949ef7dfb',
  723. 'http://libgen.rs/scimag/repository_torrent/sm_59200000-59299999.torrent': 'c646c51ae73bcaa0a733f4ef28c31565a2df81bd',
  724. 'http://libgen.rs/scimag/repository_torrent/sm_59300000-59399999.torrent': '7f0623f22cb0dae72ed3d84c46abe29bad9cca7c',
  725. 'http://libgen.rs/scimag/repository_torrent/sm_59400000-59499999.torrent': 'b66536b539a4b672836058d41a53a7729c4bb3bd',
  726. 'http://libgen.rs/scimag/repository_torrent/sm_59500000-59599999.torrent': '733c81c75cdbcbcca74dee60b2c32ff0213d5ce0',
  727. 'http://libgen.rs/scimag/repository_torrent/sm_59600000-59699999.torrent': '1e3f7b043ae3da03f57373e8faea0be6ddb16b31',
  728. 'http://libgen.rs/scimag/repository_torrent/sm_59700000-59799999.torrent': '19d1ae85208b934603ac9fd4daf3046f9b226fa3',
  729. 'http://libgen.rs/scimag/repository_torrent/sm_59800000-59899999.torrent': '9733c155639bb564bec1e32dfd6d16dd97ba69c2',
  730. 'http://libgen.rs/scimag/repository_torrent/sm_59900000-59999999.torrent': 'e033f2d1bcc0e30a5bd4f30256ba1314ac63f023',
  731. 'http://libgen.rs/scimag/repository_torrent/sm_60000000-60099999.torrent': 'ec9baaa4478b72d6ce69bc3f7bd0a5ccfa07d986',
  732. 'http://libgen.rs/scimag/repository_torrent/sm_60100000-60199999.torrent': 'f659d249a5096c5329a022185e2a264b3e732db9',
  733. 'http://libgen.rs/scimag/repository_torrent/sm_60200000-60299999.torrent': 'b96c108a487b0b59169a0e54327c64eb931c9d5a',
  734. 'http://libgen.rs/scimag/repository_torrent/sm_60300000-60399999.torrent': 'bd50c421acfd6c98c7eb4c6ffef168ef7df395a0',
  735. 'http://libgen.rs/scimag/repository_torrent/sm_60400000-60499999.torrent': 'ea24eec23595b416dc92977bfaf462e4fdaccc51',
  736. 'http://libgen.rs/scimag/repository_torrent/sm_60500000-60599999.torrent': 'e67c7f511403e5509dd227e16dcb2e3ddeae9856',
  737. 'http://libgen.rs/scimag/repository_torrent/sm_60600000-60699999.torrent': '3ed5e8aaf161a6661c510db5eec0cf71b3d32a29',
  738. 'http://libgen.rs/scimag/repository_torrent/sm_60700000-60799999.torrent': 'ca1f0967582054e80f42c86bf01940163ddf3aaa',
  739. 'http://libgen.rs/scimag/repository_torrent/sm_60800000-60899999.torrent': '406be369180e8f2d189884bcb7bcdccd3c504e16',
  740. 'http://libgen.rs/scimag/repository_torrent/sm_60900000-60999999.torrent': 'ec82a2c83d5a785a741b0fdd88ed911a1527c0b8',
  741. 'http://libgen.rs/scimag/repository_torrent/sm_61000000-61099999.torrent': 'b3970c24911fcc0c5155e80e1580d4238f3f15df',
  742. 'http://libgen.rs/scimag/repository_torrent/sm_61100000-61199999.torrent': 'bffe869882b7299de7f4ca2f109e241d25784318',
  743. 'http://libgen.rs/scimag/repository_torrent/sm_61200000-61299999.torrent': '3ebb3eed129990c8b7725273e29d297ccf46db8d',
  744. 'http://libgen.rs/scimag/repository_torrent/sm_61300000-61399999.torrent': 'ccdb28360259e272988aba49163a126ddc254e50',
  745. 'http://libgen.rs/scimag/repository_torrent/sm_61400000-61499999.torrent': '066fc637d6a31a098ef094fd37cba71105ce9e08',
  746. 'http://libgen.rs/scimag/repository_torrent/sm_61500000-61599999.torrent': '6ac8500806fc054208266e9083960a3b09ecc709',
  747. 'http://libgen.rs/scimag/repository_torrent/sm_61600000-61699999.torrent': '1056c9bc693ce018c7deb26f2c3bf28a919bd2f7',
  748. 'http://libgen.rs/scimag/repository_torrent/sm_61700000-61799999.torrent': '29e44ef9105fbbdb83d4b5af186a60ecb2585d74',
  749. 'http://libgen.rs/scimag/repository_torrent/sm_61800000-61899999.torrent': '477827c0f71f86b57df1094e7e8d2c13b1121bc4',
  750. 'http://libgen.rs/scimag/repository_torrent/sm_61900000-61999999.torrent': 'd6a225ec83761c99d58b2cc2b1becd9133687938',
  751. 'http://libgen.rs/scimag/repository_torrent/sm_62000000-62099999.torrent': '36ca3c4c6dfeb26c9349c20709f7108524f5cb3a',
  752. 'http://libgen.rs/scimag/repository_torrent/sm_62100000-62199999.torrent': '98c6db930dccbfa3a604b6c07864d23ef33820af',
  753. 'http://libgen.rs/scimag/repository_torrent/sm_62200000-62299999.torrent': '4da31e80648638ed882107ec00b81cd4f5614392',
  754. 'http://libgen.rs/scimag/repository_torrent/sm_62300000-62399999.torrent': '84e7e8514aaca789b6a7a1c22bab3d7ac5c0e1b3',
  755. 'http://libgen.rs/scimag/repository_torrent/sm_62400000-62499999.torrent': '9ea07a2635fc9970bef5acfb20463d547b676f16',
  756. 'http://libgen.rs/scimag/repository_torrent/sm_62500000-62599999.torrent': 'af540b223c29b4c18adaee1b1c720da68da7eb0c',
  757. 'http://libgen.rs/scimag/repository_torrent/sm_62600000-62699999.torrent': 'ce500f968bbe655477bff67d481f72b1f05c32fa',
  758. 'http://libgen.rs/scimag/repository_torrent/sm_62700000-62799999.torrent': '7fd6affd34657ff4a01179c7e111deb9e7bbbfbb',
  759. 'http://libgen.rs/scimag/repository_torrent/sm_62800000-62899999.torrent': 'efe5cebe57419867c4417fb0e0334f1658e9570d',
  760. 'http://libgen.rs/scimag/repository_torrent/sm_62900000-62999999.torrent': '85d942b31d2b4a5df1516a63ddbb1fb1768cc923',
  761. 'http://libgen.rs/scimag/repository_torrent/sm_63000000-63099999.torrent': 'ea9e42452265dbccd686346f80a9eac3b8f1ebfd',
  762. 'http://libgen.rs/scimag/repository_torrent/sm_63100000-63199999.torrent': '2c942253192f1f449ad50624dfefa170fd3ffa2f',
  763. 'http://libgen.rs/scimag/repository_torrent/sm_63200000-63299999.torrent': '4f0b5ceef3934d99895fa8a341609da1d842137e',
  764. 'http://libgen.rs/scimag/repository_torrent/sm_63300000-63399999.torrent': '6fadd70ff5963de79f25d53ad8abb12c7dba692f',
  765. 'http://libgen.rs/scimag/repository_torrent/sm_63400000-63499999.torrent': '1538d0f45f87df247dbb08b9fc5e8b8ad30181e8',
  766. 'http://libgen.rs/scimag/repository_torrent/sm_63500000-63599999.torrent': '126f2213c303576e338b3546db8d642f198e2a9e',
  767. 'http://libgen.rs/scimag/repository_torrent/sm_63600000-63699999.torrent': 'b8d6828b896853b0e3badb7cd68016c64c4c8989',
  768. 'http://libgen.rs/scimag/repository_torrent/sm_63700000-63799999.torrent': 'aa6bfa5cfa6b420909561a2f6af7237ed265c487',
  769. 'http://libgen.rs/scimag/repository_torrent/sm_63800000-63899999.torrent': 'f41371706f13cd811e6a4075efaa908d8f36c8b6',
  770. 'http://libgen.rs/scimag/repository_torrent/sm_63900000-63999999.torrent': '328cfec70f0be60c56c868fdffe1bf5fe5b1efae',
  771. 'http://libgen.rs/scimag/repository_torrent/sm_64000000-64099999.torrent': 'b9b2fc3b3ace11b5cd7761231836c1b8e5ad2575',
  772. 'http://libgen.rs/scimag/repository_torrent/sm_64100000-64199999.torrent': 'aaf781ebde036efc8a36af754f4c20181b172188',
  773. 'http://libgen.rs/scimag/repository_torrent/sm_64200000-64299999.torrent': '3b795ff7a3c1a73fabbe4d9df749ae2cc163bc19',
  774. 'http://libgen.rs/scimag/repository_torrent/sm_64300000-64399999.torrent': 'f9766c54169b9667dd1462ff8fea63addab28d48',
  775. 'http://libgen.rs/scimag/repository_torrent/sm_64400000-64499999.torrent': '520016d4a60aa109d154fed4b282aca0b2a04352',
  776. 'http://libgen.rs/scimag/repository_torrent/sm_64500000-64599999.torrent': 'e82d7b3acb15409026c6c4d6627705a29b8f7109',
  777. 'http://libgen.rs/scimag/repository_torrent/sm_64600000-64699999.torrent': 'c3056e2b7c2307fda3be4cd86725a093b342fbb2',
  778. 'http://libgen.rs/scimag/repository_torrent/sm_64700000-64799999.torrent': 'ac84c0a160df66add96be6c8d1afb1b995a6cb97',
  779. 'http://libgen.rs/scimag/repository_torrent/sm_64800000-64899999.torrent': '947892071a97cf33db8f7cfafbca3505d742ee36',
  780. 'http://libgen.rs/scimag/repository_torrent/sm_64900000-64999999.torrent': '95dd415b3666db9d162af583713991ca4d36a1aa',
  781. 'http://libgen.rs/scimag/repository_torrent/sm_65000000-65099999.torrent': '0c5f8e7262cd38c94936efb1046e982289c6353a',
  782. 'http://libgen.rs/scimag/repository_torrent/sm_65100000-65199999.torrent': '0f8a38348d13b1124098ffac7ba85011504d9dcc',
  783. 'http://libgen.rs/scimag/repository_torrent/sm_65200000-65299999.torrent': '80a7a5eac9176bbfba999669ab5a7fca98ca5067',
  784. 'http://libgen.rs/scimag/repository_torrent/sm_65300000-65399999.torrent': 'd251f44096d275c0f69e81cf709eaa9c67fadb1a',
  785. 'http://libgen.rs/scimag/repository_torrent/sm_65400000-65499999.torrent': '2908a0679bfa180383e5e7b3e1273fe3d2fc9857',
  786. 'http://libgen.rs/scimag/repository_torrent/sm_65500000-65599999.torrent': '1cb11b1804c28b148be156e8ac68d2bf1bafcc9b',
  787. 'http://libgen.rs/scimag/repository_torrent/sm_65600000-65699999.torrent': '11082e4666242318c1984585bb45070b13852ddb',
  788. 'http://libgen.rs/scimag/repository_torrent/sm_65700000-65799999.torrent': '7ce526bf94b830cdceb79dbc86dd32153cdb8a00',
  789. 'http://libgen.rs/scimag/repository_torrent/sm_65800000-65899999.torrent': '3612ad84cd4285e82236877e6740fbf17f716c9f',
  790. 'http://libgen.rs/scimag/repository_torrent/sm_65900000-65999999.torrent': '9f4450f2bc1b278ea894e2f197bee8870ad0e6f7',
  791. 'http://libgen.rs/scimag/repository_torrent/sm_66000000-66099999.torrent': '25afc2f6cf601c5b3f8dbe30bc690925109a30c2',
  792. 'http://libgen.rs/scimag/repository_torrent/sm_66100000-66199999.torrent': '313c0e70202bd3cceadac3af6173b45bc5ed0f48',
  793. 'http://libgen.rs/scimag/repository_torrent/sm_66200000-66299999.torrent': '5ed6225c12498daf761f50b9d1c618212bdb6704',
  794. 'http://libgen.rs/scimag/repository_torrent/sm_66300000-66399999.torrent': 'b003d1a2ce34d846b7ba4503a42773ecb0479fbf',
  795. 'http://libgen.rs/scimag/repository_torrent/sm_66400000-66499999.torrent': 'aa731e2a569ab175a35875cad4a54fa253d04f00',
  796. 'http://libgen.rs/scimag/repository_torrent/sm_66500000-66599999.torrent': 'a498100fcd37fe72141b58812e97ca8955c2376e',
  797. 'http://libgen.rs/scimag/repository_torrent/sm_66600000-66699999.torrent': '2a4236bc141e5d4db8de324d434a70bc1887d96a',
  798. 'http://libgen.rs/scimag/repository_torrent/sm_66700000-66799999.torrent': '13eff9f483e35467d6a199daaba2bc53658d696f',
  799. 'http://libgen.rs/scimag/repository_torrent/sm_66800000-66899999.torrent': '7f9e24001b8a86e313b08f6b2018d471a95714c3',
  800. 'http://libgen.rs/scimag/repository_torrent/sm_66900000-66999999.torrent': '29baac76d88d304aa0627de3673771d8cc64b606',
  801. 'http://libgen.rs/scimag/repository_torrent/sm_67000000-67099999.torrent': '02aaa8739c72d55ef110972671d5c53998ee59ba',
  802. 'http://libgen.rs/scimag/repository_torrent/sm_67100000-67199999.torrent': '8688c94d33ddcd0e834ab9b46574c979291bc769',
  803. 'http://libgen.rs/scimag/repository_torrent/sm_67200000-67299999.torrent': 'd4a5f6fd9b9d520fbc3ffb25425b3a60d55d1b08',
  804. 'http://libgen.rs/scimag/repository_torrent/sm_67300000-67399999.torrent': '5f4f4db5ad684173e19ad62be756768440a9a46b',
  805. 'http://libgen.rs/scimag/repository_torrent/sm_67400000-67499999.torrent': '36364d842f3641370f9a03f64cdee116769a7e0b',
  806. 'http://libgen.rs/scimag/repository_torrent/sm_67500000-67599999.torrent': 'c9b6315386573e65958cb03dd68dd1b7f4228bef',
  807. 'http://libgen.rs/scimag/repository_torrent/sm_67600000-67699999.torrent': '29e7cf257db967f8ea93f9e19eb82f1b680deac3',
  808. 'http://libgen.rs/scimag/repository_torrent/sm_67700000-67799999.torrent': '1947b05d8cdecb9ddbfd9b2b86d63915f7a7336c',
  809. 'http://libgen.rs/scimag/repository_torrent/sm_67800000-67899999.torrent': '5028cb3640e2da43b01901c7f31448a1a76c81ba',
  810. 'http://libgen.rs/scimag/repository_torrent/sm_67900000-67999999.torrent': 'd1ff14eedbe54a9aea7e82a1d6568fd55d3d3a30',
  811. 'http://libgen.rs/scimag/repository_torrent/sm_68000000-68099999.torrent': '3c3ddae137bcd970e2de5e0fc49777d0b408bfd2',
  812. 'http://libgen.rs/scimag/repository_torrent/sm_68100000-68199999.torrent': '9a8315ee5d5528ea54b93abd783f77f060fadc3e',
  813. 'http://libgen.rs/scimag/repository_torrent/sm_68200000-68299999.torrent': 'bf33f968ee42c377a73f21e81423863d672dee53',
  814. 'http://libgen.rs/scimag/repository_torrent/sm_68300000-68399999.torrent': 'ef12ac9171fb81edbf601aebd28de94cac744492',
  815. 'http://libgen.rs/scimag/repository_torrent/sm_68400000-68499999.torrent': 'bd6ec5cc43824ccfd0ac96fdbbc27e5754236b08',
  816. 'http://libgen.rs/scimag/repository_torrent/sm_68500000-68599999.torrent': 'a33ab8f97cb5573bfaccd02b13477f8b210ccc4f',
  817. 'http://libgen.rs/scimag/repository_torrent/sm_68600000-68699999.torrent': '746d05f51042a54d456e0ff0dd32a1eb13501097',
  818. 'http://libgen.rs/scimag/repository_torrent/sm_68700000-68799999.torrent': 'cf331913cdcb1ab581be676b72690e2839e34d06',
  819. 'http://libgen.rs/scimag/repository_torrent/sm_68800000-68899999.torrent': '40447d5324c3209ef48e233596a0c39258befece',
  820. 'http://libgen.rs/scimag/repository_torrent/sm_68900000-68999999.torrent': '21ebb263a986980cf04c692a1b9393efa203dcc2',
  821. 'http://libgen.rs/scimag/repository_torrent/sm_69000000-69099999.torrent': '3cedf49f1381ac02887f1b52bec242cce09c6c4e',
  822. 'http://libgen.rs/scimag/repository_torrent/sm_69100000-69199999.torrent': '1aa1486069d7368685a713f781fe8267a7bc1cde',
  823. 'http://libgen.rs/scimag/repository_torrent/sm_69200000-69299999.torrent': 'a76961020b7ff731fb188ab24b3ad877a47f9d2e',
  824. 'http://libgen.rs/scimag/repository_torrent/sm_69300000-69399999.torrent': '71b7ec20088e419ffef8f5e406a9ac57915f0ed7',
  825. 'http://libgen.rs/scimag/repository_torrent/sm_69400000-69499999.torrent': '85c1b7e36fe47819b90d70a2e97ec517b7cf52ac',
  826. 'http://libgen.rs/scimag/repository_torrent/sm_69500000-69599999.torrent': '1533e7e788fccfa725f1cc02a7f6498e02cc9b3c',
  827. 'http://libgen.rs/scimag/repository_torrent/sm_69600000-69699999.torrent': 'a1cb457c5154530ae410c3e8e7742dd7b3879d03',
  828. 'http://libgen.rs/scimag/repository_torrent/sm_69700000-69799999.torrent': 'db203dc45c0ee74fc4eb2798fce7e7ecbfb05dec',
  829. 'http://libgen.rs/scimag/repository_torrent/sm_69800000-69899999.torrent': '9e9894af8d4f69c020e2ce7c1eece620e3b5c393',
  830. 'http://libgen.rs/scimag/repository_torrent/sm_69900000-69999999.torrent': '71e0b27b51a68f0a5ce072e93144b07b477eac0f',
  831. 'http://libgen.rs/scimag/repository_torrent/sm_70000000-70099999.torrent': '2fe8e9d2e9945eaf5aadd1c715dfbd04b02e9d0c',
  832. 'http://libgen.rs/scimag/repository_torrent/sm_70100000-70199999.torrent': 'd271b81c8ae5b5441a2127663eada0b46c40aaed',
  833. 'http://libgen.rs/scimag/repository_torrent/sm_70200000-70299999.torrent': 'd157f8c822d46d1aecd02c8a0127b408e8a8027d',
  834. 'http://libgen.rs/scimag/repository_torrent/sm_70300000-70399999.torrent': 'a308231115668a9a8e4afa9dc56851c3304346cb',
  835. 'http://libgen.rs/scimag/repository_torrent/sm_70400000-70499999.torrent': '696656bcb6e967d67075969aa3210ca4c9425c99',
  836. 'http://libgen.rs/scimag/repository_torrent/sm_70500000-70599999.torrent': 'efed72caadddcd8b28d38d3699373391bfe49e7b',
  837. 'http://libgen.rs/scimag/repository_torrent/sm_70600000-70699999.torrent': '3e61f835706e201b00934774509cac31536d4a65',
  838. 'http://libgen.rs/scimag/repository_torrent/sm_70700000-70799999.torrent': '2ffb9746935f35ff4c072fd9c7441c97330e1468',
  839. 'http://libgen.rs/scimag/repository_torrent/sm_70800000-70899999.torrent': 'd307bb79fd36fd1280e77a5dccd37d679048cc99',
  840. 'http://libgen.rs/scimag/repository_torrent/sm_70900000-70999999.torrent': '45f6877ba4d2ce4e7fc16dfab7ef09c1fa21d81f',
  841. 'http://libgen.rs/scimag/repository_torrent/sm_71000000-71099999.torrent': 'e68e3390e37a66ef43ea50e7daa90d2083c2a08e',
  842. 'http://libgen.rs/scimag/repository_torrent/sm_71100000-71199999.torrent': 'a7b3329646aa810e974cc8a9f664caa5fe854078',
  843. 'http://libgen.rs/scimag/repository_torrent/sm_71200000-71299999.torrent': 'f4e33f89afe3525a8fa8b428265419124fe7d2b8',
  844. 'http://libgen.rs/scimag/repository_torrent/sm_71300000-71399999.torrent': '8f673cd622ad15ddc0a2ac9092c045e03666435b',
  845. 'http://libgen.rs/scimag/repository_torrent/sm_71400000-71499999.torrent': '30e67105a59868d349ebbe91cb70c2abec3f64ac',
  846. 'http://libgen.rs/scimag/repository_torrent/sm_71500000-71599999.torrent': '7f9dc05b9bcfd0f768826d9acf8d7035f00dea62',
  847. 'http://libgen.rs/scimag/repository_torrent/sm_71600000-71699999.torrent': 'a85205ec78e1fb58ed5cb44fec07ee5bfefa5080',
  848. 'http://libgen.rs/scimag/repository_torrent/sm_71700000-71799999.torrent': '9853982b1f9d3b7b403966810b270a5e7e38ff9a',
  849. 'http://libgen.rs/scimag/repository_torrent/sm_71800000-71899999.torrent': 'ba8f6a73667898eb304a249ef61275bb539fa332',
  850. 'http://libgen.rs/scimag/repository_torrent/sm_71900000-71999999.torrent': '9e027e4a157fc28c3dec326be79864ce0be80e40',
  851. 'http://libgen.rs/scimag/repository_torrent/sm_72000000-72099999.torrent': '92f7937ef0aa65c47d0c41a25a8fc5fb2396ee61',
  852. 'http://libgen.rs/scimag/repository_torrent/sm_72100000-72199999.torrent': 'c237f396c5c4eb399f74f256a2c1ccf7eb5a35ff',
  853. 'http://libgen.rs/scimag/repository_torrent/sm_72200000-72299999.torrent': 'a70884ed64ef3012ee134ea716c9f232018f523b',
  854. 'http://libgen.rs/scimag/repository_torrent/sm_72300000-72399999.torrent': 'b99493f1d9117af6ce56ef48b09ba0b8fd883148',
  855. 'http://libgen.rs/scimag/repository_torrent/sm_72400000-72499999.torrent': 'fc6fa3c7d6c2707e42cedf9b6158e7c2ad46a0f8',
  856. 'http://libgen.rs/scimag/repository_torrent/sm_72500000-72599999.torrent': 'fcafbe56606026dcc079e4d4d715da35a5759d92',
  857. 'http://libgen.rs/scimag/repository_torrent/sm_72600000-72699999.torrent': '46665b7ee253544bce203c4b4bf1fa4244c19fd1',
  858. 'http://libgen.rs/scimag/repository_torrent/sm_72700000-72799999.torrent': '210d1edbe56f1457a60a5c61f4f75048d63737c0',
  859. 'http://libgen.rs/scimag/repository_torrent/sm_72800000-72899999.torrent': 'ec36120240e703d1a05dd72d617ea8b5f27c2e49',
  860. 'http://libgen.rs/scimag/repository_torrent/sm_72900000-72999999.torrent': '76d6367bbdbd53fc96573ca274b03c825140b5ab',
  861. 'http://libgen.rs/scimag/repository_torrent/sm_73000000-73099999.torrent': '3d189e165d8b24380a9cf4dfab085abe3d084556',
  862. 'http://libgen.rs/scimag/repository_torrent/sm_73100000-73199999.torrent': 'a706b0275d9fd7815a7e5900c9b14fb8a0d07d15',
  863. 'http://libgen.rs/scimag/repository_torrent/sm_73200000-73299999.torrent': 'b18abf06cd958ac440acf12f912ccd87285c67e7',
  864. 'http://libgen.rs/scimag/repository_torrent/sm_73300000-73399999.torrent': '047d44bc09e9a655c921f8b33d224877ac6cf8c0',
  865. 'http://libgen.rs/scimag/repository_torrent/sm_73400000-73499999.torrent': 'ad1f11188a608ea12457ff5f178f454a04157768',
  866. 'http://libgen.rs/scimag/repository_torrent/sm_73500000-73599999.torrent': 'b2adc540e7136487291b2b8ff1b4d549f2925a00',
  867. 'http://libgen.rs/scimag/repository_torrent/sm_73600000-73699999.torrent': '89369732c80807b8c116025b6eff61be3038fb96',
  868. 'http://libgen.rs/scimag/repository_torrent/sm_73700000-73799999.torrent': '5478f11aa9d971f3b7844af63303a86aeb6d50da',
  869. 'http://libgen.rs/scimag/repository_torrent/sm_73800000-73899999.torrent': '285d87e042bbee56cf33b02fb4ab1b11fa705478',
  870. 'http://libgen.rs/scimag/repository_torrent/sm_73900000-73999999.torrent': 'ef60e7c0fa756640379129b4d771a9fed0857f1c',
  871. 'http://libgen.rs/scimag/repository_torrent/sm_74000000-74099999.torrent': 'e4be4d7f74edbc350fdb469c1365eb3ca0d47795',
  872. 'http://libgen.rs/scimag/repository_torrent/sm_74100000-74199999.torrent': 'd3bbcacdb2069626df8da4c98883573b06ad28cb',
  873. 'http://libgen.rs/scimag/repository_torrent/sm_74200000-74299999.torrent': 'c50f39034575055625b40eab27fb79c0a2f82c05',
  874. 'http://libgen.rs/scimag/repository_torrent/sm_74300000-74399999.torrent': 'd8f00c6416f81e305532fca6902ec28664d0c2b1',
  875. 'http://libgen.rs/scimag/repository_torrent/sm_74400000-74499999.torrent': '2c9889961d2b26bffd4fe7c8da7ce904c0830d3e',
  876. 'http://libgen.rs/scimag/repository_torrent/sm_74500000-74599999.torrent': 'e1c80db965cb7f989524b21b4ebb2d2779890301',
  877. 'http://libgen.rs/scimag/repository_torrent/sm_74600000-74699999.torrent': '2eb3fd260924be543f2aa92bd97dce4c923ba822',
  878. 'http://libgen.rs/scimag/repository_torrent/sm_74700000-74799999.torrent': '37ba9555572f837cbc65e8a9c8aa93b2e49044f2',
  879. 'http://libgen.rs/scimag/repository_torrent/sm_74800000-74899999.torrent': 'bac50139572a1329b6ad7bf4846705ac15c06a2b',
  880. 'http://libgen.rs/scimag/repository_torrent/sm_74900000-74999999.torrent': '5f3e4d902a7eb5bbefa742b6262c0fc54d7f90f9',
  881. 'http://libgen.rs/scimag/repository_torrent/sm_75000000-75099999.torrent': 'fd72eed4f903c9c19f8aec921ecbb0c6d73ed948',
  882. 'http://libgen.rs/scimag/repository_torrent/sm_75100000-75199999.torrent': '54781fefdfc2a3f01c424e92331fbeb1768b6195',
  883. 'http://libgen.rs/scimag/repository_torrent/sm_75200000-75299999.torrent': '44175b8531df21a419064bfb4c2152f69a02724b',
  884. 'http://libgen.rs/scimag/repository_torrent/sm_75300000-75399999.torrent': 'baa41c4b48f486af9b5622a501fc36f486b09f45',
  885. 'http://libgen.rs/scimag/repository_torrent/sm_75400000-75499999.torrent': '40277496bd66a2de5635187a3af03c6a984a9106',
  886. 'http://libgen.rs/scimag/repository_torrent/sm_75500000-75599999.torrent': 'acf3916b2f38c0890975a6a524c01acd17fb5a52',
  887. 'http://libgen.rs/scimag/repository_torrent/sm_75600000-75699999.torrent': '2a3a8da512039fc5e0c85d71fb3f122db38fdb02',
  888. 'http://libgen.rs/scimag/repository_torrent/sm_75700000-75799999.torrent': '5412214b2f940a6baed9c9176ca97208d72f5fde',
  889. 'http://libgen.rs/scimag/repository_torrent/sm_75800000-75899999.torrent': 'bef6896dc94a9d0a14082ca384b37eb80f4554ea',
  890. 'http://libgen.rs/scimag/repository_torrent/sm_75900000-75999999.torrent': 'db3dd45bd3b38aeddfabe7266563f2784c125064',
  891. 'http://libgen.rs/scimag/repository_torrent/sm_76000000-76099999.torrent': 'a7cde234d73c5eb5528da0740221bcb795684d25',
  892. 'http://libgen.rs/scimag/repository_torrent/sm_76100000-76199999.torrent': '165e60c5f58fb05878e1ab26589abe7b2fd0d61e',
  893. 'http://libgen.rs/scimag/repository_torrent/sm_76200000-76299999.torrent': 'fc489ef76b97381a6a6901e98d5802f11f7e010b',
  894. 'http://libgen.rs/scimag/repository_torrent/sm_76300000-76399999.torrent': '69f78478e5cf335e5529f3f47afef24e5ee6f240',
  895. 'http://libgen.rs/scimag/repository_torrent/sm_76400000-76499999.torrent': 'ee3361d9682e7a40b3b38f589240e4c099564f07',
  896. 'http://libgen.rs/scimag/repository_torrent/sm_76500000-76599999.torrent': '6eaf4638a4d760d6ac56b4f2faa22e394473eded',
  897. 'http://libgen.rs/scimag/repository_torrent/sm_76600000-76699999.torrent': 'f281ee86595b3e5c23ca581e51caddac9680e35b',
  898. 'http://libgen.rs/scimag/repository_torrent/sm_76700000-76799999.torrent': '7d6bbd5671ff9095ad2ff86d4eb290e6e2c77744',
  899. 'http://libgen.rs/scimag/repository_torrent/sm_76800000-76899999.torrent': '1e8c7dabe0f25ce164be37380200a0b073823500',
  900. 'http://libgen.rs/scimag/repository_torrent/sm_76900000-76999999.torrent': 'f302e635d409faaf2c9d17037476b1349a8e4d32',
  901. 'http://libgen.rs/scimag/repository_torrent/sm_77000000-77099999.torrent': '7d440308be463a653f36696d64c7c40f05486f22',
  902. 'http://libgen.rs/scimag/repository_torrent/sm_77100000-77199999.torrent': '63296ca11df160ec197e24424582749917e17eb8',
  903. 'http://libgen.rs/scimag/repository_torrent/sm_77200000-77299999.torrent': 'abcb118215c489955d4432d0f33ffda45558c00e',
  904. 'http://libgen.rs/scimag/repository_torrent/sm_77300000-77399999.torrent': '003a17b657275b14522c4b94aeb98db41769405a',
  905. 'http://libgen.rs/scimag/repository_torrent/sm_77400000-77499999.torrent': '48fc28071dc229f9d8100ad94fd3b03543040523',
  906. 'http://libgen.rs/scimag/repository_torrent/sm_77500000-77599999.torrent': '15092767a4871b2de17e98f2005ab1161f0224de',
  907. 'http://libgen.rs/scimag/repository_torrent/sm_77600000-77699999.torrent': 'd830d0ed9350ac9a27f1201528aba8ddb9a9a976',
  908. 'http://libgen.rs/scimag/repository_torrent/sm_77700000-77799999.torrent': 'f7a319a2499d42420641fb62a23688cd1b9b0568',
  909. 'http://libgen.rs/scimag/repository_torrent/sm_77800000-77899999.torrent': 'ea3f644d6c9692acbfbfad674a79c3e61db358b9',
  910. 'http://libgen.rs/scimag/repository_torrent/sm_77900000-77999999.torrent': '920ee40ec265273560a0b8d2ce594095edbfdcf2',
  911. 'http://libgen.rs/scimag/repository_torrent/sm_78000000-78099999.torrent': 'a1151bd8eacfa5605e9fca4f2b35cd05b2da5c33',
  912. 'http://libgen.rs/scimag/repository_torrent/sm_78100000-78199999.torrent': '3c6283528fbceb91e5f62df2d29ea4d308b18747',
  913. 'http://libgen.rs/scimag/repository_torrent/sm_78200000-78299999.torrent': '7f8e647f2c01c0252fca904bbb64442b6ba173c2',
  914. 'http://libgen.rs/scimag/repository_torrent/sm_78300000-78399999.torrent': '116aba4bac39c6d375e4b5a03b318026108bbb9e',
  915. 'http://libgen.rs/scimag/repository_torrent/sm_78400000-78499999.torrent': '37d0561debfcd205b92085151837ac010c2b9ba0',
  916. 'http://libgen.rs/scimag/repository_torrent/sm_78500000-78599999.torrent': '924ac01460d1596242b601b41c60915b1a3b6adb',
  917. 'http://libgen.rs/scimag/repository_torrent/sm_78600000-78699999.torrent': 'd849630c17c1072c789b4f2308ba4cb53ea58379',
  918. 'http://libgen.rs/scimag/repository_torrent/sm_78700000-78799999.torrent': '324fbcfdef1763986a25fbf409e8301fbd03c0e4',
  919. 'http://libgen.rs/scimag/repository_torrent/sm_78800000-78899999.torrent': 'a308312137bf2e997307de625403d995b7ee6390',
  920. 'http://libgen.rs/scimag/repository_torrent/sm_78900000-78999999.torrent': 'fcb15af2d56c7b982dfb74575b561c2bab2c4010',
  921. 'http://libgen.rs/scimag/repository_torrent/sm_79000000-79099999.torrent': '62b53a7e7a8e611e1c84abd2d46f1ccb69582e27',
  922. 'http://libgen.rs/scimag/repository_torrent/sm_79100000-79199999.torrent': '8630693e580655abb0ef2c39d67bc3b08b7c8eed',
  923. 'http://libgen.rs/scimag/repository_torrent/sm_79200000-79299999.torrent': '78911953cc9d2979bde6c89be27ae785069d9bda',
  924. 'http://libgen.rs/scimag/repository_torrent/sm_79300000-79399999.torrent': '72fd4e97b26295cb6904ce0b6099191fdbe9ba83',
  925. 'http://libgen.rs/scimag/repository_torrent/sm_79400000-79499999.torrent': 'a9446d0266956a30dbe9787b778b05a929af220c',
  926. 'http://libgen.rs/scimag/repository_torrent/sm_79500000-79599999.torrent': '92c44c9f590287f7682a2c4cc23567cdac9d161c',
  927. 'http://libgen.rs/scimag/repository_torrent/sm_79600000-79699999.torrent': '89f8a2819bf56b7a3e8c686ab54eb025ff4eb92b',
  928. 'http://libgen.rs/scimag/repository_torrent/sm_79700000-79799999.torrent': '36207b7fe2774e5c6f52ca1526a28d1c4d4501d6',
  929. 'http://libgen.rs/scimag/repository_torrent/sm_79800000-79899999.torrent': 'dcf246e4c5ee3007ec26f0735272212b76e9c93f',
  930. 'http://libgen.rs/scimag/repository_torrent/sm_79900000-79999999.torrent': 'f8f9769ce38a8b7ae60a8f84e0cd3726c13cd788',
  931. 'http://libgen.rs/scimag/repository_torrent/sm_80000000-80099999.torrent': '60da4f9160f19d43f6a007ed9dc3629b63c5d2f9',
  932. 'http://libgen.rs/scimag/repository_torrent/sm_80100000-80199999.torrent': 'ffff679ae4adb23282a358695f2e605e47af9526',
  933. 'http://libgen.rs/scimag/repository_torrent/sm_80200000-80299999.torrent': 'e55cd5658f52a25f0086f97226337f72366b2b5c',
  934. 'http://libgen.rs/scimag/repository_torrent/sm_80300000-80399999.torrent': '18925dc37777f2170ebdd032716dcce9f57b6631',
  935. 'http://libgen.rs/scimag/repository_torrent/sm_80400000-80499999.torrent': '80b187f2dd426716dc9d60ffd29658f2dd88ae22',
  936. 'http://libgen.rs/scimag/repository_torrent/sm_80500000-80599999.torrent': '474283f44bd21ffbbb97a1d92d095c172e8bfdf9',
  937. 'http://libgen.rs/scimag/repository_torrent/sm_80600000-80699999.torrent': '9d63ee8f1ba733d073c240ffeb451979ff48f8f5',
  938. 'http://libgen.rs/scimag/repository_torrent/sm_80700000-80799999.torrent': '56f8551397d25c8c2dbc06fffbd6516c750c362e',
  939. 'http://libgen.rs/scimag/repository_torrent/sm_80800000-80899999.torrent': '5c6f0093c357e7fbe06d16383aeb6f35680f85cd',
  940. 'http://libgen.rs/scimag/repository_torrent/sm_80900000-80999999.torrent': 'aee304320eba74bf6ccfe4cac964f520e5b956d0',
  941. 'http://libgen.rs/scimag/repository_torrent/sm_81000000-81099999.torrent': 'cf286f4df7dd668680d6b86cfbbca638591cbd97',
  942. 'http://libgen.rs/scimag/repository_torrent/sm_81100000-81199999.torrent': '66acf54e162ae538157d1634271f009c6d9c6981',
  943. 'http://libgen.rs/scimag/repository_torrent/sm_81200000-81299999.torrent': 'e61c1dca32ebc89a6f61bc67379ecdddc20828eb',
  944. 'http://libgen.rs/scimag/repository_torrent/sm_81300000-81399999.torrent': 'e180f813de7e056108c02a1dbdc8c68681fbc1cc',
  945. 'http://libgen.rs/scimag/repository_torrent/sm_81400000-81499999.torrent': '4427e17caad1f987389bc04cd4f895d90c04affd',
  946. 'http://libgen.rs/scimag/repository_torrent/sm_81500000-81599999.torrent': '9bc918f467552fd12c4a4b0f04dd77effe98281c',
  947. 'http://libgen.rs/scimag/repository_torrent/sm_81600000-81699999.torrent': '992485a4e219e743678381edb87d570f79d4f8e5',
  948. 'http://libgen.rs/scimag/repository_torrent/sm_81700000-81799999.torrent': '4b5ba4fd41d2625270c5c8b40e5e32fcb971e324',
  949. 'http://libgen.rs/scimag/repository_torrent/sm_81800000-81899999.torrent': '59c8ab65230bd3b0e64472840e0e78374b1b7192',
  950. 'http://libgen.rs/scimag/repository_torrent/sm_81900000-81999999.torrent': 'a5acab4b7b99a93362d78ad93f2004eb2b2ffa68',
  951. 'http://libgen.rs/scimag/repository_torrent/sm_82000000-82099999.torrent': '1367635e85aada328fe8e95d97886a69e14a7c3e',
  952. 'http://libgen.rs/scimag/repository_torrent/sm_82100000-82199999.torrent': '6ed99a19c4801620c0ceb1e16519298b1fc090ff',
  953. 'http://libgen.rs/scimag/repository_torrent/sm_82200000-82299999.torrent': '5992acba420bb56e8a03630c5378c25cb6f36aca',
  954. 'http://libgen.rs/scimag/repository_torrent/sm_82300000-82399999.torrent': 'd0e666b49fd56cbe6a81d4a4c241344e6234a20a',
  955. 'http://libgen.rs/scimag/repository_torrent/sm_82400000-82499999.torrent': 'dbf153733a43562b3a6e50a4008d5c8f2f340c4e',
  956. 'http://libgen.rs/scimag/repository_torrent/sm_82500000-82599999.torrent': '52c84978cf2c3bc24c4790e181596b3c762371ed',
  957. 'http://libgen.rs/scimag/repository_torrent/sm_82600000-82699999.torrent': '3eae732c9ce6ae81500726aeed4c686395b4dd0e',
  958. 'http://libgen.rs/scimag/repository_torrent/sm_82700000-82799999.torrent': 'f9fd579ed196c107f1c85e14cea09f167e064fed',
  959. 'http://libgen.rs/scimag/repository_torrent/sm_82800000-82899999.torrent': '092b9b7533ea1705cef8049fa854eeb8de5d89a9',
  960. 'http://libgen.rs/scimag/repository_torrent/sm_82900000-82999999.torrent': '1bebcd8d0fb2d82b5f4a27bc42151773282527ab',
  961. 'http://libgen.rs/scimag/repository_torrent/sm_83000000-83099999.torrent': 'e1f15cd86f5e93b7074db033ccc508c3c1772a78',
  962. 'http://libgen.rs/scimag/repository_torrent/sm_83100000-83199999.torrent': '17f12b3573a574e19972a81af0c92a3ff15fa399',
  963. 'http://libgen.rs/scimag/repository_torrent/sm_83200000-83299999.torrent': 'f7053d7f06f7ef8f1eccf43de3b147aec1819a7d',
  964. 'http://libgen.rs/scimag/repository_torrent/sm_83300000-83399999.torrent': '883e46ae59fdb054fefa2226431ebd8c67dad850',
  965. 'http://libgen.rs/scimag/repository_torrent/sm_83400000-83499999.torrent': '6d1b427ddc7fdb2084207d43c351ba3f0a4d79d1',
  966. 'http://libgen.rs/scimag/repository_torrent/sm_83500000-83599999.torrent': '6d1a92de68172656931145373d6494a6bc93dc50',
  967. 'http://libgen.rs/scimag/repository_torrent/sm_83600000-83699999.torrent': '0c715d6df0498ad45c341c1192171af5721c2b7c',
  968. 'http://libgen.rs/scimag/repository_torrent/sm_83700000-83799999.torrent': '6ec3aa1d5e14a7bfe9a09088a974577e308f16b7',
  969. 'http://libgen.rs/scimag/repository_torrent/sm_83800000-83899999.torrent': '75f36ff3273078ca3d495266b363ff11e8abd200',
  970. 'http://libgen.rs/scimag/repository_torrent/sm_83900000-83999999.torrent': 'aa124176ffa7d3e7e97a9e0104bc14807f10bd62',
  971. 'http://libgen.rs/scimag/repository_torrent/sm_84000000-84099999.torrent': 'cfa22b31ed169799206093d356bb2a481caf211b',
  972. 'http://libgen.rs/scimag/repository_torrent/sm_84100000-84199999.torrent': '7320feaeef348e377763954de3128cf1fa5e1ecf',
  973. 'http://libgen.rs/scimag/repository_torrent/sm_84200000-84299999.torrent': 'ebbfd97aa50bb1dd502637e34771688fb912f08c',
  974. 'http://libgen.rs/scimag/repository_torrent/sm_84300000-84399999.torrent': '8067dfd6300be0b9203f61d0b9a90817a378ad1e',
  975. 'http://libgen.rs/scimag/repository_torrent/sm_84400000-84499999.torrent': '41a36ee5c320e7c6ecc80ad365a9de081000d8c6',
  976. 'http://libgen.rs/scimag/repository_torrent/sm_84500000-84599999.torrent': '351e79af88cdd6a8cd56dcf880ce1cfe59751d91',
  977. 'http://libgen.rs/scimag/repository_torrent/sm_84600000-84699999.torrent': '4880bd2dfc300133bd3657732d6bc8acb8acfe4c',
  978. 'http://libgen.rs/scimag/repository_torrent/sm_84700000-84799999.torrent': 'ed51bd55b1c0c2807548d4793007fab7254ee869',
  979. 'http://libgen.rs/scimag/repository_torrent/sm_84800000-84899999.torrent': '42054b10533a1cbea1f908259e3b961ec721a1f7',
  980. 'http://libgen.rs/scimag/repository_torrent/sm_84900000-84999999.torrent': '7de97af8519b0eb1d2672e96232740ea99f9203a',
  981. 'http://libgen.rs/scimag/repository_torrent/sm_85000000-85099999.torrent': '839282171a1ba2c826088caa3c7bbbb4111e7c6e',
  982. 'http://libgen.rs/scimag/repository_torrent/sm_85100000-85199999.torrent': 'ea18b2c1560e6b90f22c2d22a1a56e9c63af6335'}
  983.  
  984. trackerlist = ["udp://open.stealth.si:80/scrape"]
  985.  
  986. # uncomment folling section to scrape all trackers
  987. # trackerlist = ['http://tracker.opentrackr.org:1337/scrape',
  988. # 'http://explodie.org:6969/scrape',
  989. # 'http://184.105.151.164:6969/scrape',
  990. # 'http://78.30.254.12:2710/scrape',
  991. # 'http://95.107.48.115:80/scrape',
  992. # 'http://open.acgnxtracker.com:80/scrape',
  993. # 'http://t.acg.rip:6699/scrape',
  994. # 'http://t.nyaatracker.com:80/scrape',
  995. # 'http://tracker.bt4g.com:2095/scrape',
  996. # 'http://tracker.files.fm:6969/scrape',
  997. # 'http://tracker.gbitt.info/scrape',
  998. # 'http://tracker.nyap2p.com:8080/scrape',
  999. # 'http://vps02.net.orel.ru:80/scrape',
  1000. # 'https://1337.abcvg.info:443/scrape',
  1001. # 'https://tk.mabo.ltd:443/scrape',
  1002. # 'https://tracker.nanoha.org:443/scrape',
  1003. # 'https://tracker.sloppyta.co:443/scrape',
  1004. # 'udp://207.246.121.172:2000/scrape',
  1005. # 'udp://208.83.20.20:6969/scrape',
  1006. # 'udp://212.47.227.58:6969/scrape',
  1007. # 'udp://37.235.174.46:2710/scrape',
  1008. # 'udp://51.15.40.114:80/scrape',
  1009. # 'udp://62.138.0.158:6969/scrape',
  1010. # 'udp://tracker.opentrackr.org:1337/scrape',
  1011. # 'udp://9.rarbg.me:2710/scrape',
  1012. # 'udp://9.rarbg.to:2710/scrape',
  1013. # 'udp://exodus.desync.com:6969/scrape',
  1014. # 'udp://ipv4.tracker.harry.lu:80/scrape',
  1015. # 'udp://open.stealth.si:80/scrape',
  1016. # 'udp://tracker.coppersurfer.tk:6969/scrape',
  1017. # 'udp://tracker.cyberia.is:6969/scrape',
  1018. # 'udp://tracker.filemail.com:6969/scrape',
  1019. # 'udp://tracker.iamhansen.xyz:2000/scrape',
  1020. # 'udp://tracker.moeking.me:6969/scrape',
  1021. # 'udp://tracker.tiny-vps.com:6969/scrape',
  1022. # 'udp://tracker.torrent.eu.org:451/scrape',
  1023. # 'udp://zephir.monocul.us:6969/scrape',
  1024. # 'udp://75.127.14.224:2710/scrape',
  1025. # 'udp://212.1.226.176:2710/scrape',
  1026. # 'udp://tracker-udp.gbitt.info:80/scrape',
  1027. # 'udp://opentor.org:2710/scrape',
  1028. # 'udp://open.nyap2p.com:6969/scrape',
  1029. # 'udp://p4p.arenabg.com:1337/scrape',
  1030. # 'udp://retracker.akado-ural.ru:80/scrape',
  1031. # 'udp://retracker.lanta-net.ru:2710/scrape',
  1032. # 'udp://retracker.netbynet.ru:2710/scrape',
  1033. # 'udp://tracker.dler.org:6969/scrape',
  1034. # 'udp://tracker.ds.is:6969/scrape',
  1035. # 'udp://tracker.swateam.org.uk:2710/scrape',
  1036. # 'udp://tracker.uw0.xyz:6969/scrape']
  1037.  
  1038.  
  1039. torseedlist = []
  1040.  
  1041. for torrent in torhash:
  1042.     print(torrent + ': processing')
  1043.     info_hash = torhash[torrent]
  1044.     params = {
  1045.         'info_hash': bytes.fromhex(info_hash)
  1046.         }
  1047.     seeds = 0
  1048.     for tracker in trackerlist:
  1049.         # print(tracker)
  1050.         if tracker.startswith('http'):
  1051.             try:
  1052.                 page = requests.get(tracker, params=params)
  1053.             except requests.exceptions.ConnectionError:
  1054.                 # print('Error.')
  1055.                 continue
  1056.             if page.status_code == 200:
  1057.                 try:
  1058.                     s = bencoding.bdecode(page.content)[b'files'][next(iter(bencoding.bdecode(page.content)[b'files']))][b'complete']
  1059.                     if seeds < s:
  1060.                         # print(s)
  1061.                         seeds = s
  1062.                 except (KeyError, bencoding.decoder.DecoderError, StopIteration) as e:
  1063.                     # print('Error.')
  1064.                     continue
  1065.             else:
  1066.                 continue
  1067.         elif tracker.startswith('udp'):
  1068.             try:
  1069.                 s = scrape_udp(tracker,params)['seeds']
  1070.                 if seeds < s:
  1071.                     # print(s)
  1072.                     seeds = s
  1073.             except RuntimeError:
  1074.                 continue
  1075.             except (socket.timeout, socket.gaierror, ConnectionResetError) as e:
  1076.                 continue
  1077.         else:
  1078.             print('Unknown tracker protocol: ' + tracker)
  1079.     torseedlist.append((torrent,seeds))
  1080.  
  1081. torseedlistsorted = sorted(torseedlist, key=lambda x: x[1])
  1082. print(torseedlistsorted)
  1083. ran = []
  1084. for i in range(10):
  1085.     ran.append(random.randint(0,99))
  1086. print("10 randomly chosen torrents from 100 least seeded torrents:")
  1087. for i in ran:
  1088.     print(torseedlistsorted[i][0])
  1089.  
Add Comment
Please, Sign In to add comment