dexie.space - ChiaFriends Rarity

Add rarity rank from https://chialinks.com/chiafriends

// ==UserScript==
// @name        dexie.space - ChiaFriends Rarity
// @namespace   Violentmonkey Scripts
// @match       https://dexie.space/offers/col1z0ef7w5n4vq9qkue67y8jnwumd9799sm50t8fyle73c70ly4z0ws0p2rhl/*
// @grant       none
// @version     4.0
// @author      tojump
// @license MIT
// @description Add rarity rank from https://chialinks.com/chiafriends
// ==/UserScript==

console.debug('ChiaFriends Rarity running')

// Utilities
// ==================================================

function sleep(ms) {
  return new Promise((resolve) => setTimeout(resolve, ms))
}

async function $(selector, { intervalMs=50, root=document }={}) {
  while(true) {
    const element = root.querySelector(selector)
    if (element) {
      return element;
    }
    await sleep(intervalMs)
  }
}

function safe$(selector, { root=document }={}) {
  const element = root.querySelector(selector)
  if (element) { return element; }
  else { return {}; }
}

async function $$(selector, { intervalMs=50, root=document }={}) {
  while(true) {
    const element = root.querySelectorAll(selector)
    if (element.length > 0) {
      return [...element];
    }
    await sleep(intervalMs)
  }
}

function createEl(tag, { on, className, textContent, style, ...attributes }={}) {
  const el = document.createElement(tag)
  for (const [attr, val] of Object.entries(attributes)) {
    el.setAttribute(attr, val)
  }
  if (className) { el.className = className; }
  if (textContent) { el.textContent = textContent; }
  if (style) { el.style = style; }
  if (on) {
    for (const [eventName, listener] of Object.entries(on)) {
      el.addEventListener(eventName, listener)
    }
  }
  return el
}


// Main
// ==================================================

function rarityGauge(rarity) {
  const gauge = createEl('div', {
    className: 'rarity-gauge',
    style: 'display: flex; flex-flow: row nowrap; align-items: flex-end; height: 20px;'
  })
  const LEVELS = [10001,5000,3000,1000,500,100,-1]
  const LEVEL_COLORS = [,'grey','blue','green','#d0d056','orange','red']
  const NEUTRAL_COLOR = ['rgba(200,200,200,0.1)']
  const level = LEVELS.findIndex(max => rarity > max)
  const levelColor = LEVEL_COLORS[level]
  const levelStyle = c => [
    `background: ${c >= level ? NEUTRAL_COLOR : levelColor}`,
    `border-radius: 2px`,
    `width: 5px`,
    `margin: 0.5px`,
    `height: ${Math.ceil(c / LEVELS.length * 60 + 40)}%`,
  ].join('; ')
  gauge.innerHTML = `
    ${LEVELS.slice(0, LEVELS.length - 2).map((l, i) => (`
      <div style="${levelStyle(i + 1)}"></div>
    `)).join('\n')}
  `
  return gauge;
}

