<div class="text-justify"> <center><h2>My Coding Quiz #61 👨💻🛠️🧩</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/DQmPG47CnWrdUvz4RWB47RbzAB3r2Jn7yXZaCC3mGjEDoWP/imagen.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-60">previous quiz</a>:</b> <b>a1 1</b> Between lines 1 and 4 we are simply creating a dictionary using the <i>comprehension notation</i>.</p> <p>Although this notation which spans seveal lines looks strange to some and is discouraged by others, it seems to be necessary when the line of code is very long, so it would fit well to span several lines. I personally like it and find it easily readable. Programmers in other languages are sometimes confused by this notation, but they soon get the hang of it.</p> <p>As we can see, <code>r: f"{f}{r}"</code> is what defines the keys and values of the dictionary. The variable <code>r</code> is from the for loop we see below, while the f-string also makes use of <code>r</code> and another variable <code>f</code> which also changes value at each interaction. Here <code>f</code> and <code>r</code> stand for file and rank.</p> <p>We see that the values of <code>r</code> and <code>f</code> start from <code>zip("abcde", range(1,5))</code>. We know that this <code>zip</code> function traverses two iterables at the same time. The first iterable is the string <code>"abcde"</code> of length 5, but the second iterable is <code>range(1,5)</code> which decomposed consists of 1,2,3,4, meaning its length is 4.</p> <p>That tells us that the dictionary <code>d</code> will actually be formed like this: <b>{1: 'a1', 2: 'b2', 3: 'c3', 4: 'd4'}</b>. The pair <b>5: 'e5'</b> does not exist, since we already know that the <code>5</code> in the <code>range</code> is exclusive. This already helps us to rule out some of the options given for the quiz, such as the option <b>a1 e5</b>. The content of this dictionary, by the way, is <i>an analogy to the squares of a long diagonal of the chessboard</i>.</p> <p>Once the dictionary is created, line 5 applies the <code>pop</code> method to it. Did you think this method only existed for lists? No, dictionaries also support it. How does it work in this case? Well, the first value we provide to the method corresponds to a key in the dictionary, while the next value is a <i>default value that pop will return in case the given key does not exist in the dictionary</i>, similar to how the <code>get</code> method works.</p> <p>Although the <code>pop</code> method receives the key searched, it actually returns the value corresponding to that key. Hence in our case, when doing: <code>d1, d2 = d.pop(1, 0), d.pop(5, 1)</code>, <code>d1</code> will have the value <b>'a1'</b>, since key <b>1</b> exists and has the value <b>'a1'</b>, while <code>d2</code> will have the value <b>1</b>, which is the default value given to <code>pop</code>, since key <b>5</b> does not exist in the dictionary <code>d</code>.</p> <p>By the way, you should know that the <code>pop</code> method is destructive, that is, it overwrites the dictionary, in this case removing key/values.</p> <p>Finally when printing <code>d1</code> and <code>d2</code> we get that the output is <b>'a1 1'</b>, as expected.</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 #61 👨💻🛠️🧩</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/DQmVEtmXtbbApU3sMoMWW3bo5XypzyttUrLxrb7LdtVLTTK/imagen.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-60">quiz anterior</a>:</b> <b>a1 1</b> Entre las líneas 1 y 4 simplemente estamos creando un diccionario usando la <i>notación de comprensión</i>.</p> <p>Aunque esta notación que abarca varias líneas parece extraña para algunos y otros la desaconsejan, parece ser necesaria cuando la línea de código es muy larga, por lo que encajaría bien el abarcar varias líneas. A mí personalmente me gusta y lo encuentro fácil de leer. Los programadores de otros lenguajes a veces se sienten confundidos por esta notación, pero pronto le toman el hilo.</p> <p>Como podemos ver, <code>r: f"{f}{r}"</code> es lo que define las claves y valores del diccionario. La variable <code>r</code> es del bucle for que vemos a continuación, mientras que la cadena f también hace uso de <code>r</code> y otra variable <code>f</code> que también cambia valor en cada interacción. Aquí <code>f</code> y <code>r</code> representan file (columna) y rank (fila).</p> <p>Vemos que los valores de <code>r</code> y <code>f</code> comienzan desde <code>zip("abcde", range(1,5))</code>. Sabemos que esta función <code>zip</code> atraviesa dos iterables al mismo tiempo. El primer iterable es la cadena <code>"abcde"</code> de longitud 5, pero el segundo iterable es <code>range(1,5)</code> que descompuesto consta de 1,2,3,4, lo que significa que su longitud es 4.</p> <p>Eso nos dice que el diccionario <code>d</code> en realidad se formará así: <b>{1: 'a1', 2: 'b2', 3: 'c3', 4: 'd4'}</b>. El par <b>5: 'e5'</b> no existe, ya que ya sabemos que el <code>5</code> en el <code>range</code> es exclusivo. Esto ya nos ayuda a descartar algunas de las opciones dadas para el quiz, como por ejemplo la opción <b>a1 e5</b>. El contenido de este diccionario, por cierto, es <i>una analogía con las casillas de una gran diagonal del tablero de ajedrez</i>.</p> <p>Una vez creado el diccionario, la línea 5 le aplica el método <code>pop</code>. ¿Pensabas que este método sólo existía para listas? No, los diccionarios también lo admiten. ¿Cómo funciona en este caso? Bueno, el primer valor que proporcionamos al método corresponde a una clave en el diccionario, mientras que el siguiente valor es un <i>valor predeterminado que pop devolverá en caso de que la clave dada no exista en el diccionario</i>, similar cómo funciona el método <code>get</code>.</p> <p>Aunque el método <code>pop</code> recibe la clave buscada, en realidad devuelve el valor correspondiente a esa clave. Por lo tanto en nuestro caso, al hacer: <code>d1, d2 = d.pop(1, 0), d.pop(5, 1)</code>, <code>d1</code> tendrá el valor <b>'a1'</b>, ya que la clave <b>1</b> existe y tiene el valor <b>'a1'</b>, mientras que <code>d2</code> tendrá el valor <b>1</b>, que es el valor predeterminado dado a <code>pop</code>, ya que la clave <b>5</b> no existe en el diccionario <code>d</code>.</p> <p>Por cierto, debes saber que el método <code>pop</code> es destructivo, es decir, sobrescribe el diccionario, en este caso eliminando claves/valores.</p> <p>Finalmente, al imprimir <code>d1</code> y <code>d2</code> obtenemos que la salida es <b>'a1 1'</b>, como se esperaba.</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-61 |
category | hive-197685 |
json_metadata | "{"app":"ecency/3.2.0-vision","tags":["hive-197685","programming","coding","python","quiz","chess","neoxian","proofofbrain","waivio","creativecoin","spanish","ecency"],"format":"markdown+html","image":["https://images.ecency.com/DQmPG47CnWrdUvz4RWB47RbzAB3r2Jn7yXZaCC3mGjEDoWP/imagen.png","https://images.ecency.com/DQmVEtmXtbbApU3sMoMWW3bo5XypzyttUrLxrb7LdtVLTTK/imagen.png"],"thumbnails":["https://images.ecency.com/DQmPG47CnWrdUvz4RWB47RbzAB3r2Jn7yXZaCC3mGjEDoWP/imagen.png","https://images.ecency.com/DQmVEtmXtbbApU3sMoMWW3bo5XypzyttUrLxrb7LdtVLTTK/imagen.png"],"description":"My Coding Quiz #61 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.","image_ratios":["1.1737","1.1737"]}" |
created | 2024-06-02 00:24:33 |
last_update | 2024-06-02 00:24:33 |
depth | 0 |
children | 5 |
last_payout | 2024-06-09 00:24:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.782 HBD |
curator_payout_value | 7.679 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,278 |
author_reputation | 257,498,947,129,554 |
root_title | "My Coding Quiz #61" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 134,132,393 |
net_rshares | 37,032,102,044,294 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
boatymcboatface | 0 | 160,476,239,311 | 8% | ||
drifter1 | 0 | 1,047,686,835 | 2.8% | ||
kingscrown | 0 | 2,455,511,310 | 8% | ||
kevinwong | 0 | 5,839,199,644 | 2.8% | ||
theshell | 0 | 42,931,128,033 | 8% | ||
justtryme90 | 0 | 1,391,756,822 | 70% | ||
eric-boucher | 0 | 15,598,636,255 | 2.8% | ||
juanmiguelsalas | 0 | 1,196,429,752 | 1.68% | ||
kaylinart | 0 | 1,604,460,312 | 2.8% | ||
roelandp | 0 | 423,530,270,841 | 35% | ||
cloh76 | 0 | 3,972,139,066 | 2.8% | ||
nascimentoab | 0 | 594,273,627 | 2.8% | ||
allyinspirit | 0 | 636,894,818 | 4.72% | ||
joshglen | 0 | 937,836,059 | 5.6% | ||
avellana | 0 | 84,956,340,831 | 80% | ||
sunshine | 0 | 202,700,781,113 | 35% | ||
rmach | 0 | 1,085,989,380 | 35% | ||
lemouth | 0 | 1,407,380,587,288 | 45% | ||
netaterra | 0 | 29,722,160,086 | 2.8% | ||
someguy123 | 0 | 14,181,858,200 | 2.8% | ||
alaqrab | 0 | 565,470,027 | 2.8% | ||
scottermonkey | 0 | 2,632,360,709 | 9.45% | ||
lamouthe | 0 | 5,603,468,845 | 70% | ||
tfeldman | 0 | 5,467,031,433 | 2.8% | ||
metabs | 0 | 8,166,387,050 | 70% | ||
mcsvi | 0 | 83,600,936,593 | 50% | ||
lk666 | 0 | 2,145,938,330 | 2.8% | ||
cnfund | 0 | 12,579,860,139 | 5.6% | ||
boxcarblue | 0 | 12,476,158,028 | 2.8% | ||
justyy | 0 | 44,145,851,779 | 5.6% | ||
michelle.gent | 0 | 3,496,758,679 | 1.12% | ||
curie | 0 | 373,257,738,651 | 5.6% | ||
safar01 | 0 | 909,677,755 | 37.5% | ||
modernzorker | 0 | 4,103,303,220 | 3.92% | ||
moretea | 0 | 819,317,584 | 2.8% | ||
techslut | 0 | 188,536,149,452 | 28% | ||
steemstem | 0 | 1,302,819,471,103 | 70% | ||
dashfit | 0 | 479,054,393 | 2.8% | ||
tristancarax | 0 | 703,068,464 | 2.8% | ||
edb | 0 | 6,218,143,471 | 7% | ||
yadamaniart | 0 | 4,092,368,992 | 2.8% | ||
bigtakosensei | 0 | 1,664,611,120 | 1.4% | ||
walterjay | 0 | 352,867,207,948 | 35% | ||
valth | 0 | 10,594,549,359 | 35% | ||
metroair | 0 | 29,715,856,039 | 5.6% | ||
driptorchpress | 0 | 2,236,357,726 | 1.4% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
privex | 0 | 3,992,413,484 | 5.6% | ||
boynashruddin | 0 | 876,414,926 | 5.6% | ||
torkot | 0 | 1,052,685,876 | 2.8% | ||
steemiteducation | 0 | 1,488,382,762 | 2.8% | ||
dhimmel | 0 | 379,702,058,468 | 17.5% | ||
oluwatobiloba | 0 | 2,182,048,079 | 70% | ||
detlev | 0 | 35,514,761,747 | 1.68% | ||
chasmic-cosm | 0 | 855,477,964 | 2.8% | ||
dune69 | 0 | 696,078,988 | 5.6% | ||
lugaxker | 0 | 824,083,802 | 34.65% | ||
federacion45 | 0 | 8,533,623,248 | 2.8% | ||
amberyooper | 0 | 708,860,656 | 2.8% | ||
gamersclassified | 0 | 3,314,882,321 | 2.8% | ||
forykw | 0 | 16,271,939,678 | 2.8% | ||
mobbs | 0 | 196,282,094,301 | 70% | ||
jerrybanfield | 0 | 20,214,972,547 | 5.6% | ||
rt395 | 0 | 2,094,940,743 | 1.5% | ||
bitrocker2020 | 0 | 11,951,777,249 | 1.12% | ||
maxdevalue | 0 | 723,315,712 | 5.6% | ||
sustainablyyours | 0 | 20,378,538,085 | 35% | ||
arunava | 0 | 15,365,476,595 | 2.24% | ||
juancar347 | 0 | 17,970,547,370 | 2.8% | ||
schoolforsdg4 | 0 | 1,052,669,477 | 5% | ||
samminator | 0 | 40,538,973,144 | 35% | ||
zerotoone | 0 | 1,116,271,345 | 2.8% | ||
bearone | 0 | 1,656,667,443 | 3.78% | ||
enjar | 0 | 48,651,518,670 | 5.04% | ||
lorenzor | 0 | 1,355,336,909 | 50% | ||
firstamendment | 0 | 91,779,010,269 | 50% | ||
aboutyourbiz | 0 | 1,135,602,302 | 5.6% | ||
pibara | 0 | 0 | 100% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
dandesign86 | 0 | 16,782,449,369 | 8% | ||
jayna | 0 | 7,838,716,201 | 1.12% | ||
hhayweaver | 0 | 1,019,855,926 | 1.4% | ||
finkistinger | 0 | 980,710,096 | 2.8% | ||
princessmewmew | 0 | 9,148,550,488 | 2.8% | ||
joeyarnoldvn | 0 | 467,017,399 | 1.47% | ||
decomoescribir | 0 | 1,035,321,509 | 2.8% | ||
diabolika | 0 | 1,098,243,916 | 2.8% | ||
zacherybinx | 0 | 950,620,445 | 5.6% | ||
gunthertopp | 0 | 71,841,132,847 | 1.4% | ||
pipiczech | 0 | 2,438,141,275 | 5.6% | ||
walkerland | 0 | 7,108,199,321 | 9.45% | ||
empath | 0 | 4,321,804,034 | 2.8% | ||
minnowbooster | 0 | 816,805,391,875 | 20% | ||
felt.buzz | 0 | 7,997,053,491 | 1.4% | ||
howo | 0 | 2,472,603,987,133 | 70% | ||
tsoldovieri | 0 | 7,443,254,661 | 35% | ||
heart-to-heart | 0 | 3,593,662,263 | 5.67% | ||
droida | 0 | 178,818,665,484 | 100% | ||
neumannsalva | 0 | 4,928,171,122 | 2.8% | ||
stayoutoftherz | 0 | 158,486,885,175 | 1.4% | ||
abigail-dantes | 0 | 27,225,186,709 | 70% | ||
coindevil | 0 | 3,036,886,331 | 4.48% | ||
zonguin | 0 | 3,777,018,981 | 17.5% | ||
mhel | 0 | 555,542,823 | 1.12% | ||
enfocate | 0 | 4,756,060,526 | 24% | ||
investingpennies | 0 | 17,473,394,611 | 5.6% | ||
martibis | 0 | 3,509,230,830 | 1.68% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
travelingmercies | 0 | 781,384,540 | 5.6% | ||
holisticmom | 0 | 3,729,048,235 | 7.56% | ||
redrica | 0 | 2,643,148,025 | 10.39% | ||
pepskaram | 0 | 591,114,807 | 2.8% | ||
iamphysical | 0 | 1,680,128,813 | 90% | ||
sunisa | 0 | 472,078,017 | 2.8% | ||
dipom98 | 0 | 1,195,269,325 | 2.8% | ||
zest | 0 | 1,016,196,887 | 35% | ||
zyx066 | 0 | 3,712,280,139 | 1.68% | ||
chrisdavidphoto | 0 | 1,237,859,908 | 1.68% | ||
revo | 0 | 13,339,184,832 | 5.6% | ||
azulear | 0 | 1,859,496,945 | 100% | ||
psicoluigi | 0 | 815,191,290 | 50% | ||
risckylu | 0 | 1,017,750,277 | 24% | ||
rafaelaquino | 0 | 15,795,297,438 | 100% | ||
wilians | 0 | 548,137,818 | 35% | ||
rocky1 | 0 | 794,601,225,529 | 0.84% | ||
stickchumpion | 0 | 1,034,388,372 | 2.8% | ||
tipu | 0 | 17,296,923,752,368 | 75% | ||
thelordsharvest | 0 | 3,404,414,686 | 5.6% | ||
aidefr | 0 | 8,182,792,421 | 35% | ||
torico | 0 | 1,526,930,522 | 1.84% | ||
cconn | 0 | 1,216,031,617 | 9.45% | ||
cloudspyder | 0 | 9,606,460,855 | 100% | ||
therealwolf | 0 | 28,058,635,423 | 2.8% | ||
vmoldo | 0 | 567,157,584 | 4.48% | ||
minnowpowerup | 0 | 904,846,485 | 2.8% | ||
yangyanje | 0 | 562,459,059 | 2.8% | ||
splash-of-angs63 | 0 | 24,919,824,154 | 100% | ||
diosarich | 0 | 3,579,995,995 | 37.5% | ||
cryptononymous | 0 | 1,997,610,960 | 2.8% | ||
meno | 0 | 28,991,104,116 | 2.8% | ||
buttcoins | 0 | 2,332,322,843 | 1.12% | ||
helyorsini | 0 | 724,413,592 | 2.8% | ||
steemed-proxy | 0 | 1,277,763,322,479 | 5.6% | ||
fatkat | 0 | 1,368,780,717 | 2.79% | ||
peaceandwar | 0 | 857,922,417 | 2.8% | ||
enzor | 0 | 2,286,515,621 | 35% | ||
marcoriccardi | 0 | 1,126,785,179 | 5.6% | ||
bartosz546 | 0 | 26,848,069,050 | 2.8% | ||
tazbaz | 0 | 564,705,031 | 2.8% | ||
afterglow | 0 | 554,534,083 | 10% | ||
battebilly | 0 | 857,398,080 | 2.8% | ||
caladan | 0 | 257,232,152 | 5.6% | ||
maverickfoo | 0 | 13,708,387,448 | 50% | ||
dejan.vuckovic | 0 | 898,716,649 | 1.12% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 1,037,219,568 | 4.48% | ||
sunsea | 0 | 5,655,204,869 | 2.8% | ||
eonwarped | 0 | 229,055,628,761 | 30% | ||
mejustandrew | 0 | 835,434,112 | 2.8% | ||
bluefinstudios | 0 | 4,100,143,695 | 1.68% | ||
senorcoconut | 0 | 2,686,020,577 | 3.78% | ||
steveconnor | 0 | 5,022,185,323 | 2.8% | ||
sankysanket18 | 0 | 1,593,919,279 | 35% | ||
afzalqamar | 0 | 2,801,684,969 | 37.5% | ||
dbddv01 | 0 | 2,587,399,336 | 17.5% | ||
feltoxxx | 0 | 8,894,038,938 | 100% | ||
zmx | 0 | 609,691,732 | 2.8% | ||
skippyza | 0 | 491,774,773 | 5.6% | ||
nicole-st | 0 | 609,030,915 | 2.8% | ||
smartsteem | 0 | 134,982,710,980 | 2.8% | ||
aboutcoolscience | 0 | 44,725,688,313 | 70% | ||
elisonr13 | 0 | 1,095,039,493 | 12% | ||
popurri | 0 | 1,319,308,224 | 37.5% | ||
afifa | 0 | 729,075,795 | 10% | ||
sandracarrascal | 0 | 501,945,885 | 50% | ||
skycae | 0 | 704,989,115 | 5.6% | ||
kenadis | 0 | 19,108,320,286 | 70% | ||
madridbg | 0 | 24,267,230,123 | 70% | ||
robotics101 | 0 | 21,664,278,083 | 70% | ||
lpv | 0 | 3,047,238,712 | 8.75% | ||
howiemac | 0 | 17,141,888,927 | 100% | ||
apon318 | 0 | 515,225,717 | 5.6% | ||
straykat | 0 | 931,937,405 | 2.8% | ||
tomatom | 0 | 490,694,644 | 2.8% | ||
adelepazani | 0 | 2,270,359,027 | 1.12% | ||
danaedwards | 0 | 748,239,628 | 5.6% | ||
r00sj3 | 0 | 125,006,305,322 | 35% | ||
sco | 0 | 24,260,868,553 | 70% | ||
phgnomo | 0 | 884,007,109 | 2.8% | ||
ennyta | 0 | 2,037,994,253 | 100% | ||
juecoree | 0 | 5,553,200,056 | 49% | ||
gordon92 | 0 | 890,650,603 | 2.8% | ||
stahlberg | 0 | 1,282,043,338 | 2.8% | ||
abeba | 0 | 4,037,807,182 | 50% | ||
gabrielatravels | 0 | 2,669,408,791 | 1.96% | ||
jaro-art | 0 | 3,841,945,707 | 100% | ||
cordeta | 0 | 1,063,087,421 | 5.6% | ||
reizak | 0 | 496,170,408 | 2.24% | ||
mountainjewel | 0 | 3,310,872,687 | 3.78% | ||
carn | 0 | 3,751,709,791 | 5.04% | ||
eliaschess333 | 0 | 17,735,054,460 | 100% | ||
branbello | 0 | 1,328,398,758 | 35% | ||
hetty-rowan | 0 | 4,466,967,222 | 2.8% | ||
ydavgonzalez | 0 | 1,811,336,350 | 10% | ||
intrepidphotos | 0 | 17,017,821,480 | 52.5% | ||
itwithsm | 0 | 1,248,947,234 | 5.6% | ||
fineartnow | 0 | 4,032,171,759 | 2.8% | ||
mathowl | 0 | 32,748,198,591 | 100% | ||
oscarina | 0 | 736,587,776 | 10% | ||
bobydimitrov | 0 | 2,527,019,061 | 18.9% | ||
yoghurt | 0 | 758,324,369 | 5.6% | ||
aiziqi | 0 | 1,051,693,086 | 5% | ||
communitybank | 0 | 3,813,102,970 | 5.6% | ||
shinedojo | 0 | 710,173,736 | 5.6% | ||
fragmentarion | 0 | 16,584,605,478 | 70% | ||
tryskele | 0 | 991,259,513 | 3.78% | ||
jigstrike | 0 | 920,023,976 | 2.8% | ||
baycan | 0 | 466,989,088 | 2.8% | ||
ahmedsy | 0 | 1,487,571,345 | 5.6% | ||
m1alsan | 0 | 5,782,562,732 | 5.6% | ||
dragibusss | 0 | 1,411,071,120 | 50% | ||
dynamicrypto | 0 | 618,013,315 | 1% | ||
pab.ink | 0 | 709,529,060 | 35% | ||
marc-allaria | 0 | 3,478,497,195 | 2.8% | ||
real2josh | 0 | 661,181,182 | 35% | ||
sportscontest | 0 | 5,332,945,893 | 5.6% | ||
videosteemit | 0 | 938,689,223 | 5.6% | ||
gribouille | 0 | 1,674,747,287 | 35% | ||
pandasquad | 0 | 15,626,199,967 | 5.6% | ||
tobias-g | 0 | 9,847,030,762 | 5% | ||
leoumesh | 0 | 537,694,895 | 35% | ||
cool08 | 0 | 2,978,001,322 | 35% | ||
chronocrypto | 0 | 1,713,883,712 | 2.8% | ||
lunaticpandora | 0 | 631,585,037 | 10.8% | ||
kingabesh | 0 | 1,426,522,106 | 35% | ||
miguelangel2801 | 0 | 795,993,961 | 50% | ||
mproxima | 0 | 2,370,112,676 | 2.8% | ||
fantasycrypto | 0 | 1,874,970,205 | 2.8% | ||
didic | 0 | 1,929,448,706 | 2.8% | ||
franciscomarval | 0 | 23,089,220,034 | 100% | ||
jossduarte | 0 | 521,381,215 | 2.8% | ||
emiliomoron | 0 | 6,476,479,754 | 35% | ||
galam | 0 | 968,172,865 | 35% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
nwjordan | 0 | 837,742,748 | 5.6% | ||
photohunt | 0 | 3,277,205,156 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
ajfernandez | 0 | 783,835,689 | 100% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
atomcollector | 0 | 1,799,473,121 | 1.4% | ||
barge | 0 | 10,995,198,718 | 18.9% | ||
alexdory | 0 | 10,430,016,286 | 70% | ||
takowi | 0 | 1,321,631,041 | 5.6% | ||
sargewhale | 0 | 835,967,730 | 100% | ||
irgendwo | 0 | 24,109,206,682 | 5.6% | ||
vegan.niinja | 0 | 531,803,563 | 2.8% | ||
charitybot | 0 | 5,158,982,877 | 100% | ||
cyprianj | 0 | 36,820,452,838 | 70% | ||
kieranstone | 0 | 1,689,381,753 | 1.84% | ||
bernardino | 0 | 701,966,829 | 2.8% | ||
melvin7 | 0 | 112,210,638,943 | 35% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
russellstockley | 0 | 1,620,058,873 | 1.4% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
croctopus | 0 | 1,552,552,634 | 100% | ||
putu300 | 0 | 467,218,622 | 5% | ||
zipporah | 0 | 2,899,518,039 | 1.12% | ||
leomarylm | 0 | 775,079,308 | 2.8% | ||
superlotto | 0 | 9,967,675,684 | 5.6% | ||
positiveninja | 0 | 880,782,413 | 2.8% | ||
oadissin | 0 | 13,228,000,710 | 12% | ||
emperatriz1503 | 0 | 503,327,297 | 100% | ||
jorgebgt | 0 | 3,146,656,294 | 100% | ||
foxyspirit | 0 | 557,814,986 | 2.8% | ||
bscrypto | 0 | 15,715,767,973 | 2.8% | ||
delpilar | 0 | 934,959,443 | 25% | ||
tomastonyperez | 0 | 17,100,908,671 | 50% | ||
paypalbis | 0 | 909,431,527 | 100% | ||
rodrigocassio | 0 | 890,951,931 | 100% | ||
bil.prag | 0 | 2,661,551,323 | 0.28% | ||
silviomangum29 | 0 | 890,921,110 | 100% | ||
elvigia | 0 | 11,204,153,959 | 50% | ||
sanderjansenart | 0 | 6,847,736,086 | 2.8% | ||
viagens | 0 | 893,339,509 | 100% | ||
vittoriozuccala | 0 | 1,150,533,851 | 2.8% | ||
koenau | 0 | 4,302,197,274 | 2.8% | ||
qberry | 0 | 4,066,690,628 | 2.8% | ||
frissonsteemit | 0 | 1,286,989,733 | 2.8% | ||
broncofan99 | 0 | 10,962,913,519 | 20% | ||
greddyforce | 0 | 4,696,607,871 | 2.07% | ||
flyerchen | 0 | 1,326,686,559 | 2.8% | ||
juanmanuellopez1 | 0 | 763,796,284 | 19.2% | ||
melbourneswest | 0 | 4,347,892,791 | 2.8% | ||
gadrian | 0 | 618,685,768,559 | 52.5% | ||
c0wtschpotato | 0 | 605,032,391 | 2.8% | ||
therising | 0 | 117,055,236,936 | 5.6% | ||
jordangerder | 0 | 1,273,316,654 | 12% | ||
memepress | 0 | 1,243,550,857 | 37.5% | ||
cryptocoinkb | 0 | 2,265,719,093 | 2.8% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
me2selah | 0 | 914,002,015 | 2.8% | ||
marijo-rm | 0 | 16,969,401,135 | 16.8% | ||
lilacse | 0 | 38,372,754,650 | 100% | ||
josedelacruz | 0 | 4,206,349,552 | 50% | ||
dracrow | 0 | 615,808,367 | 9.6% | ||
charitymemes | 0 | 528,048,215 | 100% | ||
mariusfebruary | 0 | 736,549,961 | 2.24% | ||
outtheshellvlog | 0 | 900,845,295 | 2.8% | ||
softa | 0 | 3,211,456,932 | 1.12% | ||
sawyn | 0 | 664,157,771 | 2.8% | ||
erickyoussif | 0 | 799,594,664 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,485,729,660 | 2.8% | ||
deholt | 0 | 4,096,036,813 | 59.5% | ||
anneporter | 0 | 2,741,269,934 | 21% | ||
eleazarvo | 0 | 661,099,698 | 2.4% | ||
steem.services | 0 | 1,022,580,062 | 1.12% | ||
meins0815 | 0 | 9,967,907,377 | 23% | ||
diabonua | 0 | 48,358,642,844 | 100% | ||
pladozero | 0 | 30,514,824,443 | 10% | ||
crimo | 0 | 710,396,760 | 11.5% | ||
minerthreat | 0 | 3,973,514,378 | 2.8% | ||
nateaguila | 0 | 69,401,494,303 | 5% | ||
riverflows | 0 | 42,600,485,140 | 3.78% | ||
thelaundrylady | 0 | 4,192,089,817 | 9.45% | ||
temitayo-pelumi | 0 | 6,699,003,473 | 70% | ||
andrick | 0 | 865,436,117 | 50% | ||
doctor-cog-diss | 0 | 74,042,367,340 | 70% | ||
parauri | 0 | 700,176,683 | 31.5% | ||
trisolaran | 0 | 1,572,957,951 | 2.8% | ||
marcuz | 0 | 2,809,292,202 | 35% | ||
acont | 0 | 5,140,820,159 | 50% | ||
uche-nna | 0 | 7,869,368,251 | 4.48% | ||
digitaldan | 0 | 3,252,387,517 | 4.72% | ||
cheese4ead | 0 | 4,415,208,786 | 2.8% | ||
jd4e | 0 | 3,736,818,045 | 50% | ||
apshamilton | 0 | 14,593,216,994 | 0.7% | ||
longer | 0 | 6,753,258,073 | 18.75% | ||
nattybongo | 0 | 41,373,025,777 | 70% | ||
drsensor | 0 | 1,001,530,320 | 36% | ||
talentclub | 0 | 4,593,992,360 | 2.8% | ||
roozeec | 0 | 504,290,022 | 10% | ||
revueh | 0 | 2,030,442,924 | 35% | ||
radiosteemit | 0 | 19,828,973,160 | 100% | ||
ilovecryptopl | 0 | 916,482,444 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
esteliopadilla | 0 | 492,929,519 | 100% | ||
bflanagin | 0 | 3,017,318,175 | 2.8% | ||
mightypanda | 0 | 1,717,036,279 | 52.5% | ||
ubaldonet | 0 | 5,317,633,422 | 100% | ||
phillyc | 0 | 676,231,725 | 18.9% | ||
armandosodano | 0 | 4,390,934,744 | 2.8% | ||
marivic10 | 0 | 1,052,979,565 | 2.8% | ||
acidtiger | 0 | 440,887,293 | 2.8% | ||
hamismsf | 0 | 4,766,138,455 | 0.7% | ||
thales7 | 0 | 1,977,250,634 | 5.6% | ||
smartvote | 0 | 70,385,857,739 | 3.3% | ||
zuerich | 0 | 525,729,689,105 | 10% | ||
anttn | 0 | 3,166,865,268 | 9.45% | ||
bambinaacida | 0 | 2,479,931,635 | 50% | ||
reinaseq | 0 | 7,909,864,991 | 100% | ||
vixmemon | 0 | 1,782,135,741 | 4.2% | ||
yaelg | 0 | 1,235,116,268 | 1.68% | ||
kylealex | 0 | 5,181,174,778 | 10% | ||
salomijale | 0 | 9,994,732,461 | 100% | ||
arzkyu97 | 0 | 3,029,585,339 | 9.6% | ||
fran.frey | 0 | 4,210,183,252 | 50% | ||
perpetuum-lynx | 0 | 2,171,234,008 | 68.6% | ||
andreasalas | 0 | 640,797,970 | 24% | ||
petrarodriguez | 0 | 125,371,039,770 | 24% | ||
enjoycompany | 0 | 2,330,778,504 | 9.45% | ||
pboulet | 0 | 157,598,599,021 | 56% | ||
belkisa758 | 0 | 2,657,083,578 | 24% | ||
stem-espanol | 0 | 2,685,204,633 | 100% | ||
futurekr | 0 | 1,913,382,048 | 100% | ||
cliffagreen | 0 | 4,875,668,779 | 10% | ||
aleestra | 0 | 17,943,508,613 | 80% | ||
palasatenea | 0 | 3,350,815,457 | 2.8% | ||
lagitana | 0 | 4,352,018,158 | 80% | ||
the.success.club | 0 | 3,489,275,446 | 2.8% | ||
javier.dejuan | 0 | 513,929,268 | 70% | ||
bntcamelo | 0 | 4,497,702,191 | 100% | ||
meanroosterfarm | 0 | 1,406,990,217 | 35% | ||
naturalmedicine | 0 | 96,619,153,017 | 18.9% | ||
racarjoal | 0 | 586,369,591 | 12% | ||
merlin7 | 0 | 11,228,458,361 | 5.6% | ||
ravenking13 | 0 | 882,205,059 | 9.45% | ||
janettyanez | 0 | 1,044,692,033 | 4.8% | ||
brianoflondon | 0 | 92,725,953,213 | 1.4% | ||
reverseacid | 0 | 487,457,300 | 2.8% | ||
giulyfarci52 | 0 | 1,721,151,169 | 50% | ||
maryelin | 0 | 734,884,400 | 12% | ||
necho41 | 0 | 415,605,619 | 100% | ||
earthtribe | 0 | 2,816,179,461 | 18.9% | ||
followjohngalt | 0 | 700,628,153 | 5.6% | ||
steemcryptosicko | 0 | 9,659,993,764 | 1.12% | ||
certain | 0 | 1,701,060,208 | 0.67% | ||
alvin0617 | 0 | 490,941,177 | 2.8% | ||
multifacetas | 0 | 2,349,899,152 | 2.8% | ||
themightysquid | 0 | 3,936,429,014 | 100% | ||
cowpatty | 0 | 1,476,048,598 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 1,013,686,324 | 2.8% | ||
bia.birch | 0 | 1,407,931,005 | 9.45% | ||
jpbliberty | 0 | 8,786,290,214 | 1.4% | ||
autobodhi | 0 | 1,049,277,639 | 5.6% | ||
mechanicalowl | 0 | 658,172,370 | 50% | ||
regularowl | 0 | 1,176,541,696 | 50% | ||
morarnagringa | 0 | 1,228,718,297 | 100% | ||
double-negative | 0 | 520,526,793 | 20% | ||
alex-hm | 0 | 535,363,082 | 22.5% | ||
tigerrkg | 0 | 52,863,608,206 | 100% | ||
steemstorage | 0 | 6,708,805,253 | 5.6% | ||
steemegg | 0 | 1,118,816,035 | 2.8% | ||
ragnarhewins90 | 0 | 466,933,834 | 10% | ||
jtm.support | 0 | 5,316,749,574 | 70% | ||
edithbdraw | 0 | 820,294,744 | 2.8% | ||
hairgistix | 0 | 3,325,159,694 | 2.8% | ||
bluemaskman | 0 | 644,898,024 | 2.8% | ||
steemean | 0 | 10,028,778,290 | 5% | ||
proxy-pal | 0 | 1,550,390,169 | 5.6% | ||
wildhomesteading | 0 | 15,751,575,895 | 35% | ||
thelogicaldude | 0 | 645,163,206 | 1.68% | ||
extravagante | 0 | 1,732,880,665 | 100% | ||
littlesorceress | 0 | 1,672,405,494 | 2.8% | ||
historiasamorlez | 0 | 580,233,173 | 2.8% | ||
newton666 | 0 | 1,681,232,707 | 35% | ||
kryptogames | 0 | 29,982,718,411 | 75% | ||
dawnoner | 0 | 2,151,085,229 | 0.56% | ||
squareonefarms | 0 | 4,030,161,068 | 18.9% | ||
epicdice | 0 | 939,045,670 | 0.84% | ||
iamsaray | 0 | 1,615,469,296 | 2.8% | ||
yonnathang | 0 | 3,421,635,949 | 24% | ||
endersong | 0 | 764,490,975 | 4.48% | ||
helgalubevi | 0 | 4,452,302,935 | 9.45% | ||
beerlover | 0 | 2,950,669,294 | 1.68% | ||
eliezerfloyd | 0 | 14,394,718,408 | 19.2% | ||
qwerrie | 0 | 5,216,268,685 | 0.42% | ||
victartex | 0 | 511,141,778 | 24% | ||
lmvc | 0 | 1,460,158,162 | 64% | ||
tggr | 0 | 1,626,082,999 | 2.8% | ||
quintaesencia | 0 | 94,380,263,007 | 100% | ||
aicu | 0 | 1,433,916,310 | 5.6% | ||
walterprofe | 0 | 8,659,264,735 | 35% | ||
zeruxanime | 0 | 2,233,834,952 | 35% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
cryptogambit | 0 | 1,444,869,138 | 7.5% | ||
imbartley | 0 | 836,888,840 | 26.25% | ||
lfu-radio | 0 | 1,950,171,984 | 50% | ||
h-hamilton | 0 | 1,171,024,950 | 2.8% | ||
tiffin | 0 | 693,588,522 | 5.6% | ||
reggaesteem | 0 | 488,814,194 | 5% | ||
aicoding | 0 | 591,324,354 | 2.8% | ||
knightsunited | 0 | 867,121,330 | 5.6% | ||
javikun | 0 | 717,833,242 | 24% | ||
nazer | 0 | 2,979,344,381 | 35% | ||
lmvc-spaco | 0 | 786,854,432 | 64% | ||
zulfrontado | 0 | 1,173,522,745 | 12% | ||
saravm82 | 0 | 511,753,798 | 24% | ||
precarious | 0 | 467,374,383 | 50% | ||
steemstem-trig | 0 | 1,464,226,932 | 70% | ||
hispapro | 0 | 499,922,208,897 | 24% | ||
baltai | 0 | 7,334,339,726 | 2.8% | ||
dappstats | 0 | 4,754,904,422 | 15% | ||
therealyme | 0 | 2,164,292,013 | 0.42% | ||
chris-uk | 0 | 1,237,705,053 | 2.8% | ||
mowemu | 0 | 473,358,292 | 5.6% | ||
atheistrepublic | 0 | 2,159,094,635 | 2.8% | ||
machan | 0 | 736,070,953 | 2.8% | ||
fenngen | 0 | 726,860,575 | 18.9% | ||
ibt-survival | 0 | 13,080,378,918 | 10% | ||
pavelsku | 0 | 47,941,496,813 | 50% | ||
hjmarseille | 0 | 2,160,740,612 | 49% | ||
steemdiamond | 0 | 749,364,143 | 5.6% | ||
sweetval | 0 | 14,435,135,504 | 50% | ||
nanyuris | 0 | 2,089,337,514 | 100% | ||
jennyzer | 0 | 3,554,860,119 | 24% | ||
julesquirin | 0 | 7,457,948,863 | 15% | ||
cornavirus | 0 | 562,700,212 | 5.6% | ||
zeusflatsak | 0 | 1,390,825,216 | 9.45% | ||
dpend.active | 0 | 1,421,485,296 | 3.78% | ||
andreina57 | 0 | 690,404,100 | 35% | ||
krisconkr | 0 | 525,585,864 | 2.8% | ||
radiohive | 0 | 29,443,348,848 | 100% | ||
stemsocial | 0 | 587,261,479,089 | 70% | ||
vicvperezdelara | 0 | 1,353,809,439 | 9.45% | ||
kyleana | 0 | 1,207,487,086 | 35% | ||
coronadino | 0 | 468,310,629 | 100% | ||
ghastlygames | 0 | 477,292,002 | 5.6% | ||
holoferncro | 0 | 4,748,959,782 | 10% | ||
the100 | 0 | 1,384,684,651 | 2.8% | ||
hiveonboard | 0 | 822,833,546 | 2.8% | ||
miriannalis | 0 | 97,513,270,328 | 44.1% | ||
hivelist | 0 | 8,883,840,535 | 1.68% | ||
graciadegenios | 0 | 833,981,475 | 24% | ||
cybercity | 0 | 598,380,943,159 | 100% | ||
georgelys | 0 | 3,037,781,860 | 24% | ||
kvfm | 0 | 2,162,509,677 | 50% | ||
lqch | 0 | 1,436,393,525 | 12% | ||
palimanali | 0 | 427,943,198 | 2.8% | ||
noelyss | 0 | 13,409,761,662 | 35% | ||
sportsfanboy | 0 | 3,110,967,295 | 50% | ||
joseq1570 | 0 | 854,831,014 | 2.8% | ||
jsalvage | 0 | 1,757,132,010 | 35% | ||
laradio | 0 | 5,229,059,725 | 100% | ||
patronpass | 0 | 911,787,124 | 9.45% | ||
adolfom | 0 | 13,168,901,250 | 100% | ||
quinnertronics | 0 | 10,013,979,058 | 7% | ||
anafae | 0 | 2,187,313,339 | 3.78% | ||
carmenm20 | 0 | 3,140,756,048 | 100% | ||
scriptkittie | 0 | 41,902,446 | 2.8% | ||
sevenoh-fiveoh | 0 | 1,064,350,192 | 2.8% | ||
evev | 0 | 11,497,920,256 | 31.5% | ||
visualartist | 0 | 1,075,518,715 | 2.8% | ||
rafabvr | 0 | 484,963,878 | 100% | ||
tibaire | 0 | 39,657,637,651 | 18.9% | ||
care1869 | 0 | 12,719,518,705 | 63% | ||
edfer18 | 0 | 1,525,704,913 | 24% | ||
altleft | 0 | 22,819,122,506 | 0.05% | ||
cleydimar2000 | 0 | 9,685,346,500 | 50% | ||
omarrojas | 0 | 2,360,439,691 | 2.8% | ||
noalys | 0 | 1,165,502,045 | 2.8% | ||
enyusael | 0 | 908,275,025 | 12% | ||
evagavilan2 | 0 | 1,565,015,521 | 2.8% | ||
jesuspsoto | 0 | 780,554,086 | 24% | ||
radiolovers | 0 | 23,794,175,794 | 100% | ||
luisacarola | 0 | 11,522,685,921 | 63% | ||
ciresophen | 0 | 3,298,494,817 | 100% | ||
alberto0607 | 0 | 16,913,408,655 | 100% | ||
apeboy | 0 | 947,126,648 | 12% | ||
mosa71 | 0 | 3,352,883,467 | 31.5% | ||
pelulacro | 0 | 5,516,591,774 | 37.8% | ||
mireyaromero | 0 | 1,214,691,912 | 63% | ||
cosplay.hadr | 0 | 1,270,281,985 | 5.6% | ||
hadrgames | 0 | 1,309,600,239 | 5.6% | ||
rawecz | 0 | 2,915,187,966 | 24% | ||
junydoble | 0 | 1,341,936,028 | 70% | ||
maar | 0 | 667,170,753 | 70% | ||
victor816 | 0 | 1,004,585,505 | 100% | ||
meritocracy | 0 | 63,457,988,560 | 0.56% | ||
bea23 | 0 | 25,052,490,295 | 100% | ||
jesustiano | 0 | 4,647,865,053 | 19.2% | ||
blockbroccoli | 0 | 1,035,936,321 | 67.5% | ||
dcrops | 0 | 43,401,154,010 | 2.8% | ||
youloseagain | 0 | 775,589,252 | 20% | ||
ciudadcreativa | 0 | 3,793,798,473 | 80% | ||
hive-129556 | 0 | 2,139,713,670 | 100% | ||
yggdrasilwind | 0 | 1,660,875,379 | 24% | ||
whywhy | 0 | 1,672,479,448 | 1.68% | ||
yozen | 0 | 2,264,425,366 | 2.8% | ||
traderhive | 0 | 964,504,722 | 5.6% | ||
alvarezjessica | 0 | 3,686,149,138 | 24% | ||
tawadak24 | 0 | 3,868,640,610 | 2.8% | ||
ausbit.dev | 0 | 787,737,272 | 2.8% | ||
elgatoshawua | 0 | 725,725,889 | 2.8% | ||
arunbiju969 | 0 | 553,011,099 | 14% | ||
limn | 0 | 957,908,370 | 2.8% | ||
dodovietnam | 0 | 1,087,048,023 | 2.8% | ||
failingforwards | 0 | 3,774,917,966 | 2.8% | ||
drricksanchez | 0 | 15,246,243,926 | 2.8% | ||
maxelitereturned | 0 | 672,341,184 | 35% | ||
xylliana | 0 | 1,165,997,116 | 2.8% | ||
juecoree.stem | 0 | 481,076,318 | 70% | ||
victordumont | 0 | 1,979,966,246 | 24% | ||
edinson001 | 0 | 1,053,867,513 | 100% | ||
nfttunz | 0 | 9,683,202,905 | 0.56% | ||
caribayarte | 0 | 1,436,136,384 | 24% | ||
hunter-yogi | 0 | 487,191,525 | 9.45% | ||
yeidelyt | 0 | 888,846,655 | 24% | ||
soychalbed | 0 | 1,491,343,386 | 12% | ||
ele.art | 0 | 532,144,185 | 24% | ||
atexoras.pub | 0 | 1,659,942,237 | 2.8% | ||
devania | 0 | 12,342,938,848 | 31.5% | ||
nahueldare3627 | 0 | 805,576,151 | 100% | ||
holovision.cash | 0 | 3,663,760,571 | 100% | ||
helencct | 0 | 1,799,569,740 | 100% | ||
brujita18 | 0 | 7,625,949,295 | 10.8% | ||
krrizjos18 | 0 | 1,040,740,432 | 12% | ||
mirteg | 0 | 743,369,430 | 5.6% | ||
iegg | 0 | 473,339,818 | 24% | ||
artsugar | 0 | 607,186,314 | 2.8% | ||
doriangel | 0 | 789,233,815 | 12% | ||
podping | 0 | 9,309,492,442 | 1.4% | ||
yenmendt | 0 | 9,857,605,122 | 24% | ||
aguamiel | 0 | 7,117,749,004 | 24% | ||
jessicaossom | 0 | 856,433,807 | 2.8% | ||
beysyd | 0 | 1,545,200,902 | 12% | ||
ferbu | 0 | 2,671,635,394 | 24% | ||
drhueso | 0 | 1,431,260,530 | 2.8% | ||
asderhz | 0 | 544,356,777 | 12% | ||
fabianar25 | 0 | 1,139,971,815 | 50% | ||
mairimgo23 | 0 | 2,889,298,698 | 24% | ||
mayberlys | 0 | 2,287,428,237 | 50% | ||
holos-lotus | 0 | 207,021,599,115 | 63% | ||
funshee | 0 | 580,430,343 | 2.83% | ||
lotus-es | 0 | 2,023,741,462 | 63% | ||
ronymaffi | 0 | 3,380,025,049 | 100% | ||
danokoroafor | 0 | 584,712,240 | 2.8% | ||
shakavon | 0 | 707,306,029 | 50% | ||
miguelstar | 0 | 1,374,403,663 | 24% | ||
wongi | 0 | 2,717,081,458 | 4.72% | ||
seinkalar | 0 | 1,879,609,162 | 5.6% | ||
tanzil2024 | 0 | 988,396,332 | 1% | ||
badge-646464 | 0 | 14,116,774,788 | 100% | ||
amaillo | 0 | 802,296,960 | 4.8% | ||
aries90 | 0 | 56,257,543,107 | 5.6% | ||
rencongland | 0 | 599,994,645 | 2.8% | ||
tub3r0 | 0 | 2,543,103,910 | 7.5% | ||
amaillo-m | 0 | 771,782,134 | 24% | ||
acantoni | 0 | 741,439,594 | 2.8% | ||
eustace-kidd | 0 | 2,297,934,688 | 2.8% | ||
blingit | 0 | 3,687,177,727 | 2.8% | ||
mcsherriff | 0 | 559,053,709 | 5.6% | ||
zirkonov | 0 | 1,198,782,249 | 30% | ||
gamita-1 | 0 | 545,848,088 | 63% | ||
h3m4n7 | 0 | 861,525,483 | 2.8% | ||
victoraraguayan1 | 0 | 1,086,684,641 | 24% | ||
jude9 | 0 | 516,446,728 | 17.5% | ||
tydynrain | 0 | 13,740,338,277 | 10% | ||
rosahidalgo | 0 | 3,141,463,223 | 44.1% | ||
yixn | 0 | 13,134,025,319 | 2.8% | ||
mcookies | 0 | 2,628,897,574 | 12% | ||
waivio.curator | 0 | 1,803,036,427 | 3.39% | ||
gercripto | 0 | 1,355,236,713 | 12% | ||
simsahas | 0 | 71,552,304 | 5.6% | ||
ehizgabriel | 0 | 753,450,032 | 37.5% | ||
newilluminati | 0 | 16,951,598,443 | 2.8% | ||
vickoly | 0 | 3,782,114,262 | 2.8% | ||
susurrodmisterio | 0 | 936,152,251 | 12% | ||
noctury | 0 | 1,791,804,796 | 2.8% | ||
esalcedo | 0 | 36,559,978,834 | 24% | ||
foxlatam | 0 | 10,124,643,337 | 50% | ||
deadleaf | 0 | 4,269,494,029 | 100% | ||
lichtkunstfoto | 0 | 6,861,032,528 | 5.6% | ||
albuslucimus | 0 | 1,175,691,504 | 2.8% | ||
stefy.music | 0 | 593,883,710 | 2.8% | ||
vindiesel1980 | 0 | 9,279,980,690 | 2.8% | ||
asado | 0 | 771,176,698 | 2.8% | ||
xurph | 0 | 504,024,268 | 2.8% | ||
benwickenton | 0 | 3,216,250,663 | 5.6% | ||
jerusa777 | 0 | 1,540,692,484 | 15% | ||
yadimelgar | 0 | 4,255,597,970 | 44.1% | ||
morito13 | 0 | 3,110,794,052 | 44.1% | ||
crisch23 | 0 | 780,855,251 | 12% | ||
balabambuz | 0 | 748,493,555 | 2.8% | ||
prosocialise | 0 | 12,460,671,198 | 2.8% | ||
treasuree | 0 | 624,148,746 | 2.8% | ||
archangel21 | 0 | 16,962,597,588 | 5.6% | ||
shawnnft | 0 | 709,435,883 | 0.56% | ||
plicc8 | 0 | 765,832,105 | 70% | ||
belug | 0 | 3,832,152,115 | 1.68% | ||
mugueto2022 | 0 | 550,822,973 | 20% | ||
ricardoeloy | 0 | 512,422,340 | 14% | ||
chechostreet | 0 | 1,801,557,763 | 24% | ||
nazom | 0 | 856,112,049 | 35% | ||
visualblock | 0 | 461,622,501,866 | 100% | ||
baboz | 0 | 1,588,780,329 | 1.4% | ||
kryptofire | 0 | 6,021,510,882 | 20% | ||
hivedeb | 0 | 434,268,995 | 2.8% | ||
universodaniel | 0 | 876,131,938 | 12% | ||
soyjoselopez | 0 | 467,272,143 | 20% | ||
sbtofficial | 0 | 5,225,676,946 | 2.8% | ||
nwothini335 | 0 | 926,284,756 | 7% | ||
quduus1 | 0 | 1,766,318,481 | 4.72% | ||
mukadder | 0 | 12,808,260,197 | 7.5% | ||
vagabond42069 | 0 | 1,517,850,786 | 35% | ||
eollarvesm | 0 | 887,601,512 | 12% | ||
hive-117638 | 0 | 593,404,776 | 17.5% | ||
inibless | 0 | 1,075,993,219 | 35% | ||
cindynancy | 0 | 1,835,122,552 | 35% | ||
taimen | 0 | 191,919,076 | 100% | ||
hiversbqto | 0 | 3,608,723,641 | 24% | ||
graciousvic | 0 | 490,025,290 | 4.72% | ||
justfavour | 0 | 1,445,577,280 | 2.8% | ||
hispaliterario | 0 | 513,747,590 | 24% | ||
oasiskp2 | 0 | 651,196,665 | 5.6% | ||
sc000 | 0 | 1,432,903,793 | 5.6% | ||
lailalaurent | 0 | 25,065,427,830 | 100% | ||
cardcompounding | 0 | 2,005,163,988 | 100% | ||
jijisaurart | 0 | 1,887,139,540 | 2.8% | ||
clpacksperiment | 0 | 2,675,408,393 | 2.8% | ||
hive-189277 | 0 | 1,482,970,276 | 9.45% | ||
ambicrypto | 0 | 105,877,712,160 | 5.6% | ||
humbe | 0 | 2,144,270,639 | 1% | ||
dresden.theone | 0 | 600,468,606 | 2.8% | ||
peniel2010 | 0 | 922,327,292 | 50% | ||
hive-179513 | 0 | 1,983,008,220 | 50% | ||
flywithmarlin | 0 | 855,196,961 | 12% | ||
zackygamer | 0 | 1,555,937,669 | 24% | ||
technico | 0 | 910,742,258 | 2.8% | ||
abu78 | 0 | 1,154,062,516 | 2.8% | ||
fotlala | 0 | 771,287,765 | 12% | ||
ijelady | 0 | 478,901,059 | 50% | ||
liberius-1 | 0 | 1,828,704,284 | 24% | ||
hikergirl | 0 | 558,257,475 | 2.8% | ||
osismi | 0 | 2,748,488,437 | 12.6% | ||
paolasinaid | 0 | 1,554,613,257 | 100% | ||
the-lead | 0 | 1,836,947,610 | 37.5% | ||
razzi11 | 0 | 1,443,098,339 | 24% | ||
unity-freedom | 0 | 777,773,618 | 9.45% | ||
ojsuarez2 | 0 | 3,264,575,598 | 100% | ||
rhemagames | 0 | 5,377,446,449 | 2.8% | ||
soylegionario | 0 | 17,917,776,253 | 24% | ||
aslamrer | 0 | 828,693,141 | 2.8% | ||
ruthmarquez | 0 | 541,905,810 | 24% | ||
cuatrolarense | 0 | 982,320,526 | 100% | ||
yanguaro | 0 | 476,988,010 | 100% | ||
mariiestefania | 0 | 2,674,410,040 | 24% | ||
zutodoterreno | 0 | 607,541,746 | 12% | ||
queasuluz | 0 | 2,471,849,896 | 24% | ||
captainman | 0 | 2,299,971,912 | 35% | ||
fredinks | 0 | 1,116,478,962 | 75% | ||
thehappycamper1 | 0 | 0 | 25% |
Congratulations @eniolw! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s) <table><tr><td><img src="https://images.hive.blog/60x70/https://hivebuzz.me/@eniolw/upvoted.png?202406020531"></td><td>You received more than 180000 upvotes.<br>Your next target is to reach 190000 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@eniolw) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Check out our last posts:** <table><tr><td><a href="/hive-122221/@hivebuzz/pud-202406-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202406-feedback">Feedback from the June Hive Power Up Day</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202405-result"><img src="https://images.hive.blog/64x128/https://i.imgur.com/mzwqdSL.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202405-result">Hive Power Up Month Challenge - May 2024 Winners List</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202406"><img src="https://images.hive.blog/64x128/https://i.imgur.com/M9RD8KS.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202406">Be ready for the June edition of the Hive Power Up Month!</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-1717306976 |
category | hive-197685 |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2024-06-02 05:42:57 |
last_update | 2024-06-02 05:42:57 |
depth | 1 |
children | 0 |
last_payout | 2024-06-09 05:42:57 |
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 | 1,449 |
author_reputation | 369,668,395,089,159 |
root_title | "My Coding Quiz #61" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 134,135,453 |
net_rshares | 0 |
@tipu curate 8
author | miriannalis |
---|---|
permlink | re-eniolw-seh29x |
category | hive-197685 |
json_metadata | {"tags":["hive-197685"],"app":"peakd/2024.5.6"} |
created | 2024-06-02 21:27:21 |
last_update | 2024-06-02 21:27:21 |
depth | 1 |
children | 1 |
last_payout | 2024-06-09 21:27:21 |
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 | 14 |
author_reputation | 308,525,647,930,579 |
root_title | "My Coding Quiz #61" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 134,150,622 |
net_rshares | 0 |
<a href="https://tipu.online/hive_curator?miriannalis" target="_blank">Upvoted 👌</a> (Mana: 0/75) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
author | tipu |
---|---|
permlink | re-re-eniolw-seh29x-20240602t212726z |
category | hive-197685 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2024-06-02 21:27:24 |
last_update | 2024-06-02 21:27:24 |
depth | 2 |
children | 0 |
last_payout | 2024-06-09 21:27:24 |
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 | 218 |
author_reputation | 55,949,689,035,458 |
root_title | "My Coding Quiz #61" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 134,150,625 |
net_rshares | 0 |
This is a [hive-archeology](https://github.com/pibara/hive-archeology) proxy comment meant as a proxy for upvoting good content that is past it's initial pay-out window.  <sub><sup>Pay-out for this comment is configured as followed:</sup></sub> | <sub><sup>role</sup></sub> | <sub><sup>account</sup></sub> | <sub><sup>percentage</sup></sub> | <sub><sup>note</sup></sub>| | --- | --- | --- | --- | | <sub><sup>curator</sup></sub> | <sub><sup>-</sup></sub> | <sub><sup>0.0%</sup></sub> | <sub><sup>curation rewards disabled</sup></sub> | | <sub><sup>dev</sup></sub> | <sub><sup>@croupierbot</sup></sub> | <sub><sup>2.5%</sup></sub> | <sub><sup>author of hive-archology</sup></sub> | | <sub><sup>dev</sup></sub> | <sub><sup>@emrebeyler</sup></sub> | <sub><sup>2.5%</sup></sub> | <sub><sup>author of lighthive</sup></sub> | | <sub><sup>author</sup></sub> | <sub><sup>@eniolw</sup></sub> | <sub><sup>95.0%</sup></sub> | <sub><sup></sup></sub> |
author | pibara | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | eniolw-my-coding-quiz-61 | ||||||||||||||||||
category | hive-197685 | ||||||||||||||||||
json_metadata | "{"tags": ["hivearcheology"], "app": "HiveArcheology 0.1.7"}" | ||||||||||||||||||
created | 2024-06-28 08:06:42 | ||||||||||||||||||
last_update | 2024-06-28 08:06:42 | ||||||||||||||||||
depth | 1 | ||||||||||||||||||
children | 0 | ||||||||||||||||||
last_payout | 2024-07-05 08:06:42 | ||||||||||||||||||
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 | 1,075 | ||||||||||||||||||
author_reputation | 60,469,629,952,622 | ||||||||||||||||||
root_title | "My Coding Quiz #61" | ||||||||||||||||||
beneficiaries |
| ||||||||||||||||||
max_accepted_payout | 1,000.000 HBD | ||||||||||||||||||
percent_hbd | 0 | ||||||||||||||||||
post_id | 134,935,464 | ||||||||||||||||||
net_rshares | 279,221,840,934 | ||||||||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pibara | 0 | 279,221,840,934 | 100% |
<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-61-20240603t172348419z |
category | hive-197685 |
json_metadata | {"app":"STEMsocial"} |
created | 2024-06-03 17:23:48 |
last_update | 2024-06-03 17:23:48 |
depth | 1 |
children | 0 |
last_payout | 2024-06-10 17:23:48 |
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,928,473,369,679 |
root_title | "My Coding Quiz #61" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 134,170,724 |
net_rshares | 0 |