Bitcoin Forum
May 01, 2024, 08:12:44 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 ... 136 »
1141  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: December 02, 2017, 06:12:30 PM
anyone is like me? More than 8 hours later my Dwarfpool profile is not updated

I was mining and I am mining and nathing...




See if you have eth addres WITHOUT 0x .
Dwarfpool need eth address without 0x at the beginning (it is the most common problem)
1142  Alternate cryptocurrencies / Mining (Altcoins) / Re: [DEVICE] SimpleRigResetter - Auto reboot freezed rigs - AVAILABLE NOW !!! on: December 02, 2017, 06:11:10 PM
Hello guys.
The production of Extension Boards is still in progress and we should have them in December.
I think that i wont do preorders on Extension Boards and they will be available in shop as soon as EVERYTHING will be tested, checked and software/firmware will be polished Smiley
In the same time as Extension Boards arrive there will be new firmware for SRRv1 and SRRv2 which will bring more features to devices Smiley
There is big demand on Extension Boards so i am expecting big delays in shipping at first.
Once i will have them ready to shipp i will release the in shop Smiley
Ofcourse i will inform all users who requested to be informed via email Smiley
1143  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: November 18, 2017, 11:15:41 PM
Hi. Can anybody explain how payments work on smos. Did transfer 24h ago 1 etc and it showed it completed in 1h on my List of deposits but it has not went over on to the ballance?

Im getting to my last 24h of mining and Im stuck?
Sometimes this happens for rare cases.
We are still investigating what is causing this in those rare cases.
Anyway please just write me email admin@simplemining.net with payment details and i will check it.
Also please give me few days to respond. I am getting too much emails these days....


Lot of months reading in this forum and never registered, I just made a new user today to tell you that I like smos a lot, so simple and stable, good job! I just have two suggestions and one question.
Can you add dstm miner?
Can you add individual target temp and fan speed for each card?
And the question, smos auto-updates itself if a new version comes out? I have nv-v1118, if v1119 or v1120 comes it will autoupdate or I have to download the new image?
Thank you!  Grin
Yes i will be adding few miners and dstm is one fo them.
All rigs are auto updating with new scripts or miner files.
Still i wont be making auto updates of drivers and kernel becasue this is dangerous.
Instead there will be optional updates for that cases Smiley
And also new images with applied new kernels and drivers such as this : http://download.simplemining.net/beta/simpleminer-RX-NV-rc2.img.zip

can anybody tell me how to get support from simplemining admin?
I have sent email to admin@simplemining.net but have had no reply.I have asked in the chat linked from simplemining.net but no replies there either.

I am currently left with a balance in my account but unable to use the system.
Please wait a little bit longer. I have oldest emails from 16 november to answer.
Still i am not blocking anything so far. Only alerts.
1144  Alternate cryptocurrencies / Mining (Altcoins) / Re: [DEVICE] SimpleRigResetter - Auto reboot freezed rigs - AVAILABLE NOW !!! on: November 18, 2017, 11:10:01 PM
Here is 3 scripts that you want Smiley


Code:
Turning OFF:
#!/bin/bash

# REQUIRED packages: socat

# INPUTY
serial="800002"
port="5"

serial=`echo $serial | xargs`
port=`echo $port | xargs`
port=`printf %02X $(( ${port} -1 ))`

firstByte="FF"
byteCount="0008"
action="52"
# long action="58"
mac="485053$serial"

checksum=`printf %02X $(( (0x${byteCount:0:2} + 0x${byteCount:2:2} + 0x$action + 0x${mac:0:2} + 0x${mac:2:2} + 0x${mac:4:2} + 0x${mac:6:2} + 0x${mac:8:2} + 0x${mac:10:2} + 0x$port)%0x100  ))`
packet="$firstByte$byteCount$action$mac$port$checksum"
echo "Wysyłam pakiet o następującej zawartości: $packet"

echo -n "$packet" | xxd -r -p |socat - UDP-DATAGRAM:255.255.255.255:1051,broadcast







TUNING ON:
#!/bin/bash

# REQUIRED packages: socat

# INPUTY
serial="800002"
port="5"

serial=`echo $serial | xargs`
port=`echo $port | xargs`
port=`printf %02X $(( ${port} -1 ))`

firstByte="FF"
byteCount="0008"
action="51"
# long action="58"
mac="485053$serial"

checksum=`printf %02X $(( (0x${byteCount:0:2} + 0x${byteCount:2:2} + 0x$action + 0x${mac:0:2} + 0x${mac:2:2} + 0x${mac:4:2} + 0x${mac:6:2} + 0x${mac:8:2} + 0x${mac:10:2} + 0x$port)%0x100  ))`
packet="$firstByte$byteCount$action$mac$port$checksum"
echo "Wysyłam pakiet o następującej zawartości: $packet"

