Error 0xc0000006 when I start certain .exeWindows 7 BSOD on startupError (0xc0000022) during start...
Recruiter wants very extensive technical details about all of my previous work
Are all passive ability checks floors for active ability checks?
How to deal with taxi scam when on vacation?
Is it true that good novels will automatically sell themselves on Amazon (and so on) and there is no need for one to waste time promoting?
New passport but visa is in old (lost) passport
Bach's Toccata and Fugue in D minor breaks the "no parallel octaves" rule?
What is the adequate fee for a reveal operation?
If I can solve Sudoku, can I solve the Travelling Salesman Problem (TSP)? If so, how?
Python if-else code style for reduced code for rounding floats
Welcoming 2019 Pi day: How to draw the letter π?
Is honey really a supersaturated solution? Does heating to un-crystalize redissolve it or melt it?
How to pronounce "I ♥ Huckabees"?
Is there a hypothetical scenario that would make Earth uninhabitable for humans, but not for (the majority of) other animals?
Adventure Game (text based) in C++
Is a party consisting of only a bard, a cleric, and a warlock functional long-term?
Fastest way to pop N items from a large dict
Describing a chess game in a novel
Violin - Can double stops be played when the strings are not next to each other?
What is a ^ b and (a & b) << 1?
My adviser wants to be the first author
Examples of transfinite towers
Happy pi day, everyone!
What did “the good wine” (τὸν καλὸν οἶνον) mean in John 2:10?
Is it insecure to send a password in a `curl` command?
Error 0xc0000006 when I start certain .exe
Windows 7 BSOD on startupError (0xc0000022) during start explorer.exe after log in Windows 7Can't delete “unlocked” EXE files in Windows with administrator rightsMy computer crashes when I start a steam gameSide by side configurationComputer freezes and stutters when playing gamesMS Excel formula works except when I add iferror(), then it produces a runtime error 1004Error 0xc000007b on all x86 games and appsComputer crashing on certain gamesAshes Of The Singularity Escalation Can't start because api-ms-win-core-rtlsupport-l1-2-0.dll is missing
I'm running on Windows 7. When I start .exe like a game I got this error message :
The application was unable to start correctly (0xc0000006). Click OK to close the application
And it's impossible to launch my application. But it's not for all my .exe.
e.g : I can launch chrome but I can't launch any games.
So I found a way to by pass this error. I created a file .bat. In this .bat I start 500 time an application who gives me this error by this command :
start C:PathToMyExeexample.exe
And randomly (I have to wait 5 minutes to 3 hours), sometimes my .exe works and I can launch my application. once I managed to launch one .exe on my computer I don't have this error anymore. I can launch all .exe on my computer.
But when I restart my computer I got this error again. I don't know why it works sometimes with my .bat and I don't know how to fix this error.
Thanks for help.
windows-7 runtime-error
add a comment |
I'm running on Windows 7. When I start .exe like a game I got this error message :
The application was unable to start correctly (0xc0000006). Click OK to close the application
And it's impossible to launch my application. But it's not for all my .exe.
e.g : I can launch chrome but I can't launch any games.
So I found a way to by pass this error. I created a file .bat. In this .bat I start 500 time an application who gives me this error by this command :
start C:PathToMyExeexample.exe
And randomly (I have to wait 5 minutes to 3 hours), sometimes my .exe works and I can launch my application. once I managed to launch one .exe on my computer I don't have this error anymore. I can launch all .exe on my computer.
But when I restart my computer I got this error again. I don't know why it works sometimes with my .bat and I don't know how to fix this error.
Thanks for help.
windows-7 runtime-error
add a comment |
I'm running on Windows 7. When I start .exe like a game I got this error message :
The application was unable to start correctly (0xc0000006). Click OK to close the application
And it's impossible to launch my application. But it's not for all my .exe.
e.g : I can launch chrome but I can't launch any games.
So I found a way to by pass this error. I created a file .bat. In this .bat I start 500 time an application who gives me this error by this command :
start C:PathToMyExeexample.exe
And randomly (I have to wait 5 minutes to 3 hours), sometimes my .exe works and I can launch my application. once I managed to launch one .exe on my computer I don't have this error anymore. I can launch all .exe on my computer.
But when I restart my computer I got this error again. I don't know why it works sometimes with my .bat and I don't know how to fix this error.
Thanks for help.
windows-7 runtime-error
I'm running on Windows 7. When I start .exe like a game I got this error message :
The application was unable to start correctly (0xc0000006). Click OK to close the application
And it's impossible to launch my application. But it's not for all my .exe.
e.g : I can launch chrome but I can't launch any games.
So I found a way to by pass this error. I created a file .bat. In this .bat I start 500 time an application who gives me this error by this command :
start C:PathToMyExeexample.exe
And randomly (I have to wait 5 minutes to 3 hours), sometimes my .exe works and I can launch my application. once I managed to launch one .exe on my computer I don't have this error anymore. I can launch all .exe on my computer.
But when I restart my computer I got this error again. I don't know why it works sometimes with my .bat and I don't know how to fix this error.
Thanks for help.
windows-7 runtime-error
windows-7 runtime-error
edited Aug 10 '17 at 7:26
fixer1234
18.9k144982
18.9k144982
asked Sep 3 '16 at 9:58
JohnJohn
106114
106114
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Most possibly you have some bad sectors on your disk or a RAM problem. This sounds me like a hardware problem rather than software problem. Because Error 0xc0000006 is STATUS_IN_PAGE_ERROR which means program addressing the page which wasn't in the memory bacause of an I/O error (From TechNet):
//
// MessageId: STATUS_IN_PAGE_ERROR
//
// MessageText:
//
// The instruction at 0x%p referenced memory at 0x%p. The required data was not placed into memory because of an I/O error status of 0x%x.
// #define STATUS_IN_PAGE_ERROR ((NTSTATUS)0xC0000006 L) // winnt
Try running
chkdsk /r /f /x
on your system partition. See if it solves the problem. If not trying
sfc /scannow
may help also. Maybe the bad sector corruption affected memory manager subsystem. SFC may fix that.
If all these doesn't fix the problem, you can try replacing the RAM module(s), one by one, if multiple.
Thanks for your answer. I'll try to repair software side and take a look on my hardware next time. I hope that error isn't a hardware problem.
– John
Sep 3 '16 at 11:53
1
just in case other are looking at this, the command is sfc, not scf
– David Torrey
yesterday
Yeah, that's correct. Fixed.
– The_aLiEn
6 mins ago
add a comment |
A few months ago I faced the similar issue while starting games. Although the error code is different than mine, but the meaning of error is the same. I have tried this method to solve the issue you could try that too. First, you have to download this software.
After that please extract the file and then open the folder. You will find another folder called svcpack
Open it and run aio-runtime
In the next window click on Install and wait for the installation to finish.
After that please restart your system.
And see if this works.
Basically what you are going to do is repairing your .net frameworks by correctly uninstalling and then reinstalling again.
Please note that using unverified software from file sharing site is not recommended as it may harm your system. Scan thoroughly before installing it to your system.
What is this software? Can you get it from a legitimate source? Telling people to download software from filesharing sources is suspicious at best. In the modern world of malware, phishing and trojaned software it runs contrary to popular knowledge to download software from unknown and potentially harmful sources.
– Mokubai♦
Sep 3 '16 at 10:41
Yes, I understand that. I have tested the software with Bitdefender total security and I had no issue using the software. But you're right, what worked for me may not work for others. Let me edit the answer.
– Animesh Patra
Sep 3 '16 at 10:46
Thanks for your answer. I'll try this software at my next reboot.
– John
Sep 3 '16 at 10:52
It would also be good to say what the actual software is. A quick Google points me to a YouTube video which suggest that it is a collection of .net runtimes and other similar pieces. This would help because knowing what was in the file could allow more precise faultfinding if it does in fact fix the problem.
– Mokubai♦
Sep 3 '16 at 10:52
1
The following would appear to be a more reputable source, even though it is in German: computerbase.de/downloads/systemtools/all-in-one-runtimes
– Mokubai♦
Sep 3 '16 at 10:55
|
show 3 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1120553%2ferror-0xc0000006-when-i-start-certain-exe%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Most possibly you have some bad sectors on your disk or a RAM problem. This sounds me like a hardware problem rather than software problem. Because Error 0xc0000006 is STATUS_IN_PAGE_ERROR which means program addressing the page which wasn't in the memory bacause of an I/O error (From TechNet):
//
// MessageId: STATUS_IN_PAGE_ERROR
//
// MessageText:
//
// The instruction at 0x%p referenced memory at 0x%p. The required data was not placed into memory because of an I/O error status of 0x%x.
// #define STATUS_IN_PAGE_ERROR ((NTSTATUS)0xC0000006 L) // winnt
Try running
chkdsk /r /f /x
on your system partition. See if it solves the problem. If not trying
sfc /scannow
may help also. Maybe the bad sector corruption affected memory manager subsystem. SFC may fix that.
If all these doesn't fix the problem, you can try replacing the RAM module(s), one by one, if multiple.
Thanks for your answer. I'll try to repair software side and take a look on my hardware next time. I hope that error isn't a hardware problem.
– John
Sep 3 '16 at 11:53
1
just in case other are looking at this, the command is sfc, not scf
– David Torrey
yesterday
Yeah, that's correct. Fixed.
– The_aLiEn
6 mins ago
add a comment |
Most possibly you have some bad sectors on your disk or a RAM problem. This sounds me like a hardware problem rather than software problem. Because Error 0xc0000006 is STATUS_IN_PAGE_ERROR which means program addressing the page which wasn't in the memory bacause of an I/O error (From TechNet):
//
// MessageId: STATUS_IN_PAGE_ERROR
//
// MessageText:
//
// The instruction at 0x%p referenced memory at 0x%p. The required data was not placed into memory because of an I/O error status of 0x%x.
// #define STATUS_IN_PAGE_ERROR ((NTSTATUS)0xC0000006 L) // winnt
Try running
chkdsk /r /f /x
on your system partition. See if it solves the problem. If not trying
sfc /scannow
may help also. Maybe the bad sector corruption affected memory manager subsystem. SFC may fix that.
If all these doesn't fix the problem, you can try replacing the RAM module(s), one by one, if multiple.
Thanks for your answer. I'll try to repair software side and take a look on my hardware next time. I hope that error isn't a hardware problem.
– John
Sep 3 '16 at 11:53
1
just in case other are looking at this, the command is sfc, not scf
– David Torrey
yesterday
Yeah, that's correct. Fixed.
– The_aLiEn
6 mins ago
add a comment |
Most possibly you have some bad sectors on your disk or a RAM problem. This sounds me like a hardware problem rather than software problem. Because Error 0xc0000006 is STATUS_IN_PAGE_ERROR which means program addressing the page which wasn't in the memory bacause of an I/O error (From TechNet):
//
// MessageId: STATUS_IN_PAGE_ERROR
//
// MessageText:
//
// The instruction at 0x%p referenced memory at 0x%p. The required data was not placed into memory because of an I/O error status of 0x%x.
// #define STATUS_IN_PAGE_ERROR ((NTSTATUS)0xC0000006 L) // winnt
Try running
chkdsk /r /f /x
on your system partition. See if it solves the problem. If not trying
sfc /scannow
may help also. Maybe the bad sector corruption affected memory manager subsystem. SFC may fix that.
If all these doesn't fix the problem, you can try replacing the RAM module(s), one by one, if multiple.
Most possibly you have some bad sectors on your disk or a RAM problem. This sounds me like a hardware problem rather than software problem. Because Error 0xc0000006 is STATUS_IN_PAGE_ERROR which means program addressing the page which wasn't in the memory bacause of an I/O error (From TechNet):
//
// MessageId: STATUS_IN_PAGE_ERROR
//
// MessageText:
//
// The instruction at 0x%p referenced memory at 0x%p. The required data was not placed into memory because of an I/O error status of 0x%x.
// #define STATUS_IN_PAGE_ERROR ((NTSTATUS)0xC0000006 L) // winnt
Try running
chkdsk /r /f /x
on your system partition. See if it solves the problem. If not trying
sfc /scannow
may help also. Maybe the bad sector corruption affected memory manager subsystem. SFC may fix that.
If all these doesn't fix the problem, you can try replacing the RAM module(s), one by one, if multiple.
edited 7 mins ago
answered Sep 3 '16 at 10:38
The_aLiEnThe_aLiEn
1,3511013
1,3511013
Thanks for your answer. I'll try to repair software side and take a look on my hardware next time. I hope that error isn't a hardware problem.
– John
Sep 3 '16 at 11:53
1
just in case other are looking at this, the command is sfc, not scf
– David Torrey
yesterday
Yeah, that's correct. Fixed.
– The_aLiEn
6 mins ago
add a comment |
Thanks for your answer. I'll try to repair software side and take a look on my hardware next time. I hope that error isn't a hardware problem.
– John
Sep 3 '16 at 11:53
1
just in case other are looking at this, the command is sfc, not scf
– David Torrey
yesterday
Yeah, that's correct. Fixed.
– The_aLiEn
6 mins ago
Thanks for your answer. I'll try to repair software side and take a look on my hardware next time. I hope that error isn't a hardware problem.
– John
Sep 3 '16 at 11:53
Thanks for your answer. I'll try to repair software side and take a look on my hardware next time. I hope that error isn't a hardware problem.
– John
Sep 3 '16 at 11:53
1
1
just in case other are looking at this, the command is sfc, not scf
– David Torrey
yesterday
just in case other are looking at this, the command is sfc, not scf
– David Torrey
yesterday
Yeah, that's correct. Fixed.
– The_aLiEn
6 mins ago
Yeah, that's correct. Fixed.
– The_aLiEn
6 mins ago
add a comment |
A few months ago I faced the similar issue while starting games. Although the error code is different than mine, but the meaning of error is the same. I have tried this method to solve the issue you could try that too. First, you have to download this software.
After that please extract the file and then open the folder. You will find another folder called svcpack
Open it and run aio-runtime
In the next window click on Install and wait for the installation to finish.
After that please restart your system.
And see if this works.
Basically what you are going to do is repairing your .net frameworks by correctly uninstalling and then reinstalling again.
Please note that using unverified software from file sharing site is not recommended as it may harm your system. Scan thoroughly before installing it to your system.
What is this software? Can you get it from a legitimate source? Telling people to download software from filesharing sources is suspicious at best. In the modern world of malware, phishing and trojaned software it runs contrary to popular knowledge to download software from unknown and potentially harmful sources.
– Mokubai♦
Sep 3 '16 at 10:41
Yes, I understand that. I have tested the software with Bitdefender total security and I had no issue using the software. But you're right, what worked for me may not work for others. Let me edit the answer.
– Animesh Patra
Sep 3 '16 at 10:46
Thanks for your answer. I'll try this software at my next reboot.
– John
Sep 3 '16 at 10:52
It would also be good to say what the actual software is. A quick Google points me to a YouTube video which suggest that it is a collection of .net runtimes and other similar pieces. This would help because knowing what was in the file could allow more precise faultfinding if it does in fact fix the problem.
– Mokubai♦
Sep 3 '16 at 10:52
1
The following would appear to be a more reputable source, even though it is in German: computerbase.de/downloads/systemtools/all-in-one-runtimes
– Mokubai♦
Sep 3 '16 at 10:55
|
show 3 more comments
A few months ago I faced the similar issue while starting games. Although the error code is different than mine, but the meaning of error is the same. I have tried this method to solve the issue you could try that too. First, you have to download this software.
After that please extract the file and then open the folder. You will find another folder called svcpack
Open it and run aio-runtime
In the next window click on Install and wait for the installation to finish.
After that please restart your system.
And see if this works.
Basically what you are going to do is repairing your .net frameworks by correctly uninstalling and then reinstalling again.
Please note that using unverified software from file sharing site is not recommended as it may harm your system. Scan thoroughly before installing it to your system.
What is this software? Can you get it from a legitimate source? Telling people to download software from filesharing sources is suspicious at best. In the modern world of malware, phishing and trojaned software it runs contrary to popular knowledge to download software from unknown and potentially harmful sources.
– Mokubai♦
Sep 3 '16 at 10:41
Yes, I understand that. I have tested the software with Bitdefender total security and I had no issue using the software. But you're right, what worked for me may not work for others. Let me edit the answer.
– Animesh Patra
Sep 3 '16 at 10:46
Thanks for your answer. I'll try this software at my next reboot.
– John
Sep 3 '16 at 10:52
It would also be good to say what the actual software is. A quick Google points me to a YouTube video which suggest that it is a collection of .net runtimes and other similar pieces. This would help because knowing what was in the file could allow more precise faultfinding if it does in fact fix the problem.
– Mokubai♦
Sep 3 '16 at 10:52
1
The following would appear to be a more reputable source, even though it is in German: computerbase.de/downloads/systemtools/all-in-one-runtimes
– Mokubai♦
Sep 3 '16 at 10:55
|
show 3 more comments
A few months ago I faced the similar issue while starting games. Although the error code is different than mine, but the meaning of error is the same. I have tried this method to solve the issue you could try that too. First, you have to download this software.
After that please extract the file and then open the folder. You will find another folder called svcpack
Open it and run aio-runtime
In the next window click on Install and wait for the installation to finish.
After that please restart your system.
And see if this works.
Basically what you are going to do is repairing your .net frameworks by correctly uninstalling and then reinstalling again.
Please note that using unverified software from file sharing site is not recommended as it may harm your system. Scan thoroughly before installing it to your system.
A few months ago I faced the similar issue while starting games. Although the error code is different than mine, but the meaning of error is the same. I have tried this method to solve the issue you could try that too. First, you have to download this software.
After that please extract the file and then open the folder. You will find another folder called svcpack
Open it and run aio-runtime
In the next window click on Install and wait for the installation to finish.
After that please restart your system.
And see if this works.
Basically what you are going to do is repairing your .net frameworks by correctly uninstalling and then reinstalling again.
Please note that using unverified software from file sharing site is not recommended as it may harm your system. Scan thoroughly before installing it to your system.
edited Sep 3 '16 at 10:51
answered Sep 3 '16 at 10:37
Animesh PatraAnimesh Patra
2,0341513
2,0341513
What is this software? Can you get it from a legitimate source? Telling people to download software from filesharing sources is suspicious at best. In the modern world of malware, phishing and trojaned software it runs contrary to popular knowledge to download software from unknown and potentially harmful sources.
– Mokubai♦
Sep 3 '16 at 10:41
Yes, I understand that. I have tested the software with Bitdefender total security and I had no issue using the software. But you're right, what worked for me may not work for others. Let me edit the answer.
– Animesh Patra
Sep 3 '16 at 10:46
Thanks for your answer. I'll try this software at my next reboot.
– John
Sep 3 '16 at 10:52
It would also be good to say what the actual software is. A quick Google points me to a YouTube video which suggest that it is a collection of .net runtimes and other similar pieces. This would help because knowing what was in the file could allow more precise faultfinding if it does in fact fix the problem.
– Mokubai♦
Sep 3 '16 at 10:52
1
The following would appear to be a more reputable source, even though it is in German: computerbase.de/downloads/systemtools/all-in-one-runtimes
– Mokubai♦
Sep 3 '16 at 10:55
|
show 3 more comments
What is this software? Can you get it from a legitimate source? Telling people to download software from filesharing sources is suspicious at best. In the modern world of malware, phishing and trojaned software it runs contrary to popular knowledge to download software from unknown and potentially harmful sources.
– Mokubai♦
Sep 3 '16 at 10:41
Yes, I understand that. I have tested the software with Bitdefender total security and I had no issue using the software. But you're right, what worked for me may not work for others. Let me edit the answer.
– Animesh Patra
Sep 3 '16 at 10:46
Thanks for your answer. I'll try this software at my next reboot.
– John
Sep 3 '16 at 10:52
It would also be good to say what the actual software is. A quick Google points me to a YouTube video which suggest that it is a collection of .net runtimes and other similar pieces. This would help because knowing what was in the file could allow more precise faultfinding if it does in fact fix the problem.
– Mokubai♦
Sep 3 '16 at 10:52
1
The following would appear to be a more reputable source, even though it is in German: computerbase.de/downloads/systemtools/all-in-one-runtimes
– Mokubai♦
Sep 3 '16 at 10:55
What is this software? Can you get it from a legitimate source? Telling people to download software from filesharing sources is suspicious at best. In the modern world of malware, phishing and trojaned software it runs contrary to popular knowledge to download software from unknown and potentially harmful sources.
– Mokubai♦
Sep 3 '16 at 10:41
What is this software? Can you get it from a legitimate source? Telling people to download software from filesharing sources is suspicious at best. In the modern world of malware, phishing and trojaned software it runs contrary to popular knowledge to download software from unknown and potentially harmful sources.
– Mokubai♦
Sep 3 '16 at 10:41
Yes, I understand that. I have tested the software with Bitdefender total security and I had no issue using the software. But you're right, what worked for me may not work for others. Let me edit the answer.
– Animesh Patra
Sep 3 '16 at 10:46
Yes, I understand that. I have tested the software with Bitdefender total security and I had no issue using the software. But you're right, what worked for me may not work for others. Let me edit the answer.
– Animesh Patra
Sep 3 '16 at 10:46
Thanks for your answer. I'll try this software at my next reboot.
– John
Sep 3 '16 at 10:52
Thanks for your answer. I'll try this software at my next reboot.
– John
Sep 3 '16 at 10:52
It would also be good to say what the actual software is. A quick Google points me to a YouTube video which suggest that it is a collection of .net runtimes and other similar pieces. This would help because knowing what was in the file could allow more precise faultfinding if it does in fact fix the problem.
– Mokubai♦
Sep 3 '16 at 10:52
It would also be good to say what the actual software is. A quick Google points me to a YouTube video which suggest that it is a collection of .net runtimes and other similar pieces. This would help because knowing what was in the file could allow more precise faultfinding if it does in fact fix the problem.
– Mokubai♦
Sep 3 '16 at 10:52
1
1
The following would appear to be a more reputable source, even though it is in German: computerbase.de/downloads/systemtools/all-in-one-runtimes
– Mokubai♦
Sep 3 '16 at 10:55
The following would appear to be a more reputable source, even though it is in German: computerbase.de/downloads/systemtools/all-in-one-runtimes
– Mokubai♦
Sep 3 '16 at 10:55
|
show 3 more comments
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1120553%2ferror-0xc0000006-when-i-start-certain-exe%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown