Address

0x7447B5B05e5F0F9F1BaC7dD32aA8144452403759

0 ETH

Including Tokens

0.015366 ETH
1756.70 PHP

Confirmed
Balance0 ETH0.00 PHP
Transactions1641
Non-contract Transactions1609
Internal Transactions0
Nonce1588
ContractQuantityValueTransfers#
Pepe3323187.133879233532211381 PEPE1388.22 PHP(0.012143 ETH)5
Milady118381166.001010221913529205 LADYS274.45 PHP(0.002401 ETH)3
Tether USD1.64 USDT94.03 PHP(0.000822 ETH)6
$BASED0 $BSD-3
$FIB0 $FIB-8
$SPIKE Coin0 $SPIKE-3
0.2 Pepe0 0.2Pepe-3
0xBitcoin0 0xBTC-3
0xFrog0 0xF-3
1000X0 1000X-2
8880 888-3
8GB133071235.486538182094537628 $8GB-1
ACKCHYUALLY919315.617341038 ACK-1
AEWE0 AEWE-1
AI PUP194661.003688563 AIP-1
ALPHA0 ALPHA-2
APED MAX19688235.8578105805078125 APED MAX-1
Allah0 Allah-2
Alpaca0 ALPACA-5
Andy0 ANDY-3
Argentina Central Bank0 ACB-3
Armstrong0 ARMSTRONG-4
Atheist Coin0.850746268 ATHEIST-2
Awoo0 AWOO-3
BABA YAGA0 WICK-3
BABY𝕏1699991.5 BABY𝕏-1
BAYC0 BAYC-2
BEEG Token0 BEEG-2
BEER27880757607.501086854 BEER-1
BITCONNECT0 BITCON-2
BITCoke0 BITCOKE-2
BLACK0 BLACK-2
BLONDE0 BLONDE-2
BONK COIN0 BONK-2
BOOM16999043.914861321 $BOOM-1
BRRRR0 BRRRR-4
BRUTALIK500000 BRUTALIK-1
Baby Pengu236086053231.9413904 BPENGU-1
Barbie Token0 BARBIE-2
BartCoin14000000 BART-1
Beluga The Cat6434999.99999999935 BTC-1
Ben-dover.eth0.000000212274416477 BDE-5
BenMeth7912587.728464552 BMETH-1
Benni Coin0 Benni-3
BigDickEnergy0 BDE-2
BillGatesExplorerWindows98Xbox0 MICROSOFT-2
Bitcoin: A Peer-to-Peer Electronic Cash System Satoshi Nakamoto satoshin@gmx.com www.bitcoin.org Abstract. A purely peer-to-peer version of electronic cash would allow online payments to be sent directly from one party to another without going through a financial institution. Digital signatures provide part of the solution, but the main benefits are lost if a trusted third party is still required to prevent double-spending. We propose a solution to the double-spending problem using a peer-to-peer network. The network timestamps transactions by hashing them into an ongoing chain of hash-based proof-of-work, forming a record that cannot be changed without redoing the proof-of-work. The longest chain not only serves as proof of the sequence of events witnessed, but proof that it came from the largest pool of CPU power. As long as a majority of CPU power is controlled by nodes that are not cooperating to attack the network, they'll generate the longest chain and outpace attackers. The network itself requires minimal structure. Messages are broadcast on a best effort basis, and nodes can leave and rejoin the network at will, accepting the longest proof-of-work chain as proof of what happened while they were gone. 1. Introduction Commerce on the Internet has come to rely almost exclusively on financial institutions serving as trusted third parties to process electronic payments. While the system works well enough for most transactions, it still suffers from the inherent weaknesses of the trust based model Completely non-reversible transactions are not really possible, since financial institutions cannot avoid mediating disputes. The cost of mediation increases transaction costs, limiting the minimum practical transaction size and cutting off the possibility for small casual transactions, and there is a broader cost in the loss of ability to make non-reversible payments for nonreversible services. With the possibility of reversal, the need for trust spreads. Merchants must be wary of their customers, hassling them for more information than they would otherwise need. A certain percentage of fraud is accepted as unavoidable. These costs and payment uncertainties can be avoided in person by using physical currency, but no mechanism exists to make payment over a communications channel without a trusted party What is needed is an electronic payment system based on cryptographic proof instead of trust, allowing any two willing parties to transact directly with each other without the need for a trusted, allowing any two willing parties to transact directly with each other without the need for a trusted third party. Transactions that are computationally impractical to reverse would protect sellers from fraud, and routine escrow mechanisms could easily be implemented to protect buyers. In this paper, we propose a solution to the double-spending problem using a peer-to-peer distributed timestamp server to generate computational proof of the chronological order of transactions. The system is secure as long as honest nodes collectively control more CPU power than any cooperating group of attacker nodes. 2. Transactions We define an electronic coin as a chain of digital signatures. Each owner transfers the coin to the next by digitally signing a hash of the previous transaction and the public key of the next owner and adding these to the end of the coin. A payee can verify the signatures to verify the chain of ownership. The problem of course is the payee can't verify that one of the owners did not double-spend the coin. A common solution is to introduce a trusted central authority, or mint, that checks every transaction for double spending. After each transaction, the coin must be returned to the mint to issue a new coin, and only coins issued directly from the mint are trusted not to be double-spent. The problem with this solution is that the fate of the entire money system depends on the company running the mint, with every transaction having to go through them, just like a bank We need a way for the payee to know that the previous owners did not sign any earlier transactions. For our purposes, the earliest transaction is the one that counts, so we don't care about later attempts to double-spend. The only way to confirm the absence of a transaction is to be aware of all transactions. In the mint based model, the mint was aware of all transactions and decided which arrived first. To accomplish this without a trusted party, transactions must be publicly announced [1], and we need a system for participants to agree on a single history of the order in which they were received. The payee needs proof that at the time of each transaction, the majority of nodes agreed it was the first received. 3. Timestamp Server The solution we propose begins with a timestamp server. A timestamp server works by taking a hash of a block of items to be timestamped and widely publishing the hash, such as in a newspaper or Usenet post [2-5]. The timestamp proves that the data must have existed at the time, obviously, in order to get into the hash. Each timestamp includes the previous timestamp in its hash, forming a chain, with each additional timestamp reinforcing the ones before it 4. Proof-of-Work To implement a distributed timestamp server on a peer-to-peer basis, we will need to use a proof of-work system similar to Adam Back's Hashcash [6], rather than newspaper or Usenet posts. The proof-of-work involves scanning for a value that when hashed, such as with SHA-256, the hash begins with a number of zero bits. The average work required is exponential in the number of zero bits required and can be verified by executing a single hash. For our timestamp network, we implement the proof-of-work by incrementing a nonce in the block until a value is found that gives the block's hash the required zero bits. Once the CPU effort has been expended to make it satisfy the proof-of-work, the block cannot be changed without redoing the work. As later blocks are chained after it, the work to change the block would include redoing all the blocks after it. The proof-of-work also solves the problem of determining representation in majority decision making. If the majority were based on one-IP-address-one-vote, it could be subverted by anyone able to allocate many IPs. Proof-of-work is essentially one-CPU-one-vote. The majority decision is represented by the longest chain, which has the greatest proof-of-work effort invested in it. If a majority of CPU power is controlled by honest nodes, the honest chain will grow the fastest and outpace any competing chains. To modify a past block, an attacker would have to redo the proof-of-work of the block and all blocks after it and then catch up with and surpass the work of the honest nodes. We will show later that the probability of a slower attacker catching up diminishes exponentially as subsequent blocks are added. To compensate for increasing hardware speed and varying interest in running nodes over time the proof-of-work difficulty is determined by a moving average targeting an average number of blocks per hour. If they're generated too fast, the difficulty increases. 5. Network The steps to run the network are as follows: 1) New transactions are broadcast to all nodes 2) Each node collects new transactions into a block. 3) Each node works on finding a difficult proof-of-work for its block 4) When a node finds a proof-of-work, it broadcasts the block to all nodes. 5) Nodes accept the block only if all transactions in it are valid and not already spent 6) Nodes express their acceptance of the block by working on creating the next block in the chain, using the hash of the accepted block as the previous hash. Nodes always consider the longest chain to be the correct one and will keep working on extending it. If two nodes broadcast different versions of the next block simultaneously, some nodes may receive one or the other first. In that case, they work on the first one they received, but save the other branch in case it becomes longer. The tie will be broken when the next proof of-work is found and one branch becomes longer; the nodes that were working on the other branch will then switch to the longer one. New transaction broadcasts do not necessarily need to reach all nodes. As long as they reach many nodes, they will get into a block before long. Block broadcasts are also tolerant of dropped messages. If a node does not receive a block, it will request it when it receives the next block and realizes it missed one. 6. Incentive By convention, the first transaction in a block is a special transaction that starts a new coin owned by the creator of the block. This adds an incentive for nodes to support the network, and provides a way to initially distribute coins into circulation, since there is no central authority to issue them a way to initially distribute coins into circulation, since there is no central authority to issue them. The steady addition of a constant of amount of new coins is analogous to gold miners expending resources to add gold to circulation. In our case, it is CPU time and electricity that is expended. The incentive can also be funded with transaction fees. If the output value of a transaction is less than its input value, the difference is a transaction fee that is added to the incentive value of the block containing the transaction. Once a predetermined number of coins have entered circulation, the incentive can transition entirely to transaction fees and be completely inflation free. The incentive may help encourage nodes to stay honest. If a greedy attacker is able to assemble more CPU power than all the honest nodes, he would have to choose between using it to defraud people by stealing back his payments, or using it to generate new ins. He ought to find it more profitable to play by the rules, such rules that favour him with more new coins than everyone else combined, than to undermine the system and the validity of his own wealth. 7. Reclaiming Disk Space Once the latest transaction in a coin is buried under enough blocks, the spent transactions before it can be discarded to save disk space. To facilitate this without breaking the block's hash, transactions are hashed in a Merkle Tree [7][2][5], with only the root included in the block's hash. Old blocks can then be compacted by stubbing off branches of the tree. The interior hashes do not need to be stored. A block header with no transactions would be about 80 bytes. If we suppose blocks are generated every 10 minutes, 80 bytes * 6 * 24 * 365 = 4.2MB per year. With computer systems typically selling with 2GB of RAM as of 2008, and Moore's Law predicting current growth of 1.2GB per year, storage should not be a problem even if the block headers must be kept in memory. 8. Simplified Payment Verification It is possible to verify payments without running a full network node. A user only needs to keep a copy of the block headers of the longest proof-of-work chain, which he can get by querying network nodes until he's convinced he has the longest chain, and obtain the Merkle branch linking the transaction to the block it's timestamped in. He can't check the transaction for himself, but by linking it to a place in the chain, he can see that a network node has accepted it, and blocks added after it further confirm the network has accepted it. As such, the verification is reliable as long as honest nodes control the network, but is more vulnerable if the network is overpowered by an attacker. While network nodes can verify transactions for themselves, the simplified method can be fooled by an attacker's fabricated transactions for as long as the attacker can continue to overpower the network. One strategy to protect against this would be to accept alerts from network nodes when they detect an invalid block, prompting the user's software to download the full block and alerted transactions to confirm the inconsistency. Businesses that receive frequent payments will probably still want to run their own nodes for more independent security and quicker verification 9. Combining and Splitting Value Although it would be possible to handle coins individually, it would be unwieldy to make a separate transaction for every cent in a transfer. To allow value to be split and combined, transactions contain multiple inputs and outputs. Normally there will be either a single input from a larger previous transaction or multiple inputs combining smaller amounts, and at most two outputs: one for the payment, and one returning the change, if any, back to the sender. It should be noted that fan-out, where a transaction depends on several transactions, and those transactions depend on many more, is not a problem here. There is never the need to extract a complete standalone copy of a transaction's history. 10. Privacy The traditional banking model achieves a level of privacy by limiting access to information to the parties involved and the trusted third party. The necessity to announce all transactions publicly precludes this method, but privacy can still be maintained by breaking the flow of information in another place: by keeping public keys anonymous. The public can see that someone is sending an amount to someone else, but without information linking the transaction to anyone. This is similar to the level of information released by stock exchanges, where the time and size of individual trades, the tape, is made public, but without telling who the parties were. As an additional firewall, a new key pair should be used for each transaction to keep them from being linked to a common owner. Some linking is still unavoidable with multi-input transactions, which necessarily reveal that their inputs were owned by the same owner. The risk is that if the owner of a key is revealed, linking could reveal other transactions that belonged to the same owner. 11. Calculations We consider the scenario of an attacker trying to generate an alternate chain faster than the honest chain. Even if this is accomplished, it does not throw the system open to arbitrary changes, such as creating value out of thin air or taking money that never belonged to the not going to accept an invalid transaction as payment, and honest nodes will never accept a block attacker. Nodes are containing them. An attacker can only try to change one of his own transactions to take back money he recently spent. The race between the honest chain and an attacker chain can be characterized as a Binomial Random Walk.14999.25 BITCOIN-1
Bitshiba0 BITSHIBA-3
Black Currium159999.2 BAM-1
Blue Pepe4889981859899.400457575 bPEPE-1
Bojack Coin359713484.555817543464664206 BOJACK-1
Boomer Coin0 BOOMER-3
BoostEX0 BOOST-2
Borat197660822413.4774265976 BORAT-1
Bored Milady Yacht Club0 BMYC-3
Bread0.000000001 BREAD-2
Brett4205915613184.0425 BRETT-1
Brett0 Brett-3
Bring Down The Cabal2510517419243.49931640625 BDTC-1
Britz0 Britz-2
Brown16999999.15 Cleveland-1
Buddha Coin3736931.523073444 BUDDHA-1
Buy or Sell? HOLD!!!0 HODL-2
CAILLOU19438.320852089305516943 CAILLOU-1
CARL0 CARL-3
CHESS PEPE0 $CHESSPEPE-3
CHONKY0 CHONKY-2
COCA COLA0 COKE-2
Caesars Palace739363.788394862436799314 CAESARS-1
Caitlin0 Caitlin-2
Cash Back5.846968915 CB-3
CatBread0 CATBREAD-2
CatPop0 CatPop-2
Chad0 CHAD-3
Chimpanzees0 CHIMPS-2
Chungus0 CHUNG-2
Clyde Frog0 CLYDE-3
Clyde Frog0 CLYDE-3
Cobra0 COBRA-3
Code X0.000000001 CODEX-2
Common Coin0 CC-2
Copium5000000 COPIUM-1
Copium Inu327770082.617775135 COPINU-1
Covid Cult Culture0 CCC-2
Covid Gambit0.000000000001960671 COVID-2
Crazy Frog0 CF-2
Crypto Twitter0.000000001 CT-2
CultOfWagmi0 $COW-3
Cáishén0 FORTUNEGOD-3
DADC0 DADC-1
DAN0 DAN-2
DEMON COIN0 DEMON-1
DFDHFD0 DFDHFD-1
DOPE0 DOPE-3
DatBoi0 Boi-4
Degens Nightmare0 REKT-2
Deja Vu1809090.90891 GlitchCat-1
Dex Sniffer0 DS-5
Dimethyltryptamine5065869283.537987012301914374 DMT-3
Dimethyltryptamine3140909628.7340684 DMT-1
Dino0 DINO-3
Disaster Girl710630.367763834 $GIRL-1
Doctor PEPE0 DRPEPE-3
DogeShia0 DogeShia-1
DogeShibaFlokiDogelonKishuBonkVoltSamoyedPitbullVitaAkitaDingo0 DOGMEMES-1
Donkey Kong0 DONKEY-2
Dumbo1605320.65570255 DUM-1
Dwarf0 DWARF-4
ETH Trending0 TRENDOOOR-2
EVERGREEN0 EVERGREEN-3
Elon Bank15999159.951646241 EBANK-1
ElonGod0 EGOD-2
Era Of Degen0 $EOD-2
FACES7496719.723726124 0x-1
FDRYD0 FDRYD-1
FINE0 FINE-1
FLOKI3.00 FLOKI3.0-3
FROGE0 $FROGE-3
FUKDUK0 FUKDUK-5
FULLMOON0 MANYUE-3
FUY0 FUY-1
Fake It Till You Make It0.000000001 FITUMI-2
Family Guy0 GUY-3
Fat Pepe0 FATPEPE-3
Fear Of McDonalds Career0 FOMC-2
FelipeToken0.417996592393871161 FELIPE-2
Floki 2.00.000108809 Floki 2.0-3
FoldCat0.000001863415996388 FOLDCAT-2
Freakishly Long Rambunctious Banana Rollercoaster Gang0 FLRBRG-2
Fronki0 FRONKI-2
Frope17938383.130185462 FROPE-1
FuckPaulyGreatestClownOfTwitterAndGivingShitAboutHisTokenInu618.116842544 PEPE-1
Futurama0 FUTURAMA-2
GAINS8499999999.15 GAINS-1
GIGGLES0 GIGGLES-3
GMFAM0 GMFAM-7
GOLD AI NETWORK TOKEN0 GAIN-4
GRIMACE0 GRIMACE-2
GROOT0 GROOT-2
Gamba Coin0 GAMBA-7
Gambol0 GAMBOL-2
GameBoy0 GBOY-3
GemForge0 GEMFORGE-4
Generational Meme2034700893939.3906 GEM-1
Generational Poverty358655.349933915133904559 GENPOV-1
Genius Coin4516942.777782379934615405 GENIUS-1
Get The Fuck Out14974361.223065094 GTFO-1
GobbyBidenZelda100Emu8845658.525381692 WETH-1
Gonna Make It15749.213297432393574144 GMI-1
Good Fucking Morning0 GFM-3
GpSHI1643400000 GpSHI-1
Grand M0 GRM-2
Grand Theft Pepe0 GTPepe-2
Great Coin0 GC-2
GrowCoin0 $GROW-2
HANNAHMONTANHARRYPOTTERX3INU0 GOLD-9
HELL KITTY0.843293183 HELL-2
HODL0 HODL-2
HOPIUM0.745285014 HOPIUM-2
HULKAMANIA0 HULK-2
HagridDeSantisLuigi420InuXXX0 NUTS-3
Halal15840000 HALAL-1
Happy Mothers Day4238.00489102981585 Mommy-1
HarryPotterObamaPepeSonic10Inu0 PEPE-3
HarryPotterObamaSonic10Inu591152840.44188003 sǝɯǝɯ-1
Have Fun0.84 HV-3
Heavens Gate0 HATE-3
Hide The Pain0 HAROLD-3
Hijab0 HIJAB-2
Hoppy 2.00 HOPPY2.0-3
Hugh Mungus0 MUNGUS-3
Infinite Money Glitch0 GLITCH-7
Inshallah0 ان شاء الله-2
Isaiah0 Isaiah-2
I❤️Mom0 I❤️Mom-2
JESUS IS0 BACK-2
James Bond0 BOND-2
James Pond18958628.270168284 007-1
Johnny Bravo0 Bravo-2
Johnny Bravo0 BRAVO-2
Just Gonna Work At McD0 McD-2
KITTY0 KITTY-2
Kaizencorp Finance39026.411379977263414674 KAIZEN-1
Kaizencorp Finance989999.9999999999 KAIZEN-1
Kikujiro6097.176164010485515143 KKJ-1
LINDA WOLF0 LINDAWOLF-2
LISA0 LISA-2
LOTTO2917633.53806809380965235 LOTTO-1
Larry Pepe623412.280367891794054817 LARRYPEPE-1
LeTs gEt rEtArDeD0 LGR-2
Leon0 LEON-2
Let Me In0 IN-2
Let that sink in0 SINK-2
Lets Go13999999.3 LetsGo-1
Ligma Balls0 LIGMA-2
Lisa Simpson0 LISA-3
Little Duck Liu0 刘小鸭-2
Little Things0 LITTLEBIG-3
Loca0 LOCA-3
Lois Griffin8413799 LOIS-1
Lonely Astro Club1165864.089104781 LAC-1
Low Effort Coin1940000 Efferium-1
Lucifer2376617877.102848488 LUCI-1
LuffyJoyboyNikaNika56Inu0 GEAR 5-3
MAMA0 MARGE-2
MASHAALLAH0 MASHAALLAH-2
MGM Las Vegas855516.948478720013597905 MGM-1
MILADY PEPE2.2054378688123 MILADYPEPE-1
MOONCoin17998147.451646216 MOON-1
MagiBot0 MAGI-3
Make Crypto Great Again0 USBTC-2
Marge Simpson0 MARGE-2
Mario0 MARIO-2
Mecz0 MCZ-2
Meme Crypto Token14736.59966406997 MCT-3
Meme God0.640318362 MGOD-2
Meme Street0 MEMEST-2
MemeCorp2651479.166053356 MEMECORP-5
MemeSwap0 MEMES-3
Microsapt0 APT.AI-2
Mister F was here0 0xMRF-2
Mojo Jojo4881508.539793107334213772 MOJ-1
Mona0 MONA-3
MoonHippo10788552802.068434129125345927 MHIPPO-1
Mother Of Jesus60631790.206739234 MARY-1
Mr Blobby0 BLOBBY-3
NOKIA0 NOKIA-2
NOTHING0 NOTHING-2
NPC KAREN0 KAREN-3
NUDE2.00 NUDE2.0-3
National Basketball Association0 NBA-3
NeversellGamblebigStaysafuBuydips0.000000000000000061 BEST2.0-3
New Community Coinbase19900 ncBASE-1
Nintendo 640.000000001 NT64-3
Noice112866192.868988055 NOICE-1
Noobs0 NOOBS-2
Not Pepe0 NOTPEPE-5
OBAMA POTTER SONIC RING INU13906934.586261576 EYTHREYUM-1
ORAX2031875.887995663 ORAX-1
ORIGINAL XRP0 OGXRP-3
Obama Prism0 OBAMIUM-3
Ohayō69299999.999999993 OH-1
Onchain Alert Bot0 OCABOT-3
Oppenheimer666SecundaNWOinu0 TSUKA-3
Ordinal Hello Kitty0 oKITTY-4
PAC-MAN7432454.2542081 PAC-1
PAC-MAN0 Pac-Man-2
PEPE II0 $PEPE-II-2
PEPEGO0 PEPEGO-2
PEPESI0 PEPESI-3
PEPEXS0 PEPEXS-3
PIG2.00.000027583 PIG2.0-3
POORPEPE0 $PEPE-2
PRICK AND MORTY0 PRICK-2
PRIEST596595316.595413231262573262 PRIEST-1
PROBABLY NOTHING0 NOTHIN-4
PROTOCOL ZERO0 ZRO-3
PULSE DOGE0 PULOGE-3
Pauly Nothing0.00000389578825573 NOTHING-2
PaxGold TRACKER0 PaxGoldT-2
PeanutButterJellyPaulyZachXBTBrett13Wolf0.0000000001 PEPE2.0-2
Pengu0 PENGU-4
Pepe 4.00.000000001 PEPE4.0-2
Pepe Meme0.000000001 MEMES-2
Pepe Metaverse | PepeMV.com705750.252213138508148424 PEPEMV-1
Pepe Of Pink18599990.7 PPPP-1
Pepe Zoomer0.000000001 Pepe Zoomer-3
PepeGod34144.553131764304502173 PepeGod-1
PepeGrumpyWojakBen0 MOOON-2
PepeSpinner244524.123529489821495333 PEPSPI-1
Pepeman0 PEPEMAN-2
Pepenaut0.000000046 PEPENAUT-2
Philosoraptor0 LOGIC-2
Pikachu206142999999 PIKA-1
Plug and Play0 PNP-3
Poke Tate0 POKETATE-2
Pom-Poko0 POMKO-2
Pororo0 Pororo-2
Poshi0 POSHI-3
Print The Ladys238638680226.988166521 PL-3
Print The Pepe0 PP-6
Professor X0 ProfX-2
Psyop0 Psyop-2
PsyopInu0.000034738 PSYINU-3
Pulse Classic0 PULSEC-2
Pulse Floki0 PFLOKI-2
Pulse Kermit0 PUKERMIT-3
PulseDoge0 POGE-2
PulseFloki0 pFLOKI-4
PulseMoon0 PulseMoon-2
PulsePepeCat0 PPC-2
PunkMonkey0 Pumo-3
PunkMonkeyTRACKER0 PUMOTRACKER-2
Quran0 Qur’an-2
RABBIT GIRL0.000000001 RABBIT-3
RAID0 $RAID-2
REPEPE0.032534230999228771 REPEPE-2
REPEPE0.0325342309992288 REPEPE-1
RICH DEV0.000001219 RICHDEV-2
Raptor V30 Raptor V3-2
RePrint743983.720021054 REPRINT-2
Reborn Pepe0.000000001 $RBPEPE-3
Return of Shiboshis0 SHIBOS-3
ReversedMemes293348.626680319 sǝɯǝW-1
ReviveOfShiba8000000 Rshiba-1
Richie Rich0 RICH-4
Rick Roll0 RICKROLL-2
Rose Coin99999.95 ROSE-1
RudeSocialExperience0 RUDE-3
Rug Scan5092080.202394243851025459 SCAN-1
Running Away Balloon0 BALLOON-2
SARATOSHI NAGAMOTO0 SARATOSHI-2
SCRAPPY0 SCRAPPY-2
SHIB LINDA0 SHIDA-2
SHIBI INU0.000750997 shibi-6
SHIDUS0 SHIDUS-1
SIMP0 SIMP-2
SQUIDSOME4800000 SQUIDS-1
SUEBENETH0 SUEBENETH-2
SUPER JEET0.000000002 JEET-3
Sadge0 SADGE-2
Saratoshi Nagamoto0 SARATOSHI-3
Saru0 SARU-2
SatoshiNakamoto0 Satoshi-2
SatoshiStreetBetsBaby Coin0.756847852518391107 SSBB-3
Sebastian9537433.552967635930372872 CRAB-1
Shiba Linda0 SHINDA-3
Shibox1990000 SHIBOX-1
Shina 2.00.000000001 Shina2.0-2
ShitCoin6708.850352237 SHIT-1
Simulation0 SIM-2
SirApu0 SAPU-2
Sky Finance6374396.384934577 SKY-2
Slasha Game0 SLASHA-3
SlutsKittenVirginGamblingCryptoHoesTopGinu0 TATE-3
SoGood0 SoGood-3
Sojucoin723384475.735839786 SOJU-1
SonicPepeRippleInu787101.105295939 $XRP-1
Spice Coin0.616611231955176121 SPICE-3
SquidChad0.000000414989144157 SQUID-3
StoneyDudeMateAI2903953164.795309543555527731 SDMAI-1
Suka Blyat138000 $SUKA-1
Superpepe2933326757.8055273 SPEPE-1
THE PEPE KILLER4246096177566.638263984 $SNEK-2
TMFNR0 $TMFNR-3
TOM CAT0 TOM-6
TUF Token0 TUF-6
TUIQIAN0 TQN-2
TWO0 TWO-3
The Godfather0 GODFATHER-4
The Great Chain1599999992 MAINNET-1
The X-Files3480594973.056999268084842925 X-Files-1
TheMemeingOfLife0 LIFE-2
TheVoid0 VOID-2
Tom Cat125000000 TOMCAT-1
Tyler Durden0 FIGHT-3
USAGYUUUN0 USAGYUUUN-2
Unidentified Flying Object0 UFO-3
UwU0 UwU-2
VBUCKS0 VBUCKS-2
VODKA0 $Vodka-2
Vitalik Magician0 VIGICIAN-2
WEN Token0 WEN-3
WHALE0 WHALE-3
WHISKEY0 WHISKEY-2
WIFEY0 WIFEY-2
WINE0 WINE-3
WNG0 WNG-1
WagieCoin5296175.957007837 $WAGIE-1
WaittCoin0 WAITT-3
Wallahi1782000000000 WALLAHI-1
Warm Tech Eco Coin103573994.999410732 WTEC-1
We're All Gonna Get Her626.03098794 WAGGH-1
Wealth0 Wealth-2
Wednesday Addams0.000000001 WEDNESDAY-2
Wen Lunch0.000000001 LUNCH-2
WenRFND141829928.689065221 WENBEN-1
Whale Coin0 WHAL-2
White Terrier10633431.340756997 WHITERRIER-3
Why To Buy996656.00361434 WHY-1
Wife of Pepe0 WoP-3
Wonka1449133.583922369 WONKA-1
WorldCoin0 WC-3
Worldcoin0 WORLD-6
Wrapped Ether0 WETH-11
Wrapped SafeMoon5906208.999616892 WSFM-1
X KILLER0 Y-3
XElonsWorldXAE12SpaceXTeslaDogeTruck0 XElonsWorld-3
XHAMSTER1229356034.222948834 XHAMSTER-1
XIASI0.00000001 XIASI-2
XTRUTH0 XTRUTH-4
Xai Inu0 XAINU-3
Xhiba Inu179999991 XHIBA-1
Xiaohei0 XHEI-3
XoeCoin44770252.421715591 XoeC-1
YOLOCOIN0 YOLO-5
Yallah0 YALLAH-2
Yeti0 YETI-3
Ygmi Coin14999.952334735 YGMI-1
YoloSwagCryptoBag0 SHITCOIN-2
Zoloto0 GOLD-3
eggdog0.000000001 EGGD-3
fhioea;odijcfaewklcldW10828984.087028426857573398 fhioea;odijcfaewklcldW-1
golden pangu0 pg-2
ok I need PRICE TO GO UP. I cant take this anymore. every day I am checking price and its dipping. every day, check price, bad price. I cant take this anymore, I have over invested, by a lot. it is what it is. but I need price to GO UP ALREADY. can devs DO SOMETHING0.082774193 PRICEGOUP-2
pepe SHIA0 PEPESHIA-1
tehPaper4882231.319644107 PAPER-1
unUSD0 unUSD-2
362126.054372472-1
➖➖➖🟩🟩➖🟩🟩 ➖➖🟩🟩🟩🟩🟩🟩🟩 ➖🟩🟩⬜️⬛️⬜️⬜️⬛️🟩 ➖🟩🟩🟩🟩🟩🟩🟩 🟩🟩🟩🟩🟥🟥🟥🟥 🟩🟩🟩🟩🟩🟩🟩 🟦🟦🟦🟦🟦🟦🟦31929.216522885 PEPE-1
⠀⠀⠀⠀⠀⠀⠀⠀⣀⣤⣴⣶⣾⣿⣿⣿⣿⣷⣶⣦⣤⣀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⣿⣿⣿⣿⣿⣿⣿⣿⢿⣿⣿⣿⣿⣿⣿⣿⣦⣄ ⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⠏⠀⠹⣿⣿⣿⣿⣿⣿⣿⣿⣷⣄ ⠀⠀⠀⠀⠀⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠃⠀⠀⠀⠙⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦ ⠀⠀⠀⣼⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠁⠀⠀⠀⠀⠀⠈⢿⣿⣿⣿⣿⣿⣿⣿⣿⣧ ⠀⢰⣿⣿⣿⣿⣿⣿⣿⣿⣿⡟⠀⠀⠀⠀⣀⠀⠀⠀⠈⢻⣿⣿⣿⣿⣿⣿⣿⣿⡆ ⣾⣿⣿⣿⣿⣿⣿⣿⣿⠏⠀⣀⡤⠖⠛⠉⠛⠶⣤⣀⠀⠹⣿⣿⣿⣿⣿⣿⣿⣷ ⣿⣿⣿⣿⣿⣿⣿⣿⡿⠞⠋⠁⠀⠀⠀⠀⠀⠀⠀⠈⠙⠳⣿⣿⣿⣿⣿⣿⣿⣿ ⢿⣿⣿⣿⣿⣿⣿⣿⣿⡳⢦⣄⠀⠀⠀⠀⠀⠀⠀⣠⡴⢚⣿⣿⣿⣿⣿⣿⣿⡿ ⠸⣿⣿⣿⣿⣿⣿⣿⣿⣷⣄⠈⠙⠶⣄⣀⣤⠖⠋⠁⣠⣿⣿⣿⣿⣿⣿⣿⣿⠇ ⠀⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⡀⠀⠀⠉⠀⠀⢀⣴⣿⣿⣿⣿⣿⣿⣿⣿⡟ ⠀⠀⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡄⠀⠀⠀⣠⣾⣿⣿⣿⣿⣿⣿⣿⣿⠟ ⠀⠀⠀⠙⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣆⠀⣴⣿⣿⣿⣿⣿⣿⣿⣿⡿⠋ ⠀⠀⠀⠀⠀⠀⠀⠀⠙⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟⠋ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠻⠿⢿⣿⣿⣿⣿⡿⠿⠟⠛⠉ ⠀⠀⠀⠀⠀⠀⠀⠀105225.836443162-1
⬜⬜⬜⬛⬛⬛⬛⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜ ⬜⬜⬛⬛⬛⬜⬜⬛⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜ ⬜⬛⬛⬜⬜⬛⬛⬛⬛⬛⬛⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜ ⬛⬜⬛⬛⬛🟨🟨🟨🟨🟨🟨⬛⬛⬜⬜⬜⬜⬜⬜⬜⬜⬜ ⬛⬜⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬜⬜⬜⬜⬜⬜⬜⬜ ⬜⬛🟨⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬜⬜⬜⬜⬜⬜⬜ ⬜⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬜⬜⬜⬜⬜⬜⬜ ⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬜⬜⬜⬜⬜⬜ ⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬛⬛⬜⬜⬜⬜ ⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬛⬛⬛⬛⬜⬜⬜⬛⬜⬜⬜ ⬛🟨🟨🟨🟨🟨🟨🟨🟨⬛⬜⬜⬜⬜⬛⬜⬜⬜⬜⬛⬜⬜ ⬛🟨🟨🟨🟨🟨🟨🟨⬛⬜⬜⬜⬜⬜⬜⬛⬜⬛⬜⬛⬜⬜ ⬛🟨🟨🟨🟨🟨🟨🟨⬛⬜⬜⬜⬜⬜⬜⬛⬜⬜⬜⬛⬜⬜ ⬜⬛🟨🟨⬛🟨🟨🟨⬛⬜⬜⬛⬜⬜⬜⬛⬛⬛⬛⬜⬜⬜ ⬜⬛🟨🟨⬛⬛🟨🟨🟨⬛⬜⬜⬜⬜⬛🟨🟨🟨🟨⬛⬜⬜ ⬜⬛⬛⬛🟨🟨⬛🟨🟨🟨⬛⬛⬛⬛🟨🟨🟨🟨🟨⬛⬜⬜ ⬜⬛⬜⬛⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬛⬛⬛⬜⬜⬜ ⬜⬜⬜⬛⬛⬛🟨🟨🟨🟨🟨🟨⬛⬛⬛🟧🟧🟧🟧⬛⬜⬜ ⬜⬜⬜⬛🟨🟨🟨🟨🟨🟨🟨⬛🟧🟧🟧🟧🟧🟧🟧🟧⬛⬜ ⬜⬜⬜⬛🟨🟨⬛🟨🟨🟨⬛🟧🟧🟧🟧🟧🟧🟧🟧🟧⬛⬜ ⬜⬜⬜⬜⬛⬛🟨🟨🟨⬛🟧🟧🟧🟧🟧🟧🟧🟧🟧🟧🟧⬛ ⬜⬜⬜⬜⬜⬛🟨🟨🟨⬛🟧⬛🟧🟧🟧🟧🟧🟧🟧🟧🟧⬛ ⬜⬜⬜⬜⬜⬛🟨🟨🟨⬛🟧⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬜ ⬜⬜⬜⬜⬜⬛🟨🟨🟨⬛🟧🟧🟧🟧🟧🟧🟧⬛⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬛🟨🟨🟨🟨⬛🟧🟧🟧🟧🟧⬛⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬜⬛🟨🟨🟨🟨⬛🟧🟧🟧🟧🟧⬛⬜⬜⬜⬜⬜ ⬜⬜⬜⬜⬛⬛🟨🟨🟨🟨🟨⬛🟧🟧🟧⬛⬜⬜⬜⬜⬜⬜ ⬜⬜⬜⬛⬜⬜⬛⬛🟨🟨🟨🟨⬛⬛⬛⬛⬛⬜⬜⬜⬜⬜ ⬜⬜⬜⬛⬜⬜⬜⬜⬛⬛🟨🟨🟨🟨🟨⬛🟦⬛⬜⬜⬜⬜ ⬜⬜⬛⬛⬜⬜⬜⬜⬜⬜⬛⬛🟨🟨🟨⬛🟦🟦⬛⬛⬜⬜ ⬜⬛🟦🟦⬛⬜⬜⬜⬜⬜⬜⬛⬛🟨🟨⬛🟦🟦🟦⬛⬜⬜ ⬜⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬜18147192.579721966402945103 HOMER-1
乖巧宝宝0.000000001 QUBY-3
币安银行0 BNB-2
😀😃😄😁😆😅😂🤣😭😉😗😙😚😘🥰😍🤩🥳🫠🙃🙂🥲🥹😊☺️😌😏😴😪🤤😋😛😝😜🤪🥴😔🥺😬🫥😑😐😶😶‍🌫️🤐🫡🤔🤫🫢🤭🥱🤗🫣😱🤨🧐😒🙄😮‍💨😤😠😡🤬😞😓😟😥😢☹️🙁🫤😕😰😨😧😦😮😯😲😳🤯😖😣😩😫😵😵‍💫🫨🥶🥵🤢🤮🤧🤒🤕😷🤥😇🤠🤑🤓😎🥸0 EMOJIS-3
ContractTokensTransfers#
Milady: Birthday Beach1 happybirthdaybeach.com of ID 241
pepedao.org1 claim rewards on pepedao.org of ID 01