echo -n "$packet" | xxd -r -p |socat - UDP-DATAGRAM:255.255.255.255:1051,broadcast




# Reboot rig

#!/bin/bash

# REQUIRED packages: socat

# INPUTY
serial="800002"
port="5"

serial=`echo $serial | xargs`
port=`echo $port | xargs`
port=`printf %02X $(( ${port} -1 ))`

firstByte="FF"
byteCount="0008"
action="53"
# long action="58"
mac="485053$serial"

checksum=`printf %02X $(( (0x${byteCount:0:2} + 0x${byteCount:2:2} + 0x$action + 0x${mac:0:2} + 0x${mac:2:2} + 0x${mac:4:2} + 0x${mac:6:2} + 0x${mac:8:2} + 0x${mac:10:2} + 0x$port)%0x100  ))`
packet="$firstByte$byteCount$action$mac$port$checksum"
echo "Wysyłam pakiet o następującej zawartości: $packet"

echo -n "$packet" | xxd -r -p |socat - UDP-DATAGRAM:255.255.255.255:1051,broadcast
1145  Alternate cryptocurrencies / Mining (Altcoins) / Re: [DEVICE] SimpleRigResetter - Auto reboot freezed rigs - AVAILABLE NOW !!! on: October 20, 2017, 12:08:39 PM
I'm not sure how your RMA process works but I may have to buy another and wait for it to arrive before sending in this one.   I don't have many problems but when I do I need the machines reset asap.
If there is broken unit then it will be replaced by new one or ther will be made full refund including shipping costs from you to us.
We have not much cases, like less than 1% of devices with some problem like one port not working or one other strange problem.
From i remember tht would be only third device that had any problems Smiley the many more sold didn had any problems.
So if you will get second device and you will see that there is definitly problem with the first one then no problem.
Just write to shop@simplemining.net and we will solve your problem Smiley
No need to worry.

Also about Extension boards.
We finally made and fully tested 4th extension board prototype that finally dont have any flaws.
Now we ordered production line and production of first batch will be done in about 40-60 days.
Once i will have poduction units and they will be again tested, i will start sale process Smiley
Sorry it took so long but i want to sell only 100% good product.
With new extension boards there will be also new firmware for SRRv1 and SRRv2 with more features Smiley
Once this all process will be done i will try to send everyone email about new firmwre for SRR Smiley
1146  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's CryptoNote AMD GPU Miner v10.2 on: October 11, 2017, 07:53:56 PM
Hi Calymore,
Do you have any ETA on version for linux ? Smiley
My users are waiting for Your release Smiley and many other part of the word Smiley
Thx for you well done job in all miners !
1147  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: October 10, 2017, 09:19:29 AM
11:18 - Little maintenence
11:23 - Maintenence Done
1148  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: October 09, 2017, 05:32:32 PM
Update v1128
- changed start delay from 6seconds to 12seconds in nvidia rigs (temporay fix for slow usb and too slow initialisation). This shoudl fix some OC problems in some cases on Nvidia rigs
- changed verbose logging in xmr-stak-amd miner from 3 to 4 (more speed stats)
1149  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: October 09, 2017, 11:43:14 AM
Tytanick,
      So you saying that if I get a faster USB stick it will solve my problems with overclocks and strange GPU3 stop's that move to different pcie slots?
Only OC problems.
The GPU3 stopped could be becasue of:
- too much OC (most common)
- bad riser (most common)
- some incompatibility in linux or incompatible motherboard bios (sometimes this is becasue if this yes - worth to try after rulling out above problems)
- bad gpu (slight chance)
1150  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: October 09, 2017, 10:34:27 AM
Hi Guys,
I can confirm that there is still an issue with overclocking Nvidia cards. I'm also getting the the below error.
Invalid MIT-MAGIC-COOKIE-1 keyFailed to connect to Mir: Failed to connect to unable to init server: Could not connect: Connection refused
However the error only seems to happen when I reboot the rig and then it only affects one or two cards per rig.
A fix is to go to overclocking and click save without changing anything and when the miner restarts everything works perfectly - until the next reboot.

I probably know whats causing it and i just need to make some fix in my script.
Anyway if i am thinking right then this issue is only on slow pendrives.

The dummy and temporary fix could be:
/root/utils/rclocal.sh
change 31 line from
  sleep 6
to
sleep 20

The Xorg is starting too slow on slow pendrives and thats probably the issue.
I have pretty fast ones so i dont have this issue and this explains why reloading fixes this problem.

