stebalien changed the topic of #ipfs to: Heads Up: To talk, you need to register your nick! Announcements: go-ipfs 0.4.22 and js-ipfs 0.35 are out! Get them from dist.ipfs.io and npm respectively! | Also: #libp2p #ipfs-cluster #filecoin #ipfs-dev | IPFS, the InterPlanetary FileSystem: https://github.com/ipfs/ipfs | Logs: https://view.matrix.org/room/!yhqiEdqNjyPbxtUjzm:matrix.org/ | Forums: https://discuss.ipfs.io | Code of
mauz555 has joined #ipfs
mauz555 has quit [Ping timeout: 246 seconds]
dqx has joined #ipfs
clemo has quit [Ping timeout: 276 seconds]
fjellfras has joined #ipfs
kpp has quit [Quit: Leaving]
refpga has quit [Ping timeout: 276 seconds]
refpga has joined #ipfs
v3ry3arly has joined #ipfs
DavidPH has joined #ipfs
Belkaar has quit [Ping timeout: 245 seconds]
Belkaar has joined #ipfs
Belkaar has joined #ipfs
dongrappa has joined #ipfs
_whitelogger has joined #ipfs
felixfoertsch has joined #ipfs
felixfoertsch23 has quit [Ping timeout: 245 seconds]
draganivanovic has quit [Read error: Connection reset by peer]
kakra has joined #ipfs
hurikhan77 has quit [Ping timeout: 246 seconds]
user_51_ has joined #ipfs
user_51 has quit [Ping timeout: 245 seconds]
baojg has quit [Remote host closed the connection]
baojg has joined #ipfs
verin0x8 has joined #ipfs
verin0x has quit [Ping timeout: 265 seconds]
dqx has quit [Remote host closed the connection]
mindCrime_ has joined #ipfs
mindCrime__ has joined #ipfs
JackLund[m] has joined #ipfs
mindCrime_ has quit [Ping timeout: 245 seconds]
shizy has quit [Quit: WeeChat 2.6]
mindCrime__ has quit [Ping timeout: 246 seconds]
craigo has joined #ipfs
<pusherDiscord[m]> apologise if I came off a bit whiney, every solution i have tried thus far is half way to it, cant deal with big files (think --timeout on a 10GB file it will always timeout before it finishes)
<pusherDiscord[m]> so altho my script works, it would be really nice to see better support for multiple pinning, and have a method of retrying a pin that couldnt be retrieved later natively within ipfs.
<pusherDiscord[m]> maybe i misunderstand and the ipfs cluster service is capable of some of this, but it seemed very much like to me that cluster wasn't like a regular ipfs service, and was bootstrapped privately. maybe this is just the control layer, but i was worried about someone with the secret remotely pinning stuff that they shouldn't. my script at the moment wgets the hash list and ipfs pin add ${} for each line, but I think that
<pusherDiscord[m]> ipfs should support adding multiple. I mean if I am right and there is no easy way to do this maybe I will write a control layer and daemon for it. since I can check if the ipfs has been added persistently. It would just be nice to see such job management control native within ipfs, maybe I ask for too much here. I see many good reason to have job management outside of ipfs, but also some good reasons to have it. As I
<pusherDiscord[m]> deal with fairly large dataset, over 1000 hashes now, and it feels a bit impractical with just --timeout. Maybe there is a better way i not aware of
<pusherDiscord[m]> So TLDR, it seems pretty simple to do a shellscript for job management of ipfs. The script above I have works real fine. It's with large files where it falls down, since there is no --read-timeout, only a 'global' timeout, which means much inefficiency and time wasting can exist. Also I think why shouldnt ipfs retry for hashes that fail to pin? why cannot ipfs support ipfs hash pinning in background rather than in
<pusherDiscord[m]> foreground? etc
<pusherDiscord[m]> * So TLDR, it seems pretty simple to do a shellscript for job management of ipfs. The script above I have works real fine. It's with large files where it falls down, since there is no --read-timeout, only a 'global' timeout, which means much inefficiency and time wasting can exist. Also I think why shouldnt ipfs retry for hashes that fail to pin? why cannot ipfs support ipfs hash pinning in background rather than in
<pusherDiscord[m]> foreground and support retries? etc
dongrappa has joined #ipfs
polman has quit [Ping timeout: 245 seconds]
dongrappa has quit [Ping timeout: 276 seconds]
refpga has quit [Quit: Quit]
refpga has joined #ipfs
<pusherDiscord[m]> I am open to the fact there is a good reason ipfs not have job management like this built in, I hope you guys see some advantages of making it easier to do what I am suggesting though. There are people like us and our customers that want to support the ipfs network, and we need an ipfs-mirror-pin service or something that is simpler than the cluster service I think. Maybe I am mistaken and we can use cluster service
<pusherDiscord[m]> afterall, but it just seemed like it is overengineering to use the cluster service when DHT discovery works just fine in regular ipfs binary, just need job management is all. Naturally the best solution would be to have a master node or cluster that our OS image when run reported to, and have them replicate the hash list on that node automatically without remote pin control necessary. I'm kind of stuck I don't know the
<pusherDiscord[m]> best way to do this, I just hope someone can set me straight, I have not been using IPFS that long so am not as knowledgable as I'd like to be about it.
polman has joined #ipfs
cwahlers_ has quit [Ping timeout: 246 seconds]
cwahlers has joined #ipfs
vandemar has left #ipfs [#ipfs]
<pusherDiscord[m]> I am going to ask one question because I think after all my paragraphs of text describing it - its way simpler a question than appears to be. It should be possible for us to distribute an image, without any remote control cluster etc, and have a peer list of 5 'master nodes' and then instruct ipfs to get the hashes on those nodes, which i think is possible, and then to persistently attempt to sync all pins from all 5
<pusherDiscord[m]> nodes with some kind of job control? is this possible already? my knowledge of ipfs is not that great. I want to do completely native job control of pinning hashes and i think that in the setup i describe there should be an option for --auto-retry when adding a pin, so for instance if it times out, it will still keep trying to pin it. honestly it feels like it should timeout and then keep on trying to resume the
<pusherDiscord[m]> incomplete hash data later on. I dont think it is doing that right now
<pusherDiscord[m]> * I am going to ask one question because I think after all my paragraphs of text describing it - its way simpler a question than appears to be. It should be possible for us to distribute an OS image for our clients, without any remote control cluster etc, and have a peer list of 5 'master nodes' and then instruct ipfs to get the hashes on those nodes, which i think is possible, and then to persistently attempt to sync
<pusherDiscord[m]> all pins from all 5 nodes with some kind of job control? is this possible already? my knowledge of ipfs is not that great. I want to do completely native job control of pinning hashes and i think that in the setup i describe there should be an option for --auto-retry when adding a pin, so for instance if it times out, it will still keep trying to pin it. honestly it feels like it should timeout and then keep on trying
<pusherDiscord[m]> to resume the incomplete hash data later on. I dont think it is doing that right now
<pusherDiscord[m]> * I am going to ask one question because I think after all my paragraphs of text describing it - its way simpler a question than appears to be. It should be possible for us to distribute an OS image for our clients, without any remote control cluster etc, and have a peer list of 5 'master nodes' as ordinary bootstrap, and then instruct ipfs to get the hashes on those nodes, which i think is possible, and then to
<pusherDiscord[m]> persistently attempt to sync all pins from all 5 nodes with some kind of job control? is this possible already? my knowledge of ipfs is not that great. I want to do completely native job control of pinning hashes and i think that in the setup i describe there should be an option for --auto-retry when adding a pin, so for instance if it times out, it will still keep trying to pin it. honestly it feels like it should
<pusherDiscord[m]> timeout and then keep on trying to resume the incomplete hash data later on. I dont think it is doing that right now
<pusherDiscord[m]> * I am going to ask one question because I think after all my paragraphs of text describing it - its way simpler a question than appears to be. It should be possible for us to distribute an OS image for our clients, without any remote control cluster etc, and have a peer list of 5 'master nodes' as ordinary bootstrap, and then instruct ipfs of clients to get the hashes on those nodes, which i think is possible, and then
<pusherDiscord[m]> to persistently attempt to sync all pins from all 5 nodes with some kind of job control? is this possible already? my knowledge of ipfs is not that great. I want to do completely native job control of pinning hashes and i think that in the setup i describe there should be an option for --auto-retry when adding a pin, so for instance if it times out, it will still keep trying to pin it. honestly it feels like it should
<pusherDiscord[m]> timeout and then keep on trying to resume the incomplete hash data later on. I dont think it is doing that right now
<pusherDiscord[m]> so i had previously written a script that would ipfs get --timeout 120s, and try and resume it the next time the job is ran. you could have a list in ipfs like, ipfs pin ls --type=incomplete or something
<pusherDiscord[m]> I will look into it more and report back what i find
cwahlers has quit [Ping timeout: 240 seconds]
cwahlers has joined #ipfs
zeden has joined #ipfs
verin0x86 has joined #ipfs
verin0x8 has quit [Ping timeout: 240 seconds]
dqx has joined #ipfs
zeden has quit [Quit: WeeChat 2.4]
DavidPH has quit [Ping timeout: 245 seconds]
clemo has joined #ipfs
dqx has quit [Remote host closed the connection]
dqx has joined #ipfs
mauz555 has joined #ipfs
craigo has quit [Read error: Connection reset by peer]
mauz555 has quit [Ping timeout: 246 seconds]
airwind has joined #ipfs
hsn has joined #ipfs
mauz555 has joined #ipfs
dongrappa has joined #ipfs
cxl000 has joined #ipfs
ylp has joined #ipfs
mauz555 has quit [Ping timeout: 276 seconds]
mauz555 has joined #ipfs
mauz555 has quit [Ping timeout: 246 seconds]
thexa4 has joined #ipfs
verin0x86 is now known as verin0x
mauz555 has joined #ipfs
mauz555 has quit [Read error: Connection reset by peer]
mauz555 has joined #ipfs
FreeHongKong has quit [Quit: WeeChat 2.3]
pecastro has joined #ipfs
vmx has joined #ipfs
noresult has quit [Ping timeout: 245 seconds]
noresult has joined #ipfs
cxl000 has quit [Ping timeout: 265 seconds]
clemo has quit [Ping timeout: 240 seconds]
dongrappa has quit [Ping timeout: 265 seconds]
cxl000 has joined #ipfs
cxl000 has quit [Ping timeout: 276 seconds]
rendar has joined #ipfs
dongrappa has joined #ipfs
polman has quit [Ping timeout: 245 seconds]
cxl000 has joined #ipfs
polman has joined #ipfs
ZaZ has joined #ipfs
<JCaesar> Is this what it looks like when someone keeps editing their messages on discord and they get pushed to irc and then to matrix? O_O
<JCaesar> wall of text…
<voker57> bridges must die
<JCaesar> editing messages must die.
<voker57> well it can live in discord
<JCaesar> I think it's generally a bad idea. Edits during and after reading, and the like…
<JCaesar> pusher (is that the nick or just the name of a bridge?): possible is maybe a bit of a strong word. You can't know what some node pinned. But you can listen to which hashes it announces and get those.
<JCaesar> But I'm not sure whether there's a good API or command to listen to "provides". Might be somewhere deep in the protocol.
<voker57> ipfs log tail
<voker57> that's what ipfs search does
<voker57> you probably need to run several nodes to get a good network coverage though
<JCaesar> If you only want to follow a specific set of nodes?
refpga has quit [Ping timeout: 246 seconds]
refpga has joined #ipfs
Soo_Slow has joined #ipfs
gfwbreaker has joined #ipfs
FreeHongKong has joined #ipfs
<voker57> I believe what announces you see in log tail depends on your DHT ID
<voker57> so whether specific or non specific nodes you have to control a wide-covering set of ids
mauz555 has quit [Remote host closed the connection]
mauz555 has joined #ipfs
clemo has joined #ipfs
seed0c[m] has joined #ipfs
malaclyps has quit [Read error: Connection reset by peer]
FreeHongKong has quit [Quit: WeeChat 2.3]
gfwbreaker has quit [Quit: WeeChat 2.3]
FreeHongKong has joined #ipfs
malaclyps has joined #ipfs
xcm has quit [Remote host closed the connection]
xcm has joined #ipfs
airwind has quit [Quit: airwind]
uniquerockrz has joined #ipfs
__jrjsmrtn__ has quit [Ping timeout: 246 seconds]
__jrjsmrtn__ has joined #ipfs
fjellfras has quit [Quit: Leaving]
mauz555 has quit []
astronavt has quit [Quit: ...]
astronavt has joined #ipfs
KempfCreative has joined #ipfs
deltab has quit [Ping timeout: 244 seconds]
toxync01 has quit [Ping timeout: 245 seconds]
toxync01- has joined #ipfs
ZaZ has quit [Read error: Connection reset by peer]
deltab has joined #ipfs
foxcpp has quit [Quit: Looks like my relay decided to commit suicide]
toxync01 has joined #ipfs
toxync01- has quit [Ping timeout: 265 seconds]
octav1a has joined #ipfs
toxync01 has quit [Excess Flood]
toxync01 has joined #ipfs
vmx has quit [Remote host closed the connection]
DavidPH has joined #ipfs
<CopenBra[m]> What are your favorite sites on IPFS
<CopenBra[m]> * What are your favorite sites on IPFS?
mrCyborg has joined #ipfs
<pusherDiscord[m]> uh they werent edits i just typed way too much
<pusherDiscord[m]> heh
<pusherDiscord[m]> because actually ipfs has no job management built in, and I've been developing my own job manager, and do you know what i discovered ˈt͡sɛːzaɐ̯? that ipfs should have a proper ipfs sync job manager built into it.. or at the very least support --read-timeout but it doesnt. I've written a variety of different solutions but none are practical. It feels like reinventing the wheel, when maybe ipfs should natively have
<pusherDiscord[m]> of accepting a list of ipfs hashes, and actually --auto-retry instead of just fail if a pin isnt available at the time of ipfs pin or ipfs add is run. it feels like an incomplete solution is all.
<pusherDiscord[m]> * because actually ipfs has no job management built in, and I've been developing my own job manager, and do you know what i discovered ˈt͡sɛːzaɐ̯? that ipfs should have a proper ipfs sync job manager built into it.. or at the very least support --read-timeout but it doesnt. I've written a variety of different solutions but none are practical. It feels like reinventing the wheel, when maybe ipfs should natively hav
<pusherDiscord[m]> way of accepting a list of ipfs hashes, and actually --auto-retry instead of just fail or infinitely hang if a pin isnt available at the time of ipfs pin or ipfs add is run. it feels like an incomplete solution is all.
<pusherDiscord[m]> hopefully that is a bit shorter for you to digest, apologise for the long post. 😛 i was at my wits end. I am maintainer of our rpi images and sync control mirror for a large ipfs blockchain and it just felt like job management is non existent, and I want to know what the best way to do it is all heheh
<jacopostanchi[m]> pusher (Discord): I suggest you to submit long posts on discuss.ipfs.io instead
<jacopostanchi[m]> Oops I figured my message may sound mean. Sorry
xcm has quit [Read error: Connection reset by peer]
xcm has joined #ipfs
<voker57> i suggest we ban malfunctioning discord bot
<CopenBra[m]> huh, permaweb.io has a discord bridge?
zeden has joined #ipfs
<pusherDiscord[m]> thats all right j, i am badgering on incessantly . but yeah seriously why is there no native job management in ipfs, it seems to me it could be better for handling large datasets, in my case i'd love to use ipfs-pack but found it quite unreliable, i manage a huge dataset and ipfs gateway with as many as 100 nodes or more and thousands of objects small and big, so it would be cool is all to have a proper set way to pin
<pusherDiscord[m]> large numbers of ipfs with a --read-timeout and an --auto-retry flag, apologies for long posts and if i have offended anyone from using discor
<pusherDiscord[m]> d
xelra has quit [Ping timeout: 240 seconds]
xelra has joined #ipfs
mindCrime__ has joined #ipfs
xelra has quit [Remote host closed the connection]
mindCrime_ has joined #ipfs
null1337 has quit [Ping timeout: 265 seconds]
xelra has joined #ipfs
null1337 has joined #ipfs
mindCrime__ has quit [Ping timeout: 265 seconds]
Acacia has quit [Remote host closed the connection]
KempfCreative has quit [Ping timeout: 246 seconds]
FreeHongKong has quit [Quit: WeeChat 2.3]
clemo has quit [Ping timeout: 276 seconds]
<achingbrain[m]> We're trying to shore up our release process - if you're building an app on top of js-IPFS and would like to join the Early Tester programme, please PR this doc: https://github.com/ipfs/js-ipfs/blob/master/doc/EARLY_TESTERS.md
<achingbrain[m]> There's a go-IPFS version here too: https://github.com/ipfs/go-ipfs/blob/master/docs/EARLY_TESTERS.md
KempfCreative has joined #ipfs
clemo has joined #ipfs
cp- has quit [Quit: Disappeared in a puff of smoke]
cp- has joined #ipfs
noresult has quit [Ping timeout: 240 seconds]
<daviddias[m]> achingbrain: here is a nice list of projects to ping https://github.com/ipfs/js-ipfs/issues/2359#issuecomment-531281790 about the EARLY_TESTERS Programme
<achingbrain[m]> Fab, thanks
<achingbrain[m]> Hopefully some of them are in here and composing PRs as I type
<achingbrain[m]> I mean, who wouldn't want to be on the early testers programme?
<achingbrain[m]> Tres exclusiv
MDude has quit [Ping timeout: 258 seconds]
zeden has quit [Quit: WeeChat 2.4]
zeden has joined #ipfs
MDude has joined #ipfs
ylp has quit [Quit: Leaving.]
DavidPH has quit [Remote host closed the connection]
<CopenBra[m]> How close are we to having web IPFS so that anybody who opens your IPFS files in their browser can help host it?
opal has quit [Ping timeout: 250 seconds]
KempfCreative has quit [Ping timeout: 276 seconds]
polman has quit [Ping timeout: 245 seconds]
opal has joined #ipfs
polman has joined #ipfs
Soo_Slow has quit [Remote host closed the connection]
<jacopostanchi[m]> Elon Satoshi We already have IPFS companion as a browser extension but it needs IPFS WebUI running in the background so we still have work to do in order to have a standalone IPFS browser. Besides, IPFS companion only resolves IPFS/IPNS scheme URLs in the URL bar and not directly in the HTML (for example <img src="ipfs://em8uZ9..." /> doesn't work).
<hsanjuan[m]> jacopostanchi: I think companion supports running an embedded js-ipfs node. It needs a go-ipfs daemon in the background otherwise, not WebUI (webUI is a website)
<jacopostanchi[m]> Ok thank you, sorry for my mistakes. Does js-ipfs keep the same private key when you close and reopen the browser though?
<CopenBra[m]> Can js-ipfs be embedded in a website and run in a browser by someone who doesn't have IPFS installed?
<jacopostanchi[m]> And js-ipfs can be used only on webpages that import its js file. Importing it on 2 different files creates 2 instances.
<jacopostanchi[m]> Elon Satoshi: yes, js-ipfs on the browser uses the WebRTC standard web API to implement p2p communication
<jacopostanchi[m]> You need a modern browser though
<CopenBra[m]> ooh, so how do I link to a file I shared on IPFS so that people who click on the link help host the file in their browser?
<ShokuninDiscord[> It needs a bunch of work
<ShokuninDiscord[> Theoretically you’d have a page with js ipfs and serve the hash of that file through that and have the visitors pin it
<jacopostanchi[m]> Elon Satoshi: you cannot make people seed tour file without their consent
<jacopostanchi[m]> Oh in fact maybe you can
<hsanjuan[m]> I'm not super familiar with how js-ipfs persists keys and things. I believe a website can launch or share an already running worker. lidel ?
<jacopostanchi[m]> hsanjuan (@hsanjuan:matrix.org): but wait up, the js node runs on the browser or on a node.js server?
<hsanjuan[m]> jacopostanchi: in the browser, as a worker
<jacopostanchi[m]> Oh clever
<jacopostanchi[m]> So the node isn't deleted when you change webpages
<CopenBra[m]> <jacopostanchi[m] "Elon Satoshi: you cannot make pe"> put "If you used the gateway link to access this website, you agree to hosting this site in your browser using js-ipfs while this page is open in your window" or something like that
<CopenBra[m]> or put a button to turn seeding on, but have it off by default, that would be the nicest thing to do
<jacopostanchi[m]> No I meant it's not technically possible, not legally, but I'm pretty sure I was wrong here
<CopenBra[m]> people load nonfree JS trackers without their consent (except in a huge, incomprehensible TOS that they agreed to without reading) all the time
<jacopostanchi[m]> The webworker running IPFS would be killed as soon as you close the browser so you can't make people seed for a long time
<jacopostanchi[m]> Legally I don't think there is a problem because storing data on the user's computer (localstorage, indexeddb) doesn't pose a problem as long as it's not cookies
<jacopostanchi[m]> You might argue that there is a difference between storing data and executing a program
<lidel> hsanjuan[m], js-ipfs embedded on a webpage stores keys and data in window.localStorage. this means different websites (Origins) will have separate repos/keys (good: isolation, bad: multiple instances, wasted resources)
<ShokuninDiscord[> You guys need to stop thinking about technology and start thinking about UX
<lidel> there are interesting explorations of leveraging workers to share a single instance across origins (without browser extension), ex. https://github.com/Gozala/lunet/ but we don't support that in upstream js-ipfs yet
<lidel> ShokuninDiscord[, yeah, guilty ;)
<ShokuninDiscord[> I didn’t mean your point actually hahaha, I meant the previous ones!
<ShokuninDiscord[> But yeah having a js node automatically do shit behind your back is the same UX as having a crypto miner do shit behind your back
KempfCreative has joined #ipfs
dongrappa has quit [Ping timeout: 276 seconds]
noresult has joined #ipfs
dongrappa has joined #ipfs
dongrappa has quit [Ping timeout: 276 seconds]
rendar has quit []
clemo has quit [Quit: clemo]
clemo has joined #ipfs
MDude has quit [Quit: Going offline, see ya! (www.adiirc.com)]
vroom has quit [Quit: Something went wrong!]
vroom has joined #ipfs
Huxley has quit [Ping timeout: 258 seconds]
dongrappa has joined #ipfs
dongrappa has quit [Ping timeout: 246 seconds]
Forkk has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
Forkk has joined #ipfs
Bertschneider[m] has joined #ipfs
zeden has quit [Quit: WeeChat 2.4]
zeden has joined #ipfs
adam123 has joined #ipfs
adam123 has quit [Remote host closed the connection]
merethan has joined #ipfs
mischat has joined #ipfs
MDude has joined #ipfs
snupples[m] has quit [Remote host closed the connection]
weeatbricks[m] has quit [Remote host closed the connection]
gunttedDiscord[m has quit [Remote host closed the connection]
atrolloc[m] has quit [Remote host closed the connection]
array[m] has quit [Remote host closed the connection]
Bertschneider[m] has quit [Remote host closed the connection]
travica[m] has quit [Remote host closed the connection]
seed0c[m] has quit [Remote host closed the connection]
grumble[m] has quit [Remote host closed the connection]
azk64[m] has quit [Remote host closed the connection]
Nomad[m]1 has quit [Remote host closed the connection]
pipex[m] has quit [Remote host closed the connection]
JackLund[m] has quit [Remote host closed the connection]
LuutheCoolDiscor has quit [Remote host closed the connection]
Kiesenverseist[m has quit [Remote host closed the connection]
M0x1e[m] has quit [Remote host closed the connection]
planetary_dev[m] has quit [Remote host closed the connection]
nldvos[m] has quit [Remote host closed the connection]
EmmatheEurobeatE has quit [Remote host closed the connection]
sl[m] has quit [Remote host closed the connection]
dryajov has quit [Remote host closed the connection]
olizilla[m] has quit [Remote host closed the connection]
ericronne[m] has quit [Remote host closed the connection]
notfirewall[m] has quit [Remote host closed the connection]
postables[m]1 has quit [Remote host closed the connection]
M_discord_507475 has quit [Write error: Connection reset by peer]
neilDiscord[m] has quit [Write error: Connection reset by peer]
ivanDiscord[m] has quit [Remote host closed the connection]
CantiTurtleCoinD has quit [Remote host closed the connection]
cristobalDiscord has quit [Remote host closed the connection]
GeorgeX2798[m] has quit [Remote host closed the connection]
DrDeFacto[m] has quit [Read error: Connection reset by peer]
alilinuxAboShana has quit [Read error: Connection reset by peer]
aaron[m]3 has quit [Write error: Connection reset by peer]
Methos[m] has quit [Write error: Connection reset by peer]
priom[m] has quit [Write error: Connection reset by peer]
JaoheahDiscord[m has quit [Write error: Connection reset by peer]
ookfof[m] has quit [Write error: Connection reset by peer]
Half-Shot has quit [Write error: Connection reset by peer]
Swedneck has quit [Write error: Connection reset by peer]
jacopostanchi[m] has quit [Read error: Connection reset by peer]
howitz3r[m] has quit [Read error: Connection reset by peer]
megadogberthehi4 has quit [Read error: Connection reset by peer]
unclechu has quit [Write error: Connection reset by peer]
boturl4r[m] has quit [Read error: Connection reset by peer]
l^discord[m]1 has quit [Read error: Connection reset by peer]
omichalek[m] has quit [Read error: Connection reset by peer]
arinholmes[m] has quit [Read error: Connection reset by peer]
johnlong[m] has quit [Write error: Connection reset by peer]
Ericson2314 has quit [Read error: Connection reset by peer]
GitterIntegratio has quit [Write error: Connection reset by peer]
midi[m] has quit [Write error: Connection reset by peer]
Neuromancer[m] has quit [Remote host closed the connection]
justbibibi[m] has quit [Remote host closed the connection]
Slacktoid has quit [Read error: Connection reset by peer]
Emile[m] has quit [Remote host closed the connection]
dynodetk[m] has quit [Read error: Connection reset by peer]
hazegrey[m] has quit [Read error: Connection reset by peer]
mntr0[m] has quit [Write error: Connection reset by peer]
Seb[m]2 has quit [Read error: Connection reset by peer]
mattcDiscord[m] has quit [Write error: Connection reset by peer]
sblinnDiscord[m] has quit [Write error: Connection reset by peer]
TravisJames[m] has quit [Write error: Connection reset by peer]
thatguyDiscord[m has quit [Write error: Connection reset by peer]
rasmuserik[m] has quit [Read error: Connection reset by peer]
petzah[m] has quit [Read error: Connection reset by peer]
mburns[m] has quit [Write error: Connection reset by peer]
chanpoyu[m] has quit [Write error: Connection reset by peer]
braditzDiscord[4 has quit [Write error: Connection reset by peer]
bayaojiu[m] has quit [Write error: Connection reset by peer]
fexra|TRTLDiscor has quit [Write error: Connection reset by peer]
SchwartzDiscord[ has quit [Write error: Connection reset by peer]
white_bluff[m] has quit [Read error: Connection reset by peer]
wcharginDiscord[ has quit [Read error: Connection reset by peer]
Giovanni[m] has quit [Read error: Connection reset by peer]
Valium[m]1 has quit [Write error: Connection reset by peer]
i5heu[m] has quit [Read error: Connection reset by peer]
mistermonster[m] has quit [Write error: Connection reset by peer]
said[m] has quit [Write error: Connection reset by peer]
Dave[m]6 has quit [Write error: Connection reset by peer]
fujexo[m] has quit [Write error: Connection reset by peer]
Quasdio[m] has quit [Read error: Connection reset by peer]
gleeballs[m] has quit [Read error: Connection reset by peer]
Caleb[m] has quit [Read error: Connection reset by peer]
M11112[m] has quit [Write error: Connection reset by peer]
modigDiscord[m] has quit [Write error: Connection reset by peer]
AblibuDiscord[m] has quit [Write error: Connection reset by peer]
astrojl_matrix has quit [Write error: Connection reset by peer]
Lutices[m] has quit [Write error: Connection reset by peer]
jayw[m] has quit [Read error: Connection reset by peer]
Elo[m] has quit [Read error: Connection reset by peer]
chmanieDiscord[4 has quit [Read error: Connection reset by peer]
sfromentDiscord[ has quit [Remote host closed the connection]
carsonfarmerDisc has quit [Read error: Connection reset by peer]
Steff[m] has quit [Read error: Connection reset by peer]
kanej[m]1 has quit [Read error: Connection reset by peer]
OlegStotskyDisco has quit [Read error: Connection reset by peer]
leoalvarezh[m] has quit [Read error: Connection reset by peer]
gnunicornDiscord has quit [Read error: Connection reset by peer]
Noah[m] has quit [Read error: Connection reset by peer]
ingo[m] has quit [Read error: Connection reset by peer]
new0neDiscord[m] has quit [Read error: Connection reset by peer]
weareswarmcity[m has quit [Read error: Connection reset by peer]
AXEL-BrianDiscor has quit [Read error: Connection reset by peer]
cyberwolf[m] has quit [Write error: Connection reset by peer]
Jonwel[m] has quit [Read error: Connection reset by peer]
RockSteadyTRTLDi has quit [Read error: Connection reset by peer]
nyarlathotepDisc has quit [Read error: Connection reset by peer]
graceful_luv[m] has quit [Read error: Connection reset by peer]
davidar[m] has quit [Remote host closed the connection]
kiwi_uk[m] has quit [Read error: Connection reset by peer]
gfelbing[m] has quit [Read error: Connection reset by peer]
modig[m] has quit [Read error: Connection reset by peer]
bitspillDiscord[ has quit [Read error: Connection reset by peer]
philipp[m] has quit [Read error: Connection reset by peer]
TeeCee has quit [Read error: Connection reset by peer]
tompa[m] has quit [Read error: Connection reset by peer]
l^discordDiscord has quit [Read error: Connection reset by peer]
jenncloudDiscord has quit [Read error: Connection reset by peer]
JCaesar has quit [Remote host closed the connection]
gharbeia[m] has quit [Read error: Connection reset by peer]
linus[m] has quit [Read error: Connection reset by peer]
Jtremback[m] has quit [Remote host closed the connection]
ibit[m]1 has quit [Read error: Connection reset by peer]
Bads3ctor9700[m] has quit [Read error: Connection reset by peer]
DioBrandonDiscor has quit [Read error: Connection reset by peer]
ArunDiscord[m] has quit [Read error: Connection reset by peer]
macerbiDiscord[m has quit [Read error: Connection reset by peer]
catman[m] has quit [Read error: Connection reset by peer]
lapav[m] has quit [Read error: Connection reset by peer]
guigouz has quit [Read error: Connection reset by peer]
aleDiscord[m] has quit [Read error: Connection reset by peer]
XierumengDiscord has quit [Read error: Connection reset by peer]
codynhatDiscord[ has quit [Read error: Connection reset by peer]
sblinn[m] has quit [Remote host closed the connection]
crest[m] has quit [Remote host closed the connection]
RyonezCoruscareD has quit [Read error: Connection reset by peer]
djdv[m] has quit [Read error: Connection reset by peer]
swedneck[GMT1]Di has quit [Read error: Connection reset by peer]
ngamboaDiscord[m has quit [Read error: Connection reset by peer]
lordpipe has quit [Read error: Connection reset by peer]
enricomarinoDisc has quit [Read error: Connection reset by peer]
jamiedubsDiscord has quit [Read error: Connection reset by peer]
card[m]1 has quit [Read error: Connection reset by peer]
h2Discord[m] has quit [Read error: Connection reset by peer]
id[m] has quit [Read error: Connection reset by peer]
emceeaich[m] has quit [Read error: Connection reset by peer]
lck[m] has quit [Read error: Connection reset by peer]
test[m]3 has quit [Read error: Connection reset by peer]
SirMemesALotDisc has quit [Remote host closed the connection]
cristobal7524[m] has quit [Remote host closed the connection]
OxyDiscord[m] has quit [Remote host closed the connection]
ZerataX has quit [Read error: Connection reset by peer]
Lilz|BetaMeDisco has quit [Remote host closed the connection]
jazzy-jeff^_^[m] has quit [Write error: Connection reset by peer]
pusherDiscord[m] has quit [Write error: Connection reset by peer]
koalalorenzoDisc has quit [Write error: Connection reset by peer]
sanjay[m] has quit [Write error: Connection reset by peer]
truth[m] has quit [Write error: Connection reset by peer]
zcopleyDiscord[m has quit [Read error: Connection reset by peer]
test123Discord[m has quit [Read error: Connection reset by peer]
sjkelly[m] has quit [Read error: Connection reset by peer]
chmanieDiscord[m has quit [Read error: Connection reset by peer]
magnetist[m] has quit [Read error: Connection reset by peer]
aphelionzDiscord has quit [Read error: Connection reset by peer]
nudin[m] has quit [Read error: Connection reset by peer]
fridim[m] has quit [Read error: Connection reset by peer]
NatoBoram[m]1 has quit [Read error: Connection reset by peer]
jcgruenhage has quit [Read error: Connection reset by peer]
camb[m] has quit [Read error: Connection reset by peer]
brancengregory[m has quit [Read error: Connection reset by peer]
shadow53[m] has quit [Remote host closed the connection]
NatoBoram[m]2 has quit [Remote host closed the connection]
lab8916100448256 has quit [Read error: Connection reset by peer]
thechiefmeat[m] has quit [Read error: Connection reset by peer]
Marcin[m] has quit [Read error: Connection reset by peer]
cryptobiotik[m] has quit [Read error: Connection reset by peer]
hans[m]8 has quit [Read error: Connection reset by peer]
mt[m] has quit [Write error: Connection reset by peer]
aeddi has quit [Read error: Connection reset by peer]
Fns[m] has quit [Write error: Connection reset by peer]
bennofs[m] has quit [Write error: Connection reset by peer]
ist5shreawf[m] has quit [Write error: Connection reset by peer]
cesar[m] has quit [Write error: Connection reset by peer]
marsan27[m] has quit [Read error: Connection reset by peer]
alex[m]2 has quit [Write error: Connection reset by peer]
Swedneck1 has quit [Read error: Connection reset by peer]
DanP[m] has quit [Write error: Connection reset by peer]
Zedwick[m] has quit [Remote host closed the connection]
jeffcasavant[m] has quit [Write error: Connection reset by peer]
SweatDiscord[m] has quit [Remote host closed the connection]
r20190723[m] has quit [Write error: Connection reset by peer]
millysoose[m] has quit [Write error: Connection reset by peer]
mav137[m] has quit [Remote host closed the connection]
Ablibu[m] has quit [Remote host closed the connection]
Orkun[m] has quit [Remote host closed the connection]
MMJD-Wst[m] has quit [Write error: Connection reset by peer]
kungfooman[m] has quit [Write error: Connection reset by peer]
Marolar[m] has quit [Write error: Connection reset by peer]
zoink92Discord[m has quit [Write error: Connection reset by peer]
LeFDiscord[m] has quit [Write error: Connection reset by peer]
kevinbird15Disco has quit [Read error: Connection reset by peer]
ndarwincorn has quit [Write error: Connection reset by peer]
sumner[m] has quit [Remote host closed the connection]
MindlessTux[m] has quit [Read error: Connection reset by peer]
delta[m]1 has quit [Read error: Connection reset by peer]
ad5twoknebor[m] has quit [Write error: Connection reset by peer]
rainlake[m] has quit [Write error: Connection reset by peer]
mvalente[m]1 has quit [Write error: Connection reset by peer]
Magik6k has quit [Write error: Connection reset by peer]
lanzafame1 has quit [Write error: Connection reset by peer]
HQiiii[m] has quit [Write error: Connection reset by peer]
ddahlDiscord[m] has quit [Write error: Connection reset by peer]
cristobalDiscor4 has quit [Write error: Connection reset by peer]
SteffDiscord[m] has quit [Write error: Connection reset by peer]
bekoDiscord[m] has quit [Write error: Connection reset by peer]
vchernin[m] has quit [Remote host closed the connection]
Romain[m]1 has quit [Remote host closed the connection]
averyy[m] has quit [Remote host closed the connection]
akt[m] has quit [Remote host closed the connection]
brianbland[m] has quit [Remote host closed the connection]
JeanDiscord[m] has quit [Write error: Connection reset by peer]
enum[m] has quit [Write error: Connection reset by peer]
KubeWorshipperDi has quit [Write error: Connection reset by peer]
Iroh[m] has quit [Write error: Connection reset by peer]
mrdrdz[m] has quit [Write error: Connection reset by peer]
Klara[m] has quit [Write error: Connection reset by peer]
xiphiness[m] has quit [Remote host closed the connection]
intrus[m] has quit [Write error: Connection reset by peer]
franc1s has quit [Write error: Connection reset by peer]
janttoDiscord[m] has quit [Remote host closed the connection]
abhi_Discord[m] has quit [Remote host closed the connection]
lauren|Microspon has quit [Remote host closed the connection]
KeegenDiscord[m] has quit [Remote host closed the connection]
x6a[m] has quit [Write error: Connection reset by peer]
n3niu[m] has quit [Write error: Connection reset by peer]
martijnsch[m] has quit [Write error: Connection reset by peer]
tsyn[m] has quit [Write error: Connection reset by peer]
noonereally[m] has quit [Write error: Connection reset by peer]
neurocis|piggy-c has quit [Write error: Connection reset by peer]
llleo[m] has quit [Write error: Connection reset by peer]
ladrl[m] has quit [Write error: Connection reset by peer]
jwkt[m] has quit [Write error: Connection reset by peer]
inkspread[m] has quit [Write error: Connection reset by peer]
electric[m] has quit [Write error: Connection reset by peer]
cannondrumflower has quit [Write error: Connection reset by peer]
dtz has quit [Write error: Connection reset by peer]
brainbubble[m] has quit [Write error: Connection reset by peer]
Dan[m] has quit [Write error: Connection reset by peer]
auhau[m]1 has quit [Write error: Connection reset by peer]
Tillthecoyote[m] has quit [Write error: Connection reset by peer]
yabirgb-m has quit [Write error: Connection reset by peer]
luigi[m] has quit [Write error: Connection reset by peer]
sprayDiscord[m] has quit [Write error: Connection reset by peer]
DamirDiscord[m] has quit [Write error: Connection reset by peer]
CryptoEmpressDis has quit [Write error: Connection reset by peer]
shimakaze[m] has quit [Write error: Connection reset by peer]
Us[m] has quit [Write error: Connection reset by peer]
dhenzDiscord[m] has quit [Write error: Connection reset by peer]
KYZITEMELOS93Dis has quit [Write error: Connection reset by peer]
iiogamaDiscord[m has quit [Write error: Connection reset by peer]
ShadowLingDiscor has quit [Write error: Connection reset by peer]
DiscordRSSDiscor has quit [Write error: Connection reset by peer]
peterk[m] has quit [Write error: Connection reset by peer]
M4eek[m] has quit [Write error: Connection reset by peer]
Lostfile[m] has quit [Write error: Connection reset by peer]
OboDiscord[m] has quit [Write error: Connection reset by peer]
ValiumDiscord[m] has quit [Write error: Connection reset by peer]
skillman623Disco has quit [Write error: Connection reset by peer]
NebulousDiscord[ has quit [Write error: Connection reset by peer]
JustMaier[m]1 has quit [Remote host closed the connection]
dar[m] has quit [Remote host closed the connection]
Alin[m] has quit [Write error: Connection reset by peer]
DokterBob has quit [Read error: Connection reset by peer]
BifrostBot[m] has quit [Write error: Connection reset by peer]
wrunt[m] has quit [Write error: Connection reset by peer]
RaphaelLullis[m] has quit [Write error: Connection reset by peer]
tragique[m] has quit [Write error: Connection reset by peer]
hamechi[m] has quit [Write error: Connection reset by peer]
MV[m] has quit [Write error: Connection reset by peer]
Godel[m] has quit [Write error: Connection reset by peer]
hjoest[m] has quit [Write error: Connection reset by peer]
arturo[m] has quit [Write error: Connection reset by peer]
hr[m] has quit [Write error: Connection reset by peer]
betz[m]2 has quit [Write error: Connection reset by peer]
amb007[m] has quit [Write error: Connection reset by peer]
amongstclouds[m] has quit [Write error: Connection reset by peer]
chris-g[m] has quit [Write error: Connection reset by peer]
makeworld has quit [Write error: Connection reset by peer]
yangm has quit [Write error: Connection reset by peer]
vexlDiscord[m] has quit [Write error: Connection reset by peer]
jklepatchDiscord has quit [Write error: Connection reset by peer]
placer14Discord[ has quit [Write error: Connection reset by peer]
KinnardDiscord[4 has quit [Write error: Connection reset by peer]
prtfwDiscord[m] has quit [Write error: Connection reset by peer]
celsoDiscord[m] has quit [Write error: Connection reset by peer]
RomaricDiscord[m has quit [Write error: Connection reset by peer]
jwheelerDiscord[ has quit [Write error: Connection reset by peer]
Dby0Discord[m] has quit [Write error: Connection reset by peer]
catmanDiscord[m] has quit [Write error: Connection reset by peer]
cwchristerwDisco has quit [Write error: Connection reset by peer]
hyde__Discord[m] has quit [Write error: Connection reset by peer]
M5310Discord[m] has quit [Write error: Connection reset by peer]
sekiDiscord[m] has quit [Write error: Connection reset by peer]
AuHauDiscord[m] has quit [Write error: Connection reset by peer]
JordanKrageDisco has quit [Write error: Connection reset by peer]
dillonDiscord[m] has quit [Write error: Connection reset by peer]
npfossDiscord[m] has quit [Write error: Connection reset by peer]
h4314[m] has quit [Write error: Connection reset by peer]
RaymondFoley[m] has quit [Write error: Connection reset by peer]
te0d[m] has quit [Write error: Connection reset by peer]
memorythought has quit [Write error: Connection reset by peer]
ZeugeIotas[m] has quit [Write error: Connection reset by peer]
greenLion[m] has quit [Write error: Connection reset by peer]
c090178[m] has quit [Write error: Connection reset by peer]
Heystein[m] has quit [Write error: Connection reset by peer]
benaszab[m] has quit [Write error: Connection reset by peer]
EdgarBlazhevich[ has quit [Write error: Connection reset by peer]
jimt[m] has quit [Write error: Connection reset by peer]
TionisNagir[m] has quit [Write error: Connection reset by peer]
neonfuz2 has quit [Write error: Connection reset by peer]
warlock29a[m] has quit [Write error: Connection reset by peer]
zok[m] has quit [Write error: Connection reset by peer]
Trump[m] has quit [Write error: Connection reset by peer]
tom[m]2 has quit [Write error: Connection reset by peer]
wviana[m] has quit [Write error: Connection reset by peer]
xcesiv[m] has quit [Write error: Connection reset by peer]
ruijanlee[m] has quit [Write error: Connection reset by peer]
soren-rademacher has quit [Write error: Connection reset by peer]
netshroom[m] has quit [Write error: Connection reset by peer]
Saracen[m] has quit [Write error: Connection reset by peer]
msmart[m] has quit [Write error: Connection reset by peer]
ioiottt[m] has quit [Write error: Connection reset by peer]
hoijui[m] has quit [Write error: Connection reset by peer]
leer10matrixorg[ has quit [Write error: Connection reset by peer]
Leer10[m] has quit [Write error: Connection reset by peer]
hamb_urglar[m] has quit [Write error: Connection reset by peer]
fti7[m] has quit [Write error: Connection reset by peer]
Deviousway[m] has quit [Write error: Connection reset by peer]
denko32133[m] has quit [Write error: Connection reset by peer]
cybercat[m] has quit [Write error: Connection reset by peer]
aleksssboss157[m has quit [Write error: Connection reset by peer]
abueide[m] has quit [Write error: Connection reset by peer]
AlexanderK[m] has quit [Write error: Connection reset by peer]
carsonfarmer[m]1 has quit [Write error: Connection reset by peer]
swedneckswedneck has quit [Write error: Connection reset by peer]
snap[m] has quit [Write error: Connection reset by peer]
l^discord4314[m] has quit [Write error: Connection reset by peer]
jamiedubs[m]1 has quit [Write error: Connection reset by peer]
Tbi[m] has quit [Write error: Connection reset by peer]
Mira[m] has quit [Remote host closed the connection]
fcgreg[m] has quit [Remote host closed the connection]
equbit has quit [Remote host closed the connection]
samamy[m] has quit [Remote host closed the connection]
wowaname has quit [Read error: Connection reset by peer]
katakotoDiscord[ has quit [Read error: Connection reset by peer]
olizillaDiscord[ has quit [Read error: Connection reset by peer]
ozymandia5[m] has quit [Read error: Connection reset by peer]
pietervdvn[m] has quit [Read error: Connection reset by peer]
ghastfilms[m] has quit [Read error: Connection reset by peer]
Neo[m]3 has quit [Read error: Connection reset by peer]
deepitmatrixorg[ has quit [Read error: Connection reset by peer]
BeatRupp[m] has quit [Read error: Connection reset by peer]
albuic has quit [Read error: Connection reset by peer]
roadt[m] has quit [Read error: Connection reset by peer]
Technoquake has quit [Read error: Connection reset by peer]
iodine[m] has quit [Read error: Connection reset by peer]
test21562[m] has quit [Read error: Connection reset by peer]
freddor has quit [Read error: Connection reset by peer]
kausthubhak[m] has quit [Read error: Connection reset by peer]
ErCiccione[m] has quit [Read error: Connection reset by peer]
sbpDiscord[m] has quit [Read error: Connection reset by peer]
pps96Discord[m] has quit [Read error: Connection reset by peer]
thomasDiscord[m] has quit [Read error: Connection reset by peer]
kanejDiscord[m] has quit [Read error: Connection reset by peer]
goozlez[m] has quit [Read error: Connection reset by peer]
allgoDiscord[m] has quit [Read error: Connection reset by peer]
justyns[m] has quit [Read error: Connection reset by peer]
KinnardDiscord[7 has quit [Read error: Connection reset by peer]
godparticleDisco has quit [Read error: Connection reset by peer]
LokeLDiscord[m] has quit [Read error: Connection reset by peer]
rovdyl[m] has quit [Read error: Connection reset by peer]
maigel[m] has quit [Read error: Connection reset by peer]
DiscordBridge[m4 has quit [Read error: Connection reset by peer]
mmausler[m] has quit [Read error: Connection reset by peer]
KirillTaran[m] has quit [Write error: Connection reset by peer]
qlhhym[m] has quit [Read error: Connection reset by peer]
clarkenciel[m] has quit [Read error: Connection reset by peer]
eshohetDiscord[m has quit [Read error: Connection reset by peer]
robinzzzDiscord[ has quit [Read error: Connection reset by peer]
tobowersDiscord[ has quit [Read error: Connection reset by peer]
RDeckardDiscord4 has quit [Read error: Connection reset by peer]
gate32[m] has quit [Remote host closed the connection]
johanhermanDisco has quit [Read error: Connection reset by peer]
raumji[m] has quit [Read error: Connection reset by peer]
atpotts has quit [Read error: Connection reset by peer]
boytemp1[m] has quit [Read error: Connection reset by peer]
andrewcrow[m] has quit [Read error: Connection reset by peer]
void001[m] has quit [Read error: Connection reset by peer]
BossMAN[m] has quit [Read error: Connection reset by peer]
benaszabDiscord[ has quit [Read error: Connection reset by peer]
hvergaraDiscord[ has quit [Read error: Connection reset by peer]
rib[m] has quit [Remote host closed the connection]
pydera[m] has quit [Remote host closed the connection]
piajesse[m]1 has quit [Remote host closed the connection]
Julian[m]2 has quit [Remote host closed the connection]
pytlin2718[m] has quit [Remote host closed the connection]
techbolt has quit [Read error: Connection reset by peer]
LordFenixNC[m] has quit [Remote host closed the connection]
JungleHeart[m] has quit [Remote host closed the connection]
ZedDiscord[m] has quit [Read error: Connection reset by peer]
ryan[m] has quit [Read error: Connection reset by peer]
sekiDiscord[m]1 has quit [Read error: Connection reset by peer]
GiyomuDiscord[m] has quit [Read error: Connection reset by peer]
gorhgorhDiscord[ has quit [Read error: Connection reset by peer]
aschmahmann[m] has quit [Remote host closed the connection]
igel[m] has quit [Remote host closed the connection]
contrun[m] has quit [Read error: Connection reset by peer]
chinsuDiscord[m] has quit [Read error: Connection reset by peer]
EdmundM[m] has quit [Read error: Connection reset by peer]
timokau[m] has quit [Read error: Connection reset by peer]
buggeas40d[m] has quit [Read error: Connection reset by peer]
parasite[m] has quit [Remote host closed the connection]
TheILlKiD[m] has quit [Remote host closed the connection]
Manu[m] has quit [Remote host closed the connection]
kishansagathiya[ has quit [Read error: Connection reset by peer]
sev42[m] has quit [Read error: Connection reset by peer]
loxleo[m] has quit [Read error: Connection reset by peer]
zero[m] has quit [Read error: Connection reset by peer]
flip[m] has quit [Read error: Connection reset by peer]
althaser has quit [Read error: Connection reset by peer]
lihui[m] has quit [Read error: Connection reset by peer]
mayel[m]1 has quit [Read error: Connection reset by peer]
suger[m] has quit [Read error: Connection reset by peer]
jojobyte[m] has quit [Read error: Connection reset by peer]
xavivives[m] has quit [Read error: Connection reset by peer]
iarp[m] has quit [Read error: Connection reset by peer]
mrtrooper[m] has quit [Write error: Connection reset by peer]
NicolasLeGland[m has quit [Read error: Connection reset by peer]
alxev[m] has quit [Read error: Connection reset by peer]
turt2live has quit [Read error: Connection reset by peer]
yaksbeard[m]1 has quit [Read error: Connection reset by peer]
ryu5t[m] has quit [Remote host closed the connection]
humanwire[m] has quit [Read error: Connection reset by peer]
Luna14Discord[m] has quit [Read error: Connection reset by peer]
tangoDiscord[m] has quit [Read error: Connection reset by peer]
AtiqDiscord[m] has quit [Read error: Connection reset by peer]
James|ColonyDisc has quit [Read error: Connection reset by peer]
neo_penguin has quit [Read error: Connection reset by peer]
koalalorenzo[m]1 has quit [Read error: Connection reset by peer]
CarboClanCDiscor has quit [Read error: Connection reset by peer]
mkg20001 has quit [Read error: Connection reset by peer]
lyonDiscord[m] has quit [Read error: Connection reset by peer]
kyb[m] has quit [Read error: Connection reset by peer]
khanson[m] has quit [Read error: Connection reset by peer]
micah_l[m] has quit [Read error: Connection reset by peer]
ColinG[m] has quit [Read error: Connection reset by peer]
Naughtylus[m]1 has quit [Read error: Connection reset by peer]
dyskon[m] has quit [Read error: Connection reset by peer]
defnofdumb[m] has quit [Read error: Connection reset by peer]
mikealDiscord[m] has quit [Read error: Connection reset by peer]
ShokuninDiscord[ has quit [Read error: Connection reset by peer]
p1fan8[m] has quit [Read error: Connection reset by peer]
hElpmomey[m] has quit [Read error: Connection reset by peer]
Pamileisson2582[ has quit [Read error: Connection reset by peer]
greg[m]1 has quit [Read error: Connection reset by peer]
bushido711Discor has quit [Read error: Connection reset by peer]
dy5es41Discord[m has quit [Read error: Connection reset by peer]
Kisulken[m]1 has quit [Read error: Connection reset by peer]
rittmeDiscord[m] has quit [Read error: Connection reset by peer]
ScottSmileyDisco has quit [Read error: Connection reset by peer]
fozzieDiscord[m] has quit [Read error: Connection reset by peer]
ryco117[m] has quit [Read error: Connection reset by peer]
User[m]2 has quit [Read error: Connection reset by peer]
KisulkenDiscord[ has quit [Read error: Connection reset by peer]
rappelDiscord[m] has quit [Read error: Connection reset by peer]
tom85Discord[m] has quit [Read error: Connection reset by peer]
aswiththewildDis has quit [Read error: Connection reset by peer]
TryptophanDiscor has quit [Remote host closed the connection]
M[AXEL]DarrDisco has quit [Remote host closed the connection]
Swedneck2 has quit [Remote host closed the connection]
dude[m]1 has quit [Read error: Connection reset by peer]
marcocastignoliD has quit [Read error: Connection reset by peer]
ilee[m] has quit [Read error: Connection reset by peer]
eren[m] has quit [Read error: Connection reset by peer]
Standa[m] has quit [Read error: Connection reset by peer]
hlon[m] has quit [Read error: Connection reset by peer]
RDeckardDiscord[ has quit [Read error: Connection reset by peer]
fmidq[m] has quit [Read error: Connection reset by peer]
jamiedubs[m] has quit [Read error: Connection reset by peer]
MisterGore[m] has quit [Read error: Connection reset by peer]
BROWN[m] has quit [Read error: Connection reset by peer]
lililashka[m] has quit [Read error: Connection reset by peer]
postablesDiscord has quit [Read error: Connection reset by peer]
drshamoonDiscord has quit [Read error: Connection reset by peer]
MatthDiscord[m] has quit [Read error: Connection reset by peer]
brewskiDiscord[m has quit [Read error: Connection reset by peer]
theorangepotato[ has quit [Read error: Connection reset by peer]
competentcuttlef has quit [Remote host closed the connection]
ShruthiDiscord[m has quit [Remote host closed the connection]
TionisDiscord[m] has quit [Remote host closed the connection]
cabalcorp[m] has quit [Remote host closed the connection]
CathyLDiscord[m] has quit [Read error: Connection reset by peer]
mewtrino has quit [Remote host closed the connection]
phi-at-qgr has quit [Read error: Connection reset by peer]
Abraxas[m] has quit [Read error: Connection reset by peer]
r0kk3rz[m] has quit [Remote host closed the connection]
petersjt014[m] has quit [Read error: Connection reset by peer]
mattc[m] has quit [Read error: Connection reset by peer]
themsay[m] has quit [Write error: Connection reset by peer]
graylan[m] has quit [Read error: Connection reset by peer]
longyap[m] has quit [Read error: Connection reset by peer]
west23[m] has quit [Read error: Connection reset by peer]
paulus[m] has quit [Read error: Connection reset by peer]
chadlupkes[m] has quit [Read error: Connection reset by peer]
wobbol[m] has quit [Read error: Connection reset by peer]
Dude[m] has quit [Write error: Connection reset by peer]
anomie[m] has quit [Read error: Connection reset by peer]
matias[m] has quit [Read error: Connection reset by peer]
fiddeldibu[m] has quit [Read error: Connection reset by peer]
edrex has quit [Read error: Connection reset by peer]
zwelsternDiscord has quit [Read error: Connection reset by peer]
Matthew[m] has quit [Read error: Connection reset by peer]
herronjo[m] has quit [Read error: Connection reset by peer]
chrismoos[m] has quit [Remote host closed the connection]
raku[m] has quit [Write error: Connection reset by peer]
deva[m] has quit [Write error: Connection reset by peer]
moritonal[m] has quit [Read error: Connection reset by peer]
dazai[m] has quit [Read error: Connection reset by peer]
dcallagh has quit [Write error: Connection reset by peer]
dumuzid[m] has quit [Write error: Connection reset by peer]
stebalien has quit [Read error: Connection reset by peer]
smartsammler[m] has quit [Write error: Connection reset by peer]
Clment[m] has quit [Read error: Connection reset by peer]
shokunin has quit [Read error: Connection reset by peer]
opal[m] has quit [Read error: Connection reset by peer]
edd[m] has quit [Write error: Connection reset by peer]
peddie has quit [Write error: Connection reset by peer]
MagnusSvensson[m has quit [Write error: Connection reset by peer]
dennwc[m] has quit [Read error: Connection reset by peer]
Gabriel[Matrix] has quit [Remote host closed the connection]
nocent9720[m] has quit [Write error: Connection reset by peer]
zazikiDiscord[m] has quit [Write error: Connection reset by peer]
PopeRigby[m]1 has quit [Write error: Connection reset by peer]
Mugichka[m] has quit [Write error: Connection reset by peer]
yoongster[m] has quit [Write error: Connection reset by peer]
maht0rz[m] has quit [Write error: Connection reset by peer]
ljmf00[m] has quit [Write error: Connection reset by peer]
Ichbinjoe has quit [Write error: Connection reset by peer]
jeannemadeline[m has quit [Write error: Connection reset by peer]
gCalf[m] has quit [Write error: Connection reset by peer]
fdf[m] has quit [Write error: Connection reset by peer]
GelvenDiscord[m] has quit [Read error: Connection reset by peer]
Quiark has quit [Read error: Connection reset by peer]
dElAvA_matrix has quit [Remote host closed the connection]
fimfx[m] has quit [Remote host closed the connection]
froid[m] has quit [Remote host closed the connection]
xbwpc[m] has quit [Remote host closed the connection]
leps[m] has quit [Remote host closed the connection]
limace255[m] has quit [Remote host closed the connection]
dharwin[m] has quit [Remote host closed the connection]
ghostfire51[m] has quit [Remote host closed the connection]
neotryptophan[m] has quit [Remote host closed the connection]
BaBa[m] has quit [Remote host closed the connection]
tyx2q[m] has quit [Read error: Connection reset by peer]
cawal[m] has quit [Read error: Connection reset by peer]
extrabrave[m] has quit [Remote host closed the connection]
MatrixBridgeswed has quit [Remote host closed the connection]
Stephen304[m] has quit [Read error: Connection reset by peer]
zegordo[m] has quit [Remote host closed the connection]
carson[m] has quit [Remote host closed the connection]
achingbrain[m] has quit [Remote host closed the connection]
geriatricjacob[m has quit [Remote host closed the connection]
nyarlathotep[m] has quit [Remote host closed the connection]
HeavyMetal[m] has quit [Read error: Connection reset by peer]
Dreamland[m] has quit [Remote host closed the connection]
michaelrao[m] has quit [Remote host closed the connection]
modul8[m] has quit [Write error: Connection reset by peer]
cryptolake[m] has quit [Write error: Connection reset by peer]
killswitch[m] has quit [Remote host closed the connection]
jcnmark6[m]1 has quit [Read error: Connection reset by peer]
eyenx[m] has quit [Read error: Connection reset by peer]
alphard[m] has quit [Write error: Connection reset by peer]
saklas[m] has quit [Read error: Connection reset by peer]
BossMANDiscord[m has quit [Remote host closed the connection]
M011000100111010 has quit [Remote host closed the connection]
JayWelshDiscord[ has quit [Remote host closed the connection]
grvhi[m] has quit [Remote host closed the connection]
jump_spider has quit [Write error: Connection reset by peer]
NetluxeTV[m] has quit [Read error: Connection reset by peer]
Swedneck3 has quit [Write error: Connection reset by peer]
cmkat[m] has quit [Read error: Connection reset by peer]
combray[m] has quit [Read error: Connection reset by peer]
instagateur[m] has quit [Read error: Connection reset by peer]
HeishDiscord[m] has quit [Read error: Connection reset by peer]
baluptonDiscord[ has quit [Read error: Connection reset by peer]
manfredDiscord[m has quit [Read error: Connection reset by peer]
realChainDiscord has quit [Read error: Connection reset by peer]
AkshayDiscord[m] has quit [Read error: Connection reset by peer]
KubeDiscord[m] has quit [Read error: Connection reset by peer]
jgmDiscord[m] has quit [Read error: Connection reset by peer]
GuillaumeDiscord has quit [Read error: Connection reset by peer]
crestDiscord[m] has quit [Read error: Connection reset by peer]
KarlDiscord[m] has quit [Read error: Connection reset by peer]
SuikaDiscord[m] has quit [Read error: Connection reset by peer]
nijynotDiscord[m has quit [Read error: Connection reset by peer]
standard[m] has quit [Read error: Connection reset by peer]
nilocDiscord[m] has quit [Read error: Connection reset by peer]
JonwelDiscord[m] has quit [Read error: Connection reset by peer]
CocoonCrashDisco has quit [Read error: Connection reset by peer]
OrkunDiscord[m] has quit [Read error: Connection reset by peer]
funwhilelostDisc has quit [Read error: Connection reset by peer]
M[AXEL]JulianDis has quit [Read error: Connection reset by peer]
braditzDiscord[m has quit [Read error: Connection reset by peer]
paulmahone[m] has quit [Read error: Connection reset by peer]
prcDiscord[m] has quit [Read error: Connection reset by peer]
farhad312Discord has quit [Read error: Connection reset by peer]
flower88Discord[ has quit [Read error: Connection reset by peer]
M4eekDiscord[m] has quit [Read error: Connection reset by peer]
myqe[m] has quit [Read error: Connection reset by peer]
oed3Discord[m] has quit [Read error: Connection reset by peer]
RomainDiscord[m] has quit [Read error: Connection reset by peer]
DerrickFDiscord[ has quit [Read error: Connection reset by peer]
aphelionz[m] has quit [Read error: Connection reset by peer]
corylDiscord[m] has quit [Read error: Connection reset by peer]
JustMaierDiscord has quit [Read error: Connection reset by peer]
aeddiDiscord[m] has quit [Read error: Connection reset by peer]
eyhd-61uczn3v[m] has quit [Read error: Connection reset by peer]
cesarosumDiscord has quit [Read error: Connection reset by peer]
ToangDiscord[m] has quit [Read error: Connection reset by peer]
dindustriesDisco has quit [Read error: Connection reset by peer]
alphapapaactualD has quit [Read error: Connection reset by peer]
marius_k[m] has quit [Read error: Connection reset by peer]
MisterGoreDiscor has quit [Read error: Connection reset by peer]
PrabhaavDiscord[ has quit [Read error: Connection reset by peer]
doorknob88Discor has quit [Read error: Connection reset by peer]
UserDiscord[m] has quit [Read error: Connection reset by peer]
amark159[m] has quit [Read error: Connection reset by peer]
MarekIsalski[m] has quit [Read error: Connection reset by peer]
superstring[m] has quit [Read error: Connection reset by peer]
jrswab has quit [Read error: Connection reset by peer]
arjenpdevries[m] has quit [Read error: Connection reset by peer]
ecripte[m] has quit [Read error: Connection reset by peer]
snapDiscord[m] has quit [Read error: Connection reset by peer]
AdamHepner[m] has quit [Read error: Connection reset by peer]
sukarDiscord[m] has quit [Read error: Connection reset by peer]
yiannisbot[m] has quit [Read error: Connection reset by peer]
felixschl[m]2 has quit [Read error: Connection reset by peer]
KubeWorshipper[m has quit [Read error: Connection reset by peer]
capDiscord[m] has quit [Read error: Connection reset by peer]
han_c[m] has quit [Read error: Connection reset by peer]
jimpickDiscord[m has quit [Read error: Connection reset by peer]
zhenzhenli[m] has quit [Read error: Connection reset by peer]
TristanDiscord[m has quit [Read error: Connection reset by peer]
cryptix[m] has quit [Read error: Connection reset by peer]
LAkiraS[m] has quit [Read error: Connection reset by peer]
bengoDiscord[m] has quit [Read error: Connection reset by peer]
rappel[m] has quit [Read error: Connection reset by peer]
cryptogoth[m] has quit [Read error: Connection reset by peer]
Valaybalalay[m] has quit [Read error: Connection reset by peer]
ciechomke[m] has quit [Read error: Connection reset by peer]
sexybiggetje[m] has quit [Read error: Connection reset by peer]
rocketonmars[m] has quit [Read error: Connection reset by peer]
lidel[m] has quit [Read error: Connection reset by peer]
nofwayy[m] has quit [Read error: Connection reset by peer]
kwk has quit [Read error: Connection reset by peer]
riolf[m] has quit [Read error: Connection reset by peer]
admin[m]6 has quit [Read error: Connection reset by peer]
homulilly[m] has quit [Read error: Connection reset by peer]
hxu[m] has quit [Read error: Connection reset by peer]
user51[m] has quit [Read error: Connection reset by peer]
Grey[m] has quit [Remote host closed the connection]
aaronpkDiscord[m has quit [Write error: Connection reset by peer]
pierrebocDiscord has quit [Write error: Connection reset by peer]
nocentDiscord[m] has quit [Write error: Connection reset by peer]
jazzy-jeff^_^Dis has quit [Write error: Connection reset by peer]
Kisulken[m] has quit [Write error: Connection reset by peer]
rozgoDiscord[m] has quit [Write error: Connection reset by peer]
amatuni[m] has quit [Write error: Connection reset by peer]
TianyiDiscord[m] has quit [Write error: Connection reset by peer]
Heish1580[m] has quit [Write error: Connection reset by peer]
lamborghiniDisco has quit [Write error: Connection reset by peer]
OlegStotsky[m] has quit [Remote host closed the connection]
internetman1337[ has quit [Read error: Connection reset by peer]
haz[m]1 has quit [Remote host closed the connection]
reedhhw[m] has quit [Write error: Connection reset by peer]
jgmac1106Discord has quit [Write error: Connection reset by peer]
randy[m]1 has quit [Read error: Connection reset by peer]
josiah_sama has quit [Read error: Connection reset by peer]
miseenplace[m] has quit [Read error: Connection reset by peer]
rihardsk[m] has quit [Read error: Connection reset by peer]
simbergm has quit [Read error: Connection reset by peer]
norou[m] has quit [Read error: Connection reset by peer]
josef[m] has quit [Write error: Connection reset by peer]
Zed[m] has quit [Write error: Connection reset by peer]
Brio[m] has quit [Read error: Connection reset by peer]
godva[m] has quit [Write error: Connection reset by peer]
PhillmacDiscord[ has quit [Write error: Connection reset by peer]
rxninDiscord[m] has quit [Read error: Connection reset by peer]
toml[m] has quit [Write error: Connection reset by peer]
ZaZ[m] has quit [Read error: Connection reset by peer]
jason558[m] has quit [Read error: Connection reset by peer]
felixschlDiscor4 has quit [Read error: Connection reset by peer]
LSJI07Discord[m] has quit [Remote host closed the connection]
DioBrandon[m] has quit [Read error: Connection reset by peer]
nebulerDiscord[m has quit [Read error: Connection reset by peer]
bigx[m] has quit [Read error: Connection reset by peer]
taaem has quit [Read error: Connection reset by peer]
Starism[m] has quit [Read error: Connection reset by peer]
realkarmakun[m] has quit [Read error: Connection reset by peer]
ExpherienceDisco has quit [Read error: Connection reset by peer]
NastyEbilPiwateD has quit [Read error: Connection reset by peer]
felixschlDiscord has quit [Read error: Connection reset by peer]
brotholo[m] has quit [Read error: Connection reset by peer]
anonymous[m] has quit [Write error: Connection reset by peer]
JungleHeartDisco has quit [Read error: Connection reset by peer]
brian[m] has quit [Write error: Connection reset by peer]
dkasak[m] has quit [Write error: Connection reset by peer]
nofwayyDiscord[m has quit [Remote host closed the connection]
marcusrbrownDisc has quit [Remote host closed the connection]
leoalvarezhDisc4 has quit [Remote host closed the connection]
josephnicholasGM has quit [Read error: Connection reset by peer]
Amandine[m] has quit [Read error: Connection reset by peer]
mZDiscord[m] has quit [Read error: Connection reset by peer]
ShmultzDiscord[m has quit [Read error: Connection reset by peer]
macerbi[m] has quit [Write error: Connection reset by peer]
ecloud[m] has quit [Write error: Connection reset by peer]
twom[m] has quit [Read error: Connection reset by peer]
tinker[m] has quit [Read error: Connection reset by peer]
codyopel has quit [Write error: Connection reset by peer]
SoraLee[m] has quit [Write error: Connection reset by peer]
DerekDiscord[m] has quit [Remote host closed the connection]
gts[m] has quit [Write error: Connection reset by peer]
celsoDiscord[m]1 has quit [Remote host closed the connection]
Kenzo3Discord[m] has quit [Write error: Connection reset by peer]
jeeg[m] has quit [Read error: Connection reset by peer]
sandorpetofi[m] has quit [Read error: Connection reset by peer]
dulten[m] has quit [Read error: Connection reset by peer]
Dazuck-3BoxDisco has quit [Read error: Connection reset by peer]
tony[m]2 has quit [Read error: Connection reset by peer]
mZDiscord[m]1 has quit [Read error: Connection reset by peer]
Naughtylus[m] has quit [Read error: Connection reset by peer]
TH0RynDiscord[m] has quit [Remote host closed the connection]
warpfork has quit [Read error: Connection reset by peer]
nlkoDiscord[m] has quit [Remote host closed the connection]
skillman623[m] has quit [Write error: Connection reset by peer]
koalalorenzo[m] has quit [Remote host closed the connection]
ook_2001 has quit [Remote host closed the connection]
mhzDiscord[m] has quit [Remote host closed the connection]
soapoperator[m] has quit [Write error: Connection reset by peer]
brewski[m] has quit [Write error: Connection reset by peer]
ewan[m] has quit [Write error: Connection reset by peer]
jryans has quit [Read error: Connection reset by peer]
admin[m]2 has quit [Write error: Connection reset by peer]
crydamoure[m] has quit [Read error: Connection reset by peer]
stroopwafel[m] has quit [Read error: Connection reset by peer]
andresmazzo[m] has quit [Read error: Connection reset by peer]
MichaelKohler[m] has quit [Write error: Connection reset by peer]
waterdudu[m] has quit [Write error: Connection reset by peer]
DianaQueen[m] has quit [Remote host closed the connection]
itsmekntDiscord[ has quit [Write error: Connection reset by peer]
malaclyps[m]1 has quit [Remote host closed the connection]
chrisDiscord[m] has quit [Write error: Connection reset by peer]
IgutinDiscord[m] has quit [Write error: Connection reset by peer]
plexusDiscord[m] has quit [Write error: Connection reset by peer]
ithithDiscord[m] has quit [Write error: Connection reset by peer]
ryanchristoDisco has quit [Write error: Connection reset by peer]
gregjeanmartDisc has quit [Write error: Connection reset by peer]
sachaDiscord[m] has quit [Write error: Connection reset by peer]
malaclypsDiscord has quit [Write error: Connection reset by peer]
andrewnez[m] has quit [Write error: Broken pipe]
dignifiedquireDi has quit [Write error: Connection reset by peer]
r5723013[m] has quit [Write error: Connection reset by peer]
Suprscale[m] has quit [Write error: Connection reset by peer]
postables[m]2 has quit [Write error: Connection reset by peer]
victor[m]2 has quit [Write error: Connection reset by peer]
romanblanco[m] has quit [Write error: Connection reset by peer]
MasterB[m] has quit [Write error: Connection reset by peer]
issamehh[m] has quit [Write error: Connection reset by peer]
naszam[m] has quit [Write error: Connection reset by peer]
radsal[m] has quit [Write error: Connection reset by peer]
felixschl[m]3 has quit [Remote host closed the connection]
arting[m] has quit [Write error: Connection reset by peer]
d27[m] has quit [Write error: Connection reset by peer]
marcocastignoli7 has quit [Write error: Connection reset by peer]
Brunothebloodhou has quit [Write error: Connection reset by peer]
Phi[m]1 has quit [Write error: Connection reset by peer]
Discord[m]2 has quit [Write error: Connection reset by peer]
TeamIan[m] has quit [Remote host closed the connection]
AgentJ[m] has quit [Write error: Connection reset by peer]
exothermic[m] has quit [Write error: Connection reset by peer]
berDiscord[m] has quit [Write error: Connection reset by peer]
kw0n[m] has quit [Remote host closed the connection]
Chaos_Zero has quit [Read error: Connection reset by peer]
tapaswenipathak[ has quit [Remote host closed the connection]
M948e5[m] has quit [Write error: Connection reset by peer]
thestevewayDisco has quit [Write error: Connection reset by peer]
n9tDiscord[m] has quit [Write error: Connection reset by peer]
EugeneDiscord[m] has quit [Write error: Connection reset by peer]
SenshiDiscord[m] has quit [Write error: Connection reset by peer]
MichaelTenDiscor has quit [Write error: Connection reset by peer]
planetary_devDis has quit [Write error: Connection reset by peer]
danteziispeed[m] has quit [Read error: Connection reset by peer]
RealityDiscord[m has quit [Write error: Connection reset by peer]
cw[m] has quit [Write error: Connection reset by peer]
braditz[m] has quit [Write error: Connection reset by peer]
silur[m] has quit [Write error: Connection reset by peer]
siddh88[m] has quit [Write error: Connection reset by peer]
c0dr[m] has quit [Write error: Connection reset by peer]
kbc[m] has quit [Write error: Connection reset by peer]
ruko[m] has quit [Write error: Connection reset by peer]
bitspill[m] has quit [Write error: Connection reset by peer]
Tryptophan[m] has quit [Write error: Connection reset by peer]
Obo[m]2 has quit [Remote host closed the connection]
ircer[m] has quit [Write error: Connection reset by peer]
hubaDiscord[m] has quit [Remote host closed the connection]
watDiscord[m] has quit [Remote host closed the connection]
Fuseteam has quit [Write error: Connection reset by peer]
CopenBra[m] has quit [Read error: Connection reset by peer]
daviddias[m] has quit [Write error: Connection reset by peer]
vpei[m] has quit [Write error: Connection reset by peer]
LEdoian[m] has quit [Write error: Connection reset by peer]
UX0[m] has quit [Write error: Connection reset by peer]
oatmealraisin[m] has quit [Write error: Connection reset by peer]
clear[m] has quit [Write error: Connection reset by peer]
tuch[m] has quit [Write error: Connection reset by peer]
techniker[m] has quit [Write error: Connection reset by peer]
syxmut[m] has quit [Write error: Connection reset by peer]
tomaka[m] has quit [Write error: Connection reset by peer]
waynewyang[m] has quit [Write error: Connection reset by peer]
tcoe[m] has quit [Write error: Connection reset by peer]
planetx[m] has quit [Write error: Connection reset by peer]
sethfork[m] has quit [Write error: Connection reset by peer]
spacedgod[m] has quit [Write error: Connection reset by peer]
pholsgrove[m] has quit [Write error: Connection reset by peer]
nick4242[m] has quit [Write error: Connection reset by peer]
mivticsiaorg[m] has quit [Write error: Connection reset by peer]
jharrison[m] has quit [Write error: Connection reset by peer]
null_radix[m] has quit [Write error: Connection reset by peer]
liuxufei[m] has quit [Write error: Connection reset by peer]
laurent[m]2 has quit [Write error: Connection reset by peer]
larsschulze[m] has quit [Write error: Connection reset by peer]
MrControl[m] has quit [Write error: Connection reset by peer]
kst[m] has quit [Write error: Broken pipe]
kylelanpart[m] has quit [Write error: Connection reset by peer]
isigaesc[m] has quit [Write error: Connection reset by peer]
psychedelic99[m] has quit [Write error: Connection reset by peer]
imalex[m] has quit [Write error: Connection reset by peer]
plindner[m] has quit [Write error: Connection reset by peer]
h313[m] has quit [Write error: Connection reset by peer]
Bzh[m] has quit [Write error: Connection reset by peer]
d-nice2[m] has quit [Write error: Connection reset by peer]
KonstantinLomash has quit [Write error: Connection reset by peer]
akt[m]1 has quit [Write error: Connection reset by peer]
divi[m]1 has quit [Write error: Connection reset by peer]
wngrDiscord[m] has quit [Write error: Connection reset by peer]
colinbr has quit [Write error: Broken pipe]
MaggieDiscord[m] has quit [Write error: Connection reset by peer]
rklaehnDiscord[m has quit [Write error: Connection reset by peer]
anoa has quit [Write error: Connection reset by peer]
xtream1101Discor has quit [Write error: Connection reset by peer]
li_matrix has quit [Write error: Connection reset by peer]
musicmatze has quit [Write error: Connection reset by peer]
MilkManzJourDadd has quit [Read error: Connection reset by peer]
DonP[m]1 has quit [Write error: Connection reset by peer]
swedneck__ has quit [Write error: Connection reset by peer]
notafile has quit [Write error: Connection reset by peer]
Krakakanok[m] has quit [Remote host closed the connection]
linuxi0n[m] has quit [Remote host closed the connection]
wchargin[m] has quit [Remote host closed the connection]
http302[m] has quit [Remote host closed the connection]
rxnin[m] has quit [Remote host closed the connection]
chr0ma[m] has quit [Remote host closed the connection]
indefini[m] has quit [Remote host closed the connection]
sean[m]3 has quit [Remote host closed the connection]
fru[m] has quit [Remote host closed the connection]
JakobTigerstrm[m has quit [Remote host closed the connection]
dag[m] has quit [Write error: Connection reset by peer]
yoltid[m] has quit [Write error: Connection reset by peer]
ar[m]1 has quit [Write error: Connection reset by peer]
imatrix[m] has quit [Write error: Connection reset by peer]
volver17[m] has quit [Write error: Connection reset by peer]
wak-work has quit [Write error: Connection reset by peer]
Sisyphe[m] has quit [Write error: Connection reset by peer]
lpaukevich[m] has quit [Write error: Connection reset by peer]
terichadbourne[m has quit [Write error: Connection reset by peer]
NiGeR[m] has quit [Write error: Connection reset by peer]
dhole[m] has quit [Write error: Connection reset by peer]
jon1012[m] has quit [Write error: Connection reset by peer]
VictorGDiscord[m has quit [Write error: Connection reset by peer]
appa[m] has quit [Write error: Connection reset by peer]
vormgear[m] has quit [Write error: Connection reset by peer]
dragonrider-e[m] has quit [Read error: Connection reset by peer]
nartir[m] has quit [Write error: Connection reset by peer]
krigare[m] has quit [Read error: Connection reset by peer]
irb[m] has quit [Write error: Broken pipe]
dolmengate[m] has quit [Read error: Connection reset by peer]
sukar[m] has quit [Write error: Connection reset by peer]
andrewxhillDisco has quit [Write error: Connection reset by peer]
pps96[m] has quit [Write error: Connection reset by peer]
PhiDiscord[m] has quit [Write error: Connection reset by peer]
Eryk[m] has quit [Write error: Connection reset by peer]
coil[m] has quit [Write error: Connection reset by peer]
frislie[m] has quit [Write error: Connection reset by peer]
tuxiqae[m]1 has quit [Remote host closed the connection]
lambskin[m] has quit [Remote host closed the connection]
siger[m] has quit [Remote host closed the connection]
multik[m] has quit [Remote host closed the connection]
jak[m] has quit [Remote host closed the connection]
attenuation[m] has quit [Remote host closed the connection]
kanej[m]2 has quit [Remote host closed the connection]
dxg168[m] has quit [Remote host closed the connection]
timnetwork[m] has quit [Remote host closed the connection]
Microsoft_techni has quit [Write error: Connection reset by peer]
doodlemaniaDisco has quit [Remote host closed the connection]
foxcoolDiscord[m has quit [Write error: Connection reset by peer]
the_nikinDiscord has quit [Write error: Connection reset by peer]
vamsiDiscord[m] has quit [Write error: Connection reset by peer]
vexl[m]1 has quit [Write error: Connection reset by peer]
braditz[m]2 has quit [Write error: Connection reset by peer]
cannabysDiscord[ has quit [Write error: Connection reset by peer]
Kevin[m]2 has quit [Write error: Connection reset by peer]
DaekiDiscord[m] has quit [Write error: Connection reset by peer]
hazDiscord[m] has quit [Write error: Connection reset by peer]
Powersource[m] has quit [Write error: Connection reset by peer]
Dark_Shroud[m] has quit [Write error: Connection reset by peer]
glothit7ok[m] has quit [Write error: Connection reset by peer]
fcat[m] has quit [Write error: Connection reset by peer]
RickDiscord[m] has quit [Remote host closed the connection]
thaingo[m] has quit [Write error: Connection reset by peer]
Lrrr[m] has quit [Write error: Connection reset by peer]
nigre-dique[m] has quit [Write error: Connection reset by peer]
msc[m] has quit [Write error: Connection reset by peer]
aha[m] has quit [Write error: Connection reset by peer]
kobajagi has quit [Write error: Connection reset by peer]
zaphar_ps[m] has quit [Write error: Connection reset by peer]
mdrights[m] has quit [Write error: Connection reset by peer]
selousie[m] has quit [Write error: Connection reset by peer]
moul has quit [Write error: Connection reset by peer]
Lisanna[m] has quit [Write error: Connection reset by peer]
PermawebEmbedDis has quit [Write error: Connection reset by peer]
romaricDiscord[4 has quit [Write error: Connection reset by peer]
KinnardDiscord[m has quit [Write error: Connection reset by peer]
dpinnerDiscord[m has quit [Write error: Connection reset by peer]
gtsDiscord[m] has quit [Write error: Connection reset by peer]
leoalvarezhDisco has quit [Write error: Connection reset by peer]
neohexDiscord[m] has quit [Write error: Connection reset by peer]
TeamIanDiscord[m has quit [Write error: Connection reset by peer]
johanhermanDisc4 has quit [Write error: Connection reset by peer]
UsDiscord[m] has quit [Write error: Connection reset by peer]
cwDiscord[m] has quit [Write error: Connection reset by peer]
deltaDiscord[m] has quit [Write error: Connection reset by peer]
NooooooWayyyyyDi has quit [Write error: Connection reset by peer]
allgo[m] has quit [Write error: Connection reset by peer]
ptonerDiscord[m] has quit [Write error: Connection reset by peer]
zloba[m] has quit [Write error: Connection reset by peer]
freethinkingawa4 has quit [Write error: Connection reset by peer]
paulmahoneDiscor has quit [Write error: Connection reset by peer]
GabrielBadGriefD has quit [Write error: Connection reset by peer]
NatoBoramDiscord has quit [Write error: Connection reset by peer]
SmileRobot[m] has quit [Write error: Broken pipe]
PeevesDiscord[m] has quit [Write error: Connection reset by peer]
MairkurDiscord[m has quit [Write error: Connection reset by peer]
clf[m] has quit [Write error: Connection reset by peer]
leoalvarezh[m]1 has quit [Write error: Connection reset by peer]
harkenedraven has quit [Write error: Connection reset by peer]
am3on[m] has quit [Write error: Connection reset by peer]
lkjhgfdsa00xxx[m has quit [Write error: Connection reset by peer]
rialtate[m] has quit [Write error: Connection reset by peer]
alex[m]14 has quit [Write error: Connection reset by peer]
hans[m]5 has quit [Write error: Connection reset by peer]
d1mur4tdj[m] has quit [Write error: Connection reset by peer]
krhubert[m] has quit [Write error: Connection reset by peer]
aloiscochard[m] has quit [Write error: Connection reset by peer]
errichellic[m] has quit [Remote host closed the connection]
frnet[m] has quit [Read error: Connection reset by peer]
ffl^ has quit [Max SendQ exceeded]
KevlarmonkeyDisc has quit [Remote host closed the connection]
tintin1[m] has quit [Remote host closed the connection]
dominicusin[m] has quit [Remote host closed the connection]
DiscordBridgeswe has quit [Read error: Connection reset by peer]
ilmu[m] has quit [Write error: Connection reset by peer]
Swedneck_ has quit [Write error: Connection reset by peer]
silkeh has quit [Write error: Connection reset by peer]
felixfoertsch[m] has quit [Write error: Connection reset by peer]
grag[m] has quit [Write error: Connection reset by peer]
Ashaman[m] has quit [Write error: Connection reset by peer]
cy[m] has quit [Write error: Connection reset by peer]
litebit[m] has quit [Write error: Connection reset by peer]
BafS[m] has quit [Write error: Connection reset by peer]
etjet[m] has quit [Remote host closed the connection]
gandi[m] has quit [Write error: Connection reset by peer]
nolep[m] has quit [Remote host closed the connection]
didi-digitalsheh has quit [Write error: Connection reset by peer]
Sean[m] has quit [Write error: Connection reset by peer]
zopsi[m] has quit [Write error: Connection reset by peer]
k0mpjut0r has quit [Write error: Connection reset by peer]
Ja3oodDiscord[m] has quit [Read error: Connection reset by peer]
spb_mentor[m] has quit [Write error: Connection reset by peer]
nongfu[m] has quit [Write error: Connection reset by peer]
garblur83[m] has quit [Write error: Connection reset by peer]
various_accounts has quit [Write error: Connection reset by peer]
silwol has quit [Write error: Connection reset by peer]
thomasbDiscord[m has quit [Read error: Connection reset by peer]
boomshroomDiscor has quit [Read error: Connection reset by peer]
te0dDiscord[m] has quit [Read error: Connection reset by peer]
r5723013Discord[ has quit [Read error: Connection reset by peer]
silent_ActivistD has quit [Read error: Connection reset by peer]
SmileRobotDiscor has quit [Read error: Connection reset by peer]
cyluDiscord[m] has quit [Read error: Connection reset by peer]
ClmentDiscord[m] has quit [Read error: Connection reset by peer]
GorkaDiscord[m] has quit [Read error: Connection reset by peer]
natmac[m] has quit [Write error: Connection reset by peer]
pothyurf[m] has quit [Write error: Connection reset by peer]
olmvnec[m] has quit [Write error: Connection reset by peer]
ciet[m] has quit [Write error: Connection reset by peer]
maparentDiscord[ has quit [Read error: Connection reset by peer]
HeysteinDiscord[ has quit [Read error: Connection reset by peer]
JerbsDiscord[m] has quit [Read error: Connection reset by peer]
LaPingvino has quit [Read error: Connection reset by peer]
swedneckswednec6 has quit [Write error: Connection reset by peer]
ttk2[m] has quit [Write error: Connection reset by peer]
divi[m] has quit [Write error: Connection reset by peer]
spk[m] has quit [Read error: Connection reset by peer]
scio has quit [Remote host closed the connection]
bofu[m] has quit [Write error: Connection reset by peer]
mack[m]1 has quit [Write error: Connection reset by peer]
salazarp[m] has quit [Read error: Connection reset by peer]
coretx[m] has quit [Write error: Connection reset by peer]
h0lylag[m] has quit [Write error: Connection reset by peer]
zwj[m] has quit [Write error: Connection reset by peer]
xdrixxyz[m] has quit [Write error: Connection reset by peer]
freeforme[m] has quit [Read error: Connection reset by peer]
vrolland[m] has quit [Write error: Connection reset by peer]
unc[m] has quit [Write error: Connection reset by peer]
Johanntplusdev[m has quit [Write error: Connection reset by peer]
toadkillerdog[m] has quit [Write error: Connection reset by peer]
testco[m] has quit [Write error: Connection reset by peer]
nocent has quit [Read error: Connection reset by peer]
skywavesurfer[m4 has quit [Write error: Connection reset by peer]
sewardsfolly[m] has quit [Write error: Connection reset by peer]
dani9[m] has quit [Write error: Connection reset by peer]
Roger[m]1 has quit [Write error: Connection reset by peer]
Garrett[m] has quit [Read error: Connection reset by peer]
pineapplehunter[ has quit [Write error: Connection reset by peer]
pandemoniumsengi has quit [Write error: Connection reset by peer]
mchelmre[m] has quit [Read error: Connection reset by peer]
mtita[m] has quit [Read error: Connection reset by peer]
mvalente[m] has quit [Write error: Connection reset by peer]
pbvie[m] has quit [Write error: Connection reset by peer]
lng[m] has quit [Write error: Connection reset by peer]
logoilab[m] has quit [Write error: Connection reset by peer]
sid[m] has quit [Write error: Connection reset by peer]
TheDarthSquidwar has quit [Write error: Connection reset by peer]
kofalt[m] has quit [Write error: Connection reset by peer]
jenzzens[m] has quit [Write error: Connection reset by peer]
momack2[m] has quit [Write error: Connection reset by peer]
Jacob[m]1 has quit [Write error: Connection reset by peer]
mattober[m] has quit [Write error: Connection reset by peer]
girzel[m] has quit [Write error: Connection reset by peer]
jacckie[m] has quit [Write error: Connection reset by peer]
fatman2019[m] has quit [Write error: Connection reset by peer]
fishingsun[m] has quit [Write error: Connection reset by peer]
Enmerkar[m] has quit [Write error: Connection reset by peer]
hsanjuan[m] has quit [Write error: Connection reset by peer]
dot9sh[m] has quit [Write error: Connection reset by peer]
KeiiNisimo[m] has quit [Write error: Connection reset by peer]
Alex[m]13 has quit [Write error: Connection reset by peer]
dliot[m] has quit [Write error: Connection reset by peer]
daopu[m] has quit [Write error: Connection reset by peer]
cubemonkey[m] has quit [Write error: Connection reset by peer]
Caramba_3000[m] has quit [Write error: Connection reset by peer]
D14na[m] has quit [Write error: Connection reset by peer]
ryanchristo[m]1 has quit [Write error: Connection reset by peer]
msena3Discord[m] has quit [Write error: Connection reset by peer]
florz[m] has quit [Write error: Connection reset by peer]
flacks has quit [Write error: Broken pipe]
fsmoulk[m] has quit [Write error: Connection reset by peer]
Chaos[m] has quit [Write error: Connection reset by peer]
blurHY[m] has quit [Write error: Connection reset by peer]
ballerfresh[m] has quit [Write error: Connection reset by peer]
Rumblestiltskin[ has quit [Write error: Broken pipe]
alxmhe[m] has quit [Write error: Connection reset by peer]
aeaf123[m] has quit [Write error: Connection reset by peer]
cyberward_matrix has quit [Write error: Connection reset by peer]
ntninja has quit [Write error: Broken pipe]
cardDiscord[m] has quit [Write error: Connection reset by peer]
gorhgorh[m]1 has quit [Write error: Connection reset by peer]
Matrixdiscordbri has quit [Write error: Connection reset by peer]
jessicaschilling has quit [Write error: Connection reset by peer]
MesaDiscord[m] has quit [Write error: Connection reset by peer]
ksDiscord[m] has quit [Write error: Connection reset by peer]
eddyDiscord[m] has quit [Write error: Connection reset by peer]
buztedDiscord[m] has quit [Write error: Connection reset by peer]
plexus[m]1 has quit [Write error: Connection reset by peer]
PamileissonDisco has quit [Write error: Connection reset by peer]
panDiscord[m] has quit [Write error: Connection reset by peer]
combrayDiscord[m has quit [Write error: Connection reset by peer]
porshDiscord[m] has quit [Write error: Connection reset by peer]
xtream1101[m] has quit [Write error: Connection reset by peer]
marcocastignoli[ has quit [Write error: Connection reset by peer]
grvhiDiscord[m] has quit [Write error: Connection reset by peer]
paulmahone[m]1 has quit [Write error: Connection reset by peer]
pbvieDiscord[m] has quit [Write error: Connection reset by peer]
foxcoolDiscord[4 has quit [Write error: Connection reset by peer]
Eugene[m] has quit [Write error: Connection reset by peer]
jmank88Discord[m has quit [Write error: Connection reset by peer]
amatuniDiscord[m has quit [Write error: Connection reset by peer]
cristobal8876[m] has quit [Write error: Broken pipe]
vamsi[m] has quit [Write error: Connection reset by peer]
dignifiedquire[m has quit [Write error: Connection reset by peer]
RichardLittDisco has quit [Write error: Connection reset by peer]
obzenba[m] has quit [Write error: Connection reset by peer]
lilz[m] has quit [Write error: Connection reset by peer]
CatManDoooDiscor has quit [Write error: Connection reset by peer]
neohex[m] has quit [Write error: Connection reset by peer]
Xierumeng[m] has quit [Write error: Connection reset by peer]
sanderDiscord[m] has quit [Write error: Connection reset by peer]
TianyiDiscord[m4 has quit [Write error: Connection reset by peer]
JohnnyMilkshakes has quit [Write error: Connection reset by peer]
AraratDiscord[m] has quit [Write error: Connection reset by peer]
vasaDiscord[m] has quit [Write error: Connection reset by peer]
vexl[m]2 has quit [Write error: Connection reset by peer]
dqxDiscord[m] has quit [Write error: Connection reset by peer]
chuenlye[m] has quit [Write error: Connection reset by peer]
LordFenixNC[m]2 has quit [Write error: Connection reset by peer]
ZapierDiscord[m] has quit [Write error: Connection reset by peer]
zegordoDiscord[m has quit [Write error: Connection reset by peer]
drbhDiscord[m] has quit [Write error: Connection reset by peer]
megadogberthehim has quit [Write error: Connection reset by peer]
Shmultz9776[m] has quit [Write error: Broken pipe]
M5310[m] has quit [Write error: Broken pipe]
ad87657Discord[m has quit [Write error: Connection reset by peer]
denzukoDiscord[m has quit [Write error: Connection reset by peer]
Kris[m]1 has quit [Write error: Broken pipe]
EdmundMDiscord[m has quit [Write error: Connection reset by peer]
LordFenixNCDisco has quit [Write error: Connection reset by peer]
Turtle1331Discor has quit [Write error: Connection reset by peer]
willibuddyDiscor has quit [Write error: Connection reset by peer]
RealSnazzyDiscor has quit [Write error: Connection reset by peer]
Kube6349[m] has quit [Write error: Connection reset by peer]
shevski[m] has quit [Write error: Connection reset by peer]
Phillmac[m] has quit [Remote host closed the connection]
peterkDiscord[m] has quit [Write error: Connection reset by peer]
JohnnyMilkshake7 has quit [Remote host closed the connection]
steven-snowball[ has quit [Write error: Connection reset by peer]
Slacktoid[m] has quit [Write error: Connection reset by peer]
octowan[m] has quit [Write error: Connection reset by peer]
baffle has quit [Write error: Connection reset by peer]
axx[m] has quit [Write error: Connection reset by peer]
padok[m] has quit [Remote host closed the connection]
vladimir[m]1 has quit [Write error: Connection reset by peer]
ngerstle[m] has quit [Write error: Connection reset by peer]
kahiru__ has quit [Write error: Connection reset by peer]
neh7u72xiydibedi has quit [Write error: Connection reset by peer]
Tantin[m] has quit [Write error: Connection reset by peer]
jothi_basu[m] has quit [Write error: Connection reset by peer]
fredrikj_tmp has quit [Write error: Connection reset by peer]
doronbehar[m] has quit [Write error: Connection reset by peer]
Brasserie[m] has quit [Write error: Connection reset by peer]
dydx[m]1 has quit [Write error: Connection reset by peer]
himcesjf has quit [Write error: Connection reset by peer]
tomjwatson[m] has quit [Write error: Connection reset by peer]
piotrszegda[m] has quit [Read error: Connection reset by peer]
sadlotus[m] has quit [Read error: Connection reset by peer]
labs[m] has quit [Write error: Connection reset by peer]
yur3shmukcik[m] has quit [Write error: Connection reset by peer]
tops[m] has quit [Write error: Connection reset by peer]
darkmeson[m] has quit [Write error: Connection reset by peer]
tidux[m]1 has quit [Write error: Connection reset by peer]
Guest94286 has quit [Write error: Connection reset by peer]
aer[m] has quit [Write error: Connection reset by peer]
Guest22997 has quit [Write error: Connection reset by peer]
Rnytom[m] has quit [Write error: Connection reset by peer]
Xamino[m] has quit [Write error: Connection reset by peer]
joking[m] has quit [Write error: Connection reset by peer]
DarkDrgn2k[m] has quit [Write error: Connection reset by peer]
triskeon[m] has quit [Write error: Connection reset by peer]
mwee[m] has quit [Write error: Connection reset by peer]
anolir has quit [Write error: Connection reset by peer]
dontstalkmepls[m has quit [Read error: Connection reset by peer]
ffl^ has joined #ipfs
dongrappa has joined #ipfs
mischat has quit []
mischat has joined #ipfs
dongrappa has quit [Ping timeout: 252 seconds]
pedantically has joined #ipfs
pedantically has quit [Remote host closed the connection]
zeden has quit [Quit: WeeChat 2.4]
KempfCreative has quit [Ping timeout: 245 seconds]
ffl^ has quit []
M0x1e[m] has joined #ipfs
M11112[m] has joined #ipfs
Elo[m] has joined #ipfs
Amandine[m] has joined #ipfs
M948e5[m] has joined #ipfs
Dark_Shroud[m] has joined #ipfs
Half-Shot has joined #ipfs
Alin[m] has joined #ipfs
Jtremback[m] has joined #ipfs
Ericson2314 has joined #ipfs
shevski[m] has joined #ipfs
MilkManzJourDadd has joined #ipfs
MMJD-Wst[m] has joined #ipfs
LEdoian[m] has joined #ipfs
Quiark has joined #ipfs
Manu[m] has joined #ipfs
Powersource[m] has joined #ipfs
PC-Admin[m]1 has joined #ipfs
RaymondFoley[m] has joined #ipfs
LaPingvino has joined #ipfs
Tantin[m] has joined #ipfs
Rnytom[m] has joined #ipfs
Guest11675 has joined #ipfs
Stephen304[m] has joined #ipfs
Zedwick[m] has joined #ipfs
TryptophanDiscor has joined #ipfs
berDiscord[m] has joined #ipfs
gorhgorhDiscord[ has joined #ipfs
peterkDiscord[m] has joined #ipfs
Tryptophan[m] has joined #ipfs
baluptonDiscord[ has joined #ipfs
nijynotDiscord[m has joined #ipfs
M5310Discord[m] has joined #ipfs
lauren|Microspon has joined #ipfs
NebulousDiscord[ has joined #ipfs
LuutheCoolDiscor has joined #ipfs
KevlarmonkeyDisc has joined #ipfs
OlegStotskyDisco has joined #ipfs
IgutinDiscord[m] has joined #ipfs
AtiqDiscord[m] has joined #ipfs
dillonDiscord[m] has joined #ipfs
hazDiscord[m] has joined #ipfs
PeevesDiscord[m] has joined #ipfs
SuikaDiscord[m] has joined #ipfs
Kube6349[m] has joined #ipfs
jgmDiscord[m] has joined #ipfs
Newami has joined #ipfs
braditzDiscord[m has joined #ipfs
ZedDiscord[m] has joined #ipfs
KubeDiscord[m] has joined #ipfs
MairkurDiscord[m has joined #ipfs
RealSnazzyDiscor has joined #ipfs
corylDiscord[m] has joined #ipfs
crest[m] has joined #ipfs
Zed[m] has joined #ipfs
brewski[m] has joined #ipfs
willibuddyDiscor has joined #ipfs
snapDiscord[m] has joined #ipfs
doorknob88Discor has joined #ipfs
brewskiDiscord[m has joined #ipfs
NatoBoramDiscord has joined #ipfs
crestDiscord[m] has joined #ipfs
RyonezCoruscareD has joined #ipfs
skillman623Disco has joined #ipfs
OboDiscord[m] has joined #ipfs
PhillmacDiscord[ has joined #ipfs
GiyomuDiscord[m] has joined #ipfs
Seb[m]2 has joined #ipfs
skillman623[m] has joined #ipfs
ruko[m] has joined #ipfs
zoink92Discord[m has joined #ipfs
hyde__Discord[m] has joined #ipfs
ValiumDiscord[m] has joined #ipfs
ivanDiscord[m] has joined #ipfs
ShadowLingDiscor has joined #ipfs
boomshroomDiscor has joined #ipfs
Starism[m] has joined #ipfs
Valium[m]1 has joined #ipfs
capDiscord[m] has joined #ipfs
Turtle1331Discor has joined #ipfs
DioBrandonDiscor has joined #ipfs
LordFenixNCDisco has joined #ipfs
JakobTigerstrm[m has joined #ipfs
LordFenixNC[m] has joined #ipfs
Kris[m]1 has joined #ipfs
Lostfile[m] has joined #ipfs
EdmundMDiscord[m has joined #ipfs
chmanieDiscord[m has joined #ipfs
Kevin[m]2 has joined #ipfs
chinsuDiscord[m] has joined #ipfs
sfromentDiscord[ has joined #ipfs
vexlDiscord[m] has joined #ipfs
denzukoDiscord[m has joined #ipfs
Krakakanok[m] has joined #ipfs
NastyEbilPiwateD has joined #ipfs
M4eekDiscord[m] has joined #ipfs
M4eek[m] has joined #ipfs
shadow53[m] has joined #ipfs
ad87657Discord[m has joined #ipfs
lamborghiniDisco has joined #ipfs
JayWelshDiscord[ has joined #ipfs
felixschlDiscor4 has joined #ipfs
DerekDiscord[m] has joined #ipfs
DaekiDiscord[m] has joined #ipfs
rozgoDiscord[m] has joined #ipfs
ZaZ[m] has joined #ipfs
jazzy-jeff^_^[m] has joined #ipfs
TH0RynDiscord[m] has joined #ipfs
SmileRobotDiscor has joined #ipfs
competentcuttlef has joined #ipfs
malaclypsDiscord has joined #ipfs
Tbi[m] has joined #ipfs
marcusrbrownDisc has joined #ipfs
jazzy-jeff^_^Dis has joined #ipfs
Mira[m] has joined #ipfs
peterk[m] has joined #ipfs
ArunDiscord[m] has joined #ipfs
SmileRobot[m] has joined #ipfs
MichaelTenDiscor has joined #ipfs
mZDiscord[m] has joined #ipfs
BossMANDiscord[m has joined #ipfs
LeFDiscord[m] has joined #ipfs
James|ColonyDisc has joined #ipfs
koalalorenzoDisc has joined #ipfs
rxninDiscord[m] has joined #ipfs
BossMAN[m] has joined #ipfs
chadlupkes[m] has joined #ipfs
TionisDiscord[m] has joined #ipfs
JordanKrageDisco has joined #ipfs
manfredDiscord[m has joined #ipfs
M5310[m] has joined #ipfs
gunttedDiscord[m has joined #ipfs
chrisDiscord[m] has joined #ipfs
RealityDiscord[m has joined #ipfs
gregjeanmartDisc has joined #ipfs
Shmultz9776[m] has joined #ipfs
ShmultzDiscord[m has joined #ipfs
tony[m]2 has joined #ipfs
OlegStotsky[m] has joined #ipfs
GeorgeX2798[m] has joined #ipfs
bekoDiscord[m] has joined #ipfs
nocentDiscord[m] has joined #ipfs
KisulkenDiscord[ has joined #ipfs
ryanchristoDisco has joined #ipfs
DiscordRSSDiscor has joined #ipfs
Grey[m] has joined #ipfs
nocent9720[m] has joined #ipfs
truth[m] has joined #ipfs
JustMaierDiscord has joined #ipfs
iiogamaDiscord[m has joined #ipfs
zazikiDiscord[m] has joined #ipfs
snap[m] has joined #ipfs
JaoheahDiscord[m has joined #ipfs
fexra|TRTLDiscor has joined #ipfs
sachaDiscord[m] has joined #ipfs
Suprscale[m] has joined #ipfs
JustMaier[m]1 has joined #ipfs
haz[m]2 has joined #ipfs
braditz[m]2 has joined #ipfs
dhenzDiscord[m] has joined #ipfs
itsmekntDiscord[ has joined #ipfs
neilDiscord[m] has joined #ipfs
aaronpkDiscord[m has joined #ipfs
ExpherienceDisco has joined #ipfs
GabrielBadGriefD has joined #ipfs
aleDiscord[m] has joined #ipfs
planetary_devDis has joined #ipfs
megadogberthehi4 has joined #ipfs
Phillmac[m] has joined #ipfs
MisterGoreDiscor has joined #ipfs
godparticleDisco has joined #ipfs
celsoDiscord[m] has joined #ipfs
HeysteinDiscord[ has joined #ipfs
megadogberthehim has joined #ipfs
magnetist[m] has joined #ipfs
NatoBoram[m]1 has joined #ipfs
Heystein[m] has joined #ipfs
benaszab[m] has joined #ipfs
DioBrandon[m] has joined #ipfs
Obo[m]2 has joined #ipfs
new0neDiscord[m] has joined #ipfs
JerbsDiscord[m] has joined #ipfs
OxyDiscord[m] has joined #ipfs
NatoBoram[m]2 has joined #ipfs
thomasDiscord[m] has joined #ipfs
cannabysDiscord[ has joined #ipfs
benaszabDiscord[ has joined #ipfs
LAkiraS[m] has joined #ipfs
XierumengDiscord has joined #ipfs
Kiesenverseist[m has joined #ipfs
zegordo[m] has joined #ipfs
c090178[m] has joined #ipfs
zegordoDiscord[m has joined #ipfs
JungleHeartDisco has joined #ipfs
drbhDiscord[m] has joined #ipfs
sekiDiscord[m]1 has joined #ipfs
ZapierDiscord[m] has joined #ipfs
KYZITEMELOS93Dis has joined #ipfs
JungleHeart[m] has joined #ipfs
AgentJ[m] has joined #ipfs
SirMemesALotDisc has joined #ipfs
EdmundM[m] has joined #ipfs
LordFenixNC[m]2 has joined #ipfs
vexl[m]1 has joined #ipfs
thestevewayDisco has joined #ipfs
mattcDiscord[m] has joined #ipfs
pusherDiscord[m] has joined #ipfs
paulmahoneDiscor has joined #ipfs
leoalvarezhDisc4 has joined #ipfs
leoalvarezh[m]1 has joined #ipfs
mattc[m] has joined #ipfs
Dazuck-3BoxDisco has joined #ipfs
catmanDiscord[m] has joined #ipfs
Lilz|BetaMeDisco has joined #ipfs
dqxDiscord[m] has joined #ipfs
prcDiscord[m] has joined #ipfs
vexl[m]2 has joined #ipfs
koalalorenzo[m]1 has joined #ipfs
malaclyps[m]1 has joined #ipfs
felixschl[m]2 has joined #ipfs
standard[m] has joined #ipfs
rxnin[m] has joined #ipfs
7IZAABI6F has joined #ipfs
greg[m]1 has joined #ipfs
59NAAULDT has joined #ipfs
planetary_dev[m] has joined #ipfs
MisterGore[m] has joined #ipfs
RockSteadyTRTLDi has joined #ipfs
Xierumeng[m] has joined #ipfs
the_nikinDiscord has joined #ipfs
nyarlathotepDisc has joined #ipfs
greenLion[m] has joined #ipfs
vamsiDiscord[m] has joined #ipfs
jenncloudDiscord has joined #ipfs
nyarlathotep[m] has joined #ipfs
M011000100111010 has joined #ipfs
kungfooman[m] has joined #ipfs
freethinkingawa4 has joined #ipfs
foxcoolDiscord[m has joined #ipfs
Discord[m]1 has joined #ipfs
ShokuninDiscord[ has joined #ipfs
LokeLDiscord[m] has joined #ipfs
realChainDiscord has joined #ipfs
dindustriesDisco has joined #ipfs
jamiedubsDiscord has joined #ipfs
Ja3oodDiscord[m] has joined #ipfs
npfossDiscord[m] has joined #ipfs
AraratDiscord[m] has joined #ipfs
zloba[m] has joined #ipfs
Microsoft_techni has joined #ipfs
drshamoonDiscord has joined #ipfs
JohnnyMilkshakes has joined #ipfs
GuillaumeDiscord has joined #ipfs
l^discord[m]1 has joined #ipfs
CantiTurtleCoinD has joined #ipfs
Abraxas[m] has joined #ipfs
silent_ActivistD has joined #ipfs
ptonerDiscord[m] has joined #ipfs
vasaDiscord[m] has joined #ipfs
l^discordDiscord has joined #ipfs
cyluDiscord[m] has joined #ipfs
NooooooWayyyyyDi has joined #ipfs
allgo[m] has joined #ipfs
TianyiDiscord[m4 has joined #ipfs
postablesDiscord has joined #ipfs
allgoDiscord[m] has joined #ipfs
ithithDiscord[m] has joined #ipfs
johanhermanDisc4 has joined #ipfs
KinnardDiscord[m has joined #ipfs
sanderDiscord[m] has joined #ipfs
l^discord4314[m] has joined #ipfs
KinnardDiscord[7 has joined #ipfs
deltaDiscord[m] has joined #ipfs
Bads3ctor9700[m] has joined #ipfs
LSJI07Discord[m] has joined #ipfs
alphapapaactualD has joined #ipfs
postables[m]2 has joined #ipfs
HeishDiscord[m] has joined #ipfs
jimpickDiscord[m has joined #ipfs
SteffDiscord[m] has joined #ipfs
Steff[m] has joined #ipfs
TeamIan[m] has joined #ipfs
Phi[m]1 has joined #ipfs
TeamIanDiscord[m has joined #ipfs
JeanDiscord[m] has joined #ipfs
PhiDiscord[m] has joined #ipfs
wcharginDiscord[ has joined #ipfs
neohexDiscord[m] has joined #ipfs
modig[m] has joined #ipfs
CatManDoooDiscor has joined #ipfs
RomaricDiscord[m has joined #ipfs
ClmentDiscord[m] has joined #ipfs
h2Discord[m] has joined #ipfs
neohex[m] has joined #ipfs
modigDiscord[m] has joined #ipfs
Clment[m] has joined #ipfs
andrewxhillDisco has joined #ipfs
mikealDiscord[m] has joined #ipfs
ZeugeIotas[m] has joined #ipfs
mZDiscord[m]1 has joined #ipfs
msena3Discord[m] has joined #ipfs
CocoonCrashDisco has joined #ipfs
5EXAATVBD has joined #ipfs
bushido711Discor has joined #ipfs
59NAAULDU has joined #ipfs
KubeWorshipperDi has joined #ipfs
plexusDiscord[m] has joined #ipfs
lilz[m] has joined #ipfs
abhi_Discord[m] has joined #ipfs
obzenba[m] has joined #ipfs
pps96[m] has joined #ipfs
pps96Discord[m] has joined #ipfs
AuHauDiscord[m] has joined #ipfs
bitspill[m] has joined #ipfs
rittmeDiscord[m] has joined #ipfs
bitspillDiscord[ has joined #ipfs
aeddiDiscord[m] has joined #ipfs
marcocastignoli7 has joined #ipfs
RichardLittDisco has joined #ipfs
thomasbDiscord[m has joined #ipfs
jklepatchDiscord has joined #ipfs
TristanDiscord[m has joined #ipfs
dignifiedquire[m has joined #ipfs
chmanieDiscord[4 has joined #ipfs
zcopleyDiscord[m has joined #ipfs
dignifiedquireDi has joined #ipfs
GelvenDiscord[m] has joined #ipfs
vamsi[m] has joined #ipfs
sukarDiscord[m] has joined #ipfs
oed3Discord[m] has joined #ipfs
cristobalDiscor4 has joined #ipfs
cristobal8876[m] has joined #ipfs
kanejDiscord[m] has joined #ipfs
sukar[m] has joined #ipfs
Kenzo3Discord[m] has joined #ipfs
aswiththewildDis has joined #ipfs
amatuniDiscord[m has joined #ipfs
94KAAJGKX has joined #ipfs
katakotoDiscord[ has joined #ipfs
32NAA5YAP has joined #ipfs
r5723013[m] has joined #ipfs
r5723013Discord[ has joined #ipfs
jmank88Discord[m has joined #ipfs
cwchristerwDisco has joined #ipfs
felixschlDiscord has joined #ipfs
RickDiscord[m] has joined #ipfs
jgmac1106Discord has joined #ipfs
dy5es41Discord[m has joined #ipfs
MatrixBridgeswed has joined #ipfs
gnunicornDiscord has joined #ipfs
carson[m] has joined #ipfs
pbvieDiscord[m] has joined #ipfs
carsonfarmerDisc has joined #ipfs
EugeneDiscord[m] has joined #ipfs
tom85Discord[m] has joined #ipfs
grvhiDiscord[m] has joined #ipfs
foxcoolDiscord[4 has joined #ipfs
Us[m] has joined #ipfs
JonwelDiscord[m] has joined #ipfs
grvhi[m] has joined #ipfs
placer14Discord[ has joined #ipfs
Eugene[m] has joined #ipfs
Jonwel[m] has joined #ipfs
UsDiscord[m] has joined #ipfs
Heish1580[m] has joined #ipfs
gts[m] has joined #ipfs
UserDiscord[m] has joined #ipfs
leoalvarezhDisco has joined #ipfs
cwDiscord[m] has joined #ipfs
gtsDiscord[m] has joined #ipfs
cw[m] has joined #ipfs
User[m]2 has joined #ipfs
leoalvarezh[m] has joined #ipfs
SenshiDiscord[m] has joined #ipfs
MatthDiscord[m] has joined #ipfs
te0dDiscord[m] has joined #ipfs
aphelionzDiscord has joined #ipfs
braditz[m] has joined #ipfs
marcocastignoliD has joined #ipfs
shimakaze[m] has joined #ipfs
te0d[m] has joined #ipfs
rappel[m] has joined #ipfs
braditzDiscord[4 has joined #ipfs
rappelDiscord[m] has joined #ipfs
aphelionz[m] has joined #ipfs
marcocastignoli[ has joined #ipfs
delta[m]1 has joined #ipfs
wchargin[m] has joined #ipfs
SweatDiscord[m] has joined #ipfs
fozzieDiscord[m] has joined #ipfs
xtream1101[m] has joined #ipfs
Ablibu[m]1 has joined #ipfs
PrabhaavDiscord[ has joined #ipfs
nofwayy[m] has joined #ipfs
AblibuDiscord[m] has joined #ipfs
macerbiDiscord[m has joined #ipfs
nofwayyDiscord[m has joined #ipfs
JohnnyMilkshake7 has joined #ipfs
Orkun[m] has joined #ipfs
thatguyDiscord[m has joined #ipfs
OrkunDiscord[m] has joined #ipfs
KubeWorshipper[m has joined #ipfs
cristobalDiscord has joined #ipfs
ToangDiscord[m] has joined #ipfs
combray[m] has joined #ipfs
xtream1101Discor has joined #ipfs
combrayDiscord[m has joined #ipfs
porshDiscord[m] has joined #ipfs
cristobal7524[m] has joined #ipfs
panDiscord[m] has joined #ipfs
VictorGDiscord[m has joined #ipfs
ScottSmileyDisco has joined #ipfs
tobowersDiscord[ has joined #ipfs
flower88Discord[ has joined #ipfs
plexus[m]1 has joined #ipfs
prtfwDiscord[m] has joined #ipfs
AXEL-BrianDiscor has joined #ipfs
maparentDiscord[ has joined #ipfs
CryptoEmpressDis has joined #ipfs
AkshayDiscord[m] has joined #ipfs
Pamileisson2582[ has joined #ipfs
pierrebocDiscord has joined #ipfs
RDeckardDiscord4 has joined #ipfs
celsoDiscord[m]1 has joined #ipfs
tangoDiscord[m] has joined #ipfs
SchwartzDiscord[ has joined #ipfs
codynhatDiscord[ has joined #ipfs
robinzzzDiscord[ has joined #ipfs
farhad312Discord has joined #ipfs
RDeckardDiscord[ has joined #ipfs
M[AXEL]DarrDisco has joined #ipfs
buztedDiscord[m] has joined #ipfs
PamileissonDisco has joined #ipfs
CarboClanCDiscor has joined #ipfs
olizillaDiscord[ has joined #ipfs
eshohetDiscord[m has joined #ipfs
dpinnerDiscord[m has joined #ipfs
ngamboaDiscord[m has joined #ipfs
MaggieDiscord[m] has joined #ipfs
amatuni[m] has joined #ipfs
n9tDiscord[m] has joined #ipfs
MesaDiscord[m] has joined #ipfs
ddahlDiscord[m] has joined #ipfs
sbpDiscord[m] has joined #ipfs
eddyDiscord[m] has joined #ipfs
hubaDiscord[m] has joined #ipfs
nebulerDiscord[m has joined #ipfs
test123Discord[m has joined #ipfs
ksDiscord[m] has joined #ipfs
KinnardDiscord[4 has joined #ipfs
zwelsternDiscord has joined #ipfs
DerrickFDiscord[ has joined #ipfs
KarlDiscord[m] has joined #ipfs
johanhermanDisco has joined #ipfs
Luna14Discord[m] has joined #ipfs
mhzDiscord[m] has joined #ipfs
CathyLDiscord[m] has joined #ipfs
jessicaschilling has joined #ipfs
Matrixdiscordbri has joined #ipfs
lyonDiscord[m] has joined #ipfs
DamirDiscord[m] has joined #ipfs
kanej[m]2 has joined #ipfs
M_discord_507475 has joined #ipfs
TianyiDiscord[m] has joined #ipfs
gorhgorh[m]1 has joined #ipfs
GorkaDiscord[m] has joined #ipfs
romaricDiscord[4 has joined #ipfs
enricomarinoDisc has joined #ipfs
rklaehnDiscord[m has joined #ipfs
Dby0Discord[m] has joined #ipfs
funwhilelostDisc has joined #ipfs
RomainDiscord[m] has joined #ipfs
M[AXEL]JulianDis has joined #ipfs
bengoDiscord[m] has joined #ipfs
KeegenDiscord[m] has joined #ipfs
hvergaraDiscord[ has joined #ipfs
kevinbird15Disco has joined #ipfs
cesarosumDiscord has joined #ipfs
sekiDiscord[m] has joined #ipfs
doodlemaniaDisco has joined #ipfs
sblinnDiscord[m] has joined #ipfs
nlkoDiscord[m] has joined #ipfs
jwheelerDiscord[ has joined #ipfs
card[m]1 has joined #ipfs
nilocDiscord[m] has joined #ipfs
cardDiscord[m] has joined #ipfs
watDiscord[m] has joined #ipfs
janttoDiscord[m] has joined #ipfs
swedneck[GMT1]Di has joined #ipfs
wngrDiscord[m] has joined #ipfs
sprayDiscord[m] has joined #ipfs
ShruthiDiscord[m has joined #ipfs
felixschl[m]3 has joined #ipfs
PermawebEmbedDis has joined #ipfs
alilinuxAboShana has joined #ipfs
BifrostBot[m] has joined #ipfs
ad5twoknebor[m] has joined #ipfs
achingbrain[m] has joined #ipfs
swedneckswednec4 has joined #ipfs
DiscordBridgeswe has joined #ipfs
swedneck9241[m] has joined #ipfs
admin[m]3 has joined #ipfs
Dave[m]6 has joined #ipfs
aeddi has joined #ipfs
aer[m] has joined #ipfs
ColinG[m] has joined #ipfs
Guest98626 has joined #ipfs
ntninja has joined #ipfs
alphard[m] has joined #ipfs
aloiscochard[m] has joined #ipfs
albuic has joined #ipfs
memorythought has joined #ipfs
andresmazzo[m] has joined #ipfs
am3on[m] has joined #ipfs
amb007[m] has joined #ipfs
amongstclouds[m] has joined #ipfs
anoa has joined #ipfs
anolir has joined #ipfs
appa[m] has joined #ipfs
anomie[m] has joined #ipfs
andrewnez[m] has joined #ipfs
arinholmes[m] has joined #ipfs
astrojl_matrix has joined #ipfs
arturo[m] has joined #ipfs
cyberward_matrix has joined #ipfs
aschmahmann[m] has joined #ipfs
atrolloc[m] has joined #ipfs
azk64[m] has joined #ipfs
BeatRupp[m] has joined #ipfs
auhau[m]1 has joined #ipfs
axx[m] has joined #ipfs
Brasserie[m] has joined #ipfs
humanwire[m] has joined #ipfs
boturl4r[m] has joined #ipfs
betz[m]2 has joined #ipfs
bennofs[m] has joined #ipfs
Iroh[m] has joined #ipfs
Brunothebloodhou has joined #ipfs
brotholo[m] has joined #ipfs
buggeas40d[m] has joined #ipfs
brian[m] has joined #ipfs
BROWN[m] has joined #ipfs
DonP[m]1 has joined #ipfs
cabalcorp[m] has joined #ipfs
camb[m] has joined #ipfs
carsonfarmer[m]1 has joined #ipfs
cawal[m] has joined #ipfs
lkjhgfdsa00xxx[m has joined #ipfs
chr0ma[m] has joined #ipfs
catman[m] has joined #ipfs
chrismoos[m] has joined #ipfs
cesar[m] has joined #ipfs
chris-g[m] has joined #ipfs
abueide[m] has joined #ipfs
KirillTaran[m] has joined #ipfs
aeaf123[m] has joined #ipfs
CopenBra[m] has joined #ipfs
colinbr has joined #ipfs
ciet[m] has joined #ipfs
ook_2001 has joined #ipfs
cmkat[m] has joined #ipfs
AlexanderK[m] has joined #ipfs
AdamHepner[m] has joined #ipfs
josephnicholasGM has joined #ipfs
lordpipe has joined #ipfs
cyberwolf[m] has joined #ipfs
aha[m] has joined #ipfs
akt[m] has joined #ipfs
aleksssboss157[m has joined #ipfs
dcallagh has joined #ipfs
dag[m] has joined #ipfs
althaser has joined #ipfs
baffle has joined #ipfs
Dan[m] has joined #ipfs
andrewcrow[m] has joined #ipfs
DarkDrgn2k[m] has joined #ipfs
alxmhe[m] has joined #ipfs
dar[m] has joined #ipfs
davidar[m] has joined #ipfs
amark159[m] has joined #ipfs
anonymous[m] has joined #ipfs
alxev[m] has joined #ipfs
darkmeson[m] has joined #ipfs
ar[m] has joined #ipfs
Rumblestiltskin[ has joined #ipfs
array[m] has joined #ipfs
Ashaman[m] has joined #ipfs
defnofdumb[m] has joined #ipfs
admin[m]4 has joined #ipfs
djdv[m] has joined #ipfs
daviddias[m] has joined #ipfs
deva[m] has joined #ipfs
dennwc[m] has joined #ipfs
akt[m]1 has joined #ipfs
arjenpdevries[m] has joined #ipfs
averyy[m] has joined #ipfs
arting[m] has joined #ipfs
BafS[m] has joined #ipfs
dkasak[m] has joined #ipfs
divi[m]1 has joined #ipfs
dhole[m] has joined #ipfs
divi[m] has joined #ipfs
DiscordBridge[m4 has joined #ipfs
justbibibi[m] has joined #ipfs
DokterBob has joined #ipfs
didi-digitalsheh has joined #ipfs
bayaojiu[m] has joined #ipfs
attenuation[m] has joined #ipfs
dominicusin[m] has joined #ipfs
doronbehar[m] has joined #ipfs
bofu[m] has joined #ipfs
ballerfresh[m] has joined #ipfs
atpotts has joined #ipfs
dontstalkmepls[m has joined #ipfs
brianbland[m] has joined #ipfs
DanP[m] has joined #ipfs
bigx[m] has joined #ipfs
brainbubble[m] has joined #ipfs
boytemp1[m] has joined #ipfs
dumuzid[m] has joined #ipfs
sean[m]2 has joined #ipfs
dtz has joined #ipfs
dydx[m]1 has joined #ipfs
dryajov has joined #ipfs
blurHY[m] has joined #ipfs
cannondrumflower has joined #ipfs
c0dr[m] has joined #ipfs
brancengregory[m has joined #ipfs
dude[m]1 has joined #ipfs
ecloud[m] has joined #ipfs
edrex has joined #ipfs
EdgarBlazhevich[ has joined #ipfs
EmmatheEurobeatE has joined #ipfs
chanpoyu[m] has joined #ipfs
Caramba_3000[m] has joined #ipfs
Caleb[m] has joined #ipfs
edd[m] has joined #ipfs
gCalf[m] has joined #ipfs
Brio[m] has joined #ipfs
enum[m] has joined #ipfs
equbit has joined #ipfs
Guest80039 has joined #ipfs
etjet[m] has joined #ipfs
ericronne[m] has joined #ipfs
ewan[m] has joined #ipfs
Chaos[m] has joined #ipfs
eyenx[m] has joined #ipfs
fcat[m] has joined #ipfs
clarkenciel[m] has joined #ipfs
fsmoulk[m] has joined #ipfs
clf[m] has joined #ipfs
chuenlye[m] has joined #ipfs
cryptix[m] has joined #ipfs
Fns[m] has joined #ipfs
crydamoure[m] has joined #ipfs
fdf[m] has joined #ipfs
KonstantinLomash has joined #ipfs
cubemonkey[m] has joined #ipfs
coretx[m] has joined #ipfs
freddor has joined #ipfs
ciechomke[m] has joined #ipfs
fiddeldibu[m] has joined #ipfs
florz[m] has joined #ipfs
cryptobiotik[m] has joined #ipfs
flacks has joined #ipfs
cryptogoth[m] has joined #ipfs
cybercat[m] has joined #ipfs
D14na[m] has joined #ipfs
frislie[m] has joined #ipfs
DianaQueen[m] has joined #ipfs
fredrikj_tmp has joined #ipfs
frnet[m] has joined #ipfs
franc1s has joined #ipfs
fru[m] has joined #ipfs
d27[m] has joined #ipfs
d-nice2[m] has joined #ipfs
fridim[m] has joined #ipfs
daopu[m] has joined #ipfs
dani9[m] has joined #ipfs
danteziispeed[m] has joined #ipfs
d1mur4tdj[m] has joined #ipfs
Fuseteam has joined #ipfs
Gabriel[Matrix] has joined #ipfs
gate32[m] has joined #ipfs
Alex[m]11 has joined #ipfs
cy[m] has joined #ipfs
dazai[m] has joined #ipfs
gandi[m] has joined #ipfs
fujexo[m] has joined #ipfs
garblur83[m] has joined #ipfs
denko32133[m] has joined #ipfs
dElAvA_matrix has joined #ipfs
GitterIntegratio has joined #ipfs
gharbeia[m] has joined #ipfs
Methos[m] has joined #ipfs
deepitmatrixorg[ has joined #ipfs
gleeballs[m] has joined #ipfs
Godel[m] has joined #ipfs
godva[m] has joined #ipfs
ghastfilms[m] has joined #ipfs
glothit7ok[m] has joined #ipfs
ndarwincorn has joined #ipfs
grag[m] has joined #ipfs
guigouz has joined #ipfs
alex[m]2 has joined #ipfs
grumble[m] has joined #ipfs
dharwin[m] has joined #ipfs
graceful_luv[m] has joined #ipfs
Deviousway[m] has joined #ipfs
dliot[m] has joined #ipfs
dolmengate[m] has joined #ipfs
D1mur47[m] has joined #ipfs
graylan[m] has joined #ipfs
TravisJames[m] has joined #ipfs
h0lylag[m] has joined #ipfs
harkenedraven has joined #ipfs
dulten[m] has joined #ipfs
DrDeFacto[m] has joined #ipfs
dragonrider-e[m] has joined #ipfs
warpfork has joined #ipfs
hazegrey[m] has joined #ipfs
hElpmomey[m] has joined #ipfs
dot9sh[m] has joined #ipfs
HeavyMetal[m] has joined #ipfs
dxg168[m] has joined #ipfs
himcesjf has joined #ipfs
hans[m]4 has joined #ipfs
hsanjuan[m] has joined #ipfs
emceeaich[m] has joined #ipfs
dyskon[m] has joined #ipfs
iarp[m] has joined #ipfs
electric[m] has joined #ipfs
i5heu[m] has joined #ipfs
Bzh[m] has joined #ipfs
ecripte[m] has joined #ipfs
Eryk[m] has joined #ipfs
Enmerkar[m] has joined #ipfs
exothermic[m] has joined #ipfs
instagateur[m] has joined #ipfs
inkspread[m] has joined #ipfs
ilee[m] has joined #ipfs
igel[m] has joined #ipfs
indefini[m] has joined #ipfs
extrabrave[m] has joined #ipfs
eyhd-61uczn3v[m] has joined #ipfs
Standa[m] has joined #ipfs
intrus[m] has joined #ipfs
errichellic[m] has joined #ipfs
eren[m] has joined #ipfs
iodine[m] has joined #ipfs
ingo[m] has joined #ipfs
fishingsun[m] has joined #ipfs
irb[m] has joined #ipfs
ist5shreawf[m] has joined #ipfs
codyopel has joined #ipfs
ircer[m] has joined #ipfs
felixfoertsch[m] has joined #ipfs
issamehh[m] has joined #ipfs
fcgreg[m] has joined #ipfs
jcgruenhage has joined #ipfs
fmidq[m] has joined #ipfs
flip[m] has joined #ipfs
fatman2019[m] has joined #ipfs
fimfx[m] has joined #ipfs
Ichbinjoe has joined #ipfs
jimt[m] has joined #ipfs
jeffcasavant[m] has joined #ipfs
johnlong[m] has joined #ipfs
jeeg[m] has joined #ipfs
froid[m] has joined #ipfs
freeforme[m] has joined #ipfs
fti7[m] has joined #ipfs
josiah_sama has joined #ipfs
kiwi_uk[m] has joined #ipfs
JCaesar has joined #ipfs
jacckie[m] has joined #ipfs
josef[m] has joined #ipfs
jryans has joined #ipfs
jrswab has joined #ipfs
gfelbing[m] has joined #ipfs
kahiru__ has joined #ipfs
justyns[m] has joined #ipfs
ghostfire51[m] has joined #ipfs
kwk has joined #ipfs
geriatricjacob[m has joined #ipfs
girzel[m] has joined #ipfs
kanej[m]1 has joined #ipfs
kbc[m] has joined #ipfs
killswitch[m] has joined #ipfs
goozlez[m] has joined #ipfs
kishansagathiya[ has joined #ipfs
koalalorenzo[m] has joined #ipfs
kobajagi has joined #ipfs
dynodetk[m] has joined #ipfs
Klara[m] has joined #ipfs
hr[m] has joined #ipfs
labs[m] has joined #ipfs
lanzafame1 has joined #ipfs
h313[m] has joined #ipfs
hamb_urglar[m] has joined #ipfs
han_c[m] has joined #ipfs
h4314[m] has joined #ipfs
ibit[m]1 has joined #ipfs
hamechi[m] has joined #ipfs
herronjo[m] has joined #ipfs
krigare[m] has joined #ipfs
lapav[m] has joined #ipfs
http302[m] has joined #ipfs
HQiiii[m] has joined #ipfs
homulilly[m] has joined #ipfs
hlon[m] has joined #ipfs
hjoest[m] has joined #ipfs
lck[m] has joined #ipfs
hxu[m] has joined #ipfs
howitz3r[m] has joined #ipfs
hoijui[m] has joined #ipfs
imatrix[m] has joined #ipfs
Leer10[m] has joined #ipfs
id[m] has joined #ipfs
li_matrix has joined #ipfs
ioiottt[m] has joined #ipfs
ilmu[m] has joined #ipfs
leer10matrixorg[ has joined #ipfs
lidel[m] has joined #ipfs
internetman1337[ has joined #ipfs
plindner[m] has joined #ipfs
imalex[m] has joined #ipfs
linus[m] has joined #ipfs
jayw[m] has joined #ipfs
Lisanna[m] has joined #ipfs
jason558[m] has joined #ipfs
isigaesc[m] has joined #ipfs
Lutices[m] has joined #ipfs
psychedelic99[m] has joined #ipfs
macerbi[m] has joined #ipfs
jacopostanchi[m] has joined #ipfs
jak[m] has joined #ipfs
maht0rz[m] has joined #ipfs
jharrison[m] has joined #ipfs
makeworld has joined #ipfs
mack[m]1 has joined #ipfs
maigel[m] has joined #ipfs
MagnusSvensson[m has joined #ipfs
Magik6k has joined #ipfs
marsan27[m] has joined #ipfs
marius_k[m] has joined #ipfs
jcnmark6[m]1 has joined #ipfs
Marolar[m] has joined #ipfs
jojobyte[m] has joined #ipfs
jenzzens[m] has joined #ipfs
jon1012[m] has joined #ipfs
jeannemadeline[m has joined #ipfs
mattober[m] has joined #ipfs
MV[m] has joined #ipfs
mburns[m] has joined #ipfs
matias[m] has joined #ipfs
mav137[m] has joined #ipfs
Matthew[m] has joined #ipfs
jothi_basu[m] has joined #ipfs
jwkt[m] has joined #ipfs
millysoose[m] has joined #ipfs
Jacob[m]2 has joined #ipfs
k0mpjut0r has joined #ipfs
KeiiNisimo[m] has joined #ipfs
kausthubhak[m] has joined #ipfs
mdrights[m] has joined #ipfs
mewtrino has joined #ipfs
MichaelKohler[m] has joined #ipfs
kofalt[m] has joined #ipfs
krhubert[m] has joined #ipfs
khanson[m] has joined #ipfs
kw0n[m] has joined #ipfs
kst[m] has joined #ipfs
mkg20001 has joined #ipfs
mntr0[m] has joined #ipfs
hans[m]8 has joined #ipfs
Julian[m]2 has joined #ipfs
MrControl[m] has joined #ipfs
modul8[m] has joined #ipfs
moul has joined #ipfs
mrtrooper[m] has joined #ipfs
momack2[m] has joined #ipfs
simbergm has joined #ipfs
lab8916100448256 has joined #ipfs
msc[m] has joined #ipfs
mt[m] has joined #ipfs
lambskin[m] has joined #ipfs
kyb[m] has joined #ipfs
ladrl[m] has joined #ipfs
kylelanpart[m] has joined #ipfs
musicmatze has joined #ipfs
larsschulze[m] has joined #ipfs
natmac[m] has joined #ipfs
neo_penguin has joined #ipfs
Naughtylus[m] has joined #ipfs
nartir[m] has joined #ipfs
NetluxeTV[m] has joined #ipfs
lililashka[m] has joined #ipfs
neurocis|piggy-c has joined #ipfs
neh7u72xiydibedi has joined #ipfs
NiGeR[m] has joined #ipfs
lihui[m] has joined #ipfs
ngerstle[m] has joined #ipfs
limace255[m] has joined #ipfs
TheDarthSquidwar has joined #ipfs
leps[m] has joined #ipfs
linuxi0n[m] has joined #ipfs
nolep[m] has joined #ipfs
loxleo[m] has joined #ipfs
nocent has joined #ipfs
nigre-dique[m] has joined #ipfs
logoilab[m] has joined #ipfs
nldvos[m] has joined #ipfs
lpaukevich[m] has joined #ipfs
ljmf00[m] has joined #ipfs
laurent[m]2 has joined #ipfs
llleo[m] has joined #ipfs
notfirewall[m] has joined #ipfs
nongfu[m] has joined #ipfs
longyap[m] has joined #ipfs
noonereally[m] has joined #ipfs
BaBa[m] has joined #ipfs
octowan[m] has joined #ipfs
null_radix[m] has joined #ipfs
nudin[m] has joined #ipfs
oatmealraisin[m] has joined #ipfs
lng[m] has joined #ipfs
notafile has joined #ipfs
omichalek[m] has joined #ipfs
litebit[m] has joined #ipfs
liuxufei[m] has joined #ipfs
olizilla[m] has joined #ipfs
Garrett[m] has joined #ipfs
ookfof[m] has joined #ipfs
olmvnec[m] has joined #ipfs
parasite[m] has joined #ipfs
MarekIsalski[m] has joined #ipfs
martijnsch[m] has joined #ipfs
pbvie[m] has joined #ipfs
paulus[m] has joined #ipfs
peddie has joined #ipfs
mchelmre[m] has joined #ipfs
philipp[m] has joined #ipfs
pipex[m] has joined #ipfs
micah_l[m] has joined #ipfs
PopeRigby[m]1 has joined #ipfs
mayel[m]1 has joined #ipfs
pothyurf[m] has joined #ipfs
michaelrao[m] has joined #ipfs
mmausler[m] has joined #ipfs
Lrrr[m] has joined #ipfs
postables[m]1 has joined #ipfs
mistermonster[m] has joined #ipfs
MindlessTux[m] has joined #ipfs
miseenplace[m] has joined #ipfs
mivticsiaorg[m] has joined #ipfs
r0kk3rz[m] has joined #ipfs
Chaos_Zero has joined #ipfs
raumji[m] has joined #ipfs
RaphaelLullis[m] has joined #ipfs
realkarmakun[m] has joined #ipfs
rainlake[m] has joined #ipfs
mtita[m] has joined #ipfs
Mugichka[m] has joined #ipfs
msmart[m] has joined #ipfs
reedhhw[m] has joined #ipfs
moritonal[m] has joined #ipfs
rialtate[m] has joined #ipfs
mwee[m] has joined #ipfs
rihardsk[m] has joined #ipfs
mvalente[m] has joined #ipfs
roadt[m] has joined #ipfs
n3niu[m] has joined #ipfs
myqe[m] has joined #ipfs
Emile[m] has joined #ipfs
Naughtylus[m]1 has joined #ipfs
NicolasLeGland[m has joined #ipfs
naszam[m] has joined #ipfs
multik[m] has joined #ipfs
saklas[m] has joined #ipfs
Neuromancer[m] has joined #ipfs
sblinn[m] has joined #ipfs
neonfuz2 has joined #ipfs
said[m] has joined #ipfs
sanjay[m] has joined #ipfs
netshroom[m] has joined #ipfs
neotryptophan[m] has joined #ipfs
sadlotus[m] has joined #ipfs
samamy[m] has joined #ipfs
nick4242[m] has joined #ipfs
scio has joined #ipfs
jump_spider has joined #ipfs
Sean[m] has joined #ipfs
Saracen[m] has joined #ipfs
selousie[m] has joined #ipfs
sandorpetofi[m] has joined #ipfs
norou[m] has joined #ipfs
sexybiggetje[m] has joined #ipfs
Noah[m] has joined #ipfs
shokunin has joined #ipfs
silur[m] has joined #ipfs
Nomad[m]2 has joined #ipfs
mvalente[m]1 has joined #ipfs
mrdrdz[m] has joined #ipfs
silkeh has joined #ipfs
padok[m] has joined #ipfs
pandemoniumsengi has joined #ipfs
sl[m] has joined #ipfs
silwol has joined #ipfs
ozymandia5[m] has joined #ipfs
Neo[m]3 has joined #ipfs
Marcin[m] has joined #ipfs
sjkelly[m] has joined #ipfs
petzah[m] has joined #ipfs
phi-at-qgr has joined #ipfs
Sisyphe[m] has joined #ipfs
Giovanni[m] has joined #ipfs
pietervdvn[m] has joined #ipfs
piotrszegda[m] has joined #ipfs
petersjt014[m] has joined #ipfs
Slacktoid has joined #ipfs
pineapplehunter[ has joined #ipfs
pholsgrove[m] has joined #ipfs
p1fan8[m] has joined #ipfs
qlhhym[m] has joined #ipfs
piajesse[m]1 has joined #ipfs
planetx[m] has joined #ipfs
radsal[m] has joined #ipfs
pydera[m] has joined #ipfs
priom[m] has joined #ipfs
salazarp[m] has joined #ipfs
pytlin2718[m] has joined #ipfs
raku[m] has joined #ipfs
Quasdio[m] has joined #ipfs
rasmuserik[m] has joined #ipfs
MasterB[m] has joined #ipfs
spb_mentor[m] has joined #ipfs
TheILlKiD[m] has joined #ipfs
Slacktoid[m] has joined #ipfs
r20190723[m] has joined #ipfs
spacedgod[m] has joined #ipfs
alex[m]12 has joined #ipfs
stebalien has joined #ipfs
Swedneck_ has joined #ipfs
sumner[m] has joined #ipfs
steven-snowball[ has joined #ipfs
stroopwafel[m] has joined #ipfs
randy[m]1 has joined #ipfs
Swedneck1 has joined #ipfs
midi[m] has joined #ipfs
Swedneck3 has joined #ipfs
rovdyl[m] has joined #ipfs
rib[m] has joined #ipfs
ruijanlee[m] has joined #ipfs
rocketonmars[m] has joined #ipfs
ryan[m] has joined #ipfs
riolf[m] has joined #ipfs
luigi[m] has joined #ipfs
swedneck__ has joined #ipfs
romanblanco[m] has joined #ipfs
Swedneck has joined #ipfs
Swedneck2 has joined #ipfs
Romain[m]1 has joined #ipfs
ryco117[m] has joined #ipfs
Dreamland[m] has joined #ipfs
terichadbourne[m has joined #ipfs
Roger[m]1 has joined #ipfs
ryanchristo[m]1 has joined #ipfs
Technoquake has joined #ipfs
TeeCee has joined #ipfs
taaem has joined #ipfs
techbolt has joined #ipfs
ryu5t[m] has joined #ipfs
theorangepotato[ has joined #ipfs
tidux[m]1 has joined #ipfs
sewardsfolly[m] has joined #ipfs
cryptolake[m] has joined #ipfs
themsay[m] has joined #ipfs
sev42[m] has joined #ipfs
sethfork[m] has joined #ipfs
seed0c[m] has joined #ipfs
timokau[m] has joined #ipfs
tomjwatson[m] has joined #ipfs
TionisNagir[m] has joined #ipfs
toml[m] has joined #ipfs
sid[m] has joined #ipfs
siddh88[m] has joined #ipfs
siger[m] has joined #ipfs
triskeon[m] has joined #ipfs
tragique[m] has joined #ipfs
turt2live has joined #ipfs
tompa[m] has joined #ipfs
ttk2[m] has joined #ipfs
tops[m] has joined #ipfs
twom[m] has joined #ipfs
spk[m] has joined #ipfs
Dude[m] has joined #ipfs
various_accounts has joined #ipfs
contrun[m] has joined #ipfs
soapoperator[m] has joined #ipfs
unclechu has joined #ipfs
snupples[m] has joined #ipfs
aaron[m]3 has joined #ipfs
user51[m] has joined #ipfs
soren-rademacher has joined #ipfs
smartsammler[m] has joined #ipfs
SoraLee[m] has joined #ipfs
suger[m] has joined #ipfs
vladimir[m]1 has joined #ipfs
volver17[m] has joined #ipfs
void001[m] has joined #ipfs
vpei[m] has joined #ipfs
skywavesurfer[m4 has joined #ipfs
white_bluff[m] has joined #ipfs
waynewyang[m] has joined #ipfs
waterdudu[m] has joined #ipfs
wak-work has joined #ipfs
techniker[m] has joined #ipfs
weareswarmcity[m has joined #ipfs
tcoe[m] has joined #ipfs
coil[m] has joined #ipfs
superstring[m] has joined #ipfs
opal[m] has joined #ipfs
wowaname has joined #ipfs
wviana[m] has joined #ipfs
syxmut[m] has joined #ipfs
tapaswenipathak[ has joined #ipfs
yabirgb-m has joined #ipfs
xcesiv[m] has joined #ipfs
xavivives[m] has joined #ipfs
testco[m] has joined #ipfs
yangm has joined #ipfs
thechiefmeat[m] has joined #ipfs
test21562[m] has joined #ipfs
timnetwork[m] has joined #ipfs
thaingo[m] has joined #ipfs
Tillthecoyote[m] has joined #ipfs
yoltid[m] has joined #ipfs
ZerataX has joined #ipfs
yur3shmukcik[m] has joined #ipfs
tomaka[m] has joined #ipfs
Bertschneider[m] has joined #ipfs
tinker[m] has joined #ipfs
toadkillerdog[m] has joined #ipfs
tintin1[m] has joined #ipfs
Trump[m] has joined #ipfs
tsyn[m] has joined #ipfs
tuch[m] has joined #ipfs
travica[m] has joined #ipfs
tom[m]2 has joined #ipfs
Johanntplusdev[m has joined #ipfs
clear[m] has joined #ipfs
test[m]3 has joined #ipfs
tyx2q[m] has joined #ipfs
vchernin[m] has joined #ipfs
Valaybalalay[m] has joined #ipfs
west23[m] has joined #ipfs
tuxiqae[m]1 has joined #ipfs
unc[m] has joined #ipfs
UX0[m] has joined #ipfs
warlock29a[m] has joined #ipfs
vrolland[m] has joined #ipfs
vormgear[m] has joined #ipfs
wrunt[m] has joined #ipfs
victor[m]3 has joined #ipfs
wobbol[m] has joined #ipfs
weeatbricks[m] has joined #ipfs
joking[m] has joined #ipfs
xiphiness[m] has joined #ipfs
Xamino[m] has joined #ipfs
x6a[m] has joined #ipfs
xbwpc[m] has joined #ipfs
yiannisbot[m] has joined #ipfs
xdrixxyz[m] has joined #ipfs
zok[m] has joined #ipfs
zaphar_ps[m] has joined #ipfs
yaksbeard[m]1 has joined #ipfs
JackLund[m] has joined #ipfs
zero[m] has joined #ipfs
zwj[m] has joined #ipfs
zhenzhenli[m] has joined #ipfs
zopsi[m] has joined #ipfs
yoongster[m] has joined #ipfs
mindCrime_ has quit [Ping timeout: 245 seconds]
octav1a has quit [Ping timeout: 245 seconds]
mischat has quit [Ping timeout: 265 seconds]
clemo has quit [Ping timeout: 245 seconds]
kakra has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
hurikhan77 has joined #ipfs
hurikhan77 has quit [Client Quit]
MrSparkle has quit [Ping timeout: 268 seconds]
Adbray has quit [Read error: Connection reset by peer]
hurikhan77 has joined #ipfs
merethan has quit [Remote host closed the connection]
mischat has joined #ipfs
hurikhan77 has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
hurikhan77 has joined #ipfs
f8e3 has quit [Quit: WeeChat 1.6]
hsn has quit [Ping timeout: 245 seconds]
pecastro has quit [Ping timeout: 265 seconds]
mischat has quit [Remote host closed the connection]
toxync01 has quit [Excess Flood]
toxync01 has joined #ipfs
Acacia has joined #ipfs