function getRarity(name) {
  const [ ,num] = name.match(/(#[0-9]+)/) || []
  if (num === undefined) {
    console.debug(`Couldn't find rarity for "${name}".`)
    return null; 
  }
  const rarity = rarityRanking.indexOf(num)
  if (rarity < 0) {
    console.debug(`Couldn't find rarity for "${name}".`)
    return null; 
  }
  return rarity
}

async function main() {
  console.debug('main()')
  const nftsTable = await $('table.min-w-full')
  console.debug('nftsTable:', nftsTable)
  
  async function addRarityToRows() {
    if (!nftsTable.querySelector('.rarity-th')) {
      const headerCols = await $$('thead th', { root: nftsTable })
      const rarityTh = createEl('th', {
        textContent: 'Rarity',
        className: 'rarity-th w-[80px] py-2 text-left text-xs font-medium tracking-wider text-gray-500'
      })
      headerCols[0].insertAdjacentElement('afterend', rarityTh)

    }
    
    const nftRows = await $$('tbody tr', { root: nftsTable })
    nftRows.forEach(row => {
      if (row.querySelector('.rarity')) { return; }
      
      const name = safe$('.truncate.text-xs.tracking-tight', { root: row }).textContent
      
      const rarityTd = createEl('td', {
        className: 'rarity whitespace-nowrap py-2.5 px-2.5 text-xxs text-gray-400',
      })
      const rarity = getRarity(name)
      
      if (typeof rarity === 'number') {
        const rarityStr = rarity.toString()
        rarityTd.appendChild(rarityGauge(rarity))
        rarityTd.appendChild(document.createTextNode(rarityStr))
      }
      
      row.firstChild.insertAdjacentElement('afterend', rarityTd)
    })
  }
  
  async function handleAddRarityBtnClick() {
    if (window.addingRarity) {
      window.addingRarity()
    } else {
      
      const cb = addRarityToRows
      
      cb();
      
      const mutationObserver = new MutationObserver(() => {
        cb();
      });
      mutationObserver.observe(nftsTable, {
        childList: true,
        subtree: true,
      });
      
      // Cleanup
      window.addingRarity = () => {
        mutationObserver.disconnect();
        
        $$('.rarity').then(tds => tds.forEach(td => {
          td.parentElement.removeChild(td)
        }))
        $('.rarity-th').then(th => th.parentElement.removeChild(th))
        
        window.addingRarity = null;
      }
    }
  }
  
  const controlsContainer = createEl('div', {
    className: 'relative inline-block text-left',
  })
  const addRarityBtn = createEl('button', {
    className: 'inline-flex w-full justify-center rounded-md border border-gray-300 bg-white py-1.5 px-3 text-xs text-sm font-medium hover:bg-gray-50 focus:outline-none !py-1 mono',
    textContent: 'Toggle rarity',
    on: {
      click: handleAddRarityBtnClick,
    }
  })
  
  controlsContainer.appendChild(addRarityBtn)
  
  document.querySelector('.bottom-0 .relative.inline-block.text-left').parentElement.appendChild(controlsContainer) 
  
  handleAddRarityBtnClick()
}

window.addEventListener("load", main, false);

const rarityRanking = 
      ["#9098","#880","#5283","#2199","#8516","#2971","#8756","#2697","#513","#6244","#3049","#9079","#4300","#2959","#5823","#4430","#6590","#3372","#1479","#55","#342","#580","#1106","#1173","#1646","#3949","#3957","#4306","#5776","#6321","#6477","#6539","#6573","#7062","#7329","#7528","#8074","#8147","#8406","#8749","#8794","#9301","#3960","#9450","#617","#477","#4556","#424","#2422","#4060","#9481","#7945","#5349","#4822","#3477","#6159","#140","#5327","#3602","#6158","#7981","#1782","#9008","#9331","#5359","#2173","#1146","#2160","#9082","#5364","#4075","#2821","#7473","#6822","#9230","#3492","#5440","#2853","#227","#6322","#7958","#1979","#4071","#7581","#9830","#669","#5107","#6407","#5610","#8256","#6180","#4055","#8371","#5697","#8519","#5085","#4894","#1308","#8786","#1070","#1474","#6466","#6157","#7539","#2914","#5076","#9454","#8857","#929","#6344","#7529","#939","#2486","#4532","#9542","#1602","#8321","#5138","#4117","#7983","#2113","#8900","#4406","#625","#1872","#6442","#6515","#8752","#2331","#3045","#2391","#4508","#57","#9694","#2790","#13","#1854","#3445","#8034","#3081","#3322","#7388","#765","#461","#6696","#3092","#2510","#4577","#3451","#4740","#2366","#6633","#3893","#2217","#7492","#751","#2862","#2868","#1768","#3712","#577","#7432","#1618","#1891","#3647","#3973","#7787","#7792","#6767","#2287","#4564","#966","#281","#7065","#2837","#7534","#3954","#1099","#9628","#2227","#8612","#2376","#2367","#1986","#4370","#4975","#9000","#439","#2271","#1157","#9589","#5476","#9103","#745","#3419","#2201","#8830","#8780","#4506","#3417","#7843","#2645","#4552","#6509","#8426","#9166","#2125","#4101","#5394","#5743","#3892","#560","#241","#3709","#6602","#2521","#566","#3511","#684","#4264","#7046","#100","#3354","#8227","#987","#7874","#6258","#9742","#3033","#3985","#6999","#2358","#3939","#5766","#4057","#4345","#3234","#1662","#7929","#9462","#8002","#9705","#8119","#4542","#1834","#6531","#9087","#944","#2748","#8374","#9460","#1129","#9845","#367","#1183","#3642","#3908","#2479","#7658","#2365","#3629","#4228","#6001","#1675","#9543","#2077","#8024","#3154","#9593","#8341","#431","#2688","#8884","#2834","#1661","#3571","#1884","#9055","#5840","#8944","#5574","#882","#7939","#5286","#4037","#2087","#6185","#9314","#2191","#6540","#1252","#686","#3394","#1025","#6677","#6334","#7250","#8655","#8976","#9371","#9365","#3443","#2589","#1378","#366","#2846","#6224","#3226","#9984","#883","#3475","#7320","#9158","#2942","#7002","#4533","#9350","#112","#4545","#5520","#8501","#1014","#5346","#9018","#9942","#9184","#129","#6897","#3684","#5241","#7493","#4171","#2554","#6069","#4959","#1770","#3746","#4919","#3061","#7385","#5888","#3441","#3860","#6836","#144","#2315","#3619","#3745","#8069","#7780","#8580","#5581","#7696","#3183","#6045","#9174","#7437","#5773","#2631","#5415","#9093","#4116","#8642","#7099","#3369","#9603","#2679","#8001","#3201","#9495","#8207","#7765","#3927","#5836","#7286","#2800","#1439","#8059","#146","#2553","#3289","#4141","#6638","#6096","#8211","#8939","#26","#8768","#9707","#9576","#3857","#1208","#3942","#4373","#3943","#6178","#5301","#4773","#9967","#8603","#2068","#3231","#1349","#5230","#3762","#3137","#3272","#5396","#6400","#1440","#6188","#6554","#9843","#741","#6913","#2569","#4843","#884","#3194","#926","#4386","#2393","#5774","#7579","#6712","#8657","#8514","#8661","#6240","#2580","#9285","#1952","#3651","#4276","#4869","#3585","#5830","#9541","#4531","#83","#3718","#6038","#2762","#2856","#6279","#2258","#7452","#6238","#9734","#1358","#2984","#7088","#9567","#1635","#1879","#5104","#3758","#8129","#5811","#7567","#1995","#8427","#8080","#7720","#7996","#8542","#6674","#2717","#2212","#6885","#1819","#1394","#524","#6345","#2614","#8390","#1532","#7486","#645","#683","#6627","#4968","#466","#2349","#3625","#6665","#1672","#2383","#3344","#3215","#7454","#6093","#7984","#5474","#2525","#3169","#6227","#2134","#7521","#2464","#6380","#9995","#6761","#711","#1996","#2976","#6350","#7714","#9206","#1386","#8941","#1354","#3371","#5309","#2664","#6199","#6863","#4103","#5864","#4576","#3314","#7451","#1511","#1906","#603","#9500","#393","#6596","#3738","#6333","#6364","#4800","#3662","#5826","#2563","#798","#2209","#9167","#3447","#7417","#2929","#413","#605","#6641","#9831","#3123","#7029","#714","#720","#3609","#4841","#5287","#1335","#5523","#1810","#2281","#6716","#5462","#8099","#658","#7750","#2110","#985","#9720","#9575","#5844","#7701","#7533","#9804","#6752","#4427","#4409","#2674","#7931","#1309","#64","#7358","#7900","#3726","#1201","#9423","#9790","#88","#3716","#7892","#3931","#2130","#1084","#4348","#1381","#2053","#7147","#7483","#515","#2293","#2604","#8820","#8513","#188","#4827","#2303","#4042","#4573","#4885","#8694","#5813","#9555","#4439","#1773","#9061","#4379","#2326","#9045","#3711","#3966","#6189","#5910","#850","#8885","#519","#5628","#1093","#6745","#7989","#4523","#2309","#5426","#6986","#4052","#9445","#7387","#2706","#7730","#7976","#3540","#7597","#4248","#4180","#4517","#7427","#2096","#6192","#380","#9547","#1889","#3390","#3798","#7584","#173","#1256","#9968","#9748","#5798","#5781","#1588","#7345","#7675","#1787","#6019","#1316","#2843","#3449","#7508","#7622","#3675","#6204","#3790","#4612","#8732","#1190","#5280","#491","#6934","#4549","#9493","#6888","#5325","#1153","#3420","#7668","#8908","#3608","#9824","#4917","#9625","#4678","#5344","#2037","#2184","#7785","#8337","#4653","#2567","#8201","#2128","#7816","#1628","#5389","#7293","#7028","#1395","#2196","#9258","#1372","#5480","#1933","#2707","#3935","#7740","#8003","#5385","#7276","#5863","#1828","#1286","#3801","#590","#666","#2040","#1375","#6614","#337","#2115","#4194","#8598","#1888","#3179","#3982","#8478","#7198","#7679","#2189","#3635","#6517","#223","#3673","#8467","#6173","#1155","#4199","#3317","#5797","#6007","#8682","#1508","#5622","#3036","#6418","#5595","#8106","#2598","#2885","#1507","#3044","#7333","#1535","#5599","#6065","#6610","#125","#9115","#8260","#504","#1808","#1205","#3227","#6055","#6809","#7020","#4260","#2560","#3207","#3368","#7614","#9729","#9308","#4926","#8182","#7405","#3912","#4607","#9203","#3407","#1720","#2989","#5157","#619","#3197","#9909","#587","#978","#2073","#5716","#8004","#9516","#5767","#1897","#9551","#9786","#5970","#4378","#4371","#913","#9612","#7715","#5441","#2375","#113","#6436","#5337","#151","#881","#5334","#8264","#8903","#2978","#1749","#890","#1315","#4452","#179","#8425","#7564","#4251","#9217","#1007","#9916","#837","#2222","#6492","#9269","#8534","#7054","#8506","#1235","#2279","#437","#8636","#9333","#9862","#1229","#3156","#8415","#4931","#9034","#7764","#6217","#4601","#6672","#3299","#495","#6203","#8112","#8834","#1623","#6835","#1637","#368","#6424","#976","#4819","#3086","#9725","#7414","#8471","#1730","#3606","#5945","#9037","#9719","#8195","#6748","#2143","#4082","#1255","#6349","#7868","#9438","#8652","#9430","#4981","#7706","#8359","#8863","#10","#2263","#2870","#2445","#4340","#122","#9380","#4585","#696","#801","#3434","#6988","#7227","#7635","#8737","#8973","#9610","#9951","#1576","#3682","#8012","#9534","#6980","#2051","#6248","#9815","#4112","#3702","#8788","#627","#4886","#3495","#6849","#8093","#3938","#3023","#1280","#8482","#6218","#9834","#320","#1293","#3471","#8943","#6058","#2689","#8511","#3536","#4226","#3136","#7261","#6382","#7471","#8914","#9298","#3398","#1827","#630","#2274","#2958","#8888","#9357","#516","#3753","#7875","#4397","#5465","#3422","#3648","#5208","#1764","#2672","#441","#2409","#5224","#6082","#967","#1997","#9419","#365","#2695","#4115","#1300","#6311","#6892","#4441","#9970","#7233","#9907","#7570","#1298","#7924","#8824","#8894","#1060","#1018","#3145","#2992","#5948","#9932","#6414","#8588","#7606","#6015","#6840","#8620","#3906","#9695","#8617","#4779","#219","#45","#9369","#2001","#3027","#4319","#7693","#8435","#8414","#213","#263","#8985","#1645","#5542","#9884","#3775","#4716","#4046","#5792","#537","#2496","#2540","#3067","#3570","#4971","#8040","#8283","#9477","#3127","#7673","#9869","#3000","#9187","#175","#7549","#4129","#2671","#5172","#4771","#1917","#6384","#8949","#1740","#6773","#3100","#3281","#3482","#7881","#1838","#950","#9627","#2146","#706","#6246","#5333","#3701","#5373","#9484","#1215","#6481","#2832","#9577","#4024","#8559","#3284","#2457","#7623","#6304","#2430","#2503","#2392","#1649","#8217","#1237","#5105","#2420","#3161","#7802","#5724","#7019","#6829","#2663","#1360","#6918","#5049","#2836","#2119","#7578","#3544","#3932","#2313","#6609","#3728","#7370","#5112","#2063","#1500","#959","#9391","#4113","#8134","#8571","#6136","#9896","#7189","#7078","#4436","#4033","#5323","#2399","#4493","#943","#2228","#4873","#2291","#9027","#5607","#8249","#7433","#4144","#692","#8131","#8714","#7683","#93","#5754","#9796","#4393","#2266","#1597","#8396","#6468","#9231","#1076","#2648","#8504","#2002","#5795","#2568","#5312","#8804","#7723","#3015","#6027","#1543","#9503","#8479","#8018","#6095","#1931","#6967","#5471","#2080","#1428","#835","#4739","#8651","#109","#7553","#8994","#846","#6506","#9272","#7446","#1848","#5126","#309","#689","#5784","#2852","#3468","#3270","#378","#946","#3915","#6591","#9127","#7375","#6805","#6","#6763","#6479","#9782","#3769","#435","#5746","#2443","#5545","#646","#4484","#6862","#970","#1530","#6776","#1691","#4670","#5081","#2757","#2810","#9808","#3563","#2572","#4201","#5030","#9299","#5056","#4336","#9657","#3736","#9005","#2565","#4187","#3624","#1021","#1204","#5892","#4088","#2107","#2761","#2355","#2740","#2827","#4428","#4530","#9434","#5618","#3901","#3205","#440","#3426","#9733","#9681","#3793","#9699","#2020","#4835","#2962","#4355","#5075","#8633","#7008","#830","#541","#2803","#5676","#7152","#782","#7926","#9150","#5291","#7204","#6354","#7686","#8133","#6283","#5990","#7605","#7445","#5071","#2079","#4955","#1880","#8138","#1798","#7836","#198","#2996","#1348","#4107","#585","#4317","#1080","#7203","#3967","#2190","#1908","#4770","#8721","#4487","#4578","#9802","#1452","#6425","#7093","#3866","#7645","#1833","#7122","#3989","#1714","#2433","#6338","#104","#9105","#5509","#8168","#6220","#386","#262","#2945","#656","#851","#1919","#3473","#4400","#4727","#4765","#5674","#7951","#8067","#8553","#6107","#5204","#1805","#2760","#5515","#6618","#7254","#8054","#8966","#9679","#7607","#5556","#2356","#9194","#544","#1327","#7676","#7262","#8942","#160","#8817","#5170","#8338","#3236","#2451","#2413","#131","#8489","#7796","#4181","#331","#5981","#3752","#2844","#1228","#5110","#9977","#9168","#5917","#3676","#8733","#4014","#2145","#7887","#4269","#5382","#733","#4337","#8828","#5536","#8816","#6798","#4320","#8530","#248","#9036","#8136","#6697","#4655","#7131","#2545","#2879","#5375","#5800","#1410","#1376","#1923","#5015","#5668","#8356","#3660","#2159","#2468","#5655","#1272","#5268","#6039","#3926","#9095","#7680","#6114","#8619","#462","#659","#8877","#1444","#2665","#3897","#6616","#6657","#6832","#7317","#7752","#7838","#9155","#9882","#4951","#4139","#8901","#328","#187","#1505","#8669","#6926","#5915","#8459","#8282","#1004","#620","#110","#622","#1035","#1744","#2339","#4190","#5560","#8050","#5239","#530","#8663","#2066","#860","#5688","#8328","#2738","#4855","#6415","#2186","#364","#4258","#838","#1370","#8109","#5516","#1593","#3991","#3694","#9701","#6411","#7393","#4090","#3010","#568","#1667","#5903","#9662","#5802","#9617","#7854","#8312","#3346","#3385","#5031","#3367","#7682","#9714","#3004","#1545","#2793","#2377","#6502","#5119","#5206","#4221","#9717","#4777","#9472","#141","#2021","#3287","#3157","#9999","#7271","#4030","#4290","#9756","#7742","#8781","#2692","#8522","#8238","#1022","#3462","#3843","#2794","#8980","#1225","#2825","#4135","#5136","#1343","#7275","#9047","#5261","#3644","#8846","#5403","#3339","#8276","#1966","#9866","#117","#9538","#6568","#7368","#5577","#2826","#3620","#4596","#5282","#7051","#8049","#8062","#8558","#9887","#5093","#4312","#1374","#7903","#3355","#3020","#5568","#4049","#9556","#9491","#4301","#4617","#3640","#9210","#1212","#7213","#4683","#9801","#2402","#3667","#8593","#8765","#5941","#8836","#3643","#6838","#1551","#4840","#9920","#4401","#498","#662","#2619","#4405","#6579","#8394","#9689","#3898","#4974","#7223","#6663","#7870","#9709","#8654","#6078","#3212","#3558","#7856","#1935","#9641","#5109","#6678","#7362","#9022","#4385","#3976","#5246","#674","#2963","#7412","#2387","#9675","#4792","#4246","#210","#9232","#8650","#5639","#1448","#4680","#3834","#2948","#3538","#3488","#7398","#7466","#1916","#6643","#7632","#8758","#9159","#5927","#3484","#1604","#8244","#6035","#3090","#1285","#8143","#8199","#3163","#7081","#6202","#1516","#5783","#6682","#8183","#3217","#4989","#6087","#5548","#1509","#4001","#303","#582","#6655","#1852","#3003","#4040","#4282","#7782","#8354","#8532","#668","#1823","#4281","#3260","#9132","#4782","#1943","#260","#2752","#3514","#8904","#9651","#307","#412","#8141","#7064","#11","#7018","#5316","#3605","#8700","#615","#9558","#9415","#7589","#9426","#333","#5201","#8121","#8638","#5921","#4606","#2911","#2495","#3598","#4029","#8236","#314","#2839","#2546","#4021","#6232","#2588","#4119","#8449","#7558","#1992","#8576","#6845","#6823","#1102","#5699","#4831","#3298","#3519","#9631","#1198","#6490","#908","#5625","#4402","#8905","#8953","#9847","#3366","#5274","#1476","#4224","#9342","#3628","#6456","#6713","#8505","#8156","#9667","#6742","#3750","#2462","#1441","#4978","#5692","#8381","#5852","#4849","#9730","#8052","#183","#4736","#6377","#4160","#7840","#4358","#2975","#2638","#9326","#8325","#567","#8083","#2437","#2722","#5539","#3853","#1603","#3580","#1069","#9322","#1692","#5719","#7672","#5828","#5694","#6447","#7540","#2811","#9814","#6186","#6438","#5101","#5177","#9130","#7604","#9264","#9846","#8990","#2465","#5500","#1143","#2906","#9935","#7831","#7522","#1114","#4200","#455","#8468","#9461","#7590","#6111","#7424","#6541","#7953","#9525","#5964","#5069","#9876","#3388","#8782","#9004","#650","#6105","#6969","#9579","#8152","#4652","#9565","#3615","#7491","#6905","#4216","#6108","#7516","#4657","#6041","#5810","#3573","#3149","#4929","#9692","#5196","#7034","#4684","#1033","#2208","#9019","#5942","#4080","#6257","#4054","#3526","#3805","#4454","#7232","#6054","#7767","#3505","#3577","#8803","#9616","#8160","#4391","#4146","#5670","#3008","#8629","#4889","#579","#5192","#8118","#8719","#8345","#4682","#488","#3819","#7595","#4084","#6134","#4176","#1791","#2398","#9489","#5345","#8624","#5900","#9056","#2687","#1619","#9392","#8044","#8366","#7210","#3734","#6245","#3498","#6097","#8688","#1746","#9618","#4937","#5999","#5326","#1243","#8798","#5702","#4987","#6736","#9241","#3237","#6165","#1584","#5510","#8343","#2031","#2841","#7876","#548","#9704","#3839","#4522","#1766","#2442","#7319","#4856","#4505","#18","#9259","#8375","#2635","#9106","#7566","#480","#1323","#8497","#2727","#6642","#9387","#7079","#4633","#9520","#4593","#4728","#6938","#6129","#2599","#8006","#3929","#9726","#2147","#3795","#4580","#5858","#3494","#8839","#5759","#1166","#5841","#1379","#5266","#9006","#5979","#2861","#9181","#5930","#5048","#3239","#2104","#4262","#4123","#9412","#324","#7827","#5095","#6738","#8922","#7837","#2205","#8266","#9067","#152","#5943","#6883","#4547","#3742","#614","#1268","#9048","#722","#8399","#4420","#9352","#990","#3995","#5352","#448","#5877","#9502","#7674","#5185","#3781","#4208","#6721","#1652","#6854","#5044","#3343","#7406","#898","#5408","#7922","#4512","#2247","#7982","#6762","#7360","#5205","#7807","#9140","#490","#4499","#7376","#2255","#4479","#5601","#9190","#7055","#6956","#1679","#329","#137","#8316","#6893","#8279","#81","#1465","#4256","#6079","#3246","#9581","#6882","#6626","#3671","#4434","#7891","#8035","#7194","#3250","#7618","#1058","#3889","#829","#9766","#9825","#2344","#7925","#4915","#7292","#423","#4007","#1462","#1052","#931","#3106","#8","#6376","#8724","#6323","#1614","#3247","#6508","#2636","#4862","#1592","#4854","#8180","#8437","#1403","#6968","#4004","#8876","#4720","#9096","#1391","#5422","#9608","#958","#4595","#5711","#1416","#8896","#1669","#6359","#3333","#9698","#5586","#1728","#1344","#3830","#7663","#2288","#2249","#6092","#6139","#5588","#4910","#9680","#4839","#7586","#6907","#2702","#5027","#2200","#3348","#6372","#1839","#1047","#6904","#8350","#1430","#3731","#4448","#4645","#5944","#8837","#258","#4368","#6221","#5722","#7005","#9605","#963","#8218","#174","#2070","#729","#7515","#7795","#6930","#6234","#7264","#2985","#5100","#1417","#2011","#9940","#239","#8252","#9245","#247","#531","#693","#895","#1988","#2060","#2610","#3083","#3285","#3399","#3787","#4456","#4562","#4887","#5118","#5120","#5567","#5870","#6705","#7591","#8008","#8288","#8367","#9429","#9740","#9104","#8075","#9177","#600","#7798","#339","#2797","#5856","#3882","#4554","#6726","#7559","#1226","#2715","#1939","#4310","#7991","#5219","#6472","#8027","#5148","#8734","#3549","#8618","#2662","#2250","#8735","#9344","#6811","#4197","#902","#106","#5314","#8872","#1097","#1193","#1043","#6544","#8382","#3924","#3098","#861","#8977","#2653","#8285","#3800","#9963","#4263","#661","#8484","#6676","#6834","#671","#2642","#9410","#8740","#8293","#8757","#136","#3351","#3503","#5194","#2045","#2857","#1091","#2796","#7399","#1367","#5875","#8622","#621","#569","#1802","#3414","#2105","#5950","#3182","#1421","#8291","#7880","#7963","#235","#3282","#1579","#7059","#7087","#2758","#2890","#359","#8297","#1549","#888","#196","#867","#3172","#4861","#9810","#2112","#8126","#6775","#3457","#2214","#792","#4776","#8852","#4586","#9235","#1542","#8200","#3663","#1310","#4724","#4356","#2986","#5473","#1216","#5876","#4081","#7013","#5935","#6774","#8103","#6397","#4245","#7369","#1366","#8594","#3777","#395","#3337","#3357","#9553","#4069","#1072","#457","#1152","#3427","#4901","#7113","#734","#1940","#994","#9722","#2188","#8284","#4803","#9570","#6123","#2813","#4311","#5860","#9282","#2132","#4229","#1085","#1887","#5470","#6755","#7603","#4836","#8294","#5098","#4613","#53","#193","#377","#766","#815","#849","#1353","#1882","#2329","#2969","#3147","#3335","#4085","#4294","#4303","#4352","#4511","#4808","#5068","#5233","#5453","#5805","#6141","#6281","#7518","#7713","#7823","#7869","#7882","#8058","#8111","#8309","#9332","#9798","#9906","#3248","#6652","#335","#4999","#8921","#9099","#4525","#6874","#1477","#4774","#606","#2153","#24","#4805","#3305","#1534","#7866","#9891","#4012","#2382","#7745","#818","#2524","#6408","#8107","#2566","#3658","#4128","#2719","#9256","#7284","#9632","#8204","#7917","#6955","#9688","#6176","#2074","#3670","#5176","#9912","#5768","#2675","#7809","#6417","#9284","#5033","#2135","#4851","#7328","#9545","#22","#2254","#750","#5328","#2548","#7789","#5925","#4722","#1626","#5079","#5815","#8096","#6147","#8066","#7652","#1693","#5617","#9727","#4453","#9723","#9251","#7389","#7818","#2478","#3143","#7834","#2353","#6339","#8779","#2923","#2770","#8847","#6953","#7955","#9860","#2529","#6393","#7624","#7523","#5559","#6405","#9244","#5936","#8554","#2140","#7620","#1718","#325","#6388","#1946","#2987","#5687","#921","#5596","#9954","#6884","#4820","#7858","#6011","#9033","#7569","#8490","#9119","#1466","#5700","#8206","#7260","#5835","#5018","#4646","#9084","#6908","#3823","#6371","#7132","#1737","#6174","#725","#748","#3381","#3829","#120","#9463","#1422","#7178","#4936","#1384","#7030","#6534","#7977","#9113","#9789","#3575","#9758","#2304","#5369","#4457","#296","#3727","#6872","#9328","#6262","#1515","#1928","#3263","#5928","#7007","#75","#473","#631","#1261","#1420","#1478","#1859","#1894","#4407","#4509","#4816","#5358","#5579","#5853","#7274","#7694","#8271","#8521","#509","#8789","#6284","#9950","#7895","#4321","#7574","#1179","#5532","#221","#4346","#2089","#6693","#9646","#8818","#8928","#8518","#759","#87","#4271","#553","#8644","#4764","#8408","#8401","#2516","#3788","#454","#1539","#6668","#3051","#192","#6637","#4880","#2763","#7705","#5362","#7633","#7656","#2699","#5734","#1531","#8358","#1230","#877","#4291","#8324","#433","#9864","#6606","#7762","#8355","#4956","#2883","#6807","#1192","#5985","#8564","#8728","#6231","#5260","#7126","#4916","#3035","#8963","#497","#5954","#6421","#1396","#9046","#7615","#1608","#4079","#812","#3914","#6268","#8450","#4465","#6031","#3219","#6094","#4944","#514","#8439","#1743","#236","#4026","#5321","#1321","#2262","#6103","#5893","#9623","#517","#3952","#501","#8130","#6552","#7456","#9757","#9427","#6071","#3903","#6008","#2564","#9416","#67","#4189","#7000","#9903","#1463","#2918","#8597","#4366","#3740","#9020","#3969","#3141","#3166","#5931","#4174","#4706","#8098","#3190","#5434","#5983","#5495","#5642","#9372","#453","#6022","#8335","#9870","#639","#5259","#9763","#2300","#1073","#8124","#3826","#3803","#8545","#6561","#5641","#6170","#3209","#4561","#8125","#3568","#4783","#9156","#405","#2630","#3681","#4058","#8810","#8631","#2403","#7470","#9169","#2385","#2345","#7594","#2708","#6260","#9137","#642","#3956","#2944","#2874","#1786","#8329","#1664","#2017","#5988","#2795","#5433","#5907","#189","#9582","#1525","#8088","#5632","#1108","#1642","#4471","#7855","#1445","#862","#8016","#61","#7460","#2576","#8469","#4219","#9108","#9367","#7220","#9063","#1126","#6102","#3950","#6494","#6501","#6546","#7086","#9975","#272","#7707","#9062","#2968","#1922","#8077","#8191","#596","#7626","#808","#5308","#105","#2881","#6734","#86","#5435","#797","#1572","#6866","#6263","#3140","#5340","#3840","#6198","#1124","#1314","#3507","#2993","#4466","#5901","#3532","#7859","#6317","#9028","#2417","#7757","#3529","#4015","#9397","#1726","#4756","#8969","#716","#9078","#7575","#736","#6444","#2892","#7077","#1434","#9712","#3404","#9531","#6952","#6727","#149","#3448","#4302","#2182","#9754","#5598","#8261","#2787","#4725","#3999","#3132","#4254","#740","#705","#810","#925","#1009","#571","#5790","#8051","#5820","#1329","#2246","#657","#1725","#6629","#552","#3174","#8117","#5436","#2730","#4277","#9859","#2427","#3832","#4842","#9784","#932","#1287","#2328","#2336","#2678","#5175","#6130","#6229","#6320","#6499","#8274","#9198","#9620","#6664","#9600","#1209","#6817","#5507","#1892","#2617","#8139","#7289","#3104","#3328","#7971","#7351","#7322","#5386","#316","#1648","#6942","#780","#1558","#4305","#6850","#4796","#4860","#831","#8607","#7871","#3502","#703","#3206","#4093","#1402","#2414","#4634","#9767","#1135","#2405","#4072","#7596","#5197","#7409","#7650","#9366","#893","#764","#6966","#9663","#8626","#611","#6970","#7352","#6923","#1869","#8026","#9910","#5067","#8585","#8897","#6162","#5514","#1925","#3895","#8766","#2860","#8237","#2626","#7212","#3784","#8307","#7","#5087","#3266","#4558","#9109","#3552","#6914","#6077","#8754","#7419","#7217","#2578","#9375","#5289","#3859","#327","#6168","#8713","#8668","#7148","#6929","#5488","#6666","#9042","#9670","#4431","#3222","#9527","#8043","#4296","#7646","#7321","#7601","#9017","#4878","#3133","#7439","#1141","#4036","#873","#354","#8806","#6449","#9640","#1196","#5725","#1556","#4731","#3300","#6964","#5957","#5220","#5009","#7290","#1843","#770","#2121","#5227","#2718","#1907","#1759","#5959","#601","#6312","#381","#4930","#9653","#1400","#71","#6868","#3763","#9867","#3881","#7803","#1546","#4700","#7860","#1796","#9448","#7279","#7229","#9277","#7363","#2223","#2772","#4444","#4136","#6983","#4193","#2055","#3920","#1288","#2454","#2419","#4158","#5061","#8365","#1067","#7536","#1383","#9959","#1186","#6654","#9563","#5379","#9051","#8175","#2072","#3421","#2802","#7927","#7520","#8821","#589","#3733","#574","#3307","#7268","#6003","#3641","#8097","#3087","#3450","#7992","#4757","#7551","#4950","#7698","#3696","#1984","#905","#237","#8488","#4559","#5304","#718","#2170","#6242","#476","#7120","#8934","#5845","#7630","#1123","#3555","#1274","#2267","#6184","#6047","#4853","#2142","#581","#2528","#2388","#3442","#323","#4949","#7616","#9307","#5046","#385","#5585","#6062","#6746","#8691","#1932","#119","#7778","#911","#1721","#2435","#5658","#7842","#5267","#634","#7047","#8515","#66","#7912","#1982","#9279","#3664","#866","#5738","#5278","#5827","#8920","#4288","#9848","#5198","#9432","#319","#3097","#388","#3962","#6582","#700","#8223","#8071","#7722","#7817","#8961","#9144","#3632","#2491","#4504","#3947","#5779","#7944","#9501","#8649","#7629","#4882","#1553","#230","#1388","#7941","#8574","#2855","#2736","#7489","#3677","#2684","#1234","#3545","#5862","#5257","#1912","#6115","#8871","#8860","#2032","#7928","#8685","#7311","#8500","#1815","#7580","#8998","#336","#6085","#7425","#6474","#7395","#7168","#6175","#9453","#355","#7480","#7527","#6670","#1817","#5821","#9458","#1030","#4565","#7932","#7111","#4447","#9360","#7786","#3499","#3302","#4619","#8743","#9011","#7312","#9449","#5097","#3699","#5377","#233","#8300","#7188","#889","#4788","#6385","#7231","#5503","#4666","#6034","#1318","#8600","#6373","#5263","#3687","#2513","#6298","#475","#4178","#997","#4314","#2936","#89","#1324","#5493","#7238","#153","#1803","#4791","#2082","#5083","#4051","#2536","#6757","#7410","#1130","#4537","#7893","#8525","#3185","#2680","#8811","#1801","#8424","#1112","#5742","#2734","#3528","#8955","#4","#2541","#6916","#3986","#9146","#4363","#828","#2934","#3722","#1937","#2057","#6593","#5521","#5166","#1831","#5647","#259","#3810","#7191","#4240","#4834","#7525","#2139","#4647","#8613","#9433","#7909","#6864","#267","#747","#2875","#5829","#5228","#4323","#6460","#9721","#8275","#638","#4380","#1792","#5370","#1724","#7056","#1390","#9510","#10000","#871","#2888","#7719","#5696","#4050","#3221","#7537","#6570","#1174","#2307","#4710","#5146","#9682","#7965","#4823","#7075","#6064","#597","#6319","#8627","#1735","#7835","#8079","#5348","#9340","#5133","#9521","#4261","#941","#5450","#5760","#8017","#6042","#7617","#8541","#4560","#4896","#1006","#2206","#9379","#4751","#5384","#4047","#8710","#680","#7883","#5918","#2621","#6881","#7011","#9102","#9148","#268","#9879","#3680","#1483","#1338","#2317","#6522","#576","#2480","#3879","#7174","#9513","#9822","#4162","#8573","#4991","#4230","#2347","#5780","#5249","#8216","#6567","#6946","#6681","#5390","#6091","#4997","#2629","#2676","#5737","#6826","#2185","#2625","#6910","#632","#8670","#8802","#1071","#5817","#1110","#9856","#72","#5152","#2259","#5564","#8615","#6912","#7295","#1231","#1850","#7396","#8009","#194","#7600","#159","#1049","#5258","#7296","#3384","#3594","#936","#4442","#7784","#9777","#9850","#5184","#1751","#6630","#7287","#8151","#7665","#3900","#521","#6423","#1989","#6445","#343","#817","#7357","#5636","#955","#2008","#2439","#4329","#4388","#8769","#2581","#721","#2333","#4893","#5626","#2949","#1615","#7024","#717","#8220","#8257","#5207","#1820","#2712","#5330","#2244","#8145","#1282","#2453","#4173","#4891","#5442","#1899","#3612","#8231","#3306","#6632","#9770","#4787","#3295","#7913","#9655","#3293","#5174","#8259","#8526","#2081","#8815","#7165","#242","#208","#1010","#3652","#5750","#1389","#7154","#9280","#9746","#8841","#872","#7443","#6855","#3616","#7169","#9370","#1029","#4940","#4903","#6608","#6690","#25","#723","#3481","#9191","#9145","#1784","#9927","#1161","#2994","#8745","#7221","#5269","#9964","#8336","#2897","#8255","#710","#9049","#500","#8240","#2043","#8880","#2654","#5210","#5113","#1404","#5203","#5242","#825","#4528","#4969","#4183","#3046","#988","#9071","#2108","#7651","#2783","#8916","#2095","#9173","#6560","#7768","#3370","#3198","#1960","#5406","#103","#3171","#7857","#7949","#1082","#1639","#652","#1625","#8169","#254","#3077","#4327","#6701","#5004","#9068","#1861","#4983","#9773","#6153","#6724","#4209","#9797","#5627","#6336","#4223","#3292","#3844","#9900","#9382","#2237","#8278","#7828","#9482","#4414","#155","#819","#7487","#8363","#4131","#6391","#7177","#549","#9743","#4907","#8549","#3972","#1663","#420","#1015","#3590","#2455","#841","#4275","#1278","#4811","#1702","#5680","#3821","#3533","#7440","#9665","#4244","#7935","#6206","#238","#1326","#3216","#8056","#8575","#5072","#1005","#1446","#9544","#9151","#9785","#1489","#6209","#9406","#9839","#5372","#4477","#9559","#7565","#8376","#5741","#9223","#4398","#1620","#9324","#998","#7109","#8978","#3599","#1836","#9492","#6906","#855","#6939","#7994","#9660","#5855","#1573","#4382","#6243","#4170","#3214","#7006","#688","#6401","#3583","#3845","#9718","#833","#1482","#2880","#1017","#9794","#7985","#5778","#6274","#1164","#8392","#4818","#6739","#3068","#7636","#290","#9195","#4403","#5182","#4461","#3833","#3338","#1950","#981","#5392","#2622","#3824","#2601","#1599","#8086","#9327","#6171","#6684","#3177","#3402","#9262","#4709","#4239","#6081","#8581","#9892","#5513","#5635","#7367","#4663","#5883","#5014","#7110","#2903","#6432","#4960","#7808","#8269","#4996","#5822","#1405","#4435","#5221","#7314","#6704","#6673","#8833","#6331","#8342","#1144","#2239","#9885","#9476","#3497","#7241","#7543","#3429","#7044","#7943","#1682","#8544","#44","#4543","#9283","#2766","#5939","#6347","#2561","#8064","#7846","#8667","#4953","#3554","#4006","#6155","#7176","#7899","#4022","#3065","#1554","#6900","#4828","#6205","#7162","#8967","#318","#245","#8281","#8317","#670","#1930","#3863","#1536","#3241","#5199","#3919","#8937","#6288","#6620","#5339","#6210","#3546","#3518","#1290","#7179","#1377","#6928","#641","#4354","#8929","#7015","#9614","#8569","#1485","#853","#7867","#5151","#1665","#2940","#6305","#7127","#715","#5401","#6718","#7041","#7067","#8683","#3078","#5878","#7300","#7458","#38","#8844","#1248","#1092","#2277","#8162","#1733","#5794","#9222","#9396","#5757","#532","#6518","#6066","#933","#8163","#2966","#7100","#8048","#6965","#6993","#7151","#4581","#5190","#4182","#4568","#5134","#1830","#1999","#7234","#8689","#134","#3806","#3225","#3565","#3689","#3550","#8557","#9394","#2591","#6699","#4333","#4852","#5226","#1886","#7800","#4529","#8831","#7119","#3109","#6126","#2016","#6588","#6599","#5129","#6995","#4203","#2275","#5565","#7485","#8547","#8924","#5302","#7832","#8753","#1647","#9524","#7923","#795","#4735","#6340","#8421","#9040","#6784","#9310","#9945","#4235","#338","#2801","#6128","#3211","#8845","#1197","#7074","#6851","#3534","#2542","#3105","#2910","#2324","#8170","#7430","#844","#5551","#804","#4825","#7335","#23","#7948","#8592","#4077","#5818","#9431","#6996","#2822","#5017","#8776","#1521","#6559","#8104","#5395","#7163","#6142","#3695","#9293","#2756","#8933","#654","#7825","#3916","#4267","#6018","#4957","#7085","#9404","#4259","#8646","#9278","#9901","#2703","#7469","#4994","#2519","#6212","#7350","#8407","#5526","#8643","#5819","#3551","#7153","#3159","#8987","#5661","#7988","#749","#80","#1901","#2241","#9928","#1605","#5630","#6783","#8938","#7812","#6514","#2093","#6121","#6947","#8253","#4326","#1520","#7577","#9425","#181","#1849","#5374","#5703","#6261","#1578","#5455","#7138","#3040","#8456","#6528","#6708","#3022","#3403","#8322","#9032","#2720","#9253","#7157","#6223","#4750","#5573","#2428","#3516","#2007","#2308","#5058","#5448","#4905","#5139","#9965","#6575","#209","#6482","#4763","#8385","#868","#9178","#8767","#3160","#6440","#6478","#2586","#2314","#6435","#4550","#1673","#9976","#1715","#7145","#1284","#6051","#6636","#4387","#1590","#7484","#827","#1302","#3114","#3877","#3980","#7848","#4315","#5897","#334","#1393","#1560","#3091","#5997","#9315","#3802","#232","#2805","#5288","#4474","#9111","#1699","#6860","#8092","#2714","#3487","#2830","#4344","#8741","#5799","#7156","#4795","#7526","#5078","#5571","#822","#1800","#6498","#6586","#7049","#2943","#9609","#7269","#9468","#7281","#5013","#7568","#7561","#7023","#2203","#5041","#5086","#9853","#6368","#6656","#8369","#6873","#903","#7181","#7563","#1063","#6032","#2477","#5295","#9136","#6867","#8014","#4044","#2741","#8641","#7057","#4867","#7107","#664","#5007","#7704","#8950","#7872","#499","#5178","#4868","#2573","#8635","#5425","#3666","#1104","#2603","#6273","#763","#4738","#5477","#4102","#9683","#8927","#3187","#5019","#9821","#4411","#4062","#2290","#3007","#8662","#5873","#8822","#9522","#938","#256","#5923","#7139","#3480","#5672","#8263","#8981","#9281","#288","#5963","#5421","#8658","#6749","#5487","#1359","#3138","#6419","#1502","#4429","#6512","#7479","#6520","#1128","#2683","#2829","#4582","#9696","#1559","#6187","#3283","#5273","#1306","#2321","#6326","#6453","#9569","#3405","#879","#2467","#4274","#2547","#2670","#2071","#6462","#1484","#47","#317","#1056","#6625","#1116","#207","#2273","#4726","#4360","#3257","#7467","#2025","#4812","#442","#7655","#5179","#1561","#5162","#7206","#4364","#9077","#3525","#2523","#5772","#6660","#3054","#96","#5366","#5669","#4553","#8527","#3455","#1088","#8033","#9447","#8070","#2283","#4249","#3576","#7130","#2594","#923","#2690","#9761","#4132","#8910","#1577","#1671","#4611","#5919","#6330","#6395","#1387","#2755","#6256","#4659","#3774","#6793","#1265","#1845","#2268","#3930","#6428","#643","#7824","#7959","#178","#3301","#6239","#1609","#5608","#503","#9691","#2922","#9361","#704","#663","#9654","#5447","#4685","#3589","#375","#6101","#9574","#1408","#3846","#1236","#8239","#9399","#5933","#8639","#4941","#8189","#9537","#4252","#8019","#8640","#4605","#4927","#48","#1761","#2851","#826","#5449","#1457","#2798","#6429","#42","#5969","#1510","#5341","#1914","#6810","#6615","#2786","#4416","#1789","#3661","#4063","#7160","#383","#9021","#3178","#1443","#7073","#145","#1142","#1881","#2660","#3855","#4961","#4257","#1054","#2346","#2677","#2754","#6259","#8277","#6222","#7170","#7266","#3311","#8673","#1742","#458","#3713","#9668","#9817","#2937","#1613","#101","#7648","#255","#1432","#1459","#1504","#1794","#2320","#2470","#3560","#3842","#4025","#4034","#4166","#4507","#5195","#5378","#5735","#5887","#5908","#6378","#7083","#7461","#7531","#7733","#7744","#8451","#8790","#8917","#8940","#9564","#3813","#8801","#446","#133","#5786","#9561","#4806","#7072","#3593","#9818","#1461","#8799","#8188","#9539","#2743","#4433","#9179","#2440","#9060","#340","#4935","#2606","#8063","#9064","#5003","#7468","#5243","#4122","#6013","#6927","#6795","#4711","#7998","#1458","#7249","#9983","#2452","#180","#1050","#5402","#7904","#9861","#3729","#4238","#9405","#4976","#9417","#2006","#5200","#5429","#8114","#6182","#3029","#8113","#9914","#3864","#3990","#7766","#1496","#4626","#4913","#9176","#5804","#6758","#2157","#4630","#6275","#975","#7684","#6671","#757","#4772","#1351","#19","#9980","#2270","#494","#8726","#2429","#2499","#9208","#9214","#9154","#2359","#7097","#3512","#5021","#9470","#6659","#4019","#5016","#6235","#417","#930","#4278","#8094","#2595","#9519","#3361","#1680","#403","#5491","#4900","#3828","#8551","#220","#6551","#695","#3527","#6715","#7703","#2893","#4701","#9624","#1211","#2532","#1495","#1965","#2982","#9035","#1734","#3192","#3822","#1825","#4694","#2181","#3743","#5857","#9002","#762","#1752","#9813","#784","#3479","#8299","#2099","#5423","#5427","#8411","#9586","#1727","#2724","#2812","#6325","#447","#6254","#5024","#6785","#3155","#3785","#9075","#555","#4837","#4590","#1077","#7364","#4815","#1658","#6036","#6410","#1851","#5552","#1676","#1181","#9779","#3564","#6662","#7921","#5417","#3189","#8122","#5706","#4618","#5563","#1039","#2092","#20","#8198","#1311","#3469","#7400","#4993","#4394","#3838","#8029","#9297","#1654","#858","#4125","#9329","#8430","#3617","#6120","#9321","#6998","#9401","#876","#6399","#6944","#1970","#8387","#3987","#2425","#9693","#8330","#4656","#4863","#4965","#7908","#8867","#6236","#8520","#8548","#1260","#5250","#6976","#7670","#8965","#7159","#682","#5168","#6796","#5464","#2745","#3764","#727","#2062","#7116","#2864","#7436","#7186","#284","#4186","#7372","#1512","#1544","#4157","#2172","#2782","#9549","#3120","#9996","#2141","#6572","#565","#6285","#376","#7208","#7137","#1122","#4212","#4718","#6145","#8968","#9213","#7974","#3380","#9750","#5010","#3597","#5270","#6566","#5529","#7161","#3710","#8235","#4906","#8599","#2050","#16","#7839","#4377","#9338","#7634","#6750","#586","#5272","#4636","#8695","#9242","#9488","#9669","#1003","#4114","#2475","#3052","#2243","#7610","#6975","#8716","#9126","#8717","#8909","#8596","#1001","#3458","#5026","#371","#5484","#1303","#410","#8436","#8591","#9753","#4925","#2436","#7222","#9124","#7390","#1826","#7012","#415","#1837","#5231","#226","#8935","#7653","#799","#6310","#7010","#8301","#9849","#7627","#8659","#2777","#6335","#6669","#9346","#4597","#3001","#3970","#4717","#9383","#968","#7934","#9749","#6026","#5053","#6488","#1217","#2640","#4632","#4784","#4527","#4640","#8948","#5894","#3416","#2276","#3595","#8494","#9200","#2792","#3435","#7503","#8287","#7937","#9550","#2004","#2964","#3055","#4587","#4982","#7980","#779","#1013","#2251","#3732","#6859","#8648","#2176","#5624","#9189","#3686","#5000","#8930","#363","#8361","#2019","#4571","#6278","#4061","#6556","#678","#4616","#9319","#5637","#6348","#8383","#2778","#2137","#1320","#1687","#5709","#5752","#5867","#8123","#3683","#2395","#527","#1797","#6794","#8090","#2498","#2052","#9650","#9897","#1951","#8550","#5320","#9915","#2049","#2620","#2990","#8774","#4890","#250","#857","#9800","#374","#545","#852","#5154","#543","#1499","#1115","#8116","#5431","#2396","#5896","#7307","#7407","#7654","#58","#3028","#655","#940","#5211","#1868","#1111","#4629","#6527","#6594","#8819","#3751","#914","#1107","#1762","#2030","#2075","#3871","#5074","#6467","#6937","#9490","#9100","#7438","#7155","#4041","#467","#2148","#6151","#7037","#1487","#4628","#2644","#6878","#540","#536","#4676","#5525","#6523","#2029","#9648","#7588","#74","#3277","#12","#2117","#6193","#6049","#2114","#8323","#8404","#9666","#4689","#7302","#7562","#3376","#4450","#6898","#5481","#8060","#6857","#9229","#3401","#77","#992","#1754","#1492","#5407","#2518","#4481","#2296","#8061","#2150","#6597","#6104","#2781","#7852","#2616","#111","#1414","#3700","#8843","#4432","#27","#2010","#5124","#5584","#6086","#6982","#820","#2666","#5868","#7272","#9302","#3928","#1856","#724","#2193","#3490","#595","#2090","#8159","#9205","#8712","#2085","#5775","#4658","#8132","#2278","#7631","#9149","#4501","#6640","#7304","#6990","#6132","#9152","#4148","#5381","#6461","#4637","#3042","#1860","#5490","#2044","#3707","#5744","#3626","#4445","#7325","#1651","#1862","#3478","#3876","#425","#9038","#4892","#8431","#7962","#2661","#6837","#5604","#6434","#5300","#6991","#7861","#9908","#261","#965","#1238","#2126","#8858","#9595","#9409","#6601","#3610","#5602","#8703","#4998","#624","#3176","#5329","#918","#7760","#9250","#406","#9170","#62","#1023","#1902","#4988","#9599","#9645","#9949","#4672","#8005","#3968","#2533","#4761","#5727","#5955","#7193","#7602","#7821","#9041","#9957","#2938","#551","#3131","#3290","#5606","#9875","#735","#8918","#369","#1488","#4179","#5025","#8632","#618","#3861","#7699","#9613","#3331","#8813","#8893","#4677","#2729","#422","#573","#3773","#8166","#8507","#3674","#9772","#5838","#991","#5861","#7042","#3719","#777","#2759","#7330","#1694","#4098","#9487","#592","#4215","#5430","#8241","#2732","#979","#4341","#6100","#3825","#9133","#4496","#5998","#6702","#7251","#430","#1624","#2373","#2858","#4673","#1059","#1334","#3816","#9518","#9738","#9514","#1582","#1594","#4265","#6791","#9871","#6146","#9","#2512","#8458","#2372","#1790","#1895","#9873","#628","#1685","#2657","#7661","#3688","#6374","#6504","#8672","#9658","#1064","#1411","#1601","#4794","#7315","#9638","#2084","#8447","#2960","#6328","#836","#1689","#1799","#5356","#7783","#1701","#2764","#3019","#3665","#3867","#4426","#4977","#9389","#9571","#3056","#7514","#1641","#2351","#3655","#4747","#4748","#5667","#6358","#8912","#9997","#5466","#8671","#231","#4520","#1253","#4185","#4365","#9994","#6500","#2476","#1616","#4350","#7507","#9931","#1832","#1976","#3016","#4785","#5163","#5859","#5996","#6719","#8443","#6651","#7226","#4404","#7851","#4615","#7327","#7377","#6351","#8995","#1763","#2390","#4375","#5252","#5958","#8760","#9388","#4759","#4832","#6733","#9135","#1528","#1776","#5248","#5218","#8509","#8045","#3760","#1291","#2164","#4635","#6083","#6486","#5690","#8512","#843","#1472","#1677","#2334","#3111","#6646","#6813","#6858","#8229","#8866","#8964","#9101","#9978","#538","#5570","#9030","#9993","#9354","#4458","#4758","#5976","#9228","#6300","#3256","#8686","#4143","#1065","#3948","#5298","#7754","#5956","#6799","#4548","#4621","#3878","#6725","#6846","#1731","#529","#886","#6950","#1132","#1674","#1780","#6216","#6530","#6542","#7384","#8433","#8480","#8991","#2316","#2364","#3365","#4467","#4847","#5662","#6692","#8108","#8171","#9619","#2015","#2517","#5678","#6387","#6648","#7779","#8783","#308","#4083","#8311","#270","#2819","#598","#4651","#56","#4733","#3359","#7545","#4289","#2014","#2234","#3614","#9295","#4679","#2848","#7441","#3891","#8254","#1890","#7344","#9007","#7308","#7933","#4111","#6293","#3474","#5645","#8472","#1537","#4222","#2301","#5059","#7918","#3496","#5558","#1134","#1401","#9955","#1081","#2685","#6352","#953","#6138","#9335","#2634","#3017","#4688","#640","#2198","#8992","#37","#2253","#2873","#8660","#3288","#4140","#6771","#8759","#3569","#4721","#9209","#3715","#341","#8746","#9778","#6728","#5884","#2590","#6548","#3395","#2970","#2605","#5769","#3002","#6820","#3122","#7990","#9630","#6252","#6459","#9829","#7638","#9833","#8630","#1011","#8510","#5412","#1783","#2939","#6815","#8153","#5463","#1355","#5114","#9775","#2650","#416","#4563","#5236","#9528","#8290","#4745","#9183","#2047","#3053","#7277","#4154","#9202","#7814","#3099","#2585","#8854","#8614","#2056","#5006","#563","#9294","#9828","#4202","#7464","#8543","#474","#2609","#5966","#8849","#8856","#2235","#2831","#3162","#4169","#5629","#5764","#7896","#6901","#6723","#287","#922","#9320","#3723","#9498","#345","#847","#9597","#2225","#41","#5005","#5459","#9923","#2647","#5416","#1307","#1089","#9535","#3944","#7681","#609","#7196","#7256","#1279","#1853","#7727","#8829","#1341","#3117","#1911","#9271","#3158","#6063","#8386","#389","#685","#5475","#8340","#7850","#5665","#6163","#9601","#372","#3685","#118","#387","#9003","#7587","#1380","#3232","#3386","#2261","#698","#1517","#5020","#426","#4163","#7108","#8997","#3483","#3430","#2751","#6808","#7987","#4702","#8379","#3596","#5854","#8057","#3072","#3917","#7677","#9362","#2286","#557","#3955","#5583","#2704","#5850","#7053","#8226","#5499","#8610","#9973","#4233","#900","#3463","#4124","#2587","#5446","#7475","#1178","#8954","#138","#1811","#3578","#4690","#3517","#9422","#299","#3905","#7501","#1435","#7428","#1947","#3112","#8696","#9260","#5121","#7873","#728","#518","#5012","#887","#9467","#9254","#1040","#1094","#4353","#9943","#4443","#9507","#2100","#5648","#6226","#7031","#7353","#937","#1299","#6181","#9377","#7692","#6959","#6925","#200","#7294","#856","#1867","#3579","#9312","#6801","#8021","#4045","#6119","#7763","#3107","#7905","#166","#2330","#3971","#2187","#2539","#2667","#4018","#5714","#8243","#3548","#4415","#6327","#8247","#6647","#2038","#4031","#5787","#7822","#5193","#9014","#5322","#8270","#885","#1103","#3799","#7759","#1518","#9752","#373","#5413","#9986","#2371","#43","#1712","#8185","#5691","#2033","#3735","#5550","#6426","#6510","#3645","#3885","#5065","#6649","#2641","#4603","#4814","#5217","#7391","#1990","#3014","#8128","#3975","#4217","#562","#6247","#927","#954","#1227","#4589","#3720","#9486","#283","#8339","#8055","#9710","#186","#5938","#5317","#1345","#3657","#4518","#9499","#806","#5397","#6023","#8974","#1878","#7069","#7386","#7401","#4741","#2179","#7611","#3792","#2458","#821","#1985","#3279","#1905","#4298","#5554","#791","#1769","#3717","#8609","#1529","#773","#1087","#1119","#3470","#6558","#8174","#3485","#5991","#7076","#3096","#7474","#1296","#2872","#7060","#8475","#4760","#297","#3121","#6237","#1467","#2656","#7349","#9153","#6356","#607","#4196","#6166","#1332","#2709","#2649","#6792","#3245","#1424","#626","#4704","#5106","#5561","#9590","#9989","#5234","#2899","#7956","#9356","#3400","#5880","#7695","#9529","#5399","#9659","#2537","#4662","#9088","#5953","#3304","#5073","#6507","#6611","#8702","#8727","#7691","#9706","#3737","#8791","#924","#5718","#2482","#4369","#5949","#234","#6803","#4156","#9981","#1131","#3460","#5975","#9881","#5712","#5748","#392","#2171","#9483","#635","#2368","#4877","#1182","#5895","#6574","#7036","#525","#7150","#4699","#1154","#9317","#3202","#3024","#9917","#7608","#2282","#672","#1120","#3705","#8891","#984","#1538","#5684","#7550","#699","#2828","#5789","#3896","#5332","#1406","#5485","#6680","#7510","#9083","#9459","#167","#3062","#4255","#7449","#7576","#1574","#5831","#34","#708","#5393","#6819","#9339","#1269","#1533","#5153","#5411","#7265","#9533","#5534","#2912","#9771","#6703","#1109","#1133","#1145","#6208","#2494","#2815","#3079","#3556","#5803","#6164","#9201","#9303","#6470","#9226","#1118","#5132","#5695","#1078","#5788","#9118","#1959","#2816","#7016","#1643","#6307","#8764","#3353","#5785","#8931","#5555","#6443","#9114","#8368","#7455","#5824","#7092","#2446","#4449","#4681","#9686","#2946","#6267","#9678","#9930","#407","#776","#8742","#4693","#2024","#2027","#554","#3817","#6353","#2297","#3730","#8524","#1468","#790","#2863","#5633","#9611","#7972","#8690","#2694","#6920","#8022","#8333","#5292","#9992","#7299","#1723","#3493","#1920","#4002","#7966","#6770","#547","#1621","#1858","#2230","#3118","#3228","#5022","#7214","#8902","#9016","#2686","#7771","#275","#5631","#7708","#8351","#9512","#8313","#9637","#4535","#6747","#2767","#4599","#5311","#7033","#8081","#2213","#3835","#4719","#5277","#5315","#6386","#6576","#7423","#928","#3315","#8539","#859","#1903","#3341","#3650","#212","#1222","#6547","#9768","#3408","#1704","#5978","#9948","#676","#2768","#1221","#5569","#9039","#2747","#2891","#1176","#3274","#2061","#3649","#2615","#4421","#9182","#4947","#1342","#397","#8604","#644","#3894","#5186","#7225","#7954","#6493","#8179","#211","#3439","#4133","#7993","#783","#1427","#3887","#4798","#5762","#6589","#6689","#9274","#7502","#1057","#4168","#7961","#4410","#4498","#7038","#4995","#322","#1138","#2500","#8346","#1066","#3347","#3375","#468","#132","#977","#4396","#1297","#4304","#5547","#253","#2302","#4992","#7736","#2710","#2469","#4395","#3862","#816","#542","#4032","#1569","#4786","#3634","#5173","#5557","#8722","#3129","#5882","#7035","#648","#1526","#1684","#753","#1328","#1941","#2776","#5461","#5533","#6766","#7164","#9446","#647","#9934","#4660","#5167","#7004","#7039","#1240","#2799","#4924","#8491","#5305","#8812","#5677","#9540","#9991","#5338","#8771","#3858","#4334","#3741","#6861","#7022","#4963","#5720","#7969","#6972","#2325","#5812","#8738","#4349","#9464","#1079","#2232","#2575","#3406","#3308","#7450","#7547","#7593","#8036","#3423","#8537","#1846","#3364","#5240","#8110","#3352","#5653","#2118","#7313","#8730","#3264","#5782","#7167","#9708","#6005","#1270","#7625","#3336","#3520","#9175","#9304","#6730","#3220","#2154","#3654","#1337","#2162","#6525","#4934","#7121","#4462","#4870","#6769","#9671","#8222","#3327","#8792","#459","#5801","#7739","#9393","#2570","#3587","#2472","#3005","#4697","#8899","#690","#1336","#2370","#3630","#1541","#5391","#4106","#8258","#8492","#1020","#1347","#2924","#3772","#5640","#7599","#7810","#2865","#3148","#5686","#8400","#5444","#6446","#3238","#7897","#2003","#2733","#4574","#4624","#9309","#1074","#8583","#8996","#1263","#4134","#6296","#7724","#7894","#8678","#9596","#7833","#2559","#7040","#9969","#675","#7048","#904","#3323","#4374","#5591","#8595","#2530","#3101","#5102","#5342","#7365","#8349","#8951","#1656","#4744","#4536","#6989","#9240","#9385","#2742","#1356","#2551","#3934","#5050","#9783","#4879","#6644","#3073","#3856","#4874","#9690","#1962","#2111","#3150","#9857","#4165","#8192","#8410","#8503","#508","#4566","#5549","#5562","#7431","#8184","#9289","#8242","#9677","#1748","#3506","#4280","#1470","#2954","#701","#1936","#8015","#8155","#8215","#775","#2913","#949","#3164","#5472","#2218","#1100","#6294","#7849","#6645","#2744","#4604","#6369","#264","#326","#4592","#3766","#4503","#8915","#8999","#1051","#3559","#5609","#6457","#7158","#7978","#8957","#9656","#9888","#4623","#4781","#4908","#6394","#5926","#7310","#1978","#4664","#8601","#6899","#6581","#1993","#3988","#7253","#2808","#8972","#824","#8751","#3755","#1000","#5400","#5420","#4526","#6768","#9988","#1486","#2086","#279","#5544","#6251","#9474","#148","#2407","#8809","#9376","#9497","#3965","#5122","#5350","#5904","#7071","#7124","#8142","#305","#899","#2005","#2849","#4899","#4914","#5089","#5962","#7999","#8428","#8540","#5965","#2637","#40","#4514","#9442","#282","#1779","#1994","#3748","#4236","#4813","#9012","#4948","#6679","#7185","#5237","#479","#896","#1523","#3254","#5432","#6133","#6448","#6824","#7237","#8161","#9926","#6156","#2909","#8535","#9263","#3396","#4232","#1032","#2696","#9029","#875","#5749","#4211","#69","#6661","#9072","#3069","#3453","#3","#8945","#506","#1048","#1968","#2935","#6117","#3240","#5519","#1501","#6687","#6753","#2318","#3267","#8193","#8267","#755","#785","#1098","#2034","#2311","#2463","#5704","#6059","#310","#1175","#1807","#9024","#7755","#2441","#2520","#3184","#4871","#229","#769","#7863","#8664","#8842","#6765","#8165","#9776","#7819","#2401","#2623","#4468","#4661","#2773","#2896","#3627","#4008","#789","#2983","#9358","#143","#1037","#5143","#2639","#2941","#5135","#6277","#9508","#9877","#4087","#3082","#9300","#9143","#5130","#1150","#8898","#438","#249","#2022","#971","#6583","#9219","#5002","#3668","#4802","#7082","#7878","#3116","#7498","#9700","#9741","#6190","#2774","#5517","#5993","#6754","#347","#1781","#4954","#5428","#3273","#5902","#3581","#4292","#1738","#3886","#6106","#5281","#8065","#2824","#3286","#3923","#7291","#9672","#1158","#1262","#2410","#7687","#5546","#7211","#6014","#4970","#295","#8319","#9899","#3271","#6140","#6592","#463","#4155","#9889","#2488","#4778","#2884","#7748","#1612","#3218","#4362","#6360","#1024","#4418","#8795","#6416","#7710","#7463","#472","#2806","#8773","#3704","#5512","#8855","#4644","#4065","#98","#5947","#8486","#5701","#5276","#9247","#197","#285","#7864","#8647","#2289","#4920","#6289","#1750","#2920","#172","#1841","#4669","#7235","#7538","#9221","#9368","#4824","#774","#2721","#9633","#9960","#1847","#4865","#8887","#2178","#2116","#9288","#9506","#356","#2698","#1456","#8391","#3771","#5460","#5920","#6909","#8744","#5652","#4713","#5916","#7462","#1681","#8608","#2818","#593","#3374","#5594","#6021","#7411","#2932","#7061","#2471","#8665","#54","#564","#9122","#4149","#7243","#2474","#3013","#3146","#9982","#1475","#744","#1600","#5265","#5733","#6841","#9291","#7585","#5937","#7230","#2332","#9913","#8528","#7195","#793","#5080","#8187","#2354","#8946","#5497","#6480","#8306","#3618","#5052","#1513","#6853","#7769","#807","#2973","#7202","#3454","#1709","#6290","#1034","#3275","#4519","#1955","#4966","#5911","#3334","#1636","#9865","#4490","#4768","#8251","#8531","#4789","#5245","#3756","#7678","#5600","#6043","#182","#7731","#1362","#5992","#124","#5284","#6709","#1330","#3387","#9097","#1563","#3613","#3850","#8674","#2544","#2577","#6276","#6413","#7017","#9220","#9893","#3698","#6329","#8205","#2195","#390","#5756","#7094","#483","#2257","#8453","#9536","#6941","#7583","#1793","#1239","#5518","#204","#7481","#8144","#492","#1568","#1900","#2379","#4227","#5051","#1771","#1972","#6951","#1361","#5035","#7472","#7865","#8037","#9345","#9905","#3868","#7025","#352","#1249","#6464","#3431","#2400","#9793","#6631","#6933","#8203","#9270","#1630","#9090","#2448","#2161","#4242","#4572","#9562","#4064","#7628","#7718","#4546","#6961","#292","#8563","#59","#4206","#6533","#7862","#1668","#3066","#3360","#5094","#6890","#7889","#4495","#4250","#6915","#7245","#5070","#6084","#6940","#1294","#6280","#1913","#4486","#7970","#8194","#9286","#7205","#7512","#8584","#1053","#3963","#8146","#3151","#6004","#8879","#8892","#3464","#5092","#5960","#7420","#9070","#7216","#9787","#5705","#8881","#1711","#2515","#9065","#2106","#6756","#5398","#9112","#1407","#3510","#8023","#2374","#5486","#6469","#9227","#1250","#2967","#9874","#8452","#6532","#3413","#4150","#5914","#6370","#360","#7799","#8562","#2183","#2900","#3659","#3770","#4322","#4845","#4544","#6135","#972","#1697","#1760","#5307","#653","#907","#6308","#7952","#7960","#8157","#4283","#8405","#6870","#2327","#3537","#7709","#8389","#5439","#5158","#4557","#5271","#8360","#2109","#5443","#6821","#225","#4850","#5578","#2878","#9318","#9985","#3321","#3064","#3804","#9774","#7383","#76","#421","#1548","#3397","#5161","#6886","#8874","#9852","#6919","#8438","#9386","#2041","#95","#539","#1398","#6830","#9069","#4497","#8835","#4691","#1480","#2136","#2168","#3438","#7136","#9929","#1934","#3203","#4649","#9598","#169","#8230","#834","#7729","#9548","#1046","#3521","#1171","#9851","#357","#8327","#743","#6475","#312","#1708","#8962","#50","#5651","#870","#4918","#9081","#6814","#7813","#9343","#9937","#3941","#8477","#5971","#1814","#6201","#487","#5011","#8838","#6302","#8568","#6806","#8474","#3294","#7482","#2584","#7916","#9842","#2600","#8289","#73","#5438","#8873","#289","#942","#3974","#7096","#9880","#3818","#3979","#6109","#999","#7282","#8268","#4210","#7098","#719","#2094","#2823","#5755","#6741","#6751","#1650","#6585","#9961","#1346","#4067","#4600","#7378","#8823","#1774","#2221","#2845","#14","#1741","#5244","#9261","#1747","#2930","#6253","#2101","#3994","#6169","#6685","#7418","#4671","#9971","#3070","#3865","#5528","#897","#2165","#2202","#9760","#1473","#286","#1292","#1514","#1688","#3200","#7063","#5062","#4569","#7045","#4367","#4551","#6056","#8422","#9139","#5478","#8848","#8911","#9673","#3768","#1522","#5123","#8212","#613","#3342","#4737","#3922","#956","#1041","#4686","#5620","#1169","#3984","#4270","#5279","#7348","#561","#3820","#6379","#9001","#9162","#1219","#3193","#4790","#731","#8708","#3041","#7258","#8320","#2867","#2438","#9602","#107","#185","#1339","#2859","#7306","#8621","#9936","#1436","#3362","#8634","#5587","#2847","#3921","#4243","#4614","#2226","#2231","#6381","#687","#5747","#8296","#3324","#6090","#7806","#1926","#2995","#5388","#6722","#2415","#2543","#4986","#7354","#5732","#7642","#4734","#4943","#6948","#7726","#8197","#9840","#1289","#1365","#1875","#4137","#8420","#8457","#8680","#9844","#1497","#3363","#5806","#2144","#2158","#3071","#4583","#8982","#9275","#1629","#7775","#8850","#1591","#1596","#2151","#2668","#3134","#4070","#4099","#6984","#8181","#6777","#240","#761","#1567","#5127","#6152","#7298","#8763","#2411","#3796","#5540","#9435","#9606","#3297","#2169","#2120","#7560","#7341","#559","#1185","#1409","#2917","#3873","#4766","#5077","#6487","#6495","#6562","#7444","#8925","#1167","#6303","#535","#2363","#2602","#2659","#3312","#3910","#4625","#6040","#7657","#7758","#2869","#3797","#7043","#9811","#1736","#4010","#9268","#3165","#3542","#4654","#7413","#2731","#3946","#7442","#3466","#3757","#3841","#4424","#4476","#6315","#8499","#8377","#9587","#1368","#2131","#5125","#9359","#6346","#982","#6228","#6513","#7101","#9236","#1638","#8875","#1562","#5681","#7001","#840","#2048","#5131","#6367","#6839","#9378","#1045","#2432","#3084","#3925","#4962","#5972","#6565","#2461","#3633","#3646","#4752","#6675","#9728","#496","#2215","#3392","#4732","#5650","#7128","#7776","#9089","#588","#1876","#4540","#1184","#2739","#6511","#4912","#7415","#154","#9347","#1540","#2526","#5458","#8840","#1275","#1429","#1893","#1957","#2338","#2511","#2840","#2866","#5504","#6452","#6549","#7356","#7571","#7753","#9373","#1580","#1670","#1778","#1873","#6921","#7957","#8906","#7552","#865","#948","#1866","#5492","#7717","#8797","#1980","#4313","#6521","#4089","#5906","#7144","#1519","#1606","#7619","#9436","#7285","#9196","#116","#1162","#4939","#2713","#4897","#3204","#8149","#8395","#1038","#2582","#5909","#9751","#1254","#4648","#5042","#9054","#3690","#8706","#9560","#6691","#218","#3446","#7280","#9568","#2192","#7026","#3953","#4541","#6362","#9941","#5418","#7366","#7197","#485","#6337","#1199","#3440","#4011","#3124","#5290","#3678","#8555","#2882","#5467","#9795","#2456","#732","#3039","#2618","#3089","#5793","#6686","#7331","#3883","#7259","#2418","#9990","#5967","#5593","#5736","#6484","#7979","#7080","#2991","#8429","#9452","#353","#2481","#3296","#3509","#4308","#5115","#8303","#361","#7749","#9224","#6789","#7392","#1896","#3074","#3340","#4273","#4494","#5814","#7877","#995","#7664","#3196","#3531","#9952","#8120","#9043","#4027","#5156","#4715","#6118","#9218","#351","#5543","#8589","#6271","#7853","#1203","#6922","#3030","#6196","#7338","#7967","#1829","#8587","#6422","#2219","#7114","#2979","#6409","#7573","#9053","#6025","#7541","#665","#3636","#5037","#9334","#6623","#9384","#68","#1180","#2711","#6365","#7791","#349","#2306","#3094","#6536","#4534","#5088","#6088","#2780","#5740","#6902","#7509","#1333","#2123","#2238","#4858","#5469","#2501","#7572","#4480","#7134","#5605","#8403","#9273","#1710","#1944","#4091","#5974","#201","#787","#9475","#8442","#9110","#301","#1454","#6363","#7829","#1224","#5285","#6843","#7548","#9395","#252","#7478","#251","#444","#1214","#1863","#3669","#9413","#5181","#623","#952","#5144","#800","#2592","#6154","#8862","#8960","#482","#594","#1666","#4598","#973","#1498","#5613","#7735","#3983","#6355","#811","#1690","#8308","#1719","#2046","#2067","#3848","#7885","#1493","#4708","#8173","#1795","#4895","#3319","#6555","#7517","#8800","#3125","#4000","#5225","#6924","#610","#7334","#1757","#4104","#1547","#3412","#4620","#5698","#6030","#9735","#90","#2492","#2977","#6172","#7050","#7219","#7239","#7359","#7499","#8423","#91","#2769","#845","#4665","#9311","#4746","#5313","#5597","#6044","#7772","#486","#5256","#6604","#7660","#7911","#1177","#3997","#4142","#2579","#2682","#2691","#2886","#5456","#9806","#6936","#8148","#767","#1585","#1775","#2817","#5502","#9455","#3566","#5984","#5576","#1967","#7403","#8013","#8687","#9074","#9532","#9572","#246","#9290","#1464","#4729","#5034","#6797","#7090","#8890","#35","#2804","#4846","#9863","#1653","#4958","#4342","#4538","#7404","#8481","#9292","#30","#2035","#2269","#195","#2655","#3977","#8796","#803","#2972","#4695","#5137","#7930","#8698","#8886","#9353","#3567","#1266","#6587","#8566","#4942","#3251","#9076","#5770","#6779","#7103","#4039","#9702","#126","#348","#599","#6847","#550","#3210","#5404","#1785","#2735","#1610","#21","#5299","#9287","#9403","#2507","#3152","#9629","#5682","#8605","#2305","#3951","#4078","#5253","#6150","#6195","#7361","#9349","#9421","#5335","#2386","#3692","#5871","#1471","#9626","#1247","#528","#9858","#1722","#1565","#6213","#6612","#6788","#2965","#7884","#3224","#5869","#9566","#9755","#1419","#9044","#6875","#1835","#713","#969","#1187","#2280","#8653","#9400","#1696","#7123","#5592","#7402","#3831","#9243","#7936","#1885","#2299","#4780","#8416","#9233","#6116","#7166","#8582","#1195","#94","#3032","#3093","#8602","#9485","#46","#4284","#1632","#6731","#572","#9323","#3345","#3754","#3170","#7199","#5036","#6896","#7200","#7288","#9239","#2791","#3547","#31","#6667","#1813","#5247","#6973","#7009","#8233","#4829","#4911","#6406","#9257","#2423","#7316","#702","#2509","#738","#917","#5264","#7902","#2997","#1125","#2444","#4094","#5336","#6017","#9526","#980","#6214","#1385","#5851","#7089","#7788","#8533","#391","#4500","#5043","#5679","#8095","#8397","#8413","#4730","#754","#4225","#4295","#6006","#6272","#9592","#3592","#2194","#679","#4413","#5353","#8720","#9411","#4293","#4952","#8493","#9594","#1956","#2737","#5891","#5968","#7535","#9142","#9414","#730","#3459","#7845","#5644","#4287","#5387","#9073","#4268","#4384","#5214","#8825","#2557","#9894","#3561","#6144","#243","#456","#1373","#1758","#6503","#7142","#7609","#8681","#6740","#9234","#382","#3749","#4068","#8314","#8676","#8729","#5064","#6143","#8952","#9374","#3607","#8265","#394","#3761","#7102","#9023","#9094","#9225","#4473","#5708","#6869","#401","#9407","#3872","#4567","#4807","#5008","#5363","#6954","#8434","#1954","#4817","#6963","#9163","#92","#2421","#2838","#3706","#6191","#6197","#8352","#9588","#9762","#5039","#9471","#3467","#7224","#7215","#8496","#358","#673","#3693","#4159","#7426","#7761","#8572","#2779","#4801","#8923","#15","#9129","#854","#1706","#3591","#4707","#5084","#5149","#6389","#7309","#9644","#9759","#1655","#1812","#2876","#3452","#4638","#5961","#6233","#8577","#1633","#2335","#4332","#6717","#450","#2236","#274","#2337","#5643","#9898","#768","#2907","#3959","#6455","#4153","#7434","#8378","#2298","#2397","#2951","#5324","#5874","#6074","#8219","#8827","#3847","#6580","#7542","#9809","#1399","#1494","#3047","#2352","#2362","#3572","#4883","#6622","#8432","#60","#823","#1364","#1974","#2350","#5952","#6605","#8196","#8292","#114","#493","#3836","#5612","#3489","#4390","#7263","#8853","#2166","#2485","#3026","#3811","#7919","#9443","#222","#874","#4631","#7283","#8606","#8984","#7743","#9160","#9684","#4422","#7374","#3075","#3167","#6366","#8073","#993","#2956","#4579","#6577","#8295","#3456","#6375","#6538","#3425","#3724","#9494","#9703","#3907","#127","#2224","#4127","#6895","#7027","#7032","#7513","#7947","#9441","#9832","#9838","#452","#2412","#3115","#3937","#5361","#6957","#8807","#8993","#9192","#2627","#3739","#5498","#5807","#6016","#8007","#8137","#9246","#9583","#123","#3208","#4177","#7751","#164","#901","#9938","#1086","#1910","#2624","#3794","#5294","#6430","#6635","#7228","#1871","#6977","#9057","#9764","#4205","#5319","#6219","#6485","#6949","#8262","#9731","#796","#8455","#276","#1570","#4237","#6760","#9364","#217","#228","#602","#1634","#3242","#6985","#7052","#7801","#8932","#9724","#190","#4074","#5155","#6211","#6894","#315","#2197","#4038","#6800","#7986","#1631","#3265","#1363","#2252","#3611","#4485","#5096","#6971","#3854","#6624","#214","#1012","#1340","#1352","#1818","#2348","#2597","#3515","#4489","#5187","#5483","#5511","#6962","#7326","#7639","#7770","#7777","#8209","#8625","#9207","#9554","#1194","#2833","#4121","#9197","#9480","#1611","#7118","#9330","#362","#772","#794","#869","#1589","#1739","#4126","#4164","#4253","#4325","#4502","#5590","#5832","#5837","#6230","#6658","#6700","#6772","#7184","#7257","#8388","#8560","#8611","#8748","#8761","#9296","#9511","#1844","#2933","#9715","#1075","#2643","#8310","#8332","#523","#1245","#2384","#2460","#2562","#3191","#4921","#5108","#5254","#5293","#5508","#6149","#6357","#6396","#6427","#7084","#7218","#7346","#7465","#7643","#9420","#9479","#9505","#9736","#9747","#3223","#4904","#7524","#2167","#2216","#3582","#5424","#9944","#1101","#4035","#4609","#8032","#9958","#51","#2925","#8677","#304","#636","#9456","#9580","#962","#3006","#5229","#5303","#6306","#6318","#7343","#2039","#2628","#3253","#3278","#3382","#4383","#4440","#4608","#4884","#6010","#6060","#6390","#8463","#9212","#1","#1981","#2133","#2408","#2842","#3031","#3904","#4009","#5693","#6787","#7477","#7847","#8245","#8465","#8656","#660","#6012","#9348","#616","#4650","#5032","#7347","#9437","#205","#788","#1189","#2058","#2341","#2632","#2728","#2749","#2788","#3409","#3553","#3656","#3714","#3776","#3789","#4938","#6852","#7342","#7453","#7737","#8011","#8158","#8498","#8561","#9636","#9807","#608","#637","#3993","#5038","#5128","#1449","#1550","#3316","#4048","#4570","#4945","#5505","#5833","#6997","#7689","#8190","#8348","#8701","#8947","#9091","#9469","#102","#520","#2155","#2265","#3095","#3389","#4110","#4594","#4753","#4767","#4848","#4876","#5452","#5980","#7497","#7504","#7671","#8565","#9216","#9878","#9956","#293","#3088","#4830","#7105","#697","#947","#1096","#1423","#1983","#2531","#2716","#2915","#3153","#3255","#3432","#3721","#3808","#4372","#4470","#5055","#5103","#5213","#6000","#6265","#7182","#7305","#7995","#8041","#920","#4138","#9674","#4392","#9615","#526","#681","#4096","#5028","#9939","#163","#311","#402","#712","#915","#1271","#1824","#2012","#2210","#2527","#2556","#2613","#2775","#3415","#3424","#3588","#3998","#4105","#4272","#4309","#4754","#4902","#6292","#6603","#6743","#6889","#7910","#8250","#8315","#8684","#9138","#9886","#809","#5717","#1159","#1571","#1809","#1975","#2998","#3779","#3783","#4100","#4742","#5347","#5354","#6037","#6341","#6595","#7070","#7408","#7688","#7826","#8210","#8302","#8418","#8926","#8979","#9585","#9791","#9805","#9979","#578","#6729","#1264","#912","#5116","#7721","#8546","#4339","#4483","#4588","#29","#300","#2493","#4184","#4188","#5215","#6161","#6287","#9031","#9911","#709","#3276","#964","#2069","#2394","#3899","#5501","#6979","#8028","#419","#1644","#3181","#7129","#8747","#1433","#3332","#4376","#4749","#5659","#6441","#8186","#8286","#4351","#6781","#3229","#4016","#8232","#3038","#4331","#7488","#8988","#5496","#8675","#9161","#85","#411","#1036","#2999","#3638","#4491","#5621","#6639","#6911","#460","#1767","#3379","#6865","#1149","#1188","#1552","#7003","#1062","#3697","#3807","#4575","#6802","#7422","#9265","#4092","#5275","#6553","#65","#1929","#2163","#3992","#4833","#5165","#6403","#7448","#8476","#9591","#156","#1575","#6598","#9953","#2149","#3486","#7546","#414","#633","#1555","#1918","#3837","#3902","#6404","#8384","#2036","#4120","#5060","#9639","#1251","#1312","#5796","#7554","#8645","#9120","#2097","#350","#3535","#9465","#1806","#5905","#6569","#1206","#2211","#9123","#1481","#7820","#9496","#9781","#4668","#6068","#6137","#7544","#9398","#489","#1716","#4464","#6960","#8784","#1864","#4932","#5623","#5866","#5872","#7332","#8318","#8380","#8707","#9052","#9171","#9803","#534","#1382","#2245","#3918","#6112","#6297","#7095","#7496","#8178","#8517","#2535","#2814","#2898","#2919","#3472","#4234","#6458","#8441","#9504","#1450","#3173","#3815","#7246","#7555","#8202","#9026","#5809","#8970","#9661","#3911","#4109","#4705","#9652","#1331","#2490","#3812","#5685","#6250","#7741","#8372","#9266","#9769","#481","#2658","#4675","#5729","#199","#451","#7416","#8127","#99","#2065","#2931","#2981","#8020","#8417","#470","#2534","#4108","#5238","#8100","#2404","#2746","#3744","#5611","#8357","#9199","#9946","#2177","#6831","#8038","#170","#2175","#7725","#7898","#8567","#2505","#5232","#8225","#346","#1948","#2820","#3076","#4195","#9157","#330","#5808","#9664","#177","#215","#629","#737","#1969","#2340","#3888","#4810","#5506","#6992","#7506","#8273","#8570","#8718","#9276","#9635","#1870","#5879","#6392","#6694","#7886","#9402","#2098","#3557","#6113","#7519","#8495","#2926","#4492","#4513","#6827","#7500","#7532","#8536","#760","#1232","#1971","#2558","#4145","#3048","#8347","#9451","#321","#1527","#1683","#2484","#4797","#1127","#2889","#5535","#8353","#9552","#1371","#2607","#1002","#4056","#3524","#4591","#5419","#7242","#6519","#9578","#5753","#6744","#8084","#9313","#2871","#4674","#3175","#6816","#6945","#7844","#9080","#1418","#2083","#5946","#7066","#9557","#162","#2152","#2319","#4712","#5566","#6361","#1168","#1904","#5357","#6301","#9530","#2323","#4438","#7247","#9131","#9248","#1745","#1953","#9316","#1295","#1413","#3349","#8398","#9058","#2124","#2272","#7140","#8373","#677","#1909","#2129","#3139","#3186","#8305","#9015","#97","#1218","#1325","#3508","#3759","#5589","#5834","#6343","#4923","#6029","#6526","#9390","#84","#570","#4642","#6833","#7773","#302","#919","#1460","#2723","#3259","#4086","#4692","#4881","#5191","#6266","#7459","#7612","#7973","#8164","#9643","#139","#1137","#2574","#3444","#5140","#5482","#5986","#6529","#6537","#8723","#8864","#9788","#839","#961","#1277","#1564","#2608","#2974","#4463","#5212","#5614","#6571","#6706","#6711","#7180","#7716","#7790","#7797","#8971","#9685","#9918","#9962","#244","#269","#1840","#2571","#5367","#5649","#6099","#6653","#7125","#7149","#9895","#9972","#400","#960","#1042","#1276","#1524","#2000","#3530","#4231","#6089","#7336","#8082","#8102","#9473","#298","#2908","#3461","#4359","#6420","#6710","#8770","#8865","#522","#1223","#1438","#1490","#2378","#3018","#3782","#5849","#5886","#6402","#6818","#7340","#9186","#332","#428","#694","#752","#3128","#4207","#4875","#5846","#6269","#7793","#8959","#989","#1305","#1587","#2242","#3034","#4152","#9107","#9837","#8087","#2988","#3500","#3780","#4703","#5145","#6124","#6496","#432","#1031","#1213","#1259","#2322","#4220","#8487","#2483","#2701","#5090","#5713","#8000","#9621","#79","#591","#1640","#1973","#6471","#6563","#464","#2042","#2887","#3009","#3884","#4399","#5683","#5715","#6282","#6584","#6619","#7381","#7557","#9515","#9921","#49","#121","#863","#945","#1055","#1369","#2343","#3809","#4419","#5343","#5410","#5663","#6437","#6564","#6981","#7112","#7666","#8523","#8616","#409","#5616","#5721","#6935","#4279","#4922","#7435","#9890","#2078","#4381","#5091","#5142","#5414","#5934","#6876","#7649","#7697","#9919","#157","#546","#957","#1220","#1257","#4043","#4946","#4973","#6179","#6842","#8085","#9819","#1139","#1756","#6489","#7068","#7141","#8485","#8869","#1707","#3144","#4023","#5572","#6917","#7091","#9125","#9987","#2955","#3584","#4437","#4859","#5582","#6932","#8010","#8298","#2088","#1016","#2248","#2961","#3313","#4687","#5541","#6994","#7490","#9188","#935","#2416","#3130","#4307","#5634","#5791","#8140","#8221","#8246","#8778","#150","#951","#1113","#1317","#1425","#2705","#3012","#3080","#4602","#4980","#5171","#5188","#6342","#6433","#6634","#8068","#8736","#8975","#9116","#9966","#7143","#9238","#2514","#2555","#5365","#7323","#8983","#9439","#484","#786","#1105","#1202","#1242","#2449","#2928","#3350","#4130","#4622","#5141","#5987","#6076","#7641","#7732","#8248","#9780","#9812","#9823","#3213","#3562","#3622","#5739","#7117","#8272","#147","#1586","#1857","#3639","#4318","#4555","#5468","#6545","#7734","#8362","#176","#2473","#3604","#4898","#6332","#6931","#7236","#9025","#9523","#257","#1160","#3320","#3958","#4990","#5666","#6600","#6714","#9974","#379","#404","#1627","#2431","#3103","#3126","#5057","#5689","#6412","#7273","#8334","#8446","#9363","#9924","#4324","#3378","#5951","#7738","#9622","#344","#408","#3325","#3996","#7301","#3543","#5351","#5898","#398","#756","#781","#1304","#2450","#3244","#4872","#5047","#5771","#5777","#6524","#6737","#7146","#7270","#7429","#7914","#7975","#8135","#9337","#294","#505","#891","#1281","#1301","#2256","#3059","#3874","#3978","#4017","#4610","#4775","#5001","#5029","#5376","#5751","#6200","#6877","#7505","#7711","#7804","#7938","#8364","#8464","#8556","#8731","#8755","#8861","#9584","#130","#158","#165","#758","#986","#1322","#1949","#2102","#2229","#2905","#2950","#3195","#3586","#3913","#5189","#5310","#5730","#5865","#6127","#6167","#6621","#7175","#7830","#8076","#8460","#8538","#9092","#9697","#9836","#9841","#28","#280","#306","#651","#726","#892","#1121","#1678","#2673","#2927","#3011","#3119","#3135","#3491","#3601","#4478","#4821","#5656","#6009","#6295","#6780","#6958","#7397","#7647","#7712","#7997","#8402","#8445","#8697","#8895","#9444","#9745","#384","#533","#1267","#1415","#1915","#2284","#2921","#4028","#4357","#4412","#4459","#5209","#5223","#5251","#5524","#5932","#6075","#6491","#8586","#8699","#8787","#9141","#9799","#33","#429","#434","#894","#1026","#1319","#1392","#1987","#2901","#2947","#4003","#4643","#4714","#4769","#5580","#5816","#6207","#6607","#6825","#7014","#7382","#7805","#8228","#8679","#8913","#9165","#70","#667","#771","#1170","#1437","#1705","#2312","#2646","#2785","#2952","#2953","#3318","#3708","#4097","#4151","#5383","#5527","#6383","#7248","#7669","#8105","#8692","#8739","#8762","#9185","#9408","#9428","#9466","#9872","#224","#1090","#1506","#1942","#2380","#3411","#3637","#4888","#5405","#5522","#5726","#5825","#7058","#7511","#7747","#742","#1165","#1695","#2506","#2552","#2750","#4972","#5615","#6314","#6516","#8412","#9647","#427","#512","#934","#1397","#1455","#1686","#1816","#1991","#2342","#2361","#3262","#3310","#3358","#3679","#3851","#3852","#4472","#4967","#5040","#5054","#5479","#5671","#5912","#7190","#7659","#7907","#8150","#9121","#9716","#9792","#2","#82","#449","#465","#604","#916","#1117","#1241","#1804","#2018","#2233","#2295","#2381","#3230","#4909","#5180","#5745","#5758","#5843","#6122","#6291","#6476","#8470","#8508","#8637","#8693","#9215","#9306","#9925","#128","#171","#278","#813","#2064","#2487","#3541","#3603","#3936","#3964","#4095","#4286","#4488","#4809","#5675","#5929","#6286","#6778","#6856","#7915","#8025","#8234","#8777","#8826","#8832","#8868","#115","#266","#575","#1566","#2549","#3522","#3523","#4053","#4241","#4330","#4539","#4826","#5150","#5638","#5885","#5973","#6053","#6732","#8101","#8704","#8715","#9267","#184","#277","#502","#1883","#2204","#2357","#3268","#3291","#3393","#3501","#4482","#4510","#5660","#5913","#6024","#6887","#6974","#7592","#8393","#8666","#8725","#168","#418","#1140","#1426","#3113","#3329","#3653","#3880","#4857","#6463","#7495","#7920","#8214","#8919","#805","#1659","#1921","#3235","#3391","#4516","#4641","#5494","#6052","#6255","#6431","#7171","#7667","#7702","#8502","#649","#1019","#2771","#2916","#5216","#5603","#6764","#6786","#6880","#7968","#8030","#8053","#8091","#8882","#9128","#399","#583","#1244","#1357","#1622","#1777","#1788","#2076","#2103","#2207","#2447","#3574","#5066","#6617","#7457","#8167","#9009","#9237","#9868","#396","#1028","#1442","#1842","#1877","#2026","#4723","#5297","#5530","#5761","#6110","#6812","#7774","#8590","#108","#996","#2538","#2593","#2633","#4059","#4076","#4804","#5082","#6720","#1595","#5099","#6067","#6698","#8089","#8208","#8958","#9180","#9355","#9883","#5","#1717","#2180","#2895","#3280","#3786","#3814","#4933","#5147","#5457","#5553","#6249","#6324","#6473","#6497","#8808","#9193","#216","#443","#2264","#2406","#3108","#3465","#4213","#5262","#5451","#5707","#5899","#6194","#8072","#8154","#8213","#8785","#510","#909","#1008","#1191","#1273","#1964","#2138","#3791","#4347","#4844","#4964","#6299","#7115","#7582","#7644","#8775","#9050","#1083","#1491","#1772","#1958","#2502","#2809","#2854","#3765","#4175","#4417","#4425","#5318","#5331","#5380","#6050","#6613","#7255","#8177","#8304","#8628","#8870","#202","#203","#983","#1061","#1163","#1258","#1617","#1732","#2902","#3410","#3433","#3933","#4198","#4515","#4762","#5111","#6028","#6225","#6550","#7815","#7950","#8462","#1698","#1855","#2013","#2294","#2522","#3249","#4214","#4451","#4455","#5437","#6483","#6790","#7690","#7906","#8440","#8461","#1313","#2285","#3021","#3252","#3383","#4755","#5537","#6465","#6683","#7201","#7337","#7728","#7888","#8883","#8986","#9341","#9933","#206","#1044","#1755","#1822","#1927","#2091","#2174","#3085","#4172","#4667","#5117","#5159","#5538","#6098","#6270","#6451","#7278","#7318","#7794","#8039","#8711","#8814","#9255","#9478","#9687","#691","#832","#2240","#2292","#2596","#2693","#2789","#2894","#3063","#3188","#3945","#4013","#4073","#4343","#4979","#4984","#5296","#5723","#5995","#6061","#6177","#6454","#6628","#6804","#7447","#7598","#8370","#9381","#9424","#191","#3869","#5023","#5063","#6309","#6450","#7379","#7637","#7901","#8280","#8552","#273","#291","#1172","#1412","#1700","#2122","#3142","#3377","#4985","#5371","#6313","#8344","#8409","#9013","#9855","#52","#1210","#1503","#1583","#1977","#2434","#2504","#3043","#3058","#6070","#6879","#7173","#7373","#9252","#9517","#9816","#436","#469","#1068","#1557","#1581","#1865","#2583","#3326","#3691","#4167","#4338","#4408","#4469","#4524","#6439","#7267","#7324","#7556","#7879","#8750","#313","#507","#612","#864","#906","#1233","#1598","#1963","#2023","#2550","#2612","#2669","#3258","#3330","#3476","#4475","#4584","#4696","#4838","#5409","#5445","#6543","#6557","#6987","#7621","#7841","#8473","#8805","#9336","#9835","#161","#707","#1431","#2028","#2489","#2765","#2807","#3621","#4066","#4299","#5202","#5847","#5889","#5982","#6241","#6505","#6891","#6903","#6943","#7104","#7133","#7339","#7662","#8331","#8772","#9085","#9744","#9904","#584","#878","#974","#1207","#1469","#1660","#1713","#2156","#2497","#2877","#3428","#3672","#3827","#3961","#5222","#5489","#6033","#6316","#6759","#7640","#8042","#8326","#8454","#8483","#9642","#9765","#9947","#445","#1095","#1283","#1998","#2009","#3356","#3418","#3870","#4204","#4639","#5842","#6072","#6535","#6782","#7394","#7685","#8115","#8709","#8859","#8936","#9134","#9325","#471","#802","#1136","#1453","#1657","#1874","#2508","#3025","#3037","#4147","#4297","#4866","#5045","#5255","#5355","#5368","#5657","#6048","#6688","#7021","#7183","#7207","#7964","#8224","#9059","#9086","#9164","#9211","#9676","#9713","#558","#1151","#1703","#1821","#1961","#2054","#2389","#2466","#2753","#3110","#3168","#3600","#3875","#4285","#4335","#4864","#5160","#5654","#5763","#5848","#5994","#6695","#7172","#7187","#7355","#9546","#9820","#9998","#271","#1148","#1729","#1753","#2369","#2652","#2681","#2726","#2980","#3309","#3767","#4266","#4799","#5731","#5890","#5977","#6125","#6707","#7192","#7252","#7303","#7530","#8047","#8851","#8889","#9010","#9172","#9827","#32","#78","#478","#842","#1765","#2127","#2850","#2957","#3373","#3436","#4020","#4328","#4627","#4793","#5673","#5839","#5922","#6046","#6578","#7209","#7421","#7890","#8172","#8579","#8907","#8956","#8989","#9351","#9732","#910","#1938","#2059","#2220","#2835","#3233","#3243","#3504","#3890","#3940","#4005","#4161","#4446","#5989","#6398","#6735","#7106","#7297","#7700","#8448","#8578","#9573","#9649","#9737","#9826","#1147","#1156","#1898","#2784","#3060","#3703","#3747","#3849","#4460","#4698","#4928","#5765","#6215","#6848","#9440","#9457","#142","#370","#556","#814","#1200","#2424","#3437","#3631","#3981","#4247","#4521","#5169","#5454","#5619","#6020","#6057","#7756","#7940","#8444","#9204","#9305","#9634","#17","#511","#1451","#2459","#2611","#2651","#2725","#3102","#3180","#3539","#4191","#4423","#5235","#5360","#5710","#6073","#6131","#6650","#6828","#7135","#7494","#7942","#8078","#8623","#8705","#8878","#9066","#9117","#9147","#9509","#9604","#9854","#265","#746","#778","#848","#1607","#1924","#1945","#2260","#2700","#3050","#3261","#3513","#3909","#4192","#4218","#5728","#6264","#7240","#7244","#7781","#7811","#8176","#8419","#9739","#63","#135","#1027","#1246","#2310","#2426","#3057","#3269","#3725","#3778","#4316","#4389","#5164","#5306","#5531","#5575","#5664","#5924","#6148","#6160","#6183","#6844","#6871","#6978","#7746","#8031","#9418","#36","#39","#739","#1350","#1447","#2360","#2904","#3199","#3303","#3623","#4118","#4361","#4743","#5183","#5646","#5881","#5940","#6002","#6080","#7371","#7380","#7476","#7613","#7946","#8046","#8466","#8529","#8793","#9249","#9607","#9711","#9902","#9922"]