I will make some checkups first before miner starts.
1151  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: October 08, 2017, 08:47:09 PM
Hi tytanick,
Can you stop with the time out on the website.
It is impossible now to manage our rigs we are always disconnected. My rigs are alive 24/7 so I need to be connected to the website 24/7 so can you stop the automatic disconnection.

If there is always disconnection there is no more interest in SMOS, we need a gui running with this OS.

Can you make a correction to this issue, thanks.


If you mean the Loggin Out.
Then yes it was a problem and it should be fixed now.
Thx for report.


I second that. No idea why the page logs me out.
Also the individual login link was a great future. Why is it gone?
I will make longer cookie duration, for example 48h.
Thats should do it.
1152  Alternate cryptocurrencies / Mining (Altcoins) / Re: [DEVICE] SimpleRigResetter - Auto reboot freezed rigs - AVAILABLE NOW !!! on: October 08, 2017, 08:19:43 PM
I have the original version of the rig resetter and am interested in buying 3 extra of the longest cables (I think the longest is 23feet?) shipped to US. Are these original cables still available? How much would it be for the 3 cables? Should I PM you?

I emailed you
Ok wait for my reply. I need to answer alll of them Tongue
1153  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: October 05, 2017, 09:46:49 PM
Is the DAG fix version safe?  I remember reading that it can be buggy for people.  If I got it running stable is it safe to leave alone or are there things we need to worry about?
For some motherboard it is in deed causing problems !
20% of my motherboard are behaving like bad boys but rest are totally ok.
You should just try one by one and prepare for reflash or have already other pendrive with old image Smiley


Hey Tyatanick... I'd just like to take the time to thank you for your work on successfully rolling out the Core Undervolting feature. THANK YOU MAN! Not only has it  extended the long term feasibility of GPU mining, but you have likely saved (with a single update) our planet a PETAwatt hour of energy over the next year alone. BRAVO!!!  Grin
No problem, still i admit that i implemented this update too late than i accually could and should, so sorry guys for that !


No, it's handmade which costs ~5$ =)
Just need to run ping command to it...
I want to switch to smOS, but this stops me...
Then you Should make simple bash script and run it in rc.local

#!/bin/bash
ping something.com
# the -t parameter works only in windows, in linux you dont need to add anything to make it work in a loop.


Hi eveyone)
i applied the dag fix, and one of the rigs went off
it wrote "Beta ROCM update completed, reboot in 60 seconds"
now it is off
what went wrong?
This kernel has some problems on some motherboards. It could be it, It could be also some pendrive problems.
Try reflashing with dagfix image from website.
If it wont help then try to reflash with old stable image.


Quote
added possibility to apply dagfix optional update to your rig simply by clicking red icon
so where is it exactly? I broke my eyes searching for it! or I dont have it because I already have downloaded dagfix version?
This update is showing in dashboard ONLY when rig doenst have dagfix kernel and it is RX OS and has at least one GPU connected.
In all other cases this update wont show up ofcourse Tongue

Installed two rigs today and so far update 1128 'if I'm not wrong' has an error the rig doesn't start after update I have to reboot to make it work.
I will look into this thx.
Does smOS support Wi-Fi? I have my rigs in a room away from the router and I don't want to be putting holes through walls or wires around the house. I didn't see anything about how you put in your email and start configuring from dash would work if I can't put my wifi ssid and pwd for it, unless first setup has to be done by cable.
I want to move away from Windows, have 2 rigs running 18 GPUs total.
No wifi support . Man i really need to make this FAQ Cheesy

help me linux does not want to work

Athlon II X2 250 Gigabyte GA-970A-DS3P DDR3 4GB 5 GPU Gigabyte RX 570 AORUS simpleminer-RX-v1118-17.30-dagfix
This motehrboard is known as really fucked up - meaning SMOS wont work on this motherboard and i cant help it Sad

