I have my seed and private keys is there any way I can get the coins out f my wallet? I m dying here with no support. kind of a bummer this is costing me 3500.00$ if i don't get this back and its not like i can g to best buy
Open your wallet file and find the 'seed' object and 'imported_keys' object if you have any.
Copy them all separately into a new txt file for easy access (separate with line breaks for ease of understanding)
Start up a python console
Use base64.b64decode() on each value you copied from your wallet, then copy those outputs somewhere.
Use python's built in Hash() function (NOT hashlib) on your wallet password and copy the hash that is created by your password.
Download aes, or pull the folder from the electrum installation.
Use the decryptData() function with the first arg being the hash of your password, and the second arg being the b64decoded value for one of the things u want to decrypt.
The output will be your unencrypted seed or imported private key.