Bitcoin Forum
May 05, 2024, 05:53:29 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 [6] 7 8 9 »  All
  Print  
Author Topic: Deleted  (Read 10062 times)
xhomerx10
Legendary
*
Offline Offline

Activity: 3836
Merit: 7993



View Profile
August 17, 2016, 12:20:01 PM
 #101

##
For the Jet image I'm also using F14 an now I think y should have added M for Mig
##

if the plane picture is representing a Mig, or F14,... then it makes the whole puzzle a bad design (shit puzzle) because the puzzle should have only one solution and it should have enough clues so that you can find that only one solution.
here there is only a picture of a place that looks like Fighter places which are called Jets and all those other answers are types of Jets and unless there is clue pointing to the picture being F## or Mig there is no reason for choosing a non-obvious answer.

same goes for the rest.

##
 It is evident there are mistakes since he found nothing.  The whole point of this thread was to share your ideas and solutions.  So where do you think the mistakes lie?

i will share my variations in a while. but i am sure the problem is with upper/lower case.

##
how long did it actually take you to get through all those possibilities? besides that i think there are a lot of mistakes so it wont be possible to find it out

about an hour, my CPU is super old haha. honestly i am surprised that it only took an hour to go through 149 Million
mouse over the time i posted the previous comment it shows the edit time Wink

 Firstly, it's not a shit puzzle; it's challenging.  I don't share your concern with respect to capital/miniscule letters.  If the clue represents a proper noun, then the letter must be capitalized.  The word jet should not be capitalized whereas Steve Jobs requires capital letters. Perhaps there might be some ambiguity with Kevlar but the occaisional pair to test isn't going to make it impossible.  We need to solve the clues for the letters they represent; not knowing those results in 58 possibilities for the character and that is the largest determination of difficulty in solving the puzzle.
 One thing that I find frustrating is that even though I have tried half a billion possibilities which failed to result in a valid key, I am unable to rule out any possibilities.

Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714931609
Hero Member
*
Offline Offline

Posts: 1714931609

View Profile Personal Message (Offline)

Ignore
1714931609
Reply with quote  #2

1714931609
Report to moderator
Coding Enthusiast
Legendary
*
Offline Offline

Activity: 1039
Merit: 2783


Bitcoin and C♯ Enthusiast


View Profile WWW
August 17, 2016, 04:00:27 PM
 #102

##Firstly, it's not a shit puzzle; it's challenging.##
there is a big difference between these two.

here is where i am at, lets work out the possibilities.

3) either P or 3
7) have no clue: 58 char
12) highly doubt it is anything other than puzzle
15) radiology or x-ray: R/X
16) i think it is August Schleicher so A but not sure
17) radar or sonar: R / S
18) have no clue: 58 char
30) E, V or C
35) it must be Z but to be sure: 58 char
36&54) can anybody explain how you convert 36 to 24 and 54 to 36 as you said before "converted from hex" i don't know hot this is done.
42) this is definitely not a balloon because of the arrow hear. now get this, i think this is a flash game that i can not remember the name but it is like this: in a 2d page you are a guy standing with your back to camera and shooting an arrow like the picture to the top and there is a big ball (circle) bouncing around when the arrow hits the ball it splits the ball to two different balls and so on until you destroy all the small balls. i hope someone can remember the name.
it is a name like ball buster, bubble breaker (all starting with b) : B
48) i go with LAMP: M (nothing else fits)

upper and lower case:
working on it.

Projects List+Suggestion box
Donate: 1Q9s or bc1q
|
|
|
FinderOuter(0.19.1)Ann-git
Denovo(0.7.0)Ann-git
Bitcoin.Net(0.26.0)Ann-git
|
|
|
BitcoinTransactionTool(0.11.0)Ann-git
WatchOnlyBitcoinWallet(3.2.1)Ann-git
SharpPusher(0.12.0)Ann-git
xhomerx10
Legendary
*
Offline Offline

Activity: 3836
Merit: 7993



View Profile
August 17, 2016, 05:52:24 PM
 #103

Awesome!  Thanks for sharing.
I can't complain about many of your solutions but I strongly disagree with
 #16.  This must be Linus Yale Jr as he Yale created one of the first lock sets that used a pin and tumbler design.
Really like your idea for
 #48 lamp.  I hadn't thought of that.  As far as
 #35, I think Pfizer and Viagra are possibilities but not Z (Z seems too obvious).

As for hex conversion,

here a number is represented in base 10

10n10n-110n-2...10n-(n-1)100

