OBF-XIn

180.251.231.2-/sdcard/Spambrutal/encode.py.py

Jun 2nd, 2023
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 191.53 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # coding: utf-8
  3. # By Vindra ID: https://github.com/Dra-ID
  4.  
  5.  
  6. import os
  7. import sys
  8. import subprocess
  9. import argparse
  10. import random
  11. import time
  12. import marshal
  13. import lzma
  14. import gzip
  15. import bz2
  16. import binascii
  17. import zlib
  18.  
  19. import os,sys,time,requests,bs4,json,re,datetime
  20. from datetime import datetime
  21. from bs4 import BeautifulSoup
  22.  
  23. now = datetime.now()
  24. hours = now.hour
  25. if 4 <= hours < 12:timenow = ",selamat siang"
  26. elif 12 <= hours < 15:timenow = ",Good Afternoon"
  27. elif 15 <= hours < 18:timenow = ",Good Evening"
  28. else:timenow = ",Good Night"
  29. day=datetime.now().strftime("%d-%b-%Y")
  30. timelocal=localtime=time.asctime(time.localtime(time.time()))
  31.  
  32. def prett(text):
  33.     return text.title().center(os.get_terminal_size().columns)
  34. PYTHON_VERSION = 'python' + '.'.join(str(i) for i in sys.version_info[:2])
  35. try:
  36.     import requests
  37.     import tqdm
  38.     import colorama
  39.     import pyfiglet
  40. except ModuleNotFoundError:
  41.     if subprocess.run([PYTHON_VERSION, '-m', 'pip', 'install', '-r', 'requirements.txt']).returncode == 0:
  42.         print('\x1b[1m\x1b[92m' + prett('[+] dependencies installed'))
  43.         sys.exit('\x1b[1m\x1b[92m' + prett('[+] run the program again'))
  44.     elif subprocess.run(['pip3', 'install', '-r', 'requirements.txt']).returncode == 0:
  45.         print('\x1b[1m\x1b[92m' + prett('[+] dependencies installed'))
  46.         sys.exit('\x1b[1m\x1b[92m' + prett('[+] run the program again'))
  47.     else:
  48.         print('\x1b[1m\x1b[31m' + prett('[!] something error occured while installing dependencies'))
  49.         sys.exit('\x1b[1m\x1b[31m' + prett('maybe pip isn\'t installed or requirements.txt file not available?'))
  50. BLU = colorama.Style.BRIGHT + colorama.Fore.BLUE
  51. CYA = colorama.Style.BRIGHT + colorama.Fore.CYAN
  52. GRE = colorama.Style.BRIGHT + colorama.Fore.GREEN
  53. YEL = colorama.Style.BRIGHT + colorama.Fore.YELLOW
  54. RED = colorama.Style.BRIGHT + colorama.Fore.RED
  55. MAG = colorama.Style.BRIGHT + colorama.Fore.MAGENTA
  56. LIYEL = colorama.Style.BRIGHT + colorama.Fore.LIGHTYELLOW_EX
  57. LIRED = colorama.Style.BRIGHT + colorama.Fore.LIGHTRED_EX
  58. LIMAG = colorama.Style.BRIGHT + colorama.Fore.LIGHTMAGENTA_EX
  59. LIBLU = colorama.Style.BRIGHT + colorama.Fore.LIGHTBLUE_EX
  60. LICYA = colorama.Style.BRIGHT + colorama.Fore.LIGHTCYAN_EX
  61. LIGRE = colorama.Style.BRIGHT + colorama.Fore.LIGHTGREEN_EX
  62. CLEAR = 'cls' if os.name == 'nt' else 'clear'
  63. COLORS = BLU, CYA, GRE, YEL, RED, MAG, LIYEL, LIRED, LIMAG, LIBLU, LICYA, LIGRE
  64. FONTS = 'basic', 'o8', 'cosmic', 'graffiti', 'chunky', 'epic', 'poison', 'doom', 'avatar'
  65.  
  66. global LATEST_VER
  67. colorama.init(autoreset=True)
  68.  
  69. def encode(source:str) -> str:
  70.     selected_mode = random.choice((lzma, gzip, bz2, binascii, zlib))
  71.     marshal_encoded = marshal.dumps(compile(source, 'Py-Fuscate', 'exec'))
  72.     if selected_mode is binascii:
  73.         return 'import marshal,lzma,gzip,bz2,binascii,zlib;exec(marshal.loads(binascii.a2b_base64({})))'.format(binascii.b2a_base64(marshal_encoded))
  74.     return 'import marshal,lzma,gzip,bz2,binascii,zlib;exec(marshal.loads({}.decompress({})))'.format(selected_mode.__name__, selected_mode.compress(marshal_encoded))
  75. def logo() -> None:
  76.     _ = subprocess.run([CLEAR], shell=True)
  77.     font = random.choice(FONTS)
  78.     color1 = random.choice(COLORS)
  79.     color2 = random.choice(COLORS)
  80.     while color1 == color2:
  81.         color2 = random.choice(COLORS)
  82.     print(color1 + '_' * os.get_terminal_size().columns, end='\n'*2)
  83.     print(color2 + pyfiglet.figlet_format(
  84.         'Py\nFuscate',
  85.         font=font,
  86.         justify='center',
  87.         width=os.get_terminal_size().columns),
  88.         end=''
  89.         )
  90.     print(color1 + '_' * os.get_terminal_size().columns, end='\n'*2)
  91.  
  92. def parse_args():
  93.     parser = argparse.ArgumentParser(description='obfuscate python programs'.title())
  94.     parser._optionals.title = "syntax".title()
  95.     parser.add_argument('-i', '--input', type=str, help='input file name'.title(), required=True)
  96.     parser.add_argument('-o', '--output', type=str, help='output file name'.title(), required=True)
  97.     parser.add_argument('-c', '--complexity', type=int,
  98.                         help='complexity of obfuscation. 100 recomended'.title(), required=True)
  99.     if len(sys.argv) == 1:
  100.         parser.print_help()
  101.         sys.exit()
  102.     return parser.parse_args()
  103.  
  104. def check_update():
  105.     LATEST_VER = requests.get('https://raw.githubusercontent.com/Dra-ID/Py-Fuscate/main/.version').text.strip()
  106.     with open('.version') as version:
  107.         return True if float(version.read().strip()) < float(LATEST_VER) else False
  108.  
  109. def update():
  110.     if '.git' in os.listdir():
  111.         _ = subprocess.run(['git', 'stash'], check=True)
  112.         _ = subprocess.run(['git', 'pull'], check=True)
  113.     else:
  114.         latest_source = requests.get('https://raw.githubusercontent.com/Dra-ID/Py-Fuscate/main/encode.py').content
  115.         with open('encode.py', 'wb') as file:
  116.             file.write(latest_source)
  117.         with open('.version', 'w') as file:
  118.             file.write(LATEST_VER)
  119.  
  120. def main():
  121.     args = parse_args()
  122.     if check_update():
  123.         print(RED + prett('[!] update available'))
  124.         print(LIGRE + prett('[+] updating...'))
  125.         update()
  126.         print(LIGRE + prett('[+] successfully updated...'))
  127.         sys.exit(LIGRE + prett('run the program again'))
  128.     print(random.choice(COLORS) + '\t[+] encoding '.title() + args.input)
  129.     with tqdm.tqdm(total=args.complexity) as pbar:
  130.         with open(args.input) as iput:
  131.             for i in range(args.complexity):
  132.                 if i == 0:
  133.                     encoded = encode(source=iput.read())
  134.                 else:
  135.                     encoded = encode(source=encoded)
  136.                 time.sleep(0.1)
  137.                 pbar.update(1)
  138.     with open(args.output, 'w') as output:
  139.         output.write(f'''\n# Time : {timelocal}
  140. # Platform : Linux aarch64
  141. # Obfuscate By Vindra  ID >_<
  142. vindra=(\n"000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  143. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  144. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  145. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  146. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  147. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  148. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  149. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  150. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  151. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  152. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  153. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  154. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  155. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  156. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  157. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  158. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  159. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  160. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  161. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  162. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  163. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  164. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  165. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  166. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  167. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  168. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  169. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  170. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  171. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  172. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  173. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  174. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  175. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  176. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  177. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  178. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  179. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  180. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  181. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  182. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  183. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  184. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  185. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  186. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  187. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  188. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  189. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  190. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  191. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  192. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  193. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  194. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  195. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  196. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  197. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  198. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  199. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  200. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  201. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  202. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  203. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  204. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  205. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  206. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  207. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  208. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  209. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  210. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  211. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  212. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  213. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  214. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  215. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  216. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  217. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  218. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  219. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  220. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  221. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  222. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  223. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  224. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  225. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  226. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  227. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  228. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  229. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  230. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  231. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  232. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  233. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  234. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  235. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  236. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  237. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  238. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  239. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  240. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  241. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  242. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  243. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  244. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  245. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  246. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  247. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  248. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  249. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  250. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  251. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  252. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  253. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  254. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  255. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  256. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  257. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  258. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  259. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  260. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  261. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  262. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  263. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  264. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  265. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  266. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  267. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  268. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  269. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  270. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  271. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  272. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  273. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  274. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  275. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  276. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  277. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  278. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  279. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  280. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  281. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  282. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  283. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  284. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  285. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  286. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  287. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  288. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  289. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  290. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  291. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  292. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  293. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  294. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  295. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  296. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  297. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  298. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  299. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  300. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  301. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  302. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  303. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  304. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  305. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  306. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  307. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  308. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  309. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  310. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  311. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  312. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  313. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  314. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  315. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  316. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  317. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  318. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  319. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  320. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  321. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  322. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  323. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  324. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  325. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  326. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  327. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  328. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  329. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  330. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  331. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  332. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  333. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  334. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  335. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  336. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  337. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  338. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  339. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  340. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  341. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  342. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  343. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  344. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  345. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  346. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  347. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  348. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  349. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  350. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  351. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  352. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  353. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  354. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  355. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  356. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  357. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  358. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  359. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  360. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  361. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  362. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  363. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  364. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  365. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  366. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  367. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  368. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  369. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  370. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  371. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  372. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  373. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  374. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  375. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  376. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  377. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  378. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  379. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  380. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  381. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  382. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  383. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  384. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  385. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  386. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  387. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  388. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  389. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  390. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  391. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  392. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  393. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  394. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  395. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  396. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  397. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  398. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  399. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  400. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  401. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  402. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  403. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  404. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  405. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  406. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  407. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  408. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  409. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  410. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  411. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  412. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  413. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  414. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  415. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  416. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  417. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  418. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  419. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  420. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  421. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  422. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  423. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  424. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  425. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  426. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  427. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  428. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  429. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  430. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  431. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  432. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  433. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  434. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  435. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  436. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  437. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  438. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  439. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  440. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  441. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  442. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  443. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  444. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  445. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  446. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  447. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  448. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  449. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  450. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  451. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  452. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  453. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  454. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  455. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  456. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  457. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  458. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  459. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  460. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  461. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  462. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  463. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  464. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  465. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  466. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  467. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  468. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  469. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  470. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  471. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  472. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  473. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  474. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  475. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  476. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  477. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  478. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  479. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  480. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  481. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  482. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  483. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  484. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  485. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  486. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  487. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  488. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  489. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  490. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  491. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  492. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  493. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  494. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  495. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  496. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  497. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  498. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  499. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  500. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  501. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  502. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  503. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  504. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  505. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  506. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  507. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  508. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  509. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  510. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  511. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  512. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  513. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  514. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  515. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  516. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  517. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  518. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  519. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  520. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  521. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  522. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  523. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  524. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  525. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  526. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  527. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  528. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  529. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  530. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  531. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  532. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  533. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  534. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  535. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  536. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  537. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  538. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  539. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  540. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  541. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  542. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  543. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  544. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  545. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  546. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  547. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  548. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  549. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  550. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  551. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  552. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  553. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  554. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  555. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  556. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  557. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  558. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  559. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  560. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  561. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  562. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  563. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  564. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  565. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  566. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  567. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  568. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  569. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  570. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  571. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  572. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  573. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  574. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  575. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  576. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  577. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  578. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  579. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  580. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  581. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  582. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  583. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  584. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  585. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  586. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  587. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  588. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  589. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  590. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  591. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  592. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  593. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  594. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  595. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  596. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  597. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  598. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  599. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  600. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  601. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  602. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  603. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  604. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  605. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  606. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  607. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  608. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  609. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  610. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  611. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  612. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  613. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  614. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  615. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  616. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  617. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  618. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  619. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  620. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  621. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  622. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  623. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  624. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  625. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  626. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  627. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  628. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  629. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  630. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  631. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  632. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  633. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  634. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  635. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  636. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  637. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  638. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  639. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  640. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  641. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  642. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  643. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  644. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  645. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  646. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  647. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  648. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  649. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  650. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  651. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  652. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  653. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  654. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  655. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  656. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  657. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  658. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  659. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  660. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  661. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  662. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  663. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  664. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  665. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  666. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  667. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  668. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  669. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  670. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  671. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  672. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  673. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  674. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  675. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  676. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  677. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  678. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  679. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  680. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  681. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  682. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  683. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  684. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  685. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  686. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  687. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  688. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  689. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  690. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  691. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  692. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  693. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  694. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  695. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  696. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  697. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  698. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  699. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  700. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  701. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  702. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  703. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  704. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  705. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  706. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  707. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  708. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  709. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  710. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  711. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  712. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  713. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  714. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  715. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  716. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  717. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  718. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  719. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  720. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  721. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  722. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  723. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  724. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  725. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  726. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  727. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  728. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  729. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  730. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  731. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  732. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  733. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  734. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  735. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  736. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  737. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  738. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  739. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  740. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  741. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  742. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  743. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  744. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  745. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  746. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  747. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  748. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  749. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  750. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  751. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  752. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  753. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  754. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  755. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  756. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  757. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  758. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  759. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  760. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  761. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  762. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  763. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  764. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  765. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  766. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  767. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  768. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  769. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  770. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  771. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  772. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  773. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  774. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  775. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  776. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  777. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  778. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  779. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  780. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  781. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  782. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  783. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  784. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  785. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  786. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  787. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  788. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  789. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  790. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  791. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  792. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  793. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  794. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  795. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  796. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  797. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  798. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  799. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  800. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  801. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  802. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  803. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  804. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  805. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  806. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  807. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  808. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  809. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  810. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  811. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  812. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  813. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  814. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  815. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  816. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  817. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  818. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  819. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  820. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  821. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  822. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  823. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  824. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  825. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  826. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  827. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  828. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  829. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  830. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  831. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  832. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  833. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  834. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  835. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  836. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  837. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  838. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  839. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  840. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  841. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  842. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  843. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  844. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  845. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  846. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  847. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  848. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  849. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  850. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  851. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  852. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  853. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  854. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  855. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  856. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  857. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  858. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  859. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  860. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  861. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  862. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  863. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  864. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  865. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  866. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  867. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  868. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  869. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  870. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  871. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  872. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  873. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  874. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  875. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  876. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  877. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  878. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  879. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  880. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  881. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  882. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  883. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  884. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  885. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  886. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  887. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  888. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  889. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  890. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  891. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  892. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  893. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  894. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  895. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  896. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  897. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  898. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  899. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  900. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  901. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  902. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  903. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  904. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  905. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  906. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  907. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  908. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  909. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  910. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  911. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  912. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  913. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  914. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  915. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  916. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  917. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  918. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  919. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  920. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  921. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  922. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  923. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  924. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  925. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  926. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  927. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  928. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  929. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  930. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  931. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  932. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  933. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  934. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  935. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  936. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  937. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  938. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  939. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  940. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  941. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  942. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  943. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  944. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  945. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  946. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  947. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  948. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  949. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  950. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  951. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  952. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  953. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  954. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  955. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  956. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  957. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  958. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  959. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  960. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  961. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  962. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  963. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  964. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  965. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  966. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  967. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  968. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  969. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  970. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  971. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  972. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  973. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  974. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  975. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  976. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  977. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  978. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  979. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  980. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  981. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  982. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  983. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  984. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  985. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  986. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  987. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  988. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  989. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  990. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  991. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  992. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  993. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  994. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  995. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  996. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  997. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  998. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  999. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1000. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1001. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1002. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1003. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1004. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1005. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1006. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1007. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1008. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1009. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1010. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1011. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1012. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1013. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1014. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1015. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1016. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1017. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1018. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1019. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1020. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1021. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1022. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1023. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1024. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1025. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1026. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1027. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1028. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1029. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1030. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1031. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1032. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1033. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1034. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1035. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1036. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1037. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1038. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1039. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1040. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1041. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1042. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1043. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1044. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1045. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1046. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1047. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1048. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1049. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1050. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1051. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1052. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1053. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1054. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1055. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1056. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1057. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1058. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1059. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1060. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1061. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1062. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1063. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1064. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1065. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1066. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1067. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1068. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1069. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1070. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1071. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1072. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1073. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1074. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1075. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1076. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1077. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1078. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1079. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1080. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1081. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1082. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1083. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1084. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1085. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1086. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1087. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1088. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1089. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1090. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1091. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1092. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1093. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1094. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1095. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1096. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1097. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1098. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1099. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1100. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1101. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1102. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1103. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1104. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1105. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1106. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1107. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1108. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1109. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1110. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1111. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1112. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1113. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1114. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1115. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1116. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1117. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1118. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1119. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1120. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1121. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1122. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1123. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1124. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1125. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1126. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1127. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1128. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1129. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1130. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1131. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1132. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1133. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1134. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1135. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1136. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1137. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1138. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1139. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1140. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1141. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1142. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1143. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1144. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1145. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1146. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1147. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1148. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1149. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1150. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1151. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1152. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1153. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1154. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1155. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1156. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1157. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1158. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1159. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1160. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1161. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1162. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1163. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1164. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1165. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1166. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1167. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1168. )\n
  1169. # Time : {timelocal}
  1170. # Platform : Linux aarch64
  1171. # Obfuscate By Vindra  ID >_<
  1172. try:\n\t{encoded}\nexcept KeyboardInterrupt:\n\texit()\n
  1173. vinz=(
  1174. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1175. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1176. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1177. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1178. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1179. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1180. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1181. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1182. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1183. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1184. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1185. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1186. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1187. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1188. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1189. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1190. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1191. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1192. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1193. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1194. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1195. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1196. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1197. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1198. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1199. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1200. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1201. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1202. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1203. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1204. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1205. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1206. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1207. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1208. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1209. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1210. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1211. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1212. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1213. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1214. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1215. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1216. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1217. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1218. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1219. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1220. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1221. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1222. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1223. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1224. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1225. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1226. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1227. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1228. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1229. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1230. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1231. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1232. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1233. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1234. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1235. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1236. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1237. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1238. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1239. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1240. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1241. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1242. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1243. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1244. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1245. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1246. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1247. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1248. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1249. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1250. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1251. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1252. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1253. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1254. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1255. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1256. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1257. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1258. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1259. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1260. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1261. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1262. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1263. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1264. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1265. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1266. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1267. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1268. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1269. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1270. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1271. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1272. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1273. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1274. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1275. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1276. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1277. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1278. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1279. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1280. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1281. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1282. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1283. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1284. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1285. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1286. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1287. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1288. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1289. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1290. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1291. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1292. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1293. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1294. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1295. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1296. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1297. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1298. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1299. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1300. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1301. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1302. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1303. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1304. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1305. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1306. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1307. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1308. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1309. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1310. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1311. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1312. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1313. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1314. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1315. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1316. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1317. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1318. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1319. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1320. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1321. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1322. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1323. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1324. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1325. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1326. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1327. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1328. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1329. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1330. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1331. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1332. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1333. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1334. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1335. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1336. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1337. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1338. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1339. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1340. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1341. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1342. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1343. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1344. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1345. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1346. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1347. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1348. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1349. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1350. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1351. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1352. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1353. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1354. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1355. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1356. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1357. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1358. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1359. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1360. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1361. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1362. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1363. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1364. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1365. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1366. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1367. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1368. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1369. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1370. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1371. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1372. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1373. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1374. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1375. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1376. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1377. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1378. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1379. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1380. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1381. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1382. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1383. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1384. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1385. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1386. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1387. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1388. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1389. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1390. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1391. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1392. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1393. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1394. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1395. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1396. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1397. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1398. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1399. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1400. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1401. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1402. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1403. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1404. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1405. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1406. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1407. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1408. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1409. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1410. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1411. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1412. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1413. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1414. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1415. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1416. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1417. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1418. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1419. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1420. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1421. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1422. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1423. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1424. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1425. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1426. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1427. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1428. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1429. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1430. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1431. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1432. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1433. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1434. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1435. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1436. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1437. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1438. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1439. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1440. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1441. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1442. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1443. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1444. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1445. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1446. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1447. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1448. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1449. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1450. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1451. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1452. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1453. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1454. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1455. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1456. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1457. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1458. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1459. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1460. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1461. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1462. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1463. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1464. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1465. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1466. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1467. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1468. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1469. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1470. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1471. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1472. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1473. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1474. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1475. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1476. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1477. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1478. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1479. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1480. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1481. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1482. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1483. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1484. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1485. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1486. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1487. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1488. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1489. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1490. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1491. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1492. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1493. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1494. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1495. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1496. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1497. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1498. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1499. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1500. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1501. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1502. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1503. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1504. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1505. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1506. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1507. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1508. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1509. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1510. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1511. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1512. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1513. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1514. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1515. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1516. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1517. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1518. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1519. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1520. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1521. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1522. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1523. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1524. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1525. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1526. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1527. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1528. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1529. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1530. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1531. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1532. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1533. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1534. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1535. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1536. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1537. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1538. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1539. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1540. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1541. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1542. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1543. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1544. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1545. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1546. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1547. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1548. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1549. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1550. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1551. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1552. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1553. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1554. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1555. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1556. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1557. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1558. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1559. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1560. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1561. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1562. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1563. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1564. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1565. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1566. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1567. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1568. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1569. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1570. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1571. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1572. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1573. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1574. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1575. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1576. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1577. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1578. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1579. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1580. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1581. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1582. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1583. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1584. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1585. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1586. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1587. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1588. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1589. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1590. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1591. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1592. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1593. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1594. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1595. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1596. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1597. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1598. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1599. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1600. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1601. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1602. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1603. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1604. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1605. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1606. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1607. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1608. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1609. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1610. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1611. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1612. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1613. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1614. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1615. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1616. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1617. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1618. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1619. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1620. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1621. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1622. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1623. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1624. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1625. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1626. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1627. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1628. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1629. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1630. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1631. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1632. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1633. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1634. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1635. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1636. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1637. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1638. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1639. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1640. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1641. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1642. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1643. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1644. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1645. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1646. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1647. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1648. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1649. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1650. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1651. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1652. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1653. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1654. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1655. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1656. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1657. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1658. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1659. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1660. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1661. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1662. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1663. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1664. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1665. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1666. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1667. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1668. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1669. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1670. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1671. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1672. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1673. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1674. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1675. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1676. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1677. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1678. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1679. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1680. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1681. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1682. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1683. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1684. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1685. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1686. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1687. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1688. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1689. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1690. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1691. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1692. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1693. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1694. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1695. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1696. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1697. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1698. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1699. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1700. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1701. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1702. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1703. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1704. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1705. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1706. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1707. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1708. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1709. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1710. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1711. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1712. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1713. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1714. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1715. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1716. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1717. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1718. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1719. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1720. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1721. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1722. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1723. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1724. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1725. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1726. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1727. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1728. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1729. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1730. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1731. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1732. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1733. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1734. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1735. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1736. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1737. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1738. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1739. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1740. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1741. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1742. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1743. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1744. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1745. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1746. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1747. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1748. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1749. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1750. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1751. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1752. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1753. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1754. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1755. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1756. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1757. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1758. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1759. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1760. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1761. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1762. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1763. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1764. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1765. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1766. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1767. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1768. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1769. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1770. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1771. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1772. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1773. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1774. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1775. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1776. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1777. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1778. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1779. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1780. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1781. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1782. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1783. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1784. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1785. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1786. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1787. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1788. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1789. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1790. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1791. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1792. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1793. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1794. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1795. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1796. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1797. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1798. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1799. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1800. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1801. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1802. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1803. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1804. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1805. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1806. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1807. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1808. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1809. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1810. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1811. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1812. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1813. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1814. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1815. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1816. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1817. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1818. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1819. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1820. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1821. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1822. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1823. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1824. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1825. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1826. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1827. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1828. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1829. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1830. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1831. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1832. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1833. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1834. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1835. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1836. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1837. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1838. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1839. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1840. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1841. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1842. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1843. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1844. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1845. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1846. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1847. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1848. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1849. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1850. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1851. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1852. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1853. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1854. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1855. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1856. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1857. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1858. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1859. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1860. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1861. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1862. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1863. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1864. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1865. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1866. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1867. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1868. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1869. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1870. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1871. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1872. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1873. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1874. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1875. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1876. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1877. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1878. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1879. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1880. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1881. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1882. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1883. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1884. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1885. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1886. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1887. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1888. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1889. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1890. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1891. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1892. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1893. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1894. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1895. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1896. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1897. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1898. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1899. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1900. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1901. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1902. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1903. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1904. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1905. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1906. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1907. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1908. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1909. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1910. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1911. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1912. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1913. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1914. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1915. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1916. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1917. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1918. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1919. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1920. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1921. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1922. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1923. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1924. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1925. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1926. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1927. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1928. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1929. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1930. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1931. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1932. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1933. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1934. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1935. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1936. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1937. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1938. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1939. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1940. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1941. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1942. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1943. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1944. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1945. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1946. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1947. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1948. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1949. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1950. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1951. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1952. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1953. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1954. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1955. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1956. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1957. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1958. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1959. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1960. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1961. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1962. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1963. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1964. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1965. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1966. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1967. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1968. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1969. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1970. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1971. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1972. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1973. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1974. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1975. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1976. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1977. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1978. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1979. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1980. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1981. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1982. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1983. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1984. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1985. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1986. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1987. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1988. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1989. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1990. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1991. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1992. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1993. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1994. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1995. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1996. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1997. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1998. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  1999. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2000. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2001. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2002. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2003. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2004. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2005. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2006. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2007. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2008. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2009. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2010. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2011. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2012. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2013. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2014. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2015. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2016. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2017. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2018. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2019. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2020. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2021. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2022. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2023. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2024. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2025. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2026. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2027. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2028. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2029. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2030. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2031. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2032. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2033. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2034. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2035. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2036. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2037. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2038. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2039. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2040. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2041. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2042. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2043. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2044. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2045. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2046. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2047. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2048. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2049. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2050. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2051. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2052. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2053. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2054. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2055. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2056. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2057. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2058. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2059. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2060. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2061. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2062. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2063. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2064. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2065. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2066. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2067. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2068. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2069. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2070. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2071. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2072. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2073. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2074. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2075. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2076. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2077. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2078. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2079. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2080. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2081. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2082. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2083. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2084. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2085. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2086. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2087. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2088. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2089. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2090. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2091. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2092. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2093. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2094. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2095. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2096. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2097. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2098. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2099. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2100. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2101. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2102. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2103. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2104. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2105. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2106. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2107. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2108. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2109. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2110. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2111. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2112. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2113. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2114. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2115. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2116. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2117. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2118. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2119. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2120. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2121. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2122. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2123. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2124. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2125. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2126. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2127. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2128. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2129. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2130. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2131. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2132. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2133. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2134. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2135. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2136. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2137. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2138. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2139. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2140. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2141. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2142. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2143. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2144. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2145. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2146. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2147. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2148. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2149. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2150. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2151. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2152. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2153. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2154. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2155. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2156. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2157. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2158. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2159. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2160. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2161. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2162. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2163. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2164. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2165. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2166. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2167. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2168. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2169. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2170. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2171. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2172. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2173. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2174. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2175. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2176. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2177. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2178. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2179. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2180. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2181. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2182. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2183. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2184. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2185. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2186. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2187. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2188. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2189. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2190. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2191. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2192. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2193. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2194. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2195. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2196. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2197. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2198. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2199. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2200. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2201. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2202. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2203. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2204. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2205. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2206. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2207. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2208. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2209. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2210. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2211. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2212. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2213. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2214. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2215. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2216. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2217. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2218. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2219. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2220. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2221. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2222. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2223. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2224. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2225. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2226. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2227. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2228. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2229. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2230. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2231. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2232. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2233. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2234. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2235. "000000000000000","000000000000000","000000000000000","000000000000000","000000000000000",
  2236. )''')
  2237.     print(LIGRE + '\t[+] encoding successful!\n\tsaved as '.title() + args.output)
  2238. if __name__ == '__main__':
  2239.     logo()
  2240.     main()
  2241.  
Add Comment
Please, Sign In to add comment