<div class="text-justify"> <center><h2>My Coding Quiz #37 馃懆鈥嶐煉火煕狅笍馃З</h2></center> <p>Welcome to the new installment of my series of <b>Coding Quizzes</b>, in which you will be able to test your knowledge and skills about programming and software development in a simple and fun way. If you want to learn more about it visit <a href="/@eniolw">my blog</a> here on Hive and the <a href="/@eniolw/my-coding-quiz-1">first post</a> where I introduced it.</p> <h3>Without further ado, here's the riddle...</h3> <br> <center> <img src="https://images.ecency.com/DQmbuZX5dzDmmrVannUAmep98VuvwBYKku5A3SaSgX5DtGY/quiz_img_en.png" alt="Quiz"> <h6>By @eniolw</h6> </center> <br><center><h3>What's your choice?</h3></center> <p><b>Solution to the <a href="/@eniolw/my-coding-quiz-36">previous quiz</a>:</b> <b>{'vote': True, 'comment': False, 'done': False}</b>. This script is a nod to the previous edition, as it suggests that it talks about curation.</p> <p>We start by defining two dictionaries <code>d1</code> and <code>d2</code> that represent data. Then we define the function <code>is_done</code> where all the interesting stuff happens. Basically it returns a dictionary that is formed by combining two received dictionaries <code>a</code> and <code>b</code> and adding a new key <code>'done'</code>.</p> <p>To combine the dictionaries we use the <i>unpack operator</i> (<code>**</code>) as it is in the code, which does exactly the same thing as the Javascript spread operator (<code>...</code>). Interestingly, this usage has been around in Python for a long time before JavaScript incorporated its spread operator. We also see that, as to be expected in dictionary merging, keys are overwritten, as in the case of <code>'comment'</code> in <code>a</code> which is <code>True</code>, but is overwritten by the value of <code>'comment'</code> in <code>b</code> which is <code>False</code>.</p> <p>We can still define keys within the dictionary declaration, as in the case of <code>'done'</code>. Its value is obtained by applying the function <code>all</code> that evaluates if all the elements of the iterable are Truthy. We see that we give this function the list <code>[*a.values(), *b.values()]</code> that has been composed using the <i>unpack operator in lists</i> (<code>*</code>), which is also equivalent to the spread operator of Javascript applied to arrays.</p> <p>We need to use the <code>values</code> method on <code>a</code> and <code>b</code> to get the iterables of the values in those dictionaries and these iterables are unpacked by the asterisk, so we get the list <b>[True, True, True, False]</b>. The function <code>all</code> will therefore return <code>False</code> because not all values in the list are truthy. In short, <code>is_done</code> returns the dictionary <b>{'vote': True, 'comment': False, 'done': False}</b> and is printed at the end.</p> <p>As we can see, depending on what we want to merge or extend, in Python we must use <code>*</code> in case of lists and <code>**</code> in case of dictionaries. Most programmers are familiar with them in the context of the optional function parameters <code>*args</code> and <code>**kargs</code>, where in fact, they just follow the same principle, but their use can actually be applied beyond that and can enrich your code.</p> <hr> <p>If you want to blog about computer science and programming content, I invite you to join <a href="/">Hive</a> and participate in its communities, such as <a href="/created/hive-196387">STEM-social</a>, <a href="/created/hive-154226">Develop Spanish</a>, <a href="/created/hive-169321">Programming & Dev</a> and others.</p> <hr> <center><h2>Mi Quiz de Programaci贸n #37 馃懆鈥嶐煉火煕狅笍馃З</h2></center> <p>Bienvenido a mi nueva serie de <b>Quizzes de Programaci贸n</b>, en la cual podr谩s poner a prueba tus conocimientos y habilidades sobre programaci贸n y desarrollo de software de una manera sencilla y divertida. Si quieres aprender m谩s sobre ella visita <a href="/@eniolw">mi blog</a> aqu铆 en Hive y el <a href="/@eniolw/my-coding-quiz-1">primer post</a> donde la present茅.</p> <h3>Sin m谩s pre谩mbulos, he aqu铆 el acertijo...</h3> <br> <center> <img src="https://images.ecency.com/DQmdV9G32shXtVumWnd8jrTwxffWEUkMB4syd6hahWWcbXJ/quiz_img_es.png" alt="Quiz"> <h6>Por @eniolw</h6> </center> <br><center><h3>驴Cu谩l es tu elecci贸n?</h3></center> <p><b>Soluci贸n al <a href="/@eniolw/my-coding-quiz-36">quiz anterior</a>:</b> <b>{'vote': True, 'comment': False, 'done': False}</b>. Este script es un gui帽o a la edici贸n anterior, ya que sugiere que habla de curaci贸n.</p> <p>Comenzamos definiendo dos diccionarios <code>d1</code> y <code>d2</code> que representan datos. Luego definimos la funci贸n <code>is_done</code> donde suceden todas las cosas interesantes. B谩sicamente devuelve un diccionario que se forma combinando dos diccionarios recibidos <code>a</code> y <code>b</code> y agregando una nueva clave <code>'done'</code>.</p> <p>Para combinar los diccionarios utilizamos el <i>operador de desempaquetado</i> (<code>**</code>) tal como est谩 en el c贸digo, que hace exactamente lo mismo que el operador spread de Javascript (<code>...</code>). Curiosamente, este uso ha existido en Python durante mucho tiempo antes de que JavaScript incorporara su operador spread. Tambi茅n vemos que, como es de esperar en la combinaci贸n de diccionarios, las claves se sobrescriben, como en el caso de <code>'comment'</code> en <code>a</code> que es <code>True</code>, pero se sobrescribe con el valor de <code>'comment'</code> en <code>b</code> que es <code>False</code>.</p> <p>No conforme con ello, podemos definir claves dentro de la declaraci贸n del diccionario, como en el caso de <code>'done'</code>. Su valor se obtiene aplicando la funci贸n <code>all</code> que eval煤a si todos los elementos del iterable son verdaderos. Vemos que le damos a esta funci贸n la lista <code>[*a.values(), *b.values()]</code> que ha sido compuesta usando el <i>operador desempaquetado en listas</i> (<code>*</code>), que tambi茅n es equivalente al operador de spread de Javascript aplicado a arreglos.</p> <p>Necesitamos usar el m茅todo <code>values</code> en <code>a</code> y <code>b</code> para obtener los iterables de los valores en esos diccionarios y estos iterables se desempaquetan por el asterisco, por lo que obtenemos la lista <b>[True, True, True, False]</b>. Por lo tanto, la funci贸n <code>all</code> devolver谩 <code>False</code> porque no todos los valores de la lista son verdaderos. En resumen, <code>is_done</code> devuelve el diccionario <b>{'vote': True, 'comment': False, 'done': False}</b> y se imprime al final.</p> <p>Como podemos ver, dependiendo de lo que queramos fusionar o extender, en Python debemos usar <code>*</code> en el caso de listas y <code>**</code> en el caso de diccionarios. La mayor铆a de los programadores est谩n familiarizados con ellos en el contexto de los par谩metros de funci贸n opcionales <code>*args</code> y <code>**kargs</code>, donde, de hecho, siguen el mismo principio, pero su uso puede variar y en realidad se puede aplicar m谩s all谩 de eso y puede enriquecer tu c贸digo.</p> <hr> <p>Si quieres bloguear sobre contenido inform谩tico y de programaci贸n, te invito a unirte a <a href="/">Hive</a> y participar en sus comunidades, tales como <a href="/created/hive-196387">STEM-social</a>, <a href="/created/hive-154226">Develop Spanish</a>, <a href="/created/hive-169321">Programming & Dev</a> y otras.</p> </div>
author | eniolw |
---|---|
permlink | my-coding-quiz-37 |
category | hive-140084 |
json_metadata | "{"image":["https://images.ecency.com/DQmbuZX5dzDmmrVannUAmep98VuvwBYKku5A3SaSgX5DtGY/quiz_img_en.png","https://images.ecency.com/DQmdV9G32shXtVumWnd8jrTwxffWEUkMB4syd6hahWWcbXJ/quiz_img_es.png"],"tags":["hive-140084","coding","python","javascript","quiz","programming","neoxian","proofofbrain","waivio","spanish"],"description":"My Coding Quiz #37 Welcome to the new installment of my series of Coding Quizzes, in which you will be able to test your knowledge and skills about programming and software development in a fun way.","app":"ecency/3.0.37-vision","format":"markdown+html","image_ratios":["0.9390","0.9390"]}" |
created | 2023-11-29 02:03:18 |
last_update | 2023-11-29 02:03:18 |
depth | 0 |
children | 3 |
last_payout | 2023-12-06 02:03:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.008 HBD |
curator_payout_value | 3.887 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,452 |
author_reputation | 258,087,764,706,776 |
root_title | "My Coding Quiz #37" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,257,768 |
net_rshares | 16,712,194,364,021 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 1,041,947,580 | 2.8% | ||
kevinwong | 0 | 2,756,831,948 | 0.42% | ||
justtryme90 | 0 | 1,395,745,783 | 70% | ||
eric-boucher | 0 | 15,120,352,972 | 2.8% | ||
thecryptodrive | 0 | 66,481,075,382 | 1.12% | ||
roelandp | 0 | 278,248,102,388 | 35% | ||
cloh76 | 0 | 4,031,959,643 | 2.8% | ||
joshglen | 0 | 750,863,605 | 5.6% | ||
lordvader | 0 | 37,875,094,168 | 5.6% | ||
rmach | 0 | 13,928,994,067 | 35% | ||
lemouth | 0 | 1,206,560,203,362 | 45% | ||
netaterra | 0 | 46,409,978,098 | 2.8% | ||
alaqrab | 0 | 527,329,239 | 2.8% | ||
lamouthe | 0 | 5,573,344,975 | 70% | ||
tfeldman | 0 | 5,498,562,168 | 2.8% | ||
sergiomendes | 0 | 1,316,846,358 | 2.8% | ||
metabs | 0 | 7,717,433,234 | 70% | ||
mcsvi | 0 | 135,423,200,343 | 50% | ||
lk666 | 0 | 1,878,561,388 | 2.8% | ||
cnfund | 0 | 11,883,587,318 | 5.6% | ||
justyy | 0 | 30,169,398,362 | 5.6% | ||
michelle.gent | 0 | 3,383,278,785 | 1.12% | ||
curie | 0 | 366,874,339,077 | 5.6% | ||
modernzorker | 0 | 3,880,909,182 | 3.92% | ||
moretea | 0 | 1,418,617,751 | 5.6% | ||
techslut | 0 | 187,682,273,275 | 28% | ||
steemstem | 0 | 1,290,754,834,546 | 70% | ||
dashfit | 0 | 493,985,444 | 2.8% | ||
tristancarax | 0 | 706,667,181 | 2.8% | ||
edb | 0 | 5,193,258,965 | 7% | ||
yadamaniart | 0 | 3,447,275,844 | 2.8% | ||
bigtakosensei | 0 | 1,385,388,684 | 1.4% | ||
walterjay | 0 | 438,818,933,428 | 35% | ||
valth | 0 | 10,699,439,342 | 35% | ||
metroair | 0 | 23,876,816,589 | 5.6% | ||
driptorchpress | 0 | 2,178,332,529 | 1.4% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
privex | 0 | 3,482,825,772 | 5.6% | ||
boynashruddin | 0 | 752,463,704 | 5.6% | ||
steemiteducation | 0 | 1,107,243,753 | 2.8% | ||
dhimmel | 0 | 366,007,723,669 | 17.5% | ||
oluwatobiloba | 0 | 2,431,439,226 | 70% | ||
elevator09 | 0 | 7,323,504,133 | 2.8% | ||
detlev | 0 | 13,919,518,600 | 1.68% | ||
chasmic-cosm | 0 | 862,079,222 | 2.8% | ||
dune69 | 0 | 647,571,534 | 5.6% | ||
lugaxker | 0 | 823,566,558 | 34.65% | ||
federacion45 | 0 | 8,732,798,646 | 2.8% | ||
amberyooper | 0 | 700,550,921 | 2.8% | ||
gamersclassified | 0 | 4,582,398,812 | 2.8% | ||
iansart | 0 | 5,676,010,343 | 2.8% | ||
forykw | 0 | 13,029,749,134 | 2.8% | ||
mobbs | 0 | 115,766,694,619 | 35% | ||
eliel | 0 | 14,075,598,246 | 5.6% | ||
jerrybanfield | 0 | 18,710,484,942 | 5.6% | ||
rt395 | 0 | 2,030,375,068 | 1.5% | ||
bitrocker2020 | 0 | 8,804,724,924 | 0.84% | ||
maxdevalue | 0 | 705,033,180 | 5.6% | ||
sustainablyyours | 0 | 24,682,747,321 | 35% | ||
helo | 0 | 25,148,262,951 | 35% | ||
arunava | 0 | 19,444,738,320 | 2.24% | ||
schoolforsdg4 | 0 | 1,074,081,415 | 5% | ||
samminator | 0 | 47,643,531,492 | 35% | ||
zerotoone | 0 | 1,123,369,029 | 2.8% | ||
mahdiyari | 0 | 270,008,446,700 | 80% | ||
lorenzor | 0 | 1,356,782,769 | 50% | ||
firstamendment | 0 | 88,821,405,064 | 50% | ||
sam99 | 0 | 14,140,129,389 | 21% | ||
aboutyourbiz | 0 | 977,623,506 | 5.6% | ||
derosnec | 0 | 573,020,645 | 2.8% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
dandesign86 | 0 | 16,039,017,126 | 8% | ||
jayna | 0 | 7,834,588,948 | 1.12% | ||
deanlogic | 0 | 1,424,577,899 | 2.8% | ||
hhayweaver | 0 | 1,068,516,451 | 1.4% | ||
princessmewmew | 0 | 7,930,235,756 | 2.8% | ||
diabolika | 0 | 861,536,234 | 2.8% | ||
zacherybinx | 0 | 955,053,284 | 5.6% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 78,950,836,589 | 1.4% | ||
pipiczech | 0 | 2,392,864,350 | 5.6% | ||
touchman | 0 | 175,798,367,993 | 100% | ||
empath | 0 | 4,256,392,298 | 2.8% | ||
eturnerx | 0 | 59,168,855,593 | 3.9% | ||
minnowbooster | 0 | 1,069,927,305,505 | 20% | ||
lenasveganliving | 0 | 764,525,063 | 2.8% | ||
felt.buzz | 0 | 10,341,470,172 | 1.4% | ||
tsoldovieri | 0 | 7,410,979,017 | 35% | ||
steemwizards | 0 | 4,706,497,106 | 5.6% | ||
neumannsalva | 0 | 4,642,239,333 | 2.8% | ||
stayoutoftherz | 0 | 158,254,074,446 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 2,897,731,548 | 4.48% | ||
zonguin | 0 | 3,764,987,255 | 17.5% | ||
enfocate | 0 | 3,821,379,115 | 24% | ||
investingpennies | 0 | 20,859,910,680 | 5.6% | ||
khalil319 | 0 | 1,871,616,292 | 10% | ||
martibis | 0 | 1,647,234,539 | 1.68% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
redrica | 0 | 2,045,018,542 | 2.8% | ||
pepskaram | 0 | 594,251,943 | 2.8% | ||
iamphysical | 0 | 807,706,884 | 90% | ||
dipom98 | 0 | 1,189,323,659 | 2.8% | ||
zest | 0 | 1,013,276,226 | 35% | ||
zyx066 | 0 | 4,482,659,663 | 1.68% | ||
chrisdavidphoto | 0 | 1,099,943,291 | 1.68% | ||
revo | 0 | 11,831,852,062 | 5.6% | ||
azulear | 0 | 1,391,398,662 | 100% | ||
psicoluigi | 0 | 833,134,310 | 50% | ||
nerdnews | 0 | 1,001,225,385 | 5.6% | ||
risckylu | 0 | 1,440,770,801 | 24% | ||
rafaelaquino | 0 | 14,797,824,088 | 100% | ||
wilians | 0 | 548,137,818 | 35% | ||
stickchumpion | 0 | 933,020,492 | 2.8% | ||
thelordsharvest | 0 | 5,157,745,037 | 5.6% | ||
timehacker | 0 | 1,504,813,099 | 2.12% | ||
vera-vaders-ea | 0 | 513,303,891 | 5.6% | ||
aidefr | 0 | 7,679,303,121 | 35% | ||
torico | 0 | 1,511,097,512 | 1.84% | ||
tomiscurious | 0 | 7,165,123,415 | 1.3% | ||
sorin.cristescu | 0 | 179,730,090,781 | 35% | ||
therealwolf | 0 | 30,682,818,576 | 2.8% | ||
fatman | 0 | 9,179,234,248 | 2% | ||
votehero | 0 | 7,076,245,949 | 1.5% | ||
minnowpowerup | 0 | 757,190,344 | 2.8% | ||
splash-of-angs63 | 0 | 13,058,075,630 | 100% | ||
cryptononymous | 0 | 1,969,814,346 | 2.8% | ||
rubia.michelle | 0 | 951,623,060 | 100% | ||
meno | 0 | 26,364,955,431 | 2.8% | ||
buttcoins | 0 | 8,036,261,620 | 1.12% | ||
bigdizzle91 | 0 | 831,217,080 | 2.8% | ||
technicalside | 0 | 7,958,306,898 | 25% | ||
steemed-proxy | 0 | 1,031,887,636,110 | 5.6% | ||
fatkat | 0 | 1,495,525,549 | 2.79% | ||
investegg | 0 | 13,372,660,510 | 17% | ||
doifeellucky | 0 | 5,150,559,729 | 2.8% | ||
peaceandwar | 0 | 868,324,973 | 2.8% | ||
bhoa | 0 | 1,181,059,205 | 35% | ||
enzor | 0 | 2,180,503,157 | 35% | ||
marcoriccardi | 0 | 1,065,975,097 | 5.6% | ||
bartosz546 | 0 | 14,151,407,262 | 2.8% | ||
tazbaz | 0 | 563,178,325 | 2.8% | ||
dreamm | 0 | 3,120,361,604 | 50% | ||
dandays | 0 | 16,597,127,000 | 1.06% | ||
battebilly | 0 | 717,036,165 | 2.8% | ||
notb4mycoffee | 0 | 3,622,762,853 | 5.6% | ||
silverwhale | 0 | 1,463,399,470 | 5.04% | ||
caladan | 0 | 857,735,716 | 5.6% | ||
dejan.vuckovic | 0 | 790,050,931 | 1.12% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 941,045,208 | 4.48% | ||
sunsea | 0 | 2,507,521,655 | 2.8% | ||
eonwarped | 0 | 410,695,307,934 | 30% | ||
postpromoter | 0 | 1,629,096,074,739 | 70% | ||
mejustandrew | 0 | 661,331,237 | 2.8% | ||
omstavan | 0 | 7,426,004,301 | 100% | ||
bluefinstudios | 0 | 3,913,520,116 | 1.68% | ||
steveconnor | 0 | 4,874,506,200 | 2.8% | ||
sankysanket18 | 0 | 1,698,456,622 | 35% | ||
dbddv01 | 0 | 2,571,128,111 | 17.5% | ||
zmx | 0 | 592,827,140 | 2.8% | ||
skippyza | 0 | 483,083,614 | 5.6% | ||
nicole-st | 0 | 3,324,025,435 | 2.8% | ||
smartsteem | 0 | 138,345,898,233 | 2.8% | ||
aboutcoolscience | 0 | 14,838,386,126 | 70% | ||
elisonr13 | 0 | 2,394,884,787 | 12% | ||
afifa | 0 | 634,593,423 | 10% | ||
sandracarrascal | 0 | 494,824,792 | 50% | ||
skycae | 0 | 725,834,138 | 5.6% | ||
kenadis | 0 | 19,239,997,170 | 70% | ||
madridbg | 0 | 33,534,689,065 | 70% | ||
robotics101 | 0 | 21,763,333,704 | 70% | ||
marcolino76 | 0 | 609,199,816 | 2.8% | ||
onemedia | 0 | 1,152,260,713 | 5.6% | ||
lpv | 0 | 3,047,238,712 | 8.75% | ||
iptrucs | 0 | 10,388,641,532 | 25% | ||
punchline | 0 | 7,413,162,731 | 5.6% | ||
gentleshaid | 0 | 2,125,933,989 | 35% | ||
apon318 | 0 | 494,930,287 | 5.6% | ||
tomatom | 0 | 487,269,754 | 2.8% | ||
onestrong | 0 | 1,156,257,043 | 5.6% | ||
adelepazani | 0 | 1,466,259,691 | 1.12% | ||
danaedwards | 0 | 676,486,101 | 5.6% | ||
r00sj3 | 0 | 120,418,966,025 | 35% | ||
sco | 0 | 20,652,258,588 | 70% | ||
ennyta | 0 | 993,997,127 | 50% | ||
juecoree | 0 | 9,119,756,396 | 49% | ||
gordon92 | 0 | 873,797,866 | 2.8% | ||
stahlberg | 0 | 1,290,047,478 | 2.8% | ||
gabrielatravels | 0 | 1,797,414,556 | 1.96% | ||
jaro-art | 0 | 3,842,950,482 | 100% | ||
cordeta | 0 | 1,074,723,433 | 5.6% | ||
reizak | 0 | 498,030,165 | 2.24% | ||
carn | 0 | 3,737,844,938 | 5.04% | ||
branbello | 0 | 3,426,498,066 | 35% | ||
hetty-rowan | 0 | 2,948,037,289 | 2.8% | ||
lilianajimenez | 0 | 559,689,732 | 2.8% | ||
ydavgonzalez | 0 | 2,059,513,914 | 10% | ||
intrepidphotos | 0 | 16,045,329,159 | 52.5% | ||
fineartnow | 0 | 4,070,165,924 | 2.8% | ||
hijosdelhombre | 0 | 43,271,695,235 | 40% | ||
mathowl | 0 | 46,610,264,816 | 100% | ||
yoghurt | 0 | 1,266,553,018 | 5.6% | ||
steemvault | 0 | 2,329,492,937 | 5.6% | ||
steem4all | 0 | 1,134,877,688 | 2.8% | ||
communitybank | 0 | 4,273,645,974 | 5.6% | ||
shinedojo | 0 | 654,155,196 | 5.6% | ||
fragmentarion | 0 | 40,130,927,858 | 70% | ||
bennettitalia | 0 | 1,952,100,190 | 2.8% | ||
utube | 0 | 4,893,840,678 | 5.6% | ||
jigstrike | 0 | 908,534,162 | 2.8% | ||
kylo-ren | 0 | 479,867,649 | 5.6% | ||
dragibusss | 0 | 1,417,270,213 | 50% | ||
dynamicrypto | 0 | 3,570,079,613 | 1% | ||
neneandy | 0 | 6,485,040,901 | 5.6% | ||
pab.ink | 0 | 721,673,149 | 35% | ||
marc-allaria | 0 | 4,344,758,094 | 2.8% | ||
real2josh | 0 | 661,181,182 | 35% | ||
sportscontest | 0 | 5,871,719,625 | 5.6% | ||
videosteemit | 0 | 1,238,556,949 | 5.6% | ||
gribouille | 0 | 3,385,664,315 | 70% | ||
pandasquad | 0 | 14,519,565,236 | 5.6% | ||
stemng | 0 | 1,470,098,304 | 35% | ||
kingabesh | 0 | 1,425,925,860 | 35% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
mproxima | 0 | 1,985,757,755 | 2.8% | ||
fantasycrypto | 0 | 4,484,209,782 | 5.6% | ||
didic | 0 | 1,940,579,127 | 2.8% | ||
warpedpoetic | 0 | 2,088,728,174 | 5.6% | ||
orlandumike | 0 | 20,774,719,974 | 20% | ||
careassaktart | 0 | 710,478,495 | 1.68% | ||
emiliomoron | 0 | 10,687,336,118 | 35% | ||
galam | 0 | 662,721,006 | 24.5% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
nwjordan | 0 | 848,845,006 | 5.6% | ||
photohunt | 0 | 4,250,695,094 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
ajfernandez | 0 | 774,625,332 | 100% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
alexdory | 0 | 8,236,867,120 | 70% | ||
takowi | 0 | 110,156,743,212 | 5.6% | ||
irgendwo | 0 | 22,414,666,866 | 5.6% | ||
vegan.niinja | 0 | 523,334,396 | 2.8% | ||
flugschwein | 0 | 9,063,529,471 | 59.5% | ||
charitybot | 0 | 5,136,560,498 | 100% | ||
cyprianj | 0 | 76,505,541,452 | 70% | ||
kieranstone | 0 | 1,651,460,112 | 1.84% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
steempampanga | 0 | 542,151,668 | 2.8% | ||
croctopus | 0 | 1,460,226,989 | 100% | ||
jjerryhan | 0 | 4,948,668,983 | 2.8% | ||
putu300 | 0 | 561,457,658 | 5% | ||
cryptictruth | 0 | 2,092,209,273 | 0.5% | ||
michelmake | 0 | 77,834,702,713 | 50% | ||
zipporah | 0 | 2,754,096,232 | 1.12% | ||
leomarylm | 0 | 1,954,520,406 | 2.8% | ||
joelagbo | 0 | 479,298,113 | 5.6% | ||
randumb | 0 | 721,837,382 | 5.6% | ||
superlotto | 0 | 15,935,581,640 | 5.6% | ||
positiveninja | 0 | 1,141,226,240 | 2.8% | ||
miroslavrc | 0 | 920,990,171 | 1.4% | ||
foxyspirit | 0 | 585,476,845 | 2.8% | ||
bscrypto | 0 | 14,597,491,519 | 2.8% | ||
vonaurolacu | 0 | 1,744,432,152 | 2.8% | ||
evepontes | 0 | 747,362,408 | 100% | ||
movingman | 0 | 519,515,956 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 550,031,840 | 0.28% | ||
tomastonyperez | 0 | 17,118,554,130 | 50% | ||
bil.prag | 0 | 2,525,568,070 | 0.28% | ||
elvigia | 0 | 11,206,813,887 | 50% | ||
sanderjansenart | 0 | 5,145,718,975 | 2.8% | ||
vittoriozuccala | 0 | 2,142,562,575 | 2.8% | ||
qberry | 0 | 4,105,151,279 | 2.8% | ||
frissonsteemit | 0 | 1,274,354,115 | 2.8% | ||
broncofan99 | 0 | 9,619,961,917 | 20% | ||
rambutan.art | 0 | 1,797,620,245 | 5.6% | ||
flyerchen | 0 | 1,320,241,142 | 2.8% | ||
braaiboy | 0 | 10,669,512,805 | 2.8% | ||
c0wtschpotato | 0 | 597,726,337 | 2.8% | ||
therising | 0 | 101,942,777,863 | 5.6% | ||
jordangerder | 0 | 3,147,690,707 | 12% | ||
cryptocoinkb | 0 | 2,210,713,008 | 2.8% | ||
gifty-e | 0 | 543,628,753 | 80% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
imcore | 0 | 878,243,516 | 10% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
josedelacruz | 0 | 4,884,830,197 | 50% | ||
dracrow | 0 | 2,873,846,698 | 9.6% | ||
achimmertens | 0 | 17,513,659,190 | 2.8% | ||
kgakakillerg | 0 | 18,332,345,389 | 10% | ||
charitymemes | 0 | 534,493,884 | 100% | ||
mariusfebruary | 0 | 671,891,706 | 2.24% | ||
outtheshellvlog | 0 | 893,711,542 | 2.8% | ||
sawyn | 0 | 664,157,771 | 2.8% | ||
we-are | 0 | 3,438,791,464 | 15.6% | ||
we-are-one | 0 | 1,073,083,542 | 100% | ||
erickyoussif | 0 | 637,965,834 | 100% | ||
meanbees | 0 | 41,668,856,398 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,186,614,968 | 2.8% | ||
primersion | 0 | 369,074,117,037 | 20% | ||
deholt | 0 | 4,096,036,813 | 59.5% | ||
city-of-berlin | 0 | 41,348,236,618 | 42.5% | ||
celinavisaez | 0 | 10,187,725,402 | 30% | ||
eleazarvo | 0 | 792,371,820 | 2.4% | ||
steem.services | 0 | 1,039,844,514 | 1.12% | ||
bushradio | 0 | 663,692,705 | 5.6% | ||
pladozero | 0 | 29,246,203,425 | 10% | ||
minerthreat | 0 | 3,484,956,428 | 2.8% | ||
nateaguila | 0 | 82,164,956,232 | 5% | ||
temitayo-pelumi | 0 | 6,320,752,144 | 70% | ||
andrick | 0 | 866,365,209 | 50% | ||
doctor-cog-diss | 0 | 63,044,484,026 | 70% | ||
trisolaran | 0 | 1,572,957,951 | 2.8% | ||
thefoundation | 0 | 5,315,948,210 | 11.3% | ||
marcuz | 0 | 2,420,802,264 | 35% | ||
acont | 0 | 6,972,904,856 | 50% | ||
uche-nna | 0 | 4,467,239,578 | 4.48% | ||
drawmeaship | 0 | 1,296,489,426 | 50% | ||
vietthuy | 0 | 810,211,709 | 50% | ||
citizendog | 0 | 5,113,312,821 | 5.6% | ||
we-are-lucky | 0 | 3,968,142,789 | 10.3% | ||
cheese4ead | 0 | 4,734,315,376 | 2.8% | ||
jd4e | 0 | 3,739,870,996 | 50% | ||
mafufuma | 0 | 7,341,284,026 | 1% | ||
apshamilton | 0 | 12,691,536,476 | 0.7% | ||
nathyortiz | 0 | 5,062,413,786 | 12% | ||
nattybongo | 0 | 124,508,213,158 | 70% | ||
drsensor | 0 | 998,828,580 | 36% | ||
steemulant | 0 | 90,530,374 | 5.93% | ||
city-of-dresden | 0 | 175,686,042,707 | 42.5% | ||
revueh | 0 | 2,018,072,285 | 35% | ||
ilovecryptopl | 0 | 909,337,124 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
esteliopadilla | 0 | 493,806,296 | 100% | ||
bflanagin | 0 | 4,783,413,963 | 2.8% | ||
ubaldonet | 0 | 2,946,467,118 | 100% | ||
armandosodano | 0 | 3,431,532,276 | 2.8% | ||
melor9 | 0 | 513,785,963 | 2.8% | ||
marivic10 | 0 | 904,849,602 | 2.8% | ||
hamismsf | 0 | 4,052,148,840 | 0.7% | ||
gerdtrudroepke | 0 | 42,534,430,269 | 49% | ||
goblinknackers | 0 | 74,967,241,329 | 7% | ||
zuerich | 0 | 414,642,874,621 | 10% | ||
reinaseq | 0 | 7,481,867,018 | 100% | ||
vixmemon | 0 | 1,600,408,619 | 4.2% | ||
honeycup-waters | 0 | 633,716,341 | 2.8% | ||
yaelg | 0 | 1,075,446,773 | 1.68% | ||
kylealex | 0 | 4,724,487,066 | 10% | ||
london65 | 0 | 15,738,836,036 | 100% | ||
arzkyu97 | 0 | 2,708,896,776 | 9.6% | ||
fran.frey | 0 | 4,214,477,344 | 50% | ||
perpetuum-lynx | 0 | 2,167,559,293 | 68.6% | ||
hanshotfirst-sm | 0 | 499,826,763 | 5.6% | ||
petrarodriguez | 0 | 152,744,815,249 | 24% | ||
thelittlebank | 0 | 20,611,087,961 | 2.8% | ||
pboulet | 0 | 120,998,656,176 | 56% | ||
javyeslava.photo | 0 | 615,098,614 | 2.24% | ||
belkisa758 | 0 | 1,389,748,676 | 24% | ||
josesalazar200 | 0 | 549,213,908 | 5.6% | ||
stem-espanol | 0 | 13,821,749,648 | 100% | ||
voter000 | 0 | 212,986,740 | 0.6% | ||
cliffagreen | 0 | 4,948,578,531 | 10% | ||
aleestra | 0 | 13,036,970,798 | 80% | ||
palasatenea | 0 | 3,391,704,690 | 2.8% | ||
pocketjs | 0 | 82,026,330 | 5.93% | ||
the.success.club | 0 | 2,373,124,352 | 2.8% | ||
javier.dejuan | 0 | 540,507,211 | 70% | ||
amansharma555 | 0 | 595,961,049 | 100% | ||
sincensura | 0 | 1,036,047,666 | 100% | ||
meanroosterfarm | 0 | 1,405,520,014 | 35% | ||
racarjoal | 0 | 593,574,146 | 12% | ||
merlin7 | 0 | 11,159,021,249 | 5.6% | ||
janettyanez | 0 | 526,397,784 | 4.8% | ||
brianoflondon | 0 | 80,006,793,847 | 1.4% | ||
giulyfarci52 | 0 | 1,722,948,742 | 50% | ||
esthersanchez | 0 | 1,747,245,353 | 24% | ||
maryelin | 0 | 652,242,457 | 12% | ||
kristall97 | 0 | 3,791,868,048 | 100% | ||
followjohngalt | 0 | 876,612,335 | 5.6% | ||
steemcryptosicko | 0 | 8,951,595,237 | 1.12% | ||
alvin0617 | 0 | 493,755,376 | 2.8% | ||
multifacetas | 0 | 1,545,907,849 | 2.8% | ||
cakemonster | 0 | 3,383,000,417 | 5.6% | ||
cowpatty | 0 | 1,476,048,598 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 998,191,609 | 2.8% | ||
hiddendragon | 0 | 638,579,985 | 38% | ||
jpbliberty | 0 | 7,207,739,645 | 1.4% | ||
autobodhi | 0 | 1,066,602,225 | 5.6% | ||
mechanicalowl | 0 | 658,743,302 | 50% | ||
regularowl | 0 | 1,177,061,627 | 50% | ||
solox | 0 | 994,044,344 | 5.6% | ||
double-negative | 0 | 521,382,553 | 20% | ||
vaultec | 0 | 6,407,271,137 | 12% | ||
steemstorage | 0 | 7,438,771,073 | 5.6% | ||
ragnarhewins90 | 0 | 478,526,463 | 10% | ||
jtm.support | 0 | 5,331,630,972 | 70% | ||
edithbdraw | 0 | 804,859,552 | 2.8% | ||
crowdwitness | 0 | 179,312,337,703 | 35% | ||
stevieboyes | 0 | 7,858,263,396 | 90% | ||
hairgistix | 0 | 3,273,913,355 | 2.8% | ||
goodcontentbot | 0 | 808,352,373 | 15% | ||
jadung | 0 | 4,770,289,123 | 100% | ||
bluemaskman | 0 | 646,109,980 | 2.8% | ||
steemean | 0 | 10,107,116,149 | 5% | ||
proxy-pal | 0 | 1,231,310,524 | 5.6% | ||
quentinvb | 0 | 475,598,640 | 100% | ||
hashkings | 0 | 40,689,328,380 | 25% | ||
angelanichole | 0 | 1,586,632,655 | 100% | ||
newton666 | 0 | 4,348,257,419 | 100% | ||
kggymlife | 0 | 3,656,858,728 | 20% | ||
dawnoner | 0 | 1,968,167,347 | 0.56% | ||
jackramsey | 0 | 1,117,769,494 | 3.92% | ||
photographercr | 0 | 2,691,242,458 | 1.12% | ||
epicdice | 0 | 940,717,509 | 0.84% | ||
yiobri | 0 | 534,373,749 | 12% | ||
iamsaray | 0 | 1,369,441,620 | 2.8% | ||
yonnathang | 0 | 15,840,964,534 | 24% | ||
edencourage | 0 | 6,330,311,670 | 50% | ||
beerlover | 0 | 2,237,378,200 | 1.68% | ||
tinyhousecryptos | 0 | 475,277,786 | 5% | ||
victartex | 0 | 1,358,439,141 | 24% | ||
tggr | 0 | 1,350,562,454 | 2.8% | ||
aicu | 0 | 1,361,952,458 | 5.6% | ||
zeruxanime | 0 | 1,575,782,273 | 35% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
spinvest | 0 | 958,585,459 | 1.12% | ||
kgswallet | 0 | 511,700,500 | 10% | ||
h-hamilton | 0 | 1,082,295,242 | 2.8% | ||
tiffin | 0 | 815,405,822 | 5.6% | ||
reggaesteem | 0 | 483,865,828 | 5% | ||
aicoding | 0 | 587,522,459 | 2.8% | ||
tokensink | 0 | 3,266,883,806 | 5.6% | ||
beta500 | 0 | 3,900,860,292 | 5.6% | ||
dechuck | 0 | 8,291,895,895 | 50% | ||
knightsunited | 0 | 1,018,808,939 | 5.6% | ||
javikun | 0 | 702,721,494 | 24% | ||
nazer | 0 | 2,795,997,605 | 35% | ||
saravm82 | 0 | 3,433,497,707 | 24% | ||
steemstem-trig | 0 | 1,464,226,932 | 70% | ||
hispapro | 0 | 463,299,319,212 | 24% | ||
baltai | 0 | 5,908,202,194 | 2.8% | ||
chris-uk | 0 | 1,102,454,069 | 2.8% | ||
mowemu | 0 | 479,612,504 | 5.6% | ||
atheistrepublic | 0 | 6,801,646,166 | 2.8% | ||
machan | 0 | 736,002,118 | 2.8% | ||
ibt-survival | 0 | 36,907,824,184 | 10% | ||
steemdiamond | 0 | 756,041,470 | 5.6% | ||
curacer | 0 | 3,464,990,701 | 50% | ||
zirky | 0 | 2,879,238,553 | 4.76% | ||
lightpaintershub | 0 | 654,865,217 | 1% | ||
jennyzer | 0 | 5,275,622,658 | 24% | ||
davidlionfish | 0 | 15,160,224,489 | 50% | ||
peterale | 0 | 1,322,063,106 | 2.8% | ||
andreina57 | 0 | 653,587,151 | 35% | ||
krisconkr | 0 | 535,397,792 | 2.8% | ||
stemsocial | 0 | 583,150,257,168 | 70% | ||
veeart | 0 | 2,087,210,406 | 50% | ||
holoferncro | 0 | 4,587,353,575 | 10% | ||
the100 | 0 | 1,341,742,064 | 2.8% | ||
pimpstudio | 0 | 11,362,156,319 | 100% | ||
hiveonboard | 0 | 619,870,274 | 2.1% | ||
louis00334 | 0 | 2,192,824,332 | 50% | ||
graciadegenios | 0 | 2,679,706,147 | 24% | ||
georgelys | 0 | 2,925,668,318 | 24% | ||
lqch | 0 | 164,765,824,395 | 12% | ||
noelyss | 0 | 22,911,560,197 | 35% | ||
jsalvage | 0 | 1,896,091,303 | 35% | ||
adolfom | 0 | 12,561,994,979 | 100% | ||
quinnertronics | 0 | 14,771,842,900 | 7% | ||
anafae | 0 | 610,235,804 | 1.12% | ||
hivecoffee | 0 | 649,783,539 | 5.6% | ||
mercurial9 | 0 | 37,634,760,830 | 100% | ||
gohive | 0 | 4,721,925,838 | 100% | ||
sevenoh-fiveoh | 0 | 1,088,875,634 | 2.8% | ||
r-nyn | 0 | 13,764,872,344 | 11% | ||
aabcent | 0 | 3,439,413,875 | 4.48% | ||
edfer18 | 0 | 2,456,397,180 | 24% | ||
artsyproxy | 0 | 481,951,188 | 5.6% | ||
altleft | 0 | 21,973,108,014 | 0.05% | ||
noalys | 0 | 1,062,165,835 | 2.8% | ||
enyusael | 0 | 903,407,020 | 12% | ||
evagavilan2 | 0 | 6,149,409,527 | 12% | ||
gonklavez9 | 0 | 1,371,920,740 | 70% | ||
death-and-taxes | 0 | 475,245,862 | 5.6% | ||
jesuspsoto | 0 | 1,851,929,444 | 24% | ||
apeboy | 0 | 949,234,635 | 12% | ||
cosplay.hadr | 0 | 1,269,876,968 | 5.6% | ||
hadrgames | 0 | 1,308,668,402 | 5.6% | ||
rawecz | 0 | 3,213,395,755 | 24% | ||
maar | 0 | 667,170,753 | 70% | ||
meritocracy | 0 | 61,715,140,477 | 0.56% | ||
pepeymeli | 0 | 581,896,558 | 50% | ||
hispaplus | 0 | 759,604,515 | 24% | ||
dcrops | 0 | 35,368,576,237 | 2.8% | ||
infernalcoliseum | 0 | 3,438,383,383 | 25% | ||
rondonshneezy | 0 | 506,800,661 | 2.8% | ||
yggdrasilwind | 0 | 1,604,708,261 | 24% | ||
eturnerx-dbuzz | 0 | 7,478,607,940 | 22.2% | ||
traderhive | 0 | 12,562,161,200 | 5.6% | ||
alvarezjessica | 0 | 3,663,019,005 | 24% | ||
tawadak24 | 0 | 635,820,008 | 2.8% | ||
eturnerx-honey | 0 | 3,455,917,833 | 10% | ||
ausbit.dev | 0 | 536,411,347 | 2.8% | ||
elgatoshawua | 0 | 667,392,309 | 2.8% | ||
arunbiju969 | 0 | 553,318,849 | 14% | ||
limn | 0 | 863,330,936 | 2.8% | ||
wynella | 0 | 1,107,300,869 | 2.8% | ||
nyxlabs | 0 | 878,711,886 | 3.5% | ||
oahb132 | 0 | 1,138,475,010 | 35% | ||
failingforwards | 0 | 3,188,813,776 | 2.8% | ||
drricksanchez | 0 | 14,609,817,035 | 2.8% | ||
hexagono6 | 0 | 2,263,280,890 | 12% | ||
m0rt0nmattd | 0 | 3,287,161,775 | 100% | ||
maxelitereturned | 0 | 545,527,824 | 35% | ||
magdiel7 | 0 | 433,942,280 | 24% | ||
high8125theta | 0 | 45,284,908,523 | 60% | ||
sunsetjesus | 0 | 39,674,375,702 | 100% | ||
trippymane | 0 | 1,751,772,500 | 5.6% | ||
victordumont | 0 | 1,967,404,682 | 24% | ||
norokochan | 0 | 1,190,207,842 | 24% | ||
nfttunz | 0 | 8,486,523,367 | 0.56% | ||
caribayarte | 0 | 3,675,432,318 | 24% | ||
yeidelyt | 0 | 874,917,422 | 24% | ||
soychalbed | 0 | 1,029,544,824 | 12% | ||
okluvmee | 0 | 2,699,963,820 | 2.8% | ||
atexoras.pub | 0 | 1,332,506,924 | 2.8% | ||
holovision.cash | 0 | 4,142,368,912 | 100% | ||
rqr4 | 0 | 4,646,483,928 | 42.5% | ||
krrizjos18 | 0 | 1,025,495,980 | 12% | ||
hubeyma | 0 | 979,512,315 | 2.8% | ||
alkirua | 0 | 1,922,705,434 | 42.5% | ||
sarashew | 0 | 4,044,974,552 | 5.6% | ||
keithtaylor | 0 | 2,614,523,881 | 100% | ||
buffalobison | 0 | 27,117,496,350 | 50% | ||
podping | 0 | 8,251,979,658 | 1.4% | ||
yenmendt | 0 | 7,330,096,284 | 24% | ||
davidbright | 0 | 686,829,741 | 2.8% | ||
shiftrox | 0 | 2,015,829,007 | 6.37% | ||
nabu.doconosor2 | 0 | 1,037,750,440 | 35% | ||
aguamiel | 0 | 4,757,003,609 | 24% | ||
beysyd | 0 | 2,085,528,975 | 12% | ||
ferbu | 0 | 2,510,463,845 | 24% | ||
drhueso | 0 | 1,422,887,254 | 2.8% | ||
annafenix | 0 | 2,067,061,336 | 12% | ||
pinkfloyd878 | 0 | 4,152,916,809 | 100% | ||
asderhz | 0 | 1,484,208,498 | 12% | ||
ayee11 | 0 | 1,111,231,051 | 100% | ||
mairimgo23 | 0 | 5,635,377,310 | 24% | ||
danokoroafor | 0 | 578,143,627 | 2.8% | ||
badge-646464 | 0 | 546,233,908 | 5.6% | ||
sidalim88 | 0 | 3,487,076,172 | 2.8% | ||
torz18 | 0 | 4,085,780,707 | 100% | ||
amaillo | 0 | 627,389,698 | 4.8% | ||
lexansky | 0 | 1,175,295,999 | 100% | ||
aries90 | 0 | 43,303,971,932 | 5.6% | ||
franvenezuela | 0 | 923,462,640 | 12% | ||
finch97 | 0 | 16,457,031,900 | 100% | ||
rencongland | 0 | 587,417,584 | 2.8% | ||
cugel | 0 | 2,445,309,579 | 2.8% | ||
martinthemass | 0 | 597,152,119 | 100% | ||
vrezyy | 0 | 1,636,872,720 | 10.62% | ||
amaillo-m | 0 | 756,969,947 | 24% | ||
acantoni | 0 | 803,537,941 | 2.8% | ||
pogier | 0 | 4,179,124,725 | 100% | ||
blingit | 0 | 3,549,862,903 | 2.8% | ||
dvpm | 0 | 3,312,672,921 | 100% | ||
marsupia | 0 | 973,575,142 | 25% | ||
t0xicgh0st | 0 | 474,791,681 | 100% | ||
iradeorum | 0 | 540,425,147 | 100% | ||
axelx12 | 0 | 2,039,904,103 | 100% | ||
mcsherriff | 0 | 640,122,208 | 5.6% | ||
andre-marg25 | 0 | 1,262,662,849 | 24% | ||
iskafan | 0 | 658,149,951 | 2.8% | ||
h3m4n7 | 0 | 499,721,540 | 2.8% | ||
jude9 | 0 | 510,662,128 | 17.5% | ||
teteuzinho | 0 | 474,220,972 | 5.6% | ||
motorseb | 0 | 12,791,177,873 | 100% | ||
alt3r | 0 | 1,138,603,983 | 4.31% | ||
waivio.curator | 0 | 1,392,030,892 | 2.66% | ||
ledgar | 0 | 5,990,098,373 | 100% | ||
gercripto | 0 | 1,332,544,314 | 12% | ||
simsahas | 0 | 3,565,444,928 | 5.6% | ||
drexlord | 0 | 664,881,982 | 1.4% | ||
aichanbot | 0 | 2,160,084,660 | 5.6% | ||
eirth | 0 | 138,291,204 | 100% | ||
ehizgabriel | 0 | 692,753,217 | 35% | ||
susurrodmisterio | 0 | 958,505,146 | 12% | ||
esalcedo | 0 | 34,888,297,213 | 24% | ||
checkyzk | 0 | 26,219,219,244 | 98% | ||
foxlatam | 0 | 9,537,005,056 | 50% | ||
deadleaf | 0 | 4,336,756,764 | 100% | ||
stefy.music | 0 | 564,707,900 | 2.8% | ||
taradraz1 | 0 | 229,338,638 | 100% | ||
vindiesel1980 | 0 | 2,894,038,578 | 2.8% | ||
netvalar | 0 | 6,140,888,062 | 50% | ||
lukasbachofner | 0 | 2,364,662,117 | 2.8% | ||
allentaylor | 0 | 1,019,610,010 | 2.8% | ||
sam9999 | 0 | 4,884,902,267 | 35% | ||
benwickenton | 0 | 2,766,092,523 | 5.6% | ||
annabeth | 0 | 811,944,011 | 5.6% | ||
jerusa777 | 0 | 1,190,364,410 | 15% | ||
blockgolem | 0 | 500,177,712 | 5.6% | ||
balabambuz | 0 | 731,138,638 | 2.8% | ||
drivingindevon | 0 | 1,692,152,666 | 4.48% | ||
prosocialise | 0 | 58,889,578,097 | 35% | ||
the420syndicate | 0 | 1,082,012,006 | 100% | ||
archangel21 | 0 | 3,217,338,521 | 5.6% | ||
titly | 0 | 477,596,506 | 50% | ||
belug | 0 | 2,340,809,281 | 1.68% | ||
filmmaking4hive | 0 | 2,217,426,640 | 5.6% | ||
amafable07 | 0 | 1,024,877,603 | 35% | ||
mugueto2022 | 0 | 554,721,861 | 20% | ||
ricardoeloy | 0 | 706,239,226 | 6% | ||
chechostreet | 0 | 1,989,102,561 | 24% | ||
nazom | 0 | 819,707,622 | 35% | ||
prasiatko | 0 | 1,933,337,607 | 2.12% | ||
mr-rent | 0 | 4,112,137,538 | 75% | ||
universodaniel | 0 | 867,507,848 | 12% | ||
sbtofficial | 0 | 4,966,469,615 | 2.8% | ||
hk-curation | 0 | 109,588,120,875 | 50% | ||
vagabond42069 | 0 | 1,474,542,093 | 35% | ||
eollarvesm | 0 | 882,845,296 | 12% | ||
inibless | 0 | 2,381,418,421 | 35% | ||
cindynancy | 0 | 1,565,619,182 | 35% | ||
hiversbqto | 0 | 2,423,706,198 | 24% | ||
gejami | 0 | 7,115,184,719 | 100% | ||
justfavour | 0 | 1,642,704,718 | 2.8% | ||
hispaliterario | 0 | 655,467,819 | 24% | ||
sc000 | 0 | 1,440,231,169 | 5.6% | ||
pinkchic | 0 | 602,771,645 | 0.84% | ||
cardcompounding | 0 | 1,945,219,128 | 100% | ||
vankushfamily | 0 | 671,089,856 | 35% | ||
jijisaurart | 0 | 1,432,418,078 | 2.8% | ||
clpacksperiment | 0 | 3,106,736,015 | 2.8% | ||
humbe | 0 | 1,278,490,877 | 1% | ||
hive-179513 | 0 | 1,983,728,126 | 50% | ||
ninjakitten | 0 | 17,055,028,486 | 100% | ||
thepeoplesguild | 0 | 920,451,524 | 2.8% | ||
flywithmarlin | 0 | 846,245,919 | 12% | ||
zackygamer | 0 | 1,287,436,048 | 24% | ||
technico | 0 | 833,125,332 | 2.8% | ||
arduilcelebren | 0 | 2,154,183,324 | 2.8% | ||
freecompliments | 0 | 1,618,817,110 | 42.5% | ||
opticus | 0 | 5,832,842,698 | 2.8% | ||
hive-140084 | 0 | 985,802,444 | 42.5% | ||
lettinggotech | 0 | 1,300,914,538 | 2.8% | ||
ojsuarez2 | 0 | 3,056,722,366 | 100% | ||
rhemagames | 0 | 5,260,943,934 | 2.8% | ||
cryptoscripts | 0 | 500,836,453 | 14% | ||
kryptof | 0 | 5,126,580,242 | 8% | ||
pablito.saldo | 0 | 605,620,577 | 3.18% | ||
dev.maverick | 0 | 922,358,467 | 5.6% | ||
mariiestefania | 0 | 2,344,833,639 | 24% | ||
fc-curation | 0 | 12,681,835,508 | 42.5% | ||
hive-lu | 0 | 8,172,430,330 | 5.85% |
!DHEDGE
author | fc-curation |
---|---|
permlink | re-eniolw-20231130t155719382z |
category | hive-140084 |
json_metadata | {"tags":["hive-140084","coding","python","javascript","quiz","programming","neoxian","proofofbrain","waivio","spanish"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2023-11-30 10:57:30 |
last_update | 2023-11-30 10:57:30 |
depth | 1 |
children | 1 |
last_payout | 2023-12-07 10:57:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 61,419,996,141,932 |
root_title | "My Coding Quiz #37" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,292,157 |
net_rshares | 0 |
you have 0.0 vote calls available today, your vote calls will reset at next snapshot. You can [buy DHEDGE on Tribaldex](https://tribaldex.com/trade/DHEDGE) or earn some daily by joining one of our many delegation pools at [app.dhedge.cc](https://app.dhedge.cc) to increase your daily amount.
author | dhedge |
---|---|
permlink | re-re-eniolw-20231130t155719382z-20231130t105737z |
category | hive-140084 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2023-11-30 10:57:36 |
last_update | 2023-11-30 10:57:36 |
depth | 2 |
children | 0 |
last_payout | 2023-12-07 10:57:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 291 |
author_reputation | 5,003,962,900,629 |
root_title | "My Coding Quiz #37" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,292,160 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-eniolw-my-coding-quiz-37-20231129t172830505z |
category | hive-140084 |
json_metadata | {"app":"STEMsocial"} |
created | 2023-11-29 17:28:30 |
last_update | 2023-11-29 17:28:30 |
depth | 1 |
children | 0 |
last_payout | 2023-12-06 17:28:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 565 |
author_reputation | 22,930,909,407,157 |
root_title | "My Coding Quiz #37" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,274,977 |
net_rshares | 789,475,407 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fc-curation | 0 | 789,475,407 | 3.5% |