100=1 (ones)
101=10 (tens)
102=100 (hundreds)
103=1000 (thousands)
104=10000 (ten thousands)

and a number represented in base 16 looks similar

16n16n-116n-2...16n-(n-1)160

 To convert to hex, divide by 16n where n is a value that will give you a number not greater than the number being converted but will not result in a number greater than 16 when divided.  Do the same with the remainder until you have a number less than 16 which will represent the final digit.

numbers greater than 9 are represented as the letters A through F.

ie convert 20,000 decimal to hex

first division?
160=1 (too small)
161=16 (too small)
162=256 (too small)
163=4096 (maybe) <--- use this one
164=65535 (too large)

20,000/163=4 remainder 3616
3616/162=14 remainder 32
32/161=2 remainder 0
0/160=0

so,
the 4th digit from the right is 4
the 3rd digit from the right is E (E represents 14)
the 2nd digit from the right is 2
the 1st digit from the right is 0

20,000 dec = 4E20 hex

Hope that explains it.
Coding Enthusiast
Legendary
*
Offline Offline

Activity: 1039
Merit: 2783


Bitcoin and C♯ Enthusiast


View Profile WWW
August 18, 2016, 06:55:29 AM
 #104

thanks for the explanation.
so here is my updated code with 1,937,664 keys and nothing is right:
https://gist.github.com/Coding-Enthusiast/feeb2200b6201c94fec1bd5b704a2b67
(i will update this in the future if i find a different answer)

maybe others see what i don't see!

Projects List+Suggestion box
Donate: 1Q9s or bc1q
|
|
|
FinderOuter(0.19.1)Ann-git
Denovo(0.7.0)Ann-git
Bitcoin.Net(0.26.0)Ann-git
|
|
|
BitcoinTransactionTool(0.11.0)Ann-git
WatchOnlyBitcoinWallet(3.2.1)Ann-git
SharpPusher(0.12.0)Ann-git
bitsoldiers
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
August 18, 2016, 09:06:18 AM
 #105

wow i love the btc puzzle....its quite challenging, cracking the brain Roll Eyes Roll Eyes
xhomerx10
Legendary
*
Offline Offline

Activity: 3836
Merit: 7993



View Profile
August 18, 2016, 02:07:36 PM
 #106

thanks for the explanation.
so here is my updated code with 1,937,664 keys and nothing is right:
https://gist.github.com/Coding-Enthusiast/feeb2200b6201c94fec1bd5b704a2b67
(i will update this in the future if i find a different answer)

maybe others see what i don't see!

 That's nicely laid out.  I just finished night shift so I'm a little tired but I can contribute a few revisions.  First of all, you should only put capitals on proper nouns.

Code:
  

 4 +theKey[3] = new PKeyChar(new char[] { '3', 'p' });  #the symbol is of the miniscule Greek letter pi not Pi
 5 +theKey[4] = new PKeyChar('A');  # Atari is the name of a company and must have a capital
 6 +theKey[5] = new PKeyChar('p');  #parachute is not a proper noun
 7 +theKey[6] = new PKeyChar('j');  # jet is not a proper noun
 8 +theKey[7] = new PKeyChar('w'); # almost certainly this is a wing from the previous image
 
 10 +theKey[9] = new PKeyChar(new char[] { 'Y', 'y' });# The term yo-yo was deemed generic in the U.S. in 1965 maybe try both capital and miniscule for this
 
 12 +theKey[11] = new PKeyChar('i');  # an iron is not a proper noun
 
 16 +theKey[15] = new PKeyChar(new char[] { 'X', 'R', 'k', 'p', 'r', 'x' }); #try the minuscule for X and R as well as k for knee, and p for patella

 18 +theKey[17] = new PKeyChar(new char[] { 'R', 'S', 'r', 's' }); #sonar and radar can also be used without capitals 

 21 +theKey[20] = new PKeyChar('N'); # Nobel was a persons name (proper noun)

 22 +theKey[21] = new PKeyChar(new char[] { 'i', 'h', 's' });  #no capitals and added h for hockey skate
 23 +theKey[22] = new PKeyChar('X'); # probably capital
 24 +theKey[23] = new PKeyChar('Y'); # which means this is also capital
 25 +theKey[24] = new PKeyChar('i');  # igloo is not a proper noun
 26 +theKey[25] = new PKeyChar('f');  # film is not a proper noun
 27 +theKey[26] = new PKeyChar('G'); # Galileo is a proper noun

 29 +theKey[28] = new PKeyChar(The58Char.ToCharArray()); # I think this might be a wildcard so let's try all
 
 39 +theKey[38] = new PKeyChar(new char[] { 'W', 'w'});  #try both
 40 +theKey[39] = new PKeyChar('W', '8');  #this style was introduced with windows 8
   
 43 +theKey[42] = new PKeyChar('b'); #balloon is not a proper noun (perhaps try all too)
 
 
 46 +theKey[45] = new PKeyChar('E');  #Etch-a-Sketch needs a capital

 48 +theKey[47] = new PKeyChar('X');  # based on the clue layout, I'm now convinced this represents the element Xenon
 49 +theKey[48] = new PKeyChar('m'); #if it truly stands for lamp, use small letter (do you have capacity to make this a wildcard?)
 50 +theKey[49] = new PKeyChar('T');  # Tesla is the name of a company (and a family) it needs a capital
 51 +theKey[50] = new PKeyChar('m'); # mouse is a generic term so use the small letter


 Wish I could do more but I'm getting ready to go on a trip and I wont be able to take my computer with me ;(
