Bitcoin Forum
April 18, 2024, 03:27:20 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 [51] 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 »
  Print  
Author Topic: GoldCoin™ (GLC) Thread - The Gold Standard of Digital Currency [OFFICIAL THREAD]  (Read 309943 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic. (695 posts by 1+ user deleted.)
Aurophilicity
Member
**
Offline Offline

Activity: 106
Merit: 11

Metallophilic Interaction


View Profile
July 06, 2016, 01:24:57 PM
 #1001

Unity and Faith, Peace and Progress, Gold and GoldCoin™ (GLD)

Observations and theory show that, on average, 28% of the binding-energy in aurophilic interaction can be attributed to relativistic expansion of the gold d-orbitals.
http://gldtalk.de   http://gldcoin.de   GLD E5CUw66jvPSGirggrek8vagARNM2ZQErEN
1713454040
Hero Member
*
Offline Offline

Posts: 1713454040

View Profile Personal Message (Offline)

Ignore
1713454040
Reply with quote  #2

1713454040
Report to moderator
The network tries to produce one block per 10 minutes. It does this by automatically adjusting how difficult it is to produce blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Aurophilicity
Member
**
Offline Offline

Activity: 106
Merit: 11

Metallophilic Interaction


View Profile
July 06, 2016, 02:22:22 PM
 #1002

Waiter! No more beer for these two whacked-out Germans, please.

Observations and theory show that, on average, 28% of the binding-energy in aurophilic interaction can be attributed to relativistic expansion of the gold d-orbitals.
http://gldtalk.de   http://gldcoin.de   GLD E5CUw66jvPSGirggrek8vagARNM2ZQErEN
Aurophilicity
Member
**
Offline Offline

Activity: 106
Merit: 11

Metallophilic Interaction


View Profile
July 08, 2016, 08:25:26 AM
 #1003

GoldCoin™ (GLD) to the sun!
Whom do we need? Wernher von Braun:

https://www.youtube.com/watch?v=QEJ9HrZq7Ro

Observations and theory show that, on average, 28% of the binding-energy in aurophilic interaction can be attributed to relativistic expansion of the gold d-orbitals.
http://gldtalk.de   http://gldcoin.de   GLD E5CUw66jvPSGirggrek8vagARNM2ZQErEN
M8BWNNRFMNdak68c
Sr. Member
****
Offline Offline

Activity: 373
Merit: 250


View Profile
July 10, 2016, 07:26:15 PM
Last edit: July 10, 2016, 07:48:06 PM by M8BWNNRFMNdak68c
 #1004

can you explain the Goldcoin "time lock feature" outlined 2013 already a bit further?
when i solo mine a block i see in debug.log
"Local has found possible valid block... queueing until timestamp is valid"
and the the whole client freezes, no more RPC requests are responded.. until
"Median Time between blocks is: 124 ... ProcessBlock: ACCEPTED "
so is there anything i can do against this? why cant i do "getinfo" etc..
does my pool software NOMP do anything wrong with the timestamps?

or is that the principle behind it:
if there would be a spike in hashrate ( 200% ), there will be 50% orphans ( as they all have to wait 45 seconds )
but how does difficulty then ever change?


I've been looking at my debug.log and see lots of this:

ERROR: CheckBlock() : block timestamp too far in the future
ERROR: ProcessBlock() : CheckBlock FAILED
GetNetworkHashPS(120)
GetTrueNetworkHashPS(120) - modified lookup
 best index = 114672
 difficulty = 0.435018
 hashrate for section: 14.901249 MH/s, time diff = 1385421655 min
 ====difficulty change at block 114660
 height = 114659, difficulty = 0.445892
 hashrate for section: 15.959102 MH/s, time diff = 1385414455 min
 ====difficulty change at block 114600
 height = 114599, difficulty = 0.457037
returning hashrate 241.250000 MH/s, lookup 15 (time difference = -0.0)

Ok so server time must be out of sync right? Well:

ntpdate pool.ntp.org
26 Nov 10:30:55 ntpdate[8366]: adjust time server 192.189.54.33 offset -0.102237 sec

0.1 seconds out of sync... umm does this time stuff cater for timezone?

The default maximum wait is 45 seconds, but you can extend this if you want to for optimal acceptance rate.

In main.cpp on lines 2094 to 2107

Code:
else if(QDateTime::fromTime_t(pindexBest->pprev->pprev->pprev->pprev->GetBlockTime()).secsTo(QDateTime::fromTime_t(GetBlockTime())) < (60*10 + 45) && hashPrevBlock == pindexBest->GetBlockHash()) {
//A valid block has been found but the current network adjusted time will not permit it to be accepted by other peers
//Thus we hold the block until GetAdjustedTime() is such that if(GetBlockTime() > GetAdjustedTime() + 45) is false
printf("Local has found possible valid block... queueing until timestamp is valid \n");
//Since we know that GetBlockTime() is greater than GetAdjustedTime()
//We sleep the difference
//Doesn't hurt to check twice
                                    if(GetBlockTime() > GetAdjustedTime() + 45)
                                    Sleep(1000*(GetBlockTime()-(GetAdjustedTime() + 45)));
/*while(GetBlockTime() > GetAdjustedTime() + 45) {
//We wait here..
}*/
}


Change (60*10 + 45) to (60*10 + X)

Where X is the maximum amount of time you'd like to hold a block.

And recompile.
MicroGuy (OP)
Legendary
*
Offline Offline

Activity: 2506
Merit: 1030


Twitter @realmicroguy


View Profile WWW
July 10, 2016, 08:48:21 PM
 #1005

can you explain the Goldcoin "time lock feature" outlined 2013 already a bit further?
when i solo mine a block i see in debug.log
"Local has found possible valid block... queueing until timestamp is valid"
and the the whole client freezes, no more RPC requests are responded.. until
"Median Time between blocks is: 124 ... ProcessBlock: ACCEPTED "
so is there anything i can do against this? why cant i do "getinfo" etc..
does my pool software NOMP do anything wrong with the timestamps?

or is that the principle behind it:
if there would be a spike in hashrate ( 200% ), there will be 50% orphans ( as they all have to wait 45 seconds )
but how does difficulty then ever change?


I've been looking at my debug.log and see lots of this:

ERROR: CheckBlock() : block timestamp too far in the future
ERROR: ProcessBlock() : CheckBlock FAILED
GetNetworkHashPS(120)
GetTrueNetworkHashPS(120) - modified lookup
 best index = 114672
 difficulty = 0.435018
 hashrate for section: 14.901249 MH/s, time diff = 1385421655 min
 ====difficulty change at block 114660
 height = 114659, difficulty = 0.445892
 hashrate for section: 15.959102 MH/s, time diff = 1385414455 min
 ====difficulty change at block 114600
 height = 114599, difficulty = 0.457037
returning hashrate 241.250000 MH/s, lookup 15 (time difference = -0.0)

Ok so server time must be out of sync right? Well:

ntpdate pool.ntp.org
26 Nov 10:30:55 ntpdate[8366]: adjust time server 192.189.54.33 offset -0.102237 sec

0.1 seconds out of sync... umm does this time stuff cater for timezone?

The default maximum wait is 45 seconds, but you can extend this if you want to for optimal acceptance rate.

In main.cpp on lines 2094 to 2107

Code:
else if(QDateTime::fromTime_t(pindexBest->pprev->pprev->pprev->pprev->GetBlockTime()).secsTo(QDateTime::fromTime_t(GetBlockTime())) < (60*10 + 45) && hashPrevBlock == pindexBest->GetBlockHash()) {
//A valid block has been found but the current network adjusted time will not permit it to be accepted by other peers
//Thus we hold the block until GetAdjustedTime() is such that if(GetBlockTime() > GetAdjustedTime() + 45) is false
printf("Local has found possible valid block... queueing until timestamp is valid \n");
//Since we know that GetBlockTime() is greater than GetAdjustedTime()
//We sleep the difference
//Doesn't hurt to check twice
                                    if(GetBlockTime() > GetAdjustedTime() + 45)
                                    Sleep(1000*(GetBlockTime()-(GetAdjustedTime() + 45)));
/*while(GetBlockTime() > GetAdjustedTime() + 45) {
//We wait here..
}*/
}


Change (60*10 + 45) to (60*10 + X)

Where X is the maximum amount of time you'd like to hold a block.

And recompile.

Not sure if this is the information that you need, but I found this recent discussion: https://www.gldtalk.org/index.php?topic=3617.0

Feel free to reply to the thread linked or to start a new discussion in our technical forum. Thank you! Smiley
MicroGuy (OP)
Legendary
*
Offline Offline

Activity: 2506
Merit: 1030


Twitter @realmicroguy


View Profile WWW
July 10, 2016, 11:49:56 PM
Last edit: July 17, 2016, 06:00:50 AM by MicroGuy
 #1006

July 10th, 2016 Highlights

Team Members Present: Four (Cryptosolar, MicroGuy, CryptoCanary, and Akumaburn)
Length of meeting: 1.45 hours

~~

Please find a brief recap of today's proceedings below:

Issues Related to Mining and Orphans
Our development team is still investigating the issues affecting Goldcoin mining production. We have yet to reach a consensus on how to best respond to the orphan situation. There are several potential ways of handling the matter, ranging from waiting for market capitalization to rise (which will increase network hashrate), to updating the code for improved handling of low-hashrate difficulty adjustments.


GoldClub Progress
A brief overview of Goldclub was presented detailing their plans for increasing adoption and advancing Goldcoin throughout West Africa.


Public Image as it Relates to Miners
There exists the perception that the Goldcoin team does no care about miners. This is not the case. It is the miners that breathe life into the network by processing transactions and advancing the blockchain. We discussed how becoming more sensitive to the needs of miners, while increasing transparency, could help to improve this skewed perception.


Improved Github Software Practices
While Goldcoin is indeed "open source software" there are still areas of improvement to be made regarding Github collaboration, bug checking, and general software publication practices.

~~
MicroGuy (OP)
Legendary
*
Offline Offline

Activity: 2506
Merit: 1030


Twitter @realmicroguy


View Profile WWW
July 14, 2016, 12:58:13 AM
 #1007

It seems as though the orphan problem has improved drastically since last week. I've rented 4 rigs and have been mining at http://inetrader.com:8221/static/ for a few days now and there have been very few orphans (practically none).



I'm not sure about the performance of other pools. I'll point the rigs to some of the other dedicated pools over the next few days and see if the results are the same.
MicroGuy (OP)
Legendary
*
Offline Offline

Activity: 2506
Merit: 1030


Twitter @realmicroguy


View Profile WWW
July 15, 2016, 05:27:39 AM
 #1008

~~

Super excited about the dev of @GoldCoin's latest Android App w/ support for the Nigerian Naira!

DL today's beta: https://github.com/Stouse49/goldcoin-wallet/releases/tag/v4.58.1-beta

~~
Bitbobb
Hero Member
*****
Offline Offline

Activity: 1134
Merit: 525


Less hops. More wins.


View Profile
July 19, 2016, 03:29:39 AM
 #1009

I just opened my wallet and got a connection then lost it.  I sent 500 gold coins and it will not confirm since the wallet has no nodes.  Can someone put a miner on this coin?  Or what is going on I usually get nodes no problem.  I can post txid infor if it helps..

MicroGuy (OP)
Legendary
*
Offline Offline

Activity: 2506
Merit: 1030


Twitter @realmicroguy


View Profile WWW
July 19, 2016, 07:16:35 AM
 #1010

I just opened my wallet and got a connection then lost it.  I sent 500 gold coins and it will not confirm since the wallet has no nodes.  Can someone put a miner on this coin?  Or what is going on I usually get nodes no problem.  I can post txid infor if it helps..

The hashrate looks normal: http://gld.cryptocoinexplorer.com/ And my clients all have the maximum number of allowed peers (by default).

How long has your client been open? I suggest giving it a few minutes to connect to more nodes.
Bitbobb
Hero Member
*****
Offline Offline

Activity: 1134
Merit: 525


Less hops. More wins.


View Profile
July 19, 2016, 01:18:31 PM
 #1011

Ok Thanks!  I will let it run today and see what happens and check with the explorers and report back tonight.

I could really use some support.  I am trying to help trumpcoin and there is a few more hours left in the vote for temp treasurer at post #856 link: https://bitcointalk.org/index.php?topic=1535436.840
If you are not a newbie go vote I could really use the support!  Thanks  we are trying to make crypto great and I can liaison with lots of other cool coin projects as treas (including gold coin which had proven to be stable).  I hope you will find the time to go support our little project that still has a few hours left to vote!!  Thanks

Bitbobb
Hero Member
*****
Offline Offline

Activity: 1134
Merit: 525


Less hops. More wins.


View Profile
July 19, 2016, 01:37:15 PM
 #1012

Ok Thanks!  I will let it run today and see what happens and check with the explorers and report back tonight.

I could really use some support.  I am trying to help trumpcoin and there is a few more hours left in the vote for temp treasurer at post #856 link: https://bitcointalk.org/index.php?topic=1535436.840
If you are not a newbie go vote I could really use the support!  Thanks  we are trying to make crypto great and I can liaison with lots of other cool coin projects as treas (including gold coin which had proven to be stable).  I hope you will find the time to go support our little project that still has a few hours left to vote!!  Thanks

Here is my transaction info: Status: 0/unconfirmed
Date: 7/18/2016 23:16
To: E6N2TcigmEreF4VBgfTFyMJp2VBzjsBxf7
Debit: -500.00 GLD
Net amount: -500.00 GLD
Transaction ID: d1422abb4ea96045594618809527a5cf4c507088b13977d7a6ce5a0c8daa4257

My wallet is now fully synced so this should have been fixed by now is my understanding.  I hope I did not loose the 500 Goldcoins!  Please help.  Thanks

Bitbobb
Hero Member
*****
Offline Offline

Activity: 1134
Merit: 525


Less hops. More wins.


View Profile
July 19, 2016, 10:58:47 PM
 #1013

Ok Thanks!  I will let it run today and see what happens and check with the explorers and report back tonight.

I could really use some support.  I am trying to help trumpcoin and there is a few more hours left in the vote for temp treasurer at post #856 link: https://bitcointalk.org/index.php?topic=1535436.840
If you are not a newbie go vote I could really use the support!  Thanks  we are trying to make crypto great and I can liaison with lots of other cool coin projects as treas (including gold coin which had proven to be stable).  I hope you will find the time to go support our little project that still has a few hours left to vote!!  Thanks

I ve voted for U  Smiley hope it helps Smiley at the beginning i really disliked trump, but actually it feels like choosing the lesser evil now , hopefully he supports Bitcoin/Blockchain ?

have a sunny day Smiley

Thanks!  I came in second place!  And my gold coins confirmed finally.  I just checked the wallet said confirmed in both places.  Thanks for the help

MicroGuy (OP)
Legendary
*
Offline Offline

Activity: 2506
Merit: 1030


Twitter @realmicroguy


View Profile WWW
July 20, 2016, 04:31:39 AM
 #1014

July 17h, 2016 Highlights

Team Members Present: Four (Goldclub, MicroGuy, OneoftheFreds, and Akumaburn)
Length of meeting: 2.75 hours

~~

Please find a brief recap of today's proceedings below:

Team Meeting on Skype
Today we held our weekly team meeting on Skype rather than Discord. Since the Skype platform seems more familiar to our members, we will experiment with hosting our team meetings on Skype for the remainder of July.


Affinity Group Project
Alfred Jordan (aka OneoftheFreds) presented his vision for advancing Goldcoin adoption by empowering 21 million people who are members of an affinity group in the United States. The team discussed the necessity for developing a business strategy that would pave the way for financing a collaborative project of such size and scope. 


New Android App
The latest Android application being developed by Stouse49 and tested by the community should be available on Google Playstore in early August. This week, the beta version was updated to support the NGN exchange rate as pictured below:




Gold Club Project
Gilead Okolonkwo (aka Goldclub) presented his vision for bringing Goldcoin education and adoption to West Africa through its affiliation with Gold Club of Nigeria. This week we will be looking into the possibility of having a physical Goldcoin created to be used as a collectible token.


Decentralized Core
Gilead reminded that as we look at raising money for various projects, it's important that Goldcoin remain independent and decentralized at its core. While like Bitcoin various dependent projects will be organized and built around its core, Goldcoin itself must remain autonomous and independent; its money supply fixed and unmovable.

~~
MicroGuy (OP)
Legendary
*
Offline Offline

Activity: 2506
Merit: 1030


Twitter @realmicroguy


View Profile WWW
July 20, 2016, 04:33:08 AM
 #1015

What is Goldcoin and how does it relate to Bitcoin?

Goldcoin (GLD) is a cryptocurrency built using the original bitcoin protocol. It’s part of the class commonly known today as alternative currencies. It currently holds the top position on both Google and Amazon.

Unhappy with the direction bitcoin core had taken after Nakamoto’s departure, the team at Goldcoin decided that, rather than complain about it, they would tackle the job themselves and complete the original vision.

Satoshi Nakamoto referred to the term ‘gold’ numerous times in his bitcoin whitepaper, and his gold analogy is used frequently in bitcoin articles explaining the protocol. So what better brand could there possibly be for an improved version.

Goldcoin is a top 100 cryptocurrency and is being deployed in West Africa, Ukraine, Canada, Germany, and the United States. Its 51% attack defense and Golden River difficulty algorithm give it the strongest most robust blockchain in cryptocurrency.

Today, bitcoin and Ethereum are common names in the tech world, but the most popular digital commodity of tomorrow will be Goldcoin (GLD). Hoped this has helped to answer your question, and “may all your bitcoin dreams turn to gold!”

~~

Source: https://www.quora.com/What-is-Goldcoin-and-how-does-it-relate-to-Bitcoin/answer/Greg-Matthews-32?srid=udkP5
BernieCoin
Hero Member
*****
Offline Offline

Activity: 791
Merit: 500


http://BERN.cash


View Profile WWW
July 20, 2016, 08:11:10 AM
Last edit: July 20, 2016, 08:38:00 AM by BernieCoin
 #1016

Ok Thanks!  I will let it run today and see what happens and check with the explorers and report back tonight.

I could really use some support.  I am trying to help trumpcoin and there is a few more hours left in the vote for temp treasurer at post #856 link: https://bitcointalk.org/index.php?topic=1535436.840
If you are not a newbie go vote I could really use the support!  Thanks  we are trying to make crypto great and I can liaison with lots of other cool coin projects as treas (including gold coin which had proven to be stable).  I hope you will find the time to go support our little project that still has a few hours left to vote!!  Thanks

I ve voted for U  Smiley hope it helps Smiley at the beginning i really disliked trump, but actually it feels like choosing the lesser evil now , hopefully he supports Bitcoin/Blockchain ?

have a sunny day Smiley

Voting for the lesser evil is still voting for evil. Wink

Please take no offense Bitbobb, that is not my intention. I think I have made peace with TrumpCoin devs/supporters and have publicly and privately wished them luck with their project. I am certainly not trying to damage that peace. Also, I would have given you a vote but, the voting had ended by the time I seen this vote request. #notMeUS

CryptoSolar, I am not aware on Mr. Trump's stance or if he has one. I have not seen any public comments myself. hiLlARy recently made a technology statement that had reference to "America's access to blockchain applications", proving she does not comprehend open source or anything #notForSale. Wink #NEVERhiLlARy

Cheers GoldCoin community!

"Break the Big Banks" - http://BERN.cash - #‎NotMeUS #rEVOLution
Bitcointalk.org thread: https://bitcointalk.org/index.php?topic=1338886.0
Bitbobb
Hero Member
*****
Offline Offline

Activity: 1134
Merit: 525


Less hops. More wins.


View Profile
July 20, 2016, 12:20:06 PM
 #1017

Ok Thanks!  I will let it run today and see what happens and check with the explorers and report back tonight.

I could really use some support.  I am trying to help trumpcoin and there is a few more hours left in the vote for temp treasurer at post #856 link: https://bitcointalk.org/index.php?topic=1535436.840
If you are not a newbie go vote I could really use the support!  Thanks  we are trying to make crypto great and I can liaison with lots of other cool coin projects as treas (including gold coin which had proven to be stable).  I hope you will find the time to go support our little project that still has a few hours left to vote!!  Thanks

I ve voted for U  Smiley hope it helps Smiley at the beginning i really disliked trump, but actually it feels like choosing the lesser evil now , hopefully he supports Bitcoin/Blockchain ?

have a sunny day Smiley

Voting for the lesser evil is still voting for evil. Wink

Please take no offense Bitbobb, that is not my intention. I think I have made peace with TrumpCoin devs/supporters and have publicly and privately wished them luck with their project. I am certainly not trying to damage that peace. Also, I would have given you a vote but, the voting had ended by the time I seen this vote request. #notMeUS

CryptoSolar, I am not aware on Mr. Trump's stance or if he has one. I have not seen any public comments myself. hiLlARy recently made a technology statement that had reference to "America's access to blockchain applications", proving she does not comprehend open source or anything #notForSale. Wink #NEVERhiLlARy

Cheers GoldCoin community!

Berniecoin,
     I know each vote has the same weight but your comment to me is a huge compliment.  Thanks.  I would have needed more than one more vote.  It is only for temporary treasurer so I will get another chance later to run and will tell you about it.
    
     now you know why I am here.  I agree that Satoshi's vision needs to be completed.  With access regulated into oblivion how can the liquidity ever increase like it needs to?  Therefor why would acceptance increase?.  As one of the truly unbanked I still must have help and hoops to jump through just to access the crypto world.  This is why I follow and invest in coins like Goldcoin and Trumpcoin.  I invest in them both equally and so far Goldcoin has shown steady increase while Trumpcoin has been up and down with some increase (about the same as goldcoin) since I started buying them both.  As for the tech both have good wallets.  Goldcoin gave me 2 transfer problems so far.  Both worked themselves out and the team is 100% solid at gold coin.  Trumpcoin has never had any transfer problems but their team is having some trouble organizing (hence my post for the vote (please forgive me)) and they just got a really good block explorer yesterday.  And both coins claim to be Satoshi vision supporters.

     I would like Gold coin to know that I have a plan to help both coins.  I would like to own large bags before I mention those plans however.  I hope that is okay?  Untill then keep up the good work and progress!  Thanks for the support everyone!

Xardas2014
Hero Member
*****
Offline Offline

Activity: 635
Merit: 500


View Profile
July 21, 2016, 09:15:02 AM
 #1018

Something on inetrader pool is screwy. I've had the most hash for the past 4 blocks and got paid almost nothing compared to the miners below me. Found a block while typing this. See for yourself.  http://gld.cryptocoinexplorer.com/block?block=26d680acb9159ce8021ebd764a4dbd3e30e5b3d41056857dafaeca1186bc970b



How does someone with less hash get paid 10 times more than me block after block?
MicroGuy (OP)
Legendary
*
Offline Offline

Activity: 2506
Merit: 1030


Twitter @realmicroguy


View Profile WWW
July 24, 2016, 04:10:02 AM
 #1019

~~

The Goldcoin core team is pleased to announce its latest addition!

Alfred Jordan joins the team as Vice President of Business Development. Mr. Jordan holds an MBA from Boston University and brings over 40 years experience underwriting and consulting Fortune 500 companies.

http://www.gldcoin.com/about/

We are entering a new phase in our growth, and this addition brings an experienced professional to our team providing expert business communications and strategy.

As always, I thank you for your contributions to the community. And, "may all your bitcoin dreams turn to Gold!"

~~
neo1947
Sr. Member
****
Offline Offline

Activity: 449
Merit: 250


don t touch my Bits


View Profile
July 26, 2016, 11:51:04 PM
Last edit: July 27, 2016, 12:19:16 AM by neo1947
 #1020

hello GLD community
before buying some gld there is something weird witch confused me bit,l was checking gldbtc price on coinmarket.com and price is 4k but, how come gldbtc on  c-cex is 1400?

Thanks
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 [51] 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!