I have installed the dagfix version and everything worked fine. I have 10 rx 580 8gb Armor OC and 1 rx 580 8gb red devil GS and it takes around 1700W with bios modding and core voltage to 860 (~330 MH/s. Now i have a question if it is possible to adjust the mvddc, because i belive that it is mor undervolting possible by reducing the memory voltage too around 900. So how is this possible with smOS? I have done the setting in the miner config, but it didn't worked. What else can i do?
I didnt bringed memory undervolting feature to not make this more harder than it is now.
Accually memory undervolting can save about 1-2 watts per gpu. So i guess it isnt worth it !
Only thing that came to my mind is to make overvoltimg in memory which COULD make memory work more stable on very high overclocking.
Accually i am thinking about this but i still am gathering some more informations.
If you want to mess with it then you could manually edit one script and add static memory undervolting by editing:
root/utils/oc_dpm2.sh file
change line
/root/utils/wolfamdctrl -i $x --core-state $coreState --mem-state $memoryState --core-clock ${coreArray[$i]} --mem-clock ${memoryArray[$j]} --volt-state $coreState --vddc-table-set ${coreVoltArray[$i]} #--mem-state $memoryState --mvdd 950
to
/root/utils/wolfamdctrl -i $x --core-state $coreState --mem-state $memoryState --core-clock ${coreArray[$i]} --mem-clock ${memoryArray[$j]} --volt-state $coreState --vddc-table-set ${coreVoltArray[$i]} --mem-state $memoryState --mvdd 950
Or 1000 or whatevery you want Tongue
If anyone will have results such as "i saved 5 watts with memory undervolting" or "i make it more stable with 100 MHZ more and now gpus is making 0,5MH/s or something  - just let me here know and other people.
If this will really make sense then i will implement it. If it will save 1-2 watt then there is no point right ? I am not as much eco friendly - in other case i would not be mining at all Cheesy

1154  Alternate cryptocurrencies / Mining (Altcoins) / Re: [DEVICE] SimpleRigResetter - Auto reboot freezed rigs - AVAILABLE NOW !!! on: October 05, 2017, 08:38:40 PM
One more question.  I have been using my SRR for a while now -- no issues.

I now have an issue with port 2.  The light on the PCB is green... the light in SRR Tool is green.  If I manually turn the rig off the SSR Tool is red.

However it won't reset/turn off any longer.

Port #1 is the same mobo and I have it hooked up the same.  I have tried disconnecting the cord from mobo > ssr and tried power cycling the SSR.  Any tips on what I can do to troubleshoot this further?

Yes.
Try to rule out cabling problems (bad cable or adapter) - use working one cable in the same slot.
Also try connecting other working rig to the port 2 in SRRv2.
If you see that for sure SRRv2 port 2 is causing problem and NOT motherboard itself or cables or adapter,
Please write me an email to admin@simplemining.net and lets start RMA - if its really broken then it will be replaced by new one Smiley
Please copy also your+my messages from bitcointalk. Waiting for your email with those 2 more tests Smiley
1155  Alternate cryptocurrencies / Mining (Altcoins) / Re: [DEVICE] SimpleRigResetter - Auto reboot freezed rigs - AVAILABLE NOW !!! on: October 04, 2017, 10:50:38 AM
Tytanic , any ETA on expansion boards ?
Its still ABOUT 2 months.
Once last prototype will be approved and no ANY flaws will be found then i we will need about month or 1,5 month for production.
I really dont want to release product with even slight flaw ...
So when last prototype will be good then i will have better release date Smiley
1156  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: October 04, 2017, 08:26:17 AM
phenomenal, now it's working correctly and with a 4 - 5+ MH/s improvement on the hashrate / card depending on memory, superb. Just one Q., before the dag fix I had finally gotten acceptable energy levels at power stage 3, to keep the energy levels around the same, should I go for 900 on the core undervolt or even lower, while keeping power stage at 3 ?
You need to experiment with it. I have mine on powerstage 3 and 900 .
You should watch powermeter and try to lower powerstage or undervolting and if it takes less wattage and its stable then ok.
If not then try to rise powerstage first.
Anyway this works as powestage+undervolt so if you have 900mv at powerstage 7 and second case on powerstage 3, then this 3 will take less wattage.
I dont know exactly what happening, i just know from experience that it behaves like that Smiley


Each GPU has own tolerance for undervolting.
Even 6 indentical GPUs from the same part are totally different. Once could undervolt to 900 while other to 850 remaining stable.
Every GPU is very separate case Smiley Also risers are important.
Bad risers i think can result in less stable voltage and can cause problems.
In this word there is milion cases that something will go wrong Cheesy


Is the anyway to view GPU Power Usage and Efficiency? I saw a video on the utube and there was a box with this info in it on his screen the os running.
I will add this to my TODO list and do it in some time yes.


Hello, i have a problem. NVIDIA 1080 cant overclock. I have update NV1127. How can i use updt 1128? Pls help me.. 2 days ago always be perfect,its new updt Sad
What i need to do? Thx
I need reebot rig to get new update?
Please write to me at admin@simplemining.net
I want to take a look on your rig.
Can you forward ssh port to your mining rig ang give it to me VIA EMAIN (not here !)
Or prepare team viewer to ay windows that is in he same network as your rig ?
Also send me rig name and email of this rig.
I have very little cases that this update fixed maaany cases but also caused new problems that didnt existed before.
Also try rebooting our rig and see if that will fix your problem ! (it might).
If not then write to me to email.


How to enable\use teamviewer in smos?
There is no such thing. RX OS is console only. Headless OS.


1157  Alternate cryptocurrencies / Mining (Altcoins) / Re: [DEVICE] SimpleRigResetter - Auto reboot freezed rigs - AVAILABLE NOW !!! on: October 04, 2017, 08:16:25 AM
Any ideas?  Socat too old maybe?

Mine have 1.7.3.1
Still i dont think this kind of difference in version could cause this.

Do you have this script exctly ? check it.

#!/bin/bash

## REQUIRED packages: socat (apt-get install socat)


## Other Linux Systems than SimpleMining OS - unhash 3 lines below and hash SimpleMiningOS ones
srrEnabled="1"
srrSerial="000055"
srrSlot="1"

## SimpleMining OS ## hash this section if you are using above variables
#CONFIG_FILE="/root/config.txt"
#source $CONFIG_FILE
#srrEnabled=`echo $JSON | jq -r .srrEnabled`
#srrSerial=`echo $JSON | jq -r .srrSerial | xargs`
#srrSlot=`echo $JSON | jq -r .srrSlot | xargs`
#####################

if [ "$srrEnabled" -eq 1  ]; then
    echo "SRR is Enabled"
else
    echo "SRR Not configured. SRR Agent will exit in 120 seconds"
    sleep 120
    exit
fi

################################
## Dont touch anything below Smiley
srrSlot=`printf %02X $(( ${srrSlot} - 1 ))`
firstByte="FF"
byteCount="0008"
action="55"
mac="485053$srrSerial"

checksum=`printf %02X $(( (0x${byteCount:0:2} + 0x${byteCount:2:2} + 0x$action + 0x${mac:0:2} + 0x${mac:2:2} + 0x${mac:4:2} + 0x${mac:6:2} + 0x${mac:8:2} + 0x${mac:10:2} + 0x$srrSlot)%0x100  ))`
packet="$firstByte$byteCount$action$mac$srrSlot$checksum"

while true
do
    echo "SRR, please dont kill me, i will ask again in 2 seconds $packet"
    echo -n "$packet" | xxd -r -p |socat - UDP-DATAGRAM:255.255.255.255:1051,broadcast > /dev/null
    sleep 2
done
1158  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: October 03, 2017, 10:41:06 PM
Still +175w more with same speed that i get on windows with 6x ROG-STRIX-RX580-O8G-GAMING
You need to enter something like 900 . in undervolt.

Yes please share with us.  I see the "Update" button and would like more information before I click it.
Click it, you will see info in confirmation window.


the only thing is that you dont need to reflash your USB/SSD and can press update in order for it to work with hashrates back to normal... +more power consumption....
dissapointed...
Be sure you have even 850 and lets say 4 powerstage level and compare wattage.




Restart didn't help, when i removed overclock, strat it then add the overclock again, it seemed to be working, but if i restart again then it does the same problem again, the other rig after few restarts now will not overclock the first 2 GPUs only, and the rest are overclocked and working fine.
Any clues?
Please send me email to admin@simplemining.net - best with team viewer to any . windows on the smae networ as your rig or forward 22 port to your rig and tell me the access.


Wifi is unsupported and wont be anytime soon.

I just tried the DAG fix on one of the rigs, it downloaded very quickly and then did some compiling etc. to end up with no screen session on the console line. So I just reloaded the miner and changed some OC settings. Now it's exactly the same hash rate as before the DAG fix, how can I tell if this is the DAG fix version or not ?.. I still see the optional download red icon at the right corner...
Meaby you had dagfix already.
Hover on name of your rig.
If you will see .....compute-rocm... in kernel then you have dagfix.

1159  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: October 03, 2017, 08:42:22 PM
I will. This is my very First try with smos. Is the rx dag fix version on the website contains the latest OC management functions ?
Yes. Fisrt boot will be doing many little updates.
1160  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: October 03, 2017, 08:36:02 PM
Very interesting.
I have 72 cards. Rx580 8g Nitro + only. They run on Windows and i Was waiting for proper oc and voltage management  in SMOS prior to switching.

All my cards have modded bios. Not the voltage but bios timing straps only.
Anyone has experience with modded straps ?
Today On Windows i get 31,5mhs eth + 980 mhs dcr @1000w for 6 cards. VCore @1150/900  Vram@ 2200/900

 I should start migration by tomorrow, hope i will get similar résults
Try with ONE and see what happens Smiley Best to try at one Smiley
Pages: « 1 ... 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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 ... 136 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!