Good luck!
 
dalek
Sr. Member
****
Offline Offline

Activity: 382
Merit: 250



View Profile
August 18, 2016, 02:23:58 PM
 #107

Code:
43 +theKey[42] = new PKeyChar('b'); #balloon is not a proper noun (perhaps try all too)
A balloon could also mean 'air' or 'helium'.

           ▄▄█████████▄▄
       ▄████▀▀       ▀▀████▄
     ▄██▀▀               ▀▀██▄
    ██▀                    ████
   ██                     ███▀██
  ██                    ▄██▀   ██
 ██                    ▄██      ██
██▀                  ▄██▀      ▄███
██                  ▄██      ▄██▀██
██                 ██▀    ▄███▀  ██
██               ▄██▀   ▄██▀     ██
██▄             ▄██  ▄███▀      ▄██
 ██           ▄██▀ ▄██▀         ██
  ██         ▄██▄███▀          ██
   ██       █████▀            ██
    ██▄   ▄████▀            ▄██
     ▀██▄███▀            ▄▄██▀
       ▀████▄▄       ▄▄████▀
           ▀▀█████████▀▀
L I V E T R E E   A D E P T TM
Own the future of entertainment
The World's 1st Community-Powered,
Film, TV and Content Network  ★
johnnyyash
Sr. Member
****
Offline Offline

Activity: 334
Merit: 250


View Profile
August 18, 2016, 02:31:01 PM
 #108

Challenging task..but good luck to the winner..wish a happy winning..
Pursuer
Legendary
*
Offline Offline

Activity: 1638
Merit: 1163


Where is my ring of blades...


View Profile
August 18, 2016, 02:35:58 PM
 #109

Code:
43 +theKey[42] = new PKeyChar('b'); #balloon is not a proper noun (perhaps try all too)
A balloon could also mean 'air' or 'helium'.

I think you shouldn't overthink the answers too much. that picture can be a sperm entering the egg

there was a suggestion about those two number only pictures (36 and 54) and someone said these are from Periodic table which I think is like overthinking but since I don't see the suggestions here I though I mention them: Kr and Xe

I think OP or whoever the creator is should give more hints because it seems unsolvable so far.

Only Bitcoin
useless4
Sr. Member
****
Offline Offline

Activity: 389
Merit: 250

CryptoTalk.Org - Get Paid for every Post!


View Profile
August 18, 2016, 06:17:48 PM
 #110

wow i love the btc puzzle....its quite challenging, cracking the brain Roll Eyes Roll Eyes
quite challenging? i watch people trying to crack it and i try to solve it myself but it is nearly impossible to do that, also there is a lower/upper case problem

 
                                . ██████████.
                              .████████████████.
                           .██████████████████████.
                        -█████████████████████████████
                     .██████████████████████████████████.
                  -█████████████████████████████████████████
               -███████████████████████████████████████████████
           .-█████████████████████████████████████████████████████.
        .████████████████████████████████████████████████████████████
       .██████████████████████████████████████████████████████████████.
       .██████████████████████████████████████████████████████████████.
       ..████████████████████████████████████████████████████████████..
       .   .██████████████████████████████████████████████████████.
       .      .████████████████████████████████████████████████.

       .       .██████████████████████████████████████████████
       .    ██████████████████████████████████████████████████████
       .█████████████████████████████████████████████████████████████.
        .███████████████████████████████████████████████████████████
           .█████████████████████████████████████████████████████
              .████████████████████████████████████████████████
                   ████████████████████████████████████████
                      ██████████████████████████████████
                          ██████████████████████████
                             ████████████████████
                               ████████████████
                                   █████████
