create account

QR Codes (A HackMUD Story) by edicted

View this thread on: hive.blogpeakd.comecency.com
· @edicted · (edited)
$55.70
QR Codes (A HackMUD Story)
 https://img.inleo.io/DQmWdsy8gJTxGw4cucz8JpYTBBWDM3gRAjz5TruDtnZRYt1/image.png 

![image.png](https://files.peakd.com/file/peakd-hive/edicted/23xLDJxsH3u26SeQzMjTVUTQrcMiJfENjNHYcYM3fiZ6ZhKCaTgn9GaW8fFSYWz6KRksM.png)

### The journey continues. 
My HackMUD adventures have brought me to a new level of debasement.  After writing scripts that would scrape corporate frontends for Tier 1 locations to hack... and then creating a cracker that would get me through the associated locks... well it was finally time to try and give tier 2 a whirl.  But where to begin?  <corporation.public> scrips were no longer going to hack it, so to speak. 

So I went into the riskier security public scripts (from fullsec to highsec) and found <corporation.members>.  After messing about in weyland.members{} for a while I found out how to retrieve QR codes that denote order numbers placed by consumers of the given corporation.  The goal was to extract these order numbers and ask for a refund.  This refund always gets declined but the corporation returns the location of the member themselves and allows the player to hack the customers of the corporation in T2.  I unlocked my first T2 yesterday and was floored to receive over 10M GC, which is x200 times the reward of T1 locks (~50k GC).  Talk about an incentive to progress in the game. 

![image.png](https://files.peakd.com/file/peakd-hive/edicted/23xovCDTFZnG8LTrUq4N21SpzBmyp38gFeKvYJQU2QUMu989Z6XsmLRBwCwUq6ZoyDBwZ.png)

### The QR codes
The codes themselves look like the one above.  They contain corruption which can be repaired by running the script twice and comparing the two outputs against each other to repair the damaged zones. Luckily I had already written this function on my T1 scraper and I was able to reuse that function to repair these Quick Response Codes. 

From here I was actually able to use my phone camera to read the QR code directly from the in-game command line.  This gave me the 6-digit order code that allowed me to crack my first lock, but if I want to automate the process I'm going to need to create my own QR decoder, which is so so so much more complicated than I thought it would be. 

https://www.youtube.com/watch?v=KA8hDldvfv0&t=325s&ab_channel=Pillazo

### This video on hand-solving QR codes was a lifesaver. 
I have so much more respect for QR codes now. They are pretty complicated and have a lot of features compared to barcodes. They are essentially an upgrade to barcodes in pretty much every way. Extra space in the QR is reserved for error checking that can actually repair a broken code.  If anything else the error checking ensures that corrupted data isn't fed into the scanning device.  

### QR as an airgap
QR codes are extremely important to crypto as well, so the overlap here between HackMUD and crypto is immense. QR codes can be used to airgap any type of data (including encrypted data) through the camera of the device taking the picture.  This allows air-gapped hardware wallets to have immense security compared to something that connects to traditional operating systems through USB drives and such.  This really is a magic technology within certain contexts, as it allows information to be transported via light waves in a relatively basic and low-tech way.  Cameras are very cheap these days. 

#### [Source: wikipedia](https://en.wikipedia.org/wiki/QR_code)
![image.png](https://files.peakd.com/file/peakd-hive/edicted/Eo6QgZnRqPWGyYdLYdoPcV5R52gQW6LpY3QNuyVVdXFETbBNG5k5ij4FVNcsjGket8W.png)

### Getting down to business: how to decode these things?
It turns out that a QR code is masked by one of 8 masking patterns.  These masking patterns will flip the bits inside of the QR code based on an algorithm.  These algorithms and their visual representations can be seen above.  They look complicated but they are actually quite easy to calculate when the QR code exists within a 2D `Array[i][j]` consisting of `i` rows and `j` columns.  All one has to do programmatically is loop through all the points of the array and flip them if the equation evaluates to `true`.  

For example, if we are looping through a QR bitmap and the given position is `Array[5][9]` we would flip this bit if the masking pattern was `111` (aka `on,on,on` or `true,true,true`) which is the pattern in the top left `j % 3 = 0`.  Because `j` is 9 and 9 % 3 = 0 this is true and we need to flip the bit. Conversely, a masking pattern of `100` would not be flipped because 5 % 2 does not equal zero. 

At first the masking pattern seems like a completely unneeded and unnecessary complexity.  However, it's extremely important as it prevents the QR code from looking like a blob and being very difficult to scan. It also helps it remain readable even if it should become damaged or corrupted.  In fact my phone was able to read some of the purposefully corrupted codes in the game (before being repaired) because of the crazy error checking that these things do. 

![image.png](https://files.peakd.com/file/peakd-hive/edicted/23u6NJRBtF7a4HmHKsf7uEP6rbhYp7U497trwkUen3oXb1sfCLXN8B8BkWbeHGFSei6rH.png)

### The above in-game QR code is encoded by `011`; a nasty shape
It's a good thing I don't have to do this by hand lol. 
The algorithms will make it much easier. 


![image.png](https://files.peakd.com/file/peakd-hive/edicted/EpEMCfAcMmK5y8YhbdEtHZ923YgEhVBdpVs8ff2xdinzaRcPtipXddN3qrHKUAQmDbX.png)

### A box inside a box inside a box (finder pattern)
Have you ever noticed that the corners of a QR code often look the same?  This is called the "finder pattern" and it greatly helps the algorithm put the entire picture into alignment so it can decode the result.  

### The timing
What you may not of known is that this finder pattern is connected by the "timing".  The timing is an on/off/on/off pattern that connects the finder pattern on the inside edges from the bottom-left to the top-left to the top-right.  This allows the decoder to easily determine exactly how big each pixel is and the total size of the QR code and how much data could be stored within it.  The timing from bottom to top and from left to right is identical, further allowing for more redundancy so that a decoder knows if any mistakes have been made. 



![image.png](https://files.peakd.com/file/peakd-hive/edicted/23xAtpasfeBAr1X77PbfjuK1y3b514dXmYD6r2zjBCmwYjtHUMW1dM3RxCb9ZrQQcqoG6.png)


### Formatting data
Near the top-left and bottom-left finder-patterns is a bunch of critical information that we need to know.  The two red pixels tell the decoder what level of error checking the QR code has.  This video doesn't get into error checking at all, which is fine by me because the QRs that I want to decode aren't going to have any errors because they're not physical scans but rather data being scraped from HackMUD.  However it's worth noting that more surplus space within the QR code is allocated to increase the error checking level, making it easier for the decoder to repair corrupted data. 

The green block is the 3 bits of masking which we already went over. The yellow is "more formatting crap that you don't need to worry about".  Sounds good to me.  The blue is error correction format.  So basically the main piece of information here is the masking code (which is only 3 bits).  Once that is found we can use it to flip all the bits that need flipping so we can continue the decoding process. 


![image.png](https://files.peakd.com/file/peakd-hive/edicted/23tmjNwepisw1JWUpeCZEdH82J6x8TJBgeKFZVSg7nor2FKsWGR8y4WPsBKh86S2BrS5e.png)

![image.png](https://files.peakd.com/file/peakd-hive/edicted/23vsdakqxSn2pPuQLQkZU1GzBjS8kbPFBkkqFUTjG1DzGdCsLzN6jEB6ncXKwbcmTpVY3.png)

### The bottom-right has critical data
The 4-bit square in the very bottom right tells us the encoding pattern. I'm being told `0100` (4) "byte" encoding is extremely common and I believe it will be the type I have to deal with in my game. A byte is 8-bits so I assume this means this type of format can store 1-byte UTF-8 (ASCII) characters which is similar to how Hive works at the base layer as well. 8-bits means there are potentially 2^8 possible characters that can be represented in these blocks which is 256 characters, but sometimes only 7 bits are used making it 128. 

The one weird thing about all of this is that the 2x2 box is read top to bottom and left to right making it `0010` if we forget that binary itself is read right to left making it actually `0100` for 8-bit encoding.  At the same time we can very clearly see that the "4" is highlighted and "4" in binary is `0100`.  Just worth noting that binary can get confusing. 

### box above the encoding message. 
The 8 bits above the 2x2 encoding statement tell us how many characters we are actually looking for.  In this case the QR code is the dude's Internet handle "Robomatics", so we would expect this section to tell us we need to find 10 characters because Robomatics is 10 characters long.  8 + 2 = 10 so it adds up correctly. 


![image.png](https://files.peakd.com/file/peakd-hive/edicted/23vsdDAfLgRJhzq2xhZSaqsEE85j5rHSQiv2SBGXJ8k6BdwRmxKrFcdaNUVU6C72kNY6X.png)

### lol wut now?
From here we are looking for 10 characters and then a signal that we've reached the end.  
The end is another 2x2 chunk after 10 blocks of data that should be empty. 
After that starts the error checking and repair which I'm not interested in, yet. 

![image.png](https://files.peakd.com/file/peakd-hive/edicted/23vsd5MJYuFyoZzdhFYouvCR1LkFP9S5W35rYeL5vJNtUZW6bfiHaH9HRsboD7yZ8HkQs.png)


![image.png](https://files.peakd.com/file/peakd-hive/edicted/23tHXT2TNMMkLb9dSNQmvQ63xrjGuxXnCwGUYt4Z6rTZQNX5waZVeMxh1gWvfcWs1d78h.png)


![image.png](https://files.peakd.com/file/peakd-hive/edicted/23yJXNQYH5ewrQ2dsLjHEYFKwbvp1G37Q4uo3TwLhx11oeEqzSvLBM7DywxukHMjbuPMH.png)


![image.png](https://files.peakd.com/file/peakd-hive/edicted/EpT7W8jdhM4WGWqSEqWE4k4HNJKvAqp75DxjJNFfZwX4JRLo4zBrwymBmoocZJPjVhc.png)





### Christ Almighty I just wanted to spell "Robomatics"
Once we know what kind of pattern we are dealing with we can start mapping the 8-bit codes to the correct ASCII characters. In the above situation we can see that 64 + 16 + 2 bits `are on/true/1` and when we add up those numbers we get 82.  So what does 82 map to in ASCII?  

<div class="pull-left"> https://files.peakd.com/file/peakd-hive/edicted/23y9D9UaZmf4CLyjGM3L8FeWurz5S9iVQ3Hi8Wm9bXCP4mGznTj3AmWygWtavHqLgqPrs.png  </div>
<div class="pull-right"> 
https://files.peakd.com/file/peakd-hive/edicted/23yJborA48BxGZ1kMpxP5Hr9miUiwFRLQGR5cLW87swJ6escqUCXnYHj3pWBVA51bBEhZ.png  </div>

------

### Did you guess capital "R"?
Good job! 
:D


![image.png](https://files.peakd.com/file/peakd-hive/edicted/23wCbJ4kviRN7jhByqtD2bMkWR111VihfaB1x9giGN33Nm8j2w4yZRFoyrGHBH2DNjuim.png)

----

![image.png](https://files.peakd.com/file/peakd-hive/edicted/23uFsLZ8rznNcDrq2zpPxaE9AK3n4xQ9mYCct91cYMdwvo7YBdQsgMTr2PeRAmMRWTtEw.png)

----

![image.png](https://files.peakd.com/file/peakd-hive/edicted/EoyUmV9NnRMUumUpPVG5AyTntvFZM4jZ6Z5gktWUYDPf9mFgrEeMiSn8Q3Sd9cw63Ed.png)

### And that spells "Robo"
The next 6 characters will spell "matics" after being decoded.
And that is the gist of how QR codes work (minus the crazy error repair). 

![image.png](https://files.peakd.com/file/peakd-hive/edicted/23yT5Bupojvs15MdoavSzrJsVtzxQ5bfcnaSvbBUBX56e9bDzSKVbQaZW6Y4HyVr3tvn4.png)

#### Hmmmm!
So now I have the knowledge to decode these QR codes programmatically. When will I get around to it?  Who knows!  Thus far just scanning the damn thing is more than worth it... although I may need to create a function that inverts the light and dark squares because most QR scanners work much better with the black bits representing "on"/"true"/"1" rather than the opposite.

#### Conclusion
The history of QR codes is interesting.  Masahiro Hara, an employee of Japanese car company Denso Wave (subsidiary of Toyota) created them in 1994, patented them, but allowed the world to use them for free as long as the standard everyone used standardized formatting.  Since then the patents have expired (2015).  

The ability to transmit data using natural light or a scanning laser is a very underappreciated and underutilized piece of technology.  Now that crypto uses these things for air-gaps and public key import that's starting to change, but still it's actually a bit crazy that we can do this type of stuff and nobody really seems to care... let alone figure out how it works.  The more you know! 

👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 374 others
properties (23)
authoredicted
permlinkqr-codes-a-hackmud-story
categoryhive-140217
json_metadata"{"app":"leothreads/0.3","canonical_url":"https://inleo.io/@edicted/qr-codes-a-hackmud-story","dimensions":{},"format":"markdown","images":["https://img.inleo.io/DQmWdsy8gJTxGw4cucz8JpYTBBWDM3gRAjz5TruDtnZRYt1/image.png","https://files.peakd.com/file/peakd-hive/edicted/23y9D9UaZmf4CLyjGM3L8FeWurz5S9iVQ3Hi8Wm9bXCP4mGznTj3AmWygWtavHqLgqPrs.png","https://files.peakd.com/file/peakd-hive/edicted/23yJborA48BxGZ1kMpxP5Hr9miUiwFRLQGR5cLW87swJ6escqUCXnYHj3pWBVA51bBEhZ.png"],"isPoll":false,"links":["https://files.peakd.com/file/peakd-hive/edicted/23xLDJxsH3u26SeQzMjTVUTQrcMiJfENjNHYcYM3fiZ6ZhKCaTgn9GaW8fFSYWz6KRksM.png)","https://files.peakd.com/file/peakd-hive/edicted/23xovCDTFZnG8LTrUq4N21SpzBmyp38gFeKvYJQU2QUMu989Z6XsmLRBwCwUq6ZoyDBwZ.png)","https://www.youtube.com/watch?v=KA8hDldvfv0&t=325s&ab_channel=Pillazo","https://en.wikipedia.org/wiki/QR_code)","https://files.peakd.com/file/peakd-hive/edicted/Eo6QgZnRqPWGyYdLYdoPcV5R52gQW6LpY3QNuyVVdXFETbBNG5k5ij4FVNcsjGket8W.png)","https://files.peakd.com/file/peakd-hive/edicted/23u6NJRBtF7a4HmHKsf7uEP6rbhYp7U497trwkUen3oXb1sfCLXN8B8BkWbeHGFSei6rH.png)","https://files.peakd.com/file/peakd-hive/edicted/EpEMCfAcMmK5y8YhbdEtHZ923YgEhVBdpVs8ff2xdinzaRcPtipXddN3qrHKUAQmDbX.png)","https://files.peakd.com/file/peakd-hive/edicted/23xAtpasfeBAr1X77PbfjuK1y3b514dXmYD6r2zjBCmwYjtHUMW1dM3RxCb9ZrQQcqoG6.png)","https://files.peakd.com/file/peakd-hive/edicted/23tmjNwepisw1JWUpeCZEdH82J6x8TJBgeKFZVSg7nor2FKsWGR8y4WPsBKh86S2BrS5e.png)","https://files.peakd.com/file/peakd-hive/edicted/23vsdakqxSn2pPuQLQkZU1GzBjS8kbPFBkkqFUTjG1DzGdCsLzN6jEB6ncXKwbcmTpVY3.png)","https://files.peakd.com/file/peakd-hive/edicted/23vsdDAfLgRJhzq2xhZSaqsEE85j5rHSQiv2SBGXJ8k6BdwRmxKrFcdaNUVU6C72kNY6X.png)","https://files.peakd.com/file/peakd-hive/edicted/23vsd5MJYuFyoZzdhFYouvCR1LkFP9S5W35rYeL5vJNtUZW6bfiHaH9HRsboD7yZ8HkQs.png)","https://files.peakd.com/file/peakd-hive/edicted/23tHXT2TNMMkLb9dSNQmvQ63xrjGuxXnCwGUYt4Z6rTZQNX5waZVeMxh1gWvfcWs1d78h.png)","https://files.peakd.com/file/peakd-hive/edicted/23yJXNQYH5ewrQ2dsLjHEYFKwbvp1G37Q4uo3TwLhx11oeEqzSvLBM7DywxukHMjbuPMH.png)","https://files.peakd.com/file/peakd-hive/edicted/EpT7W8jdhM4WGWqSEqWE4k4HNJKvAqp75DxjJNFfZwX4JRLo4zBrwymBmoocZJPjVhc.png)","https://files.peakd.com/file/peakd-hive/edicted/23wCbJ4kviRN7jhByqtD2bMkWR111VihfaB1x9giGN33Nm8j2w4yZRFoyrGHBH2DNjuim.png)","https://files.peakd.com/file/peakd-hive/edicted/23uFsLZ8rznNcDrq2zpPxaE9AK3n4xQ9mYCct91cYMdwvo7YBdQsgMTr2PeRAmMRWTtEw.png)","https://files.peakd.com/file/peakd-hive/edicted/EoyUmV9NnRMUumUpPVG5AyTntvFZM4jZ6Z5gktWUYDPf9mFgrEeMiSn8Q3Sd9cw63Ed.png)","https://files.peakd.com/file/peakd-hive/edicted/23yT5Bupojvs15MdoavSzrJsVtzxQ5bfcnaSvbBUBX56e9bDzSKVbQaZW6Y4HyVr3tvn4.png)","https://inleo.io/@edicted/qr-codes-a-hackmud-story)"],"tags":["hive-140217","qr-codes","hackmud","gaming","programming","decode","encode","masking-pattern"],"description":"QR codes are way more complex than anyone thought. ","users":[],"image":["https://img.inleo.io/DQmWdsy8gJTxGw4cucz8JpYTBBWDM3gRAjz5TruDtnZRYt1/image.png","https://files.peakd.com/file/peakd-hive/edicted/23xLDJxsH3u26SeQzMjTVUTQrcMiJfENjNHYcYM3fiZ6ZhKCaTgn9GaW8fFSYWz6KRksM.png","https://files.peakd.com/file/peakd-hive/edicted/23xovCDTFZnG8LTrUq4N21SpzBmyp38gFeKvYJQU2QUMu989Z6XsmLRBwCwUq6ZoyDBwZ.png","https://files.peakd.com/file/peakd-hive/edicted/Eo6QgZnRqPWGyYdLYdoPcV5R52gQW6LpY3QNuyVVdXFETbBNG5k5ij4FVNcsjGket8W.png","https://files.peakd.com/file/peakd-hive/edicted/23u6NJRBtF7a4HmHKsf7uEP6rbhYp7U497trwkUen3oXb1sfCLXN8B8BkWbeHGFSei6rH.png","https://files.peakd.com/file/peakd-hive/edicted/EpEMCfAcMmK5y8YhbdEtHZ923YgEhVBdpVs8ff2xdinzaRcPtipXddN3qrHKUAQmDbX.png","https://files.peakd.com/file/peakd-hive/edicted/23xAtpasfeBAr1X77PbfjuK1y3b514dXmYD6r2zjBCmwYjtHUMW1dM3RxCb9ZrQQcqoG6.png","https://files.peakd.com/file/peakd-hive/edicted/23tmjNwepisw1JWUpeCZEdH82J6x8TJBgeKFZVSg7nor2FKsWGR8y4WPsBKh86S2BrS5e.png","https://files.peakd.com/file/peakd-hive/edicted/23vsdakqxSn2pPuQLQkZU1GzBjS8kbPFBkkqFUTjG1DzGdCsLzN6jEB6ncXKwbcmTpVY3.png","https://files.peakd.com/file/peakd-hive/edicted/23vsdDAfLgRJhzq2xhZSaqsEE85j5rHSQiv2SBGXJ8k6BdwRmxKrFcdaNUVU6C72kNY6X.png","https://files.peakd.com/file/peakd-hive/edicted/23vsd5MJYuFyoZzdhFYouvCR1LkFP9S5W35rYeL5vJNtUZW6bfiHaH9HRsboD7yZ8HkQs.png","https://files.peakd.com/file/peakd-hive/edicted/23tHXT2TNMMkLb9dSNQmvQ63xrjGuxXnCwGUYt4Z6rTZQNX5waZVeMxh1gWvfcWs1d78h.png","https://files.peakd.com/file/peakd-hive/edicted/23yJXNQYH5ewrQ2dsLjHEYFKwbvp1G37Q4uo3TwLhx11oeEqzSvLBM7DywxukHMjbuPMH.png","https://files.peakd.com/file/peakd-hive/edicted/EpT7W8jdhM4WGWqSEqWE4k4HNJKvAqp75DxjJNFfZwX4JRLo4zBrwymBmoocZJPjVhc.png","https://files.peakd.com/file/peakd-hive/edicted/23y9D9UaZmf4CLyjGM3L8FeWurz5S9iVQ3Hi8Wm9bXCP4mGznTj3AmWygWtavHqLgqPrs.png"]}"
created2024-05-10 20:24:21
last_update2024-05-10 20:30:21
depth0
children9
last_payout2024-05-17 20:24:21
cashout_time1969-12-31 23:59:59
total_payout_value27.882 HBD
curator_payout_value27.818 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12,463
author_reputation3,497,851,531,456,337
root_title"QR Codes (A HackMUD Story)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,549,860
net_rshares133,467,072,141,650
author_curate_reward""
vote details (438)
@dmwh ·
Dang, this is epic.  Definitely should be in a film scene where the code needs to be manually decoded to disarm the bomb!
properties (22)
authordmwh
permlinkre-edicted-sdaze1
categoryhive-140217
json_metadata{"tags":["hive-140217"],"app":"peakd/2024.5.1"}
created2024-05-11 04:06:03
last_update2024-05-11 04:06:03
depth1
children0
last_payout2024-05-18 04:06:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation1,938,573,967,016
root_title"QR Codes (A HackMUD Story)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,560,467
net_rshares0
@jacobpeacock ·
$0.05
QR codes are really awesome. I also think they are quite the 'underappreciated and underutilized piece of technology' and have worked on a bunch of projects exploring their uses. You might like this one: https://github.com/txtatech/qr-weaver
👍  ,
properties (23)
authorjacobpeacock
permlinkre-edicted-2024510t172850799z
categoryhive-140217
json_metadata{"tags":["hive-140217","qr-codes","hackmud","gaming","programming","decode","encode","masking-pattern"],"app":"ecency/3.2.0-vision","format":"markdown+html"}
created2024-05-10 21:28:51
last_update2024-05-10 21:28:51
depth1
children0
last_payout2024-05-17 21:28:51
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length241
author_reputation324,212,435,774,352
root_title"QR Codes (A HackMUD Story)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,552,696
net_rshares114,973,734,988
author_curate_reward""
vote details (2)
@kryptik ·
$0.05
I never expected this level of complexity one bit. It's just something I kind of use and don't think about.
👍  , ,
properties (23)
authorkryptik
permlinkre-edicted-sdashh
categoryhive-140217
json_metadata{"tags":["hive-140217"],"app":"peakd/2024.5.1"}
created2024-05-11 01:36:54
last_update2024-05-11 01:36:54
depth1
children0
last_payout2024-05-18 01:36:54
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation38,181,454,492,763
root_title"QR Codes (A HackMUD Story)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,558,587
net_rshares118,653,832,448
author_curate_reward""
vote details (3)
@shortsegments · (edited)
Off topic..
I read your thread about degen into Leodex...
It would appearS THE PAIR IS doing good volume

https://img.inleo.io/DQmPekTwBKFUAeVjaMVmJDaryBGYN1fCr67za2r8KhnjyMa/image.webp
properties (22)
authorshortsegments
permlinkre-edicted-athswzdi
categoryhive-140217
json_metadata{"app":"hiveblog/0.1","canonical_url":"https://inleo.io/@shortsegments/re-edicted-athswzdi","isPoll":false,"dimensions":[],"format":"markdown","images":["https://img.inleo.io/DQmPekTwBKFUAeVjaMVmJDaryBGYN1fCr67za2r8KhnjyMa/image.webp"],"pollOptions":{},"image":["https://img.inleo.io/DQmPekTwBKFUAeVjaMVmJDaryBGYN1fCr67za2r8KhnjyMa/image.webp"]}
created2024-05-10 21:21:27
last_update2024-05-13 10:20:15
depth1
children3
last_payout2024-05-17 21:21:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation675,938,546,174,570
root_title"QR Codes (A HackMUD Story)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,552,380
net_rshares0
@dmwh ·
i think that the Earnings is all time since the Max option is selected in blue.
properties (22)
authordmwh
permlinkre-shortsegments-sdazpi
categoryhive-140217
json_metadata{"tags":["hive-140217"],"app":"peakd/2024.5.1"}
created2024-05-11 04:12:57
last_update2024-05-11 04:12:57
depth2
children2
last_payout2024-05-18 04:12:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation1,938,573,967,016
root_title"QR Codes (A HackMUD Story)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,560,584
net_rshares0
@shortsegments ·
Yes you are correct, I believe the swap pair is new, so the data reflects the short life of the trading pair.
properties (22)
authorshortsegments
permlinksdf5n0
categoryhive-140217
json_metadata{"app":"hiveblog/0.1"}
created2024-05-13 10:11:27
last_update2024-05-13 10:11:27
depth3
children0
last_payout2024-05-20 10:11:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation675,938,546,174,570
root_title"QR Codes (A HackMUD Story)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,610,710
net_rshares0
@shortsegments ·
I think I see my error now.
Thanks
👍  
properties (23)
authorshortsegments
permlinksdf638
categoryhive-140217
json_metadata{"app":"hiveblog/0.1"}
created2024-05-13 10:21:09
last_update2024-05-13 10:21:09
depth3
children0
last_payout2024-05-20 10:21:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation675,938,546,174,570
root_title"QR Codes (A HackMUD Story)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,610,876
net_rshares34,241,475,581
author_curate_reward""
vote details (1)
@valued-customer ·
Very cool.  Now, do star maps, and we can read creation.

Thanks!
properties (22)
authorvalued-customer
permlinkre-edicted-sdbg48
categoryhive-140217
json_metadata{"tags":["hive-140217"],"app":"peakd/2024.5.1"}
created2024-05-11 10:01:27
last_update2024-05-11 10:01:27
depth1
children1
last_payout2024-05-18 10:01:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation358,576,698,480,327
root_title"QR Codes (A HackMUD Story)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,564,794
net_rshares0
@shortsegments ·
LOL
properties (22)
authorshortsegments
permlinksdf62k
categoryhive-140217
json_metadata{"app":"hiveblog/0.1"}
created2024-05-13 10:20:45
last_update2024-05-13 10:20:45
depth2
children0
last_payout2024-05-20 10:20:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation675,938,546,174,570
root_title"QR Codes (A HackMUD Story)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,610,872
net_rshares0