YoBit AirDrop $|
Get 700 YoDollars for Free!
🏆
DOGE12321
Sr. Member
****
Offline Offline

Activity: 378
Merit: 250


View Profile
August 19, 2016, 08:45:58 AM
 #111

I can solve the problem of the video being too fast. This website has all of the images in the Youtube video in an ordered format. http://www.jangodfrey.com/illustration/guess-my-bitcoin/guess-my-bitcoin.php.

So far what I think the code is this: (Don't completely rely on me, I am not sure of it)

5JKP_PA____E____R___

Smiley
Prettygirl01315
Sr. Member
****
Offline Offline

Activity: 630
Merit: 250



View Profile
August 19, 2016, 08:59:45 AM
 #112

It took me an hour by just starring at the images hahaha and the suggestion of our co-members here XD ill just stay tune and see if theres someone can solve this puzzle ! Goodluck everyon !
krumblez
Full Member
***
Offline Offline

Activity: 182
Merit: 100


Chickens will rule the world one day.


View Profile WWW
August 19, 2016, 09:34:16 AM
 #113

OK GUISE  Grin

Update from Jan.

Wallet message has been signed:

Bitcointalk

G3ZTaz0Vehwhur68icyeN34wpDfFKcqIucY4zrvG2/T7QJFsdD6IS4QQTCPoJnHZ0u/F9vZIr1E76bO37wgJVSI=

--

There is a little error in a formula as per https://twitter.com/automatonical/status/764657081676812288

"@guessmybitcoin the chemical formula clue is wrong if it's meant to represent Kevlar. It should be N-H, not N=H."

The tiles have been updated accordingly




My tipjar: 19hyum5jc4QpX9zPaYELtEys4umaL4aKhF
────────The best high paying faucet websites for you to make free Bitcoins !────────
Decoded
Legendary
*
Offline Offline

Activity: 1232
Merit: 1029


give me your cryptos


View Profile
August 19, 2016, 09:46:55 AM
 #114

OK GUISE  Grin

Update from Jan.

Wallet message has been signed:

Bitcointalk

G3ZTaz0Vehwhur68icyeN34wpDfFKcqIucY4zrvG2/T7QJFsdD6IS4QQTCPoJnHZ0u/F9vZIr1E76bO37wgJVSI=

--

There is a little error in a formula as per https://twitter.com/automatonical/status/764657081676812288

"@guessmybitcoin the chemical formula clue is wrong if it's meant to represent Kevlar. It should be N-H, not N=H."

The tiles have been updated accordingly





At least we now know that it's 100% Kevlar.

I can solve the problem of the video being too fast. This website has all of the images in the Youtube video in an ordered format. http://www.jangodfrey.com/illustration/guess-my-bitcoin/guess-my-bitcoin.php.

So far what I think the code is this: (Don't completely rely on me, I am not sure of it)

5JKP_PA____E____R___

Smiley

Are you serious? Why do you always post shit? The private key isn't 10 letters. Please, post somewhere else if you don't understand.

looking for a signature campaign, dm me for that
HaXX0R1337
Sr. Member
****
Offline Offline

Activity: 574
Merit: 252



View Profile
August 19, 2016, 10:08:42 AM
 #115

Hey guys! I just found this puzzle on Twitter but i can't decipher it.

The puzzle is not mine but i want to see if we can share the clues!

In advance i ley you know that the private key starts with 5J..

Dont forget to post the priv key if you claim the prize!
 
Im open to exchange clues x clues so PM me! Grin

Here Is the video: youtube
uhmm, i have to say if its true, then getting 0.5 bitcoin from solving puzzle would be really cool.
Too bad im not a type of puzzle man Cheesy

▬▬▬▬▬▬

▬▬▬▬▬▬
       ▄▄█████████▄▄
    ▄█████████████████▄
  ▄█████▀▀       ▀▀█████▄
 ▄████▀             ▀████▄
▄████▀    ▄▄▄▄▄▄▄    ▀████▄
█████    █████████    █████
█████    ████████▀    █████
█████     ▄▄▄▄        █████
▀████▄   ██████      ▄████▀
 ▀████   █████▀     ▄████▀
   ▀▀     ▄▄▄    ▄▄█████▀
         █████   █████▀
         ▀███▀    ▀▀
COMPRO
FINANCE
▬▬▬▬▬▬

▬▬▬▬▬▬
▄▄█████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄████████████████▀▀█████▄
▄████████████▀▀▀    ██████▄
████████▀▀▀   ▄▀   ████████
█████▄     ▄█▀     ████████
████████▄ █▀      █████████
▀████████▌▐       ████████▀
▀████████ ▄██▄  ████████▀
▀█████████████▄███████▀
▀█████████████████▀
▀▀█████████▀▀
dalek
Sr. Member
****
Offline Offline

Activity: 382
Merit: 250



View Profile
August 19, 2016, 10:56:45 AM
 #116

uhmm, i have to say if its true, then getting 0.5 bitcoin from solving puzzle would be really cool.
Too bad im not a type of puzzle man Cheesy
not a very 1337 haxxor then, are you?  Tongue
seriously, there's too many wankers posting drivel just to pimp their signature affiliate links.

           ▄▄█████████▄▄
       ▄████▀▀       ▀▀████▄
     ▄██▀▀               ▀▀██▄
    ██▀                    ████
   ██                     ███▀██
  ██                    ▄██▀   ██
 ██                    ▄██      ██
██▀                  ▄██▀      ▄███
██                  ▄██      ▄██▀██
██                 ██▀    ▄███▀  ██
██               ▄██▀   ▄██▀     ██
██▄             ▄██  ▄███▀      ▄██
 ██           ▄██▀ ▄██▀         ██
  ██         ▄██▄███▀          ██
   ██       █████▀            ██
    ██▄   ▄████▀            ▄██
     ▀██▄███▀            ▄▄██▀
       ▀████▄▄       ▄▄████▀
           ▀▀█████████▀▀
L I V E T R E E   A D E P T TM
Own the future of entertainment
The World's 1st Community-Powered,
Film, TV and Content Network  ★
Strongkored
Legendary
*
Offline Offline

Activity: 2772
Merit: 1112


Leading Crypto Sports Betting & Casino Platform


View Profile WWW
August 19, 2016, 12:01:01 PM
 #117

uhmm, i have to say if its true, then getting 0.5 bitcoin from solving puzzle would be really cool.
Too bad im not a type of puzzle man Cheesy

Yeah its very cool man, but as I know this puzzle is very difficult because there are pictures that have two meanings and the hardest thing is the use of capital letters. Moreover, we also do not know if this address is also owned by the owner of the puzzle or not, and it must be proven hehe. Thanks anyway

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
r421x0
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 19, 2016, 12:05:32 PM
 #118

Here's a hint for you guys. I won't bother with this as I'm using an iPad and I'm lazy but...

MMIX (pronounced em-mix) is a 64-bit RISC architecture designed by ... set architecture. For the year, see 2009.
Bits‎: ‎64-bit‎
General purpose‎: ‎256‎
Endianness‎: ‎Big‎
Designer‎: ‎Donald Knuth‎
krumblez
Full Member
***
Offline Offline

Activity: 182
Merit: 100


Chickens will rule the world one day.


View Profile WWW
August 19, 2016, 12:51:41 PM
 #119

uhmm, i have to say if its true, then getting 0.5 bitcoin from solving puzzle would be really cool.
Too bad im not a type of puzzle man Cheesy

Yeah its very cool man, but as I know this puzzle is very difficult because there are pictures that have two meanings and the hardest thing is the use of capital letters. Moreover, we also do not know if this address is also owned by the owner of the puzzle or not, and it must be proven hehe. Thanks anyway

Did you not even read my updated post?Huh?

I went to the trouble of getting wallet signed by Jan as was requested in this thread before:

^^^

"OK GUISE  Grin

Update from Jan.

Wallet message has been signed:

Bitcointalk

G3ZTaz0Vehwhur68icyeN34wpDfFKcqIucY4zrvG2/T7QJFsdD6IS4QQTCPoJnHZ0u/F9vZIr1E76bO37wgJVSI="

My tipjar: 19hyum5jc4QpX9zPaYELtEys4umaL4aKhF
────────The best high paying faucet websites for you to make free Bitcoins !────────
BitcoinHodler
Hero Member
*****
Offline Offline

Activity: 1456
Merit: 578


HODLing is an art, not just a word...


View Profile
August 19, 2016, 12:57:40 PM
 #120

There is a little error in a formula as per https://twitter.com/automatonical/status/764657081676812288

"@guessmybitcoin the chemical formula clue is wrong if it's meant to represent Kevlar. It should be N-H, not N=H."

thank you for the update.
and this proved my suspicious, i am sure this puzzle can have many other errors and not so good clues because we all have been stuck at so many things with so many possible clues.
i hope the creator gives more clues or it will take a year and this has not yet been solved.

Holding Bitcoin More Every Day
Pages: « 1 2 3 4 5 [6] 7 8 9 »  All
  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!