();
- foreach (var xField in typeof(XSRegisters).GetTypeInfo().GetFields(BindingFlags.Static | BindingFlags.Public))
- {
- mRegisters.Add(xField.Name, (Register) xField.GetValue(null));
- }
- }
-
- public static Register OldToNewRegister(RegistersEnum register)
- {
- Register xResult;
- if (!mRegisters.TryGetValue(register.ToString(), out xResult))
- {
- throw new NotImplementedException($"Register {register} not yet implemented!");
- }
- return xResult;
- }
-
- public class Register8 : Register
- {
- public Register8(string name, RegistersEnum regEnum) : base(name, regEnum, RegisterSize.Byte8)
- {
- }
- }
-
- public class Register16 : Register
- {
- public Register16(string name, RegistersEnum regEnum) : base(name, regEnum, RegisterSize.Short16)
- {
- }
- }
-
- public class Register32 : Register
- {
- public Register32(string name, RegistersEnum regEnum) : base(name, regEnum, RegisterSize.Int32)
- {
- }
- }
-
- public class RegisterFPU : Register
- {
- public RegisterFPU(string name, RegistersEnum regEnum) : base(name, regEnum, RegisterSize.FPU)
- {
- }
- }
-
- public class RegisterXMM : Register
- {
- public RegisterXMM(string name, RegistersEnum regEnum) : base(name, regEnum, RegisterSize.XMM)
- {
- }
- }
-
- public class RegisterSegment : Register
- {
- public RegisterSegment(string name, RegistersEnum regEnum) : base(name, regEnum, RegisterSize.Short16)
- {
- }
- }
-
- public static readonly Register8 AL = new Register8(nameof(AL), RegistersEnum.AL);
- public static readonly Register8 AH = new Register8(nameof(AH), RegistersEnum.AH);
- public static readonly Register16 AX = new Register16(nameof(AX), RegistersEnum.AX);
- public static readonly Register32 EAX = new Register32(nameof(EAX), RegistersEnum.EAX);
-
- public static readonly Register8 BL = new Register8(nameof(BL), RegistersEnum.BL);
- public static readonly Register8 BH = new Register8(nameof(BH), RegistersEnum.BH);
- public static readonly Register16 BX = new Register16(nameof(BX), RegistersEnum.BX);
- public static readonly Register32 EBX = new Register32(nameof(EBX), RegistersEnum.EBX);
-
- public static readonly Register8 CL = new Register8(nameof(CL), RegistersEnum.CL);
- public static readonly Register8 CH = new Register8(nameof(CH), RegistersEnum.CH);
- public static readonly Register16 CX = new Register16(nameof(CX), RegistersEnum.CX);
- public static readonly Register32 ECX = new Register32(nameof(ECX), RegistersEnum.ECX);
-
- public static readonly Register8 DL = new Register8(nameof(DL), RegistersEnum.DL);
- public static readonly Register8 DH = new Register8(nameof(DH), RegistersEnum.DH);
- public static readonly Register16 DX = new Register16(nameof(DX), RegistersEnum.DX);
- public static readonly Register32 EDX = new Register32(nameof(EDX), RegistersEnum.EDX);
-
- public static readonly Register32 EBP = new Register32(nameof(EBP), RegistersEnum.EBP);
- public static readonly Register32 ESP = new Register32(nameof(ESP), RegistersEnum.ESP);
- public static readonly Register32 ESI = new Register32(nameof(ESI), RegistersEnum.ESI);
- public static readonly Register32 EDI = new Register32(nameof(EDI), RegistersEnum.EDI);
-
- // Segment registers
- public static readonly RegisterSegment CS = new RegisterSegment(nameof(CS), RegistersEnum.CS);
- public static readonly RegisterSegment DS = new RegisterSegment(nameof(DS), RegistersEnum.DS);
- public static readonly RegisterSegment ES = new RegisterSegment(nameof(ES), RegistersEnum.ES);
- public static readonly RegisterSegment FS = new RegisterSegment(nameof(FS), RegistersEnum.FS);
- public static readonly RegisterSegment GS = new RegisterSegment(nameof(GS), RegistersEnum.GS);
- public static readonly RegisterSegment SS = new RegisterSegment(nameof(SS), RegistersEnum.SS);
-
- public static readonly RegisterFPU ST0 = new RegisterFPU(nameof(ST0), RegistersEnum.ST0);
- public static readonly RegisterFPU ST1 = new RegisterFPU(nameof(ST1), RegistersEnum.ST1);
- public static readonly RegisterFPU ST2 = new RegisterFPU(nameof(ST2), RegistersEnum.ST2);
- public static readonly RegisterFPU ST3 = new RegisterFPU(nameof(ST3), RegistersEnum.ST3);
- public static readonly RegisterFPU ST4 = new RegisterFPU(nameof(ST4), RegistersEnum.ST4);
- public static readonly RegisterFPU ST5 = new RegisterFPU(nameof(ST5), RegistersEnum.ST5);
- public static readonly RegisterFPU ST6 = new RegisterFPU(nameof(ST6), RegistersEnum.ST6);
- public static readonly RegisterFPU ST7 = new RegisterFPU(nameof(ST7), RegistersEnum.ST7);
-
- public static readonly RegisterXMM XMM0 = new RegisterXMM(nameof(XMM0), RegistersEnum.XMM0);
- public static readonly RegisterXMM XMM1 = new RegisterXMM(nameof(XMM1), RegistersEnum.XMM1);
- public static readonly RegisterXMM XMM2 = new RegisterXMM(nameof(XMM2), RegistersEnum.XMM2);
- public static readonly RegisterXMM XMM3 = new RegisterXMM(nameof(XMM3), RegistersEnum.XMM3);
- public static readonly RegisterXMM XMM4 = new RegisterXMM(nameof(XMM4), RegistersEnum.XMM4);
- public static readonly RegisterXMM XMM5 = new RegisterXMM(nameof(XMM5), RegistersEnum.XMM5);
- public static readonly RegisterXMM XMM6 = new RegisterXMM(nameof(XMM6), RegistersEnum.XMM6);
- public static readonly RegisterXMM XMM7 = new RegisterXMM(nameof(XMM7), RegistersEnum.XMM7);
-
- // Control Registers
- public static readonly Register32 CR0 = new Register32(nameof(CR0), RegistersEnum.CR0);
- public static readonly Register32 CR1 = new Register32(nameof(CR1), RegistersEnum.CR1);
- public static readonly Register32 CR2 = new Register32(nameof(CR2), RegistersEnum.CR2);
- public static readonly Register32 CR3 = new Register32(nameof(CR3), RegistersEnum.CR3);
- public static readonly Register32 CR4 = new Register32(nameof(CR4), RegistersEnum.CR4);
- }
-}
diff --git a/Cosmos/source/XSharp.Common/XSharp.Common.csproj b/Cosmos/source/XSharp.Common/XSharp.Common.csproj
deleted file mode 100644
index e27d95f264..0000000000
--- a/Cosmos/source/XSharp.Common/XSharp.Common.csproj
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
- netstandard1.5
- True
- ..\..\Cosmos.snk
-
-
-
-
-
-
-
diff --git a/Cosmos/source/XSharp.Compiler/.editorconfig b/Cosmos/source/XSharp.Compiler/.editorconfig
deleted file mode 100644
index d79adc04ac..0000000000
--- a/Cosmos/source/XSharp.Compiler/.editorconfig
+++ /dev/null
@@ -1,2 +0,0 @@
-[*.cs]
-indent_size = 2
diff --git a/Cosmos/source/XSharp.Compiler/Docs/Goals.html b/Cosmos/source/XSharp.Compiler/Docs/Goals.html
deleted file mode 100644
index c7bb3ef430..0000000000
--- a/Cosmos/source/XSharp.Compiler/Docs/Goals.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
- HLA
-
- Compact but easy to read, not confusing
-
- Line based
-
- Easy to parse
-
- Close to
- 1:1 mapping for debugging, non disconnect. No large compounds.
-
- All x86 ops have a 1:1 X# op, but there can be more X# ops which have mult x86
- ops
-
-
-
-
-
\ No newline at end of file
diff --git a/Cosmos/source/XSharp.Compiler/Docs/Old.html b/Cosmos/source/XSharp.Compiler/Docs/Old.html
deleted file mode 100644
index dcd9ee3996..0000000000
--- a/Cosmos/source/XSharp.Compiler/Docs/Old.html
+++ /dev/null
@@ -1,161 +0,0 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeFile="index.html.cs" Inherits="XSharp_index" %>
-
-
-
-
-
-
-
-
-
- X#
- X# compiles C# code into assembly, but does it as it runs. This allows the use
- of intellisense, and modification of the output using C#.
-
-
- One of the goals of Cosmos is the need to write very little assembly, so only
- debug stub, compiler users, etc need assembly. Too much work on X# may not be
- worth the resources required.
-
-
- Consts
-
-
- ref with #. else user would need to use @, and if not woudl get [value] instead.
- ie consts have direct ref as default while fields have indirect as default. Also
- treat consts diff since they can only be read from and not assigned, and at
- parse time we dont know if a label is const, var or other.
-
-
- all consts are group based. Need provision for globals in future. Consts cannot
- be local.
-
-
- Method
-
-
- name()
-
-
-
- Usage
-
-
- look in tokenpatterns.cs for more
-
-
- Labels
-
-
- ..Global
-
-
- .Group
-
-
- Local
-
-
- Think of it like a directory path, .. and . are up.
-
-
- Checkpoint 'text'
-
-
-
-
-
- if reg = x goto label
-
-
- =
- !=
- >
- >=
- <
- <=
-
-
- Register Arithmetic
-
-
- EBP = EBP + 32;
- This is not possible because C# operator overloading does not look at return
- type but only the operand types. That is C# sees Register + int. If we supported
- the previous example, then X# could not support:
- EAX = Memory[EBP + 4];
- In short, C# sees these two as the same and so X# can only support one. Because
- the memory addressing is used more frequently than adding a constant to a
- register, X# supports it.
- To add a constant to a register use:
- EBP.Add(32);
-
-
- Register-- / Register++
-
-
- Valid and usable. Correspond to Inc and Dec.
-
-
- Register Shifting
-
-
- Example:
- EAX << 2
-
-
- Rotate
-
-
- ~ "infinite" shift because it loops
-
-
- Register Methods
-
-
- - Add
- - Sub
- - Compare
- - Test
-
-
- Register = int
-
-
- Example:
- EAX = $40
- EAX = 64
-
-
- Register = Register
-
-
- Example:
- EAX = EBP
-
-
- Register = Memory[Address];
- Register = Memory[Address + int];
-
-
- Address can be a string label. i.e. EAX = Memory["Data1"]
-
-
- Register = Port[x]
- Register = Port[EAX]
-
-
- public static implicit operator RegisterEAX(Cosmos.Assembler.ElementReference aReference) {
- Instance.Move(aReference); return Instance; }
-
-
- Register = Label
-
-
- Example:
- EAX = AddressOf("Labelname");
-
-
-
-
-
diff --git a/Cosmos/source/XSharp.Compiler/Docs/ToDo.html b/Cosmos/source/XSharp.Compiler/Docs/ToDo.html
deleted file mode 100644
index f90a7ad2be..0000000000
--- a/Cosmos/source/XSharp.Compiler/Docs/ToDo.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- if dword .TraceMode = #Tracing_On {
-
- Change this so dword is figured out by X# because of type declaration of
- TraceMode
-
-
-
diff --git a/Cosmos/source/XSharp.Compiler/Docs/XSharp.htm b/Cosmos/source/XSharp.Compiler/Docs/XSharp.htm
deleted file mode 100644
index 6145a08796..0000000000
--- a/Cosmos/source/XSharp.Compiler/Docs/XSharp.htm
+++ /dev/null
@@ -1,376 +0,0 @@
-
-
-
- XSharp explained
-
-
-INTRODUCTION
-X# pronounced X-Sharp is an High Level Assembly language that target the x86 architecture and is
-expected to be flexible enough to later target other kinds of processors.
-The language is line based which means an instruction doesn't span several lines. This make the
-language easier to parse. Also parsing is performed in one path. This imply that some semantic checks
-are not performed by the parser which may lead to assembly failures when NASM is invoked later.
-Close to 1:1 mapping for debugging, non disconnect. No large compounds.
-
-SYNTAX
-Comments
-A comment must appear on its own line. You can't mix code and comments on a single line. A comment line
-is one that starts with two consecutive slashes. Whitespaces may be inserted before the comment line. For example :
-// This is a comment.
- // Another comment prefixed with whitespaces.
-
-
-Literal values
-String literals
-A string literal is surrounded with single quotes. Should your string contain a single quote you must
-escape it with a backslash character. For example :
-'Waiting for \'debugger\' connection...'
-
-Integer literals
-You can write integer literal values either in decimal or hexadecimal. For hexadecimal values prefix
-the value with a dollar sign:
-// Those two constant values are actually equal
-const decimal = 255
-const hexadecimal = $FF
-
-
-A namespace is a naming scope that lets you organize your code to avoid naming collision. You
-declare a namespace by using the namespace
keyword and giving it a name. For example :
-namespace TEST
-The namespace name is automatically used as a prefix for each named item that appear in that namespace
-(function name, labels, variables ...). The namespace extents from the souce code line it is declared
-until either another namespace definition appear or the end of the source code file is reached.
-Consequently there is no namespace hierarchy and you cannot "embed" a namespace into another one.
-WARNING : Code inside a namespace has no way to reference or use code or data from another namespace.
-Nothing prevents you to reuse a namespace including inside a single source code file. For example the
-following source code will compile without error.
-namespace FIRST
-// Everything here will be prefixed with FIRST. Hence the "true" full name of the below variable
-// is FIRST_aVar
-var aVar
-namespace SECOND
-// Not a problem to name another variable aVar. Its true name is SECOND_aVar
-var aVar
-namespace FIRST
-// And here we get back to the FIRST namespace
-
-Every program artefact MUST appear inside a namespace. It is hence strongly recommended to define
-a namespace at the very beginning of any X# source file.
-
-
-X# is targeted at 32 bits assembler code generation. It support the following datatypes :
-
-
-- 8 bits value as defined by the
byte
keyword.
-- 16 bits value as defined by the
word
keyword.
-- 32 bits value as defined by the
dword
keyword.
-
-
-The signedness of the datatype is undefined. The X# code needs to handle itself the various
-control flags (carry, sign and overflow) according to the context. Also notice that X# is
-lacking floating point datatypes.
-
-Constants
-Constants are symbolic names associated with a numeric litteral value. A constant definition
-is introduced by the const
keyword, followed by the constant name an equal sign and a
-constant numeric value. Constants are always considered to be of double word type. For example :
-namespace TEST
-const twoHundred = 200
-The constant name itself is built differently than for other items. The above constant
-declaration is actually named TEST_Const_twoHundred
. Consequently you can
-define another (non const) item with the same name without fearing name collision. However
-this is bad programming practice and is strongly discouraged.
-WARNING : Whenever you want to reference one of you constants in your source code, you MUST
-have its name be prefixed with a dash. For example the following code initialize the EAX register
-with the value of the twoHundred constant :
-EAX = #twoHundred
-
-Variables
-You can define either atomic variables of either doubleword or text type or one dimension array
-of any of the available datatypes. You declare a variable by giving it
-a name and optionally a value. For example the code below declares two variables :
-var myNumVar = 876
-var myTextVar = 'A message'
-If you omit to give the variable a value it will be assumed to be a doubleword and will be
-initialized with a default value of 0.
The X# compiler silently appends a null byte at the
-end of textual initialization value.
-
-You also can define a one dimension array of one of the available datatypes.
-All array members are initialized to 0. You must provide the array size at declaration time.
-For example delaring an array of 256 bytes is :
-var myArray byte[256]
-
-
-X# support all the four general purpose registers from the x86 architecture. These registers are
-available as byte sized : AH AL BH BL CH CL DH DL
as well as word sized :
-AX BX CX DX
and doubleword sized EAX EBX ECX EDX
. The four specific
-registers are also available as doubleword sized : ESI EDI ESP EBP
-
-Labels
-Labels are a way to give a name to some memory addresses. This is a convenient way to be able
-to reference these addresses at coding time without having to know there value at runtime. The X#
-compiler automatically creates several labels. For example each time you define a variable, a
-label will be created having the variable name and referencing the memory address of the variable.
-This will be usefull to read and write variable content.
-When you create a function a label will also be defined to be the address of the beginning of the
-function. This label will be used when you call the function.
Those automatically created
-labels are largely transparent for you. On the other hand you may want to explicitly define labels
-to denote some particular position in your code. This is the case for example when you want to
-perform a test and jump to a specific line of code depending on the result of the test. You will
-create a label at the code location where you will want to jump.
A label is nothing more than
-a name suffixed with :
-// This is a useless label because the variable already got one.
-MyUselessLabel:
-var myVar
-
-Functions
-Functions are declared using the function
keyword. A function name must follow the
-keyword and be followed by an opening curly brace. Be carefull to keep the opening curly brace on
-the same line than the function
keyword. Contrarily to high level languages, X# function
-declaration doesn't support parameters declaration. You must handle parameters passing by yourself
-either using the stack and/or well known registers. For example :
-function MyFirstFunction {
-// Your code here
-// Do not forget the closing curly brace.
-}
-
-Returning from a function
-When the X# compiler encounters the closing curly brace that signal the end of the function source
-code, the compiler automatically adds a ret
instruction. The recommended way to return
-from a function is to use the return
keyword. Internally the X# compiler will translate
-it to an unconditional jump to a special label local to the function which is named Exit
.
-The X# compiler tracks the use of this label and is wise enough to add such a label at the end of the
-function code if you don't define it by yourself.
-Sometimes you will want to explicitly return from your function without going to the cleanup code that
-may be defined at and below the function Exit
label. You can do so by using the ret
-keyword.
-// This instruction will directly exit the function without jumping to the Exit label.
-ret
-WARNING : The X# compiler doesn't monitor stack content. It is the responsibility of your code to
-make sure that the return address is immediately on top of the stack before the ret
instruction
-is executed, including for the one that is automatically added by the compiler at the end of the function
-body.
-
-Invoking a function
-You invoke a function by using the call
keyword followed by the function name.
-Call myFunction
-Because X# doesn't support function parameters you must make sure you properly setup the stack and/or
-the registers that are expected by the invoked function.
-
-Interrupt handlers
-Interrupt handlers are special kind of functions used to handle an interruption. Those functions
-do not support parameters and are declared using the interrupt
keyword. An interrupt
-function name must follow the keyword and be followed by an opening curly brace. Be carefull to keep
-the opening curly brace on the same line than the interrupt
keyword. For example :
-interrupt DivideByZero {
-// Your code here
-// Do not forget the closing curly brace.
-}
-
-Interrupt handlers are executed in a specific processor context that is different from the
-normal control flow within functions. So there must be a way for the processor to know when
-interrupt processing is done and normal operations should resume. This require a specific
-instruction, namely iret
in x86 processors architecture. Normally you do not
-have to take care of this because the X# compiler knows you're defining an interrupt handler
-and silently insert the iret
instruction at the end of the interrupt handler
-code. However you can diretcly insert the iret
instruction in your X# code,
-including in a normal function.
-WARNING : You must be very carefull not to use this instruction when your code is not
-handling an interruption otherwise the processor will trigger an exception. The X# compiler
-doesn't perform any control when you hardcode this instruction.
-
-Assigning value
-You can assign a value to a register or to a variable. You do it using
-the =
operator. The left side is the register or variable name while the right side
-is the value to be assigned. For example :
-// Assign the immediate value 123 to the EAX register (32 bits).
-EAX = 123
-On the right side of the assignment operator you can use either an immediate value, a constant
-(which name must be prefixed with a dash sign), or a register name.
-When the left side of the assignment operator is a variable name and the right size is an immediate
-value you can additionally explicitey define the size of the right operand using an as
-clause associated with the datatype. For example :
-// Assign the immediate value 200 as a word (16 bits) to the myVar variable.
-myVar = 200 as word
-
-Address indirection
-Sometimes a register contains the in memory address of another element, most lkely a variable.
-In this case you do not want to assign a value to the register itself and want instead to store
-the value at the memory adress stored in the register. This is called address indirection and is
-denoted by the register name being followed by a number surrounded between square brackets and
-known as an offset (more on this later). Address indirection may be used on both the right side and
-the left side of the =
assignment operator. However you can't use it on both side at
-the same time. Let's take an example :
-EAX[10] = EBX
-The behavior is as follow : take the content of the EAX register, add to it the offset value (10
-in our example) and consider this to be a memory address. Now store the content of the EBX register
-at this memory address.
-The offset value must be a literal number including 0 or even a negative number.
-So now how does it come for a register's value to be a memory address ? We do this with a special
-@
operator that is used as a suffix to a label name. Knowing each time you declare a
-variable the X# compiler automatically creates a label for this variable it comes that we now have
-the following syntax :
-// Declare a variable
-var myVar
-// Read variable content into EAX register by using the variable name.
-EAX = myVar
-// Load EAX register with the in memory address of the myVar variable.
-EAX = @myVar
-// So now we can store the content of EBX register into myVar variable.
-EAX[0] = EBX
-// And read back the content of the myVar variable into ECX register.
-ECX = EAX[0]
-
-Register arithmetic
-X# support additive and substractive register arithmetic with the +
and -
-operators. X# support a shotcut syntactic version for incrementing and decrementing a register.
-This syntax is not supported for variables. When incrementing or decrementing a register you must omit the
-assigment part of the instruction. The target register is the one on the left side of the operator. For
-example the following instruction increment the EAX register by 2 :
-EAX + 2
-In the above example you can replace the literal value with a register name but not with a variable
-name. In the following example the value of the EAX register is decremented by the value of the EBX
-register :
-EAX - EBX
-Finally there is even a shorter version when you want to increment or decrement a register by 1.
-This is performed with the ++
and --
operators. They must be applied to a
-register only. Incrementing and decrementing a variable this way is not supported. Additionally the
-operator must be used as a register suffix with no additional space between register name and operator.
-For example :
-// Increment EAX register
-EAX++
-// Decrement ECX register
-ECX--
-X# also support a restricted subset of the signed integer multiplication. The expression is a
-register name followed by the * operator and a multiplicand that can be either an integer literal
-or a register of the same size than the first register. The first register is the one that will
-receive the result of the multiplication of the first operand by the second one. For example :
-// Multiply EAX register by 0x1234
-EAX * $1234
-// Multiply DX by CX
-DX * CX
-If you use the second syntax involving two registers, they must be of the same size.
-WARNING : You cannot use a byte sized register (AH, AL, BH, BL, CH, CL, DH or DL) for the first operand.
-
-Register shifting and rolling
-Shifting a register to the right or to the left is performed with >>
and
-<<
keywords respectively. Following the keyword you must provide a literal
-number that define how many bits to shift. For example :
-code>// Shift EAX to the right by 8 bits.
-EAX >> 8
-Shifting a register to the right or to the left is performed with ~>
and
-<~
keywords respectively. Following the keyword you must provide a literal
-number that define how many bits to shift. For example :
-code>// Roll EAX to the left by 12 bits.
-EAX <~ 12
-
-Comparision
-Classical comparision operatotrs are supported :
-< > = <= >= !=
.
-
-See the two collections for what is supported in if statements
-foreach (var xComparison in mCompareOps)
-foreach (var xCompare in mCompares)
-
-The while statement only support the mCompares style.
-
-Pure comparison
-Sometimes you want to compare a register content for equality with a literal number, a variable
-content or a constant. You can do this with the ?=
operator. The left side of the
-operator is the register name while the right side is the value to be compared with. The result
-of such an operation is to have the processor context flags (sign overflow, equality and carry) to
-be set accordingly with the comparison result.
-// Compare EAX register content with literal value 812.
-EAX ?= 812
-You may also which to test some specific bits of the register value and not the full register
-value as a whole. This is where you use the ?&
operator. Once again processor context
-flags are updated with the result of the bitwise AND comparison of the register value and the
-compared value.
-// Test whether the fourth least significant bit of EAX register is set.
-EAX ?& $08
-
-Control flow instructions
-
-Branching
-The goto
keyword lets you perform unconditional branching. Following the keyword
-you must name the target label. For example :
-// Assuming a somewhereElse label is defined.
-goto somewhereElse
-
-The if
keyword lets you perform conditional branching. Following the keyword and
-on the same line you must provide a condition followed by either a goto
statement or
-a return
statement or you must begin a code block with an opening curly brace.
-The condition itself is usually a simple comparison as described above. It can also be a test
-involving just a comparison operator and nothing else. This special syntax is used to directly
-test one of the three main flags updated by the processor on almost any instruction : (signedness,
-overflow and carry). This syntax is not recommended unless you know very well how the processor
-behaves. Most of the time you can use the standard syntax to achieve the same result, albeit with
-a couple less line of codes sometimes. For example :
-// A simple test with standard syntax :
-if EAX > 10 return
-// This is equivalent to this one with special syntax :
-EAX ?= 10
-if > return
-Notice that unlike higher level languages there is no "else" construct available.
-
-Looping
-The while keyword only support standard comparison. Special syntax available with if
-statement can't be used with the while
statement.
-Define a loop on a simple condition. Example :
-while eax < 0 {
-eax = 1
-}
-
-Playing with the stack
-The x86 architecture supports a stack concept that is backed by the ESP
processor
-register. Pushing value(s) onto the stack is denoted with the +
sign while popping
-value(s) from the stack is denoted by the -
sign. You can push or pop a single
-register at a time by prefixing its name with the appropriate operation sign. There must not be
-any whitespace character between the sign and the register name. For example:
-// Pop the EAX register from the stack.
--EAX
-The datatype of the pushed/popped value is implied by the register name.
-You can also directly push (and obvioulsy can't pop) an immediate numeric value value onto the
-stack. Should the value be defined as a constant with the const
keyword do not forget
-the dash sign that must appear between the operation sign and the constant name. For example :
-// Push the immediate value 200 onto the stack.
-+200
-// Push the value for the twoHundred constant onto the stack.
-+#twoHundred
-The default datatype for a pushed immediate value is doubleword. You can also explictly state the
-kind of datatype for the pushed/popped constant. You do this by appending a
-as
clause at the end of the instruction such as :
-// Push the immediate value 200 onto the stack as a word (2 bytes).
-+200 as word
-// Push the twoHundred constant onto the stack as a single byte.
-+#twoHundred as byte
-Finally is also a convenient instruction that let you push or pop all common purpose registers with
-the All
instruction. Once again you must prefix this keyword with the appropriate
-operation sign.
-
-Working with I/O ports
-Reading and writing I/O ports is performed with the Port
keyword. The port number must
-be set in the DX register. You can read or write a byte, a word or a doubleword at a time. The input
-or output data will be in AL, AX or EAX register respectively. To read a byte use the following syntax :
-AL = Port[DX]
-To write a double word use the following syntax :
-Port[DX] = EAX
-
-Debugging helper
-The checkpoint
instruction let you write a simple text to the console by directly
-copying text content to the video buffer. The text must fllow the keyword and be surrounded with single
-quotes. Should it contain quotes they must be escaped with an antislash.
-checkpoint 'This is a \'debugging\' message'
-
-Literal assembler code
-Despite our efforts you may find necessary to directly write assembler code in your X# soure code. Any
-source code line which first non whitespace character is an exclamation point will be copied verbatim
-in the target assembler source. This may be usefull for some rarely used instruction. For exmaple :
-// Hope our Execution state block in System Management RAM is valid otherwise crash-boom
-! RSM
-The most likely reason you may emit literal assembler code is for floating point operations which
-are not supported by the X# compiler. However these kind of operations is rarely encountered at an
-OS kernel level.
-
-
-
diff --git a/Cosmos/source/XSharp.Compiler/Docs/index.html b/Cosmos/source/XSharp.Compiler/Docs/index.html
deleted file mode 100644
index 40cc8f5ebc..0000000000
--- a/Cosmos/source/XSharp.Compiler/Docs/index.html
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-
-
-
-
- Comment
-
-
-
- Asm Literal
-
-
-
- Assignment
-
- EAX = 1
-
- EAX = $FF
-
- EAX = EBP[0]
-
- EAX = EBP[4]
-
- Addition / Subtraction
-
- EAX - 4
-
- EAX - 1 will optimize to Inc EAX
-
- Push
-
- +EAX
-
- +32
-
- +$FF
-
- Pop
-
- -EAX
-
- Labels
-
- !Name:
-
- Global
-
- Name:
-
- Group relative
-
- .Name:
-
- Local / Procedure relative
-
- Group
-
- Group name
-
- Procedure
-
-
-
- InterruptHandler
-
-
-
- Call
-
-
-
- Jump
-
-
-
- Numeric Literals
-
- 32
-
- $FF
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Cosmos/source/XSharp.Compiler/Program.cs b/Cosmos/source/XSharp.Compiler/Program.cs
deleted file mode 100644
index a94ea94f35..0000000000
--- a/Cosmos/source/XSharp.Compiler/Program.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-using System;
-using System.IO;
-using Cosmos.Assembler;
-using XSharp.Common;
-
-namespace XSharp.Compiler
-{
- class Program
- {
- static void Main(string[] aArgs)
- {
- try
- {
- string xSrc = aArgs[0];
-
- var xGenerator = new AsmGenerator();
-
- //string[] xFiles;
- //if (Directory.Exists(xSrc))
- //{
- // xFiles = Directory.GetFiles(xSrc, "*.xs");
- //}
- //else
- //{
- // xFiles = new string[] { xSrc };
- //}
- //foreach (var xFile in xFiles)
- //{
- // xGenerator.GenerateToFiles(xFile);
- //}
-
- var xAsm = new Assembler();
- var xStreamReader = new StringReader(@"namespace Test
- while byte ESI[0] != 0 {
- ! nop
- }
- ");
- var xResult = xGenerator.Generate(xStreamReader);
- Console.WriteLine("done");
- }
- catch (Exception ex)
- {
- Console.WriteLine(ex.ToString());
- Environment.Exit(1);
- }
- }
- }
-}
diff --git a/Cosmos/source/XSharp.Compiler/XSTemplate.DestinationSize.txt b/Cosmos/source/XSharp.Compiler/XSTemplate.DestinationSize.txt
deleted file mode 100644
index 1582a6af40..0000000000
--- a/Cosmos/source/XSharp.Compiler/XSTemplate.DestinationSize.txt
+++ /dev/null
@@ -1,14 +0,0 @@
- public static void $MethodName$(uint destinationValue, bool isIndirect = false, int? displacement = null, RegisterSize size = RegisterSize.Int32)
- {
- Do<$InstructionClass$>(destinationValue, isIndirect, displacement, size);
- }
-
- public static void $MethodName$(Register register, bool isIndirect = false, int? displacement = null, RegisterSize? size = null)
- {
- Do<$InstructionClass$>(register, isIndirect, displacement, size);
- }
-
- public static void $MethodName$(string label, bool isIndirect = false, int? displacement = null, RegisterSize size = RegisterSize.Int32)
- {
- Do<$InstructionClass$>(label, isIndirect, displacement, size);
- }
diff --git a/Cosmos/source/XSharp.Compiler/XSTemplate.DestinationSource.txt b/Cosmos/source/XSharp.Compiler/XSTemplate.DestinationSource.txt
deleted file mode 100644
index 365f061b77..0000000000
--- a/Cosmos/source/XSharp.Compiler/XSTemplate.DestinationSource.txt
+++ /dev/null
@@ -1,29 +0,0 @@
- public static void $MethodName$(string destination, Register source, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null)
- {
- DoDestinationSource<$InstructionClass$>(destination, source, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement);
- }
-
- public static void $MethodName$(string destination, UInt32 value, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null)
- {
- DoDestinationSource<$InstructionClass$>(destination, value, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement);
- }
-
- public static void $MethodName$(string destination, string source, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null)
- {
- DoDestinationSource<$InstructionClass$>(destination, source, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement);
- }
-
- public static void $MethodName$(Register destination, string sourceLabel, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null)
- {
- DoDestinationSource<$InstructionClass$>(destination, sourceLabel, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement);
- }
-
- public static void $MethodName$(Register destination, uint value, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null)
- {
- DoDestinationSource<$InstructionClass$>(destination, value, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement);
- }
-
- public static void $MethodName$(Register destination, Register source, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null)
- {
- DoDestinationSource<$InstructionClass$>(destination, source, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement);
- }
diff --git a/Cosmos/source/XSharp.Compiler/XSTemplate.DestinationSourceSize.txt b/Cosmos/source/XSharp.Compiler/XSTemplate.DestinationSourceSize.txt
deleted file mode 100644
index d716623d98..0000000000
--- a/Cosmos/source/XSharp.Compiler/XSTemplate.DestinationSourceSize.txt
+++ /dev/null
@@ -1,29 +0,0 @@
- public static void $MethodName$(string destination, Register source, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null, RegisterSize? size = null)
- {
- Do<$InstructionClass$>(destination, source, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement, size);
- }
-
- public static void $MethodName$(string destination, UInt32 value, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null, RegisterSize size = RegisterSize.Int32)
- {
- Do<$InstructionClass$>(destination, value, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement, size);
- }
-
- public static void $MethodName$(string destination, string source, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null, RegisterSize size = RegisterSize.Int32)
- {
- Do<$InstructionClass$>(destination, source, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement, size);
- }
-
- public static void $MethodName$(Register destination, string sourceLabel, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null, RegisterSize? size = null)
- {
- Do<$InstructionClass$>(destination, sourceLabel, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement, size);
- }
-
- public static void $MethodName$(Register destination, uint value, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null, RegisterSize? size = null)
- {
- Do<$InstructionClass$>(destination, value, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement, size);
- }
-
- public static void $MethodName$(Register destination, Register source, bool destinationIsIndirect = false, int? destinationDisplacement = null, bool sourceIsIndirect = false, int? sourceDisplacement = null)
- {
- Do<$InstructionClass$>(destination, source, destinationIsIndirect, destinationDisplacement, sourceIsIndirect, sourceDisplacement);
- }
diff --git a/Cosmos/source/XSharp.Compiler/XSharp.Compiler.csproj b/Cosmos/source/XSharp.Compiler/XSharp.Compiler.csproj
deleted file mode 100644
index 6c04ffa4b5..0000000000
--- a/Cosmos/source/XSharp.Compiler/XSharp.Compiler.csproj
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- XSC
- netcoreapp1.0
- win7-x86
- True
- ..\..\Cosmos.snk
- Exe
- XSharp.ico
-
-
-
-
-
-
-
-
diff --git a/Cosmos/source/XSharp.Compiler/XSharp.ico b/Cosmos/source/XSharp.Compiler/XSharp.ico
deleted file mode 100644
index 346d49f057..0000000000
Binary files a/Cosmos/source/XSharp.Compiler/XSharp.ico and /dev/null differ
diff --git a/Cosmos/source/XSharp.Compiler/app.config b/Cosmos/source/XSharp.Compiler/app.config
deleted file mode 100644
index c36460b32b..0000000000
--- a/Cosmos/source/XSharp.Compiler/app.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/Cosmos/source/XSharp.Nasm/App.config b/Cosmos/source/XSharp.Nasm/App.config
deleted file mode 100644
index 99f439e7e0..0000000000
--- a/Cosmos/source/XSharp.Nasm/App.config
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/Cosmos/source/XSharp.Nasm/Assembler.cs b/Cosmos/source/XSharp.Nasm/Assembler.cs
deleted file mode 100644
index 71d3d20301..0000000000
--- a/Cosmos/source/XSharp.Nasm/Assembler.cs
+++ /dev/null
@@ -1,44 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace XSharp.Nasm {
- //public class Assembler {
- // public List Data = new List();
- // public List Code = new List();
-
- // public static Assembler operator +(Assembler aThis, string aThat) {
- // aThis.Code.Add(aThat);
- // return aThis;
- // }
-
- // public void Mov(string aDst, string aSrc) {
- // Mov("", aDst, aSrc);
- // }
- // public void Mov(string aSize, string aDst, string aSrc) {
- // Code.Add("Mov " + (aSize + " ").TrimStart() + aDst + ", " + aSrc);
- // }
-
- // public void Cmp(string aDst, string aSrc) {
- // Cmp("", aDst, aSrc);
- // }
- // public void Cmp(string aSize, string aDst, string aSrc) {
- // Code.Add("Cmp " + (aSize + " ").TrimStart() + aDst + ", " + aSrc);
- // }
-
- // public string GetCode(bool aEndNewLine = true) {
- // string xResult = "";
-
- // foreach (string x in Code) {
- // xResult += x + Environment.NewLine;
- // }
- // if (!aEndNewLine) {
- // xResult = xResult.Remove(xResult.Length - Environment.NewLine.Length);
- // }
-
- // return xResult;
- // }
-
- //}
-}
diff --git a/Cosmos/source/XSharp.Nasm/Properties/AssemblyInfo.cs b/Cosmos/source/XSharp.Nasm/Properties/AssemblyInfo.cs
deleted file mode 100644
index edbe79619a..0000000000
--- a/Cosmos/source/XSharp.Nasm/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("XSharp.Nasm")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("XSharp.Nasm")]
-[assembly: AssemblyCopyright("Copyright © 2012")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("c69b49a7-d175-49db-8ebb-0f3e34aca2f7")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Cosmos/source/XSharp.Nasm/XSharp.Nasm.csproj b/Cosmos/source/XSharp.Nasm/XSharp.Nasm.csproj
deleted file mode 100644
index ac4e3ad446..0000000000
--- a/Cosmos/source/XSharp.Nasm/XSharp.Nasm.csproj
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
- Debug
- Any CPU
- 8.0.30703
- 2.0
- {841A734E-9606-4AAB-9C4A-74E7E303FF5D}
- Library
- Properties
- XSharp.Nasm
- XSharp.Nasm
- v4.6.2
- 512
-
-
-
- true
-
-
- ..\..\Cosmos.snk
-
-
- true
- bin\Debug\
- DEBUG;TRACE
- full
- AnyCPU
- prompt
- MinimumRecommendedRules.ruleset
-
-
- bin\Release\
- TRACE
- true
- pdbonly
- AnyCPU
- prompt
- MinimumRecommendedRules.ruleset
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Cosmos.snk
-
-
-
-
-
-
diff --git a/Cosmos/source/XSharp.VS/.editorconfig b/Cosmos/source/XSharp.VS/.editorconfig
deleted file mode 100644
index d79adc04ac..0000000000
--- a/Cosmos/source/XSharp.VS/.editorconfig
+++ /dev/null
@@ -1,2 +0,0 @@
-[*.cs]
-indent_size = 2
diff --git a/Cosmos/source/XSharp.VS/GlobalSuppressions.cs b/Cosmos/source/XSharp.VS/GlobalSuppressions.cs
deleted file mode 100644
index 746e3daeed..0000000000
--- a/Cosmos/source/XSharp.VS/GlobalSuppressions.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-// This file is used by Code Analysis to maintain SuppressMessage
-// attributes that are applied to this project. Project-level
-// suppressions either have no target or are given a specific target
-// and scoped to a namespace, type, member, etc.
-//
-// To add a suppression to this file, right-click the message in the
-// Error List, point to "Suppress Message(s)", and click "In Project
-// Suppression File". You do not need to add suppressions to this
-// file manually.
-
-[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1017:MarkAssembliesWithComVisible")]
diff --git a/Cosmos/source/XSharp.VS/Guids.cs b/Cosmos/source/XSharp.VS/Guids.cs
deleted file mode 100644
index 7c380b0a9f..0000000000
--- a/Cosmos/source/XSharp.VS/Guids.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-// MUST match guids.h - Do we have a guids.h?
-using System;
-
-namespace XSharp.VS {
- static class Guids {
- public const string guidCosmos_VS_XSharpPkgString = "e2ce86d3-fb0b-43ad-938a-5bcdd087ea2d";
- public const string guidCosmos_VS_XSharpCmdSetString = "a9722019-958f-476e-926a-79f4f32f8530";
-
- public static readonly Guid guidCosmos_VS_XSharpCmdSet = new Guid(guidCosmos_VS_XSharpCmdSetString);
- public const string guidCosmos_VS_XSharpLangSvcString = "3fb852ed-3562-3da4-98dc-55759744328c";
- };
-}
diff --git a/Cosmos/source/XSharp.VS/Parser.cs b/Cosmos/source/XSharp.VS/Parser.cs
deleted file mode 100644
index 118b0852f3..0000000000
--- a/Cosmos/source/XSharp.VS/Parser.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using Microsoft.VisualStudio;
-using Microsoft.VisualStudio.Package;
-using Microsoft.VisualStudio.TextManager.Interop;
-using Microsoft.VisualStudio.OLE.Interop;
-
-namespace XSharp.VS {
- internal class Parser : AuthoringScope {
- public override string GetDataTipText(int line, int col, out TextSpan span) {
- span = new TextSpan();
- return null;
- }
-
- public override Declarations GetDeclarations(IVsTextView view, int line, int col, TokenInfo info, ParseReason reason) {
- return null;
- }
-
- public override string Goto(VSConstants.VSStd97CmdID cmd, IVsTextView textView, int line, int col, out TextSpan span)
- {
- throw new NotImplementedException();
- }
-
- public override Methods GetMethods(int line, int col, string name) {
- return null;
- }
- }
-}
diff --git a/Cosmos/source/XSharp.VS/Properties/AssemblyInfo.cs b/Cosmos/source/XSharp.VS/Properties/AssemblyInfo.cs
deleted file mode 100644
index 93252d4471..0000000000
--- a/Cosmos/source/XSharp.VS/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System;
-using System.Reflection;
-using System.Resources;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("XSharp.VS")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Cosmos")]
-[assembly: AssemblyProduct("XSharp.VS")]
-[assembly: AssemblyCopyright("")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-[assembly: ComVisible(false)]
-[assembly: CLSCompliant(false)]
-[assembly: NeutralResourcesLanguage("en-US")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Revision and Build Numbers
-// by using the '*' as shown below:
-
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Cosmos/source/XSharp.VS/Resources/Package.ico b/Cosmos/source/XSharp.VS/Resources/Package.ico
deleted file mode 100644
index ea3b23fe8d..0000000000
Binary files a/Cosmos/source/XSharp.VS/Resources/Package.ico and /dev/null differ
diff --git a/Cosmos/source/XSharp.VS/Scanner.cs b/Cosmos/source/XSharp.VS/Scanner.cs
deleted file mode 100644
index 2310cdfdd4..0000000000
--- a/Cosmos/source/XSharp.VS/Scanner.cs
+++ /dev/null
@@ -1,86 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using Microsoft.VisualStudio;
-using Microsoft.VisualStudio.Package;
-using Microsoft.VisualStudio.TextManager.Interop;
-using Microsoft.VisualStudio.OLE.Interop;
-using XSC = XSharp.Common;
-
-namespace XSharp.VS
-{
- internal class Scanner : IScanner
- {
- struct TokenData
- {
- public TokenType Type;
- public TokenColor Color;
- }
-
- IVsTextBuffer mBuffer;
- XSC.Parser mParser;
- int mTokenIdx;
- static TokenData[] mTokenMap;
-
- static Scanner()
- {
- int xEnumMax = Enum.GetValues(typeof(XSC.TokenType)).GetUpperBound(0);
- mTokenMap = new TokenData[xEnumMax + 1];
-
- // Set Default values
- foreach (int i in Enum.GetValues(typeof(XSC.TokenType)))
- {
- mTokenMap[i].Type = TokenType.Unknown;
- mTokenMap[i].Color = TokenColor.Text;
- }
-
- mTokenMap[(int)XSC.TokenType.Comment] = new TokenData { Type = TokenType.LineComment, Color = TokenColor.Comment };
- mTokenMap[(int)XSC.TokenType.LiteralAsm] = new TokenData { Type = TokenType.Literal, Color = TokenColor.String };
- mTokenMap[(int)XSC.TokenType.AlphaNum] = new TokenData { Type = TokenType.Identifier, Color = TokenColor.Identifier };
- mTokenMap[(int)XSC.TokenType.ValueInt] = new TokenData { Type = TokenType.Literal, Color = TokenColor.Number };
-
- var xKeyword = new TokenData { Type = TokenType.Keyword, Color = TokenColor.Keyword };
- mTokenMap[(int)XSC.TokenType.Register] = xKeyword;
- mTokenMap[(int)XSC.TokenType.Keyword] = xKeyword;
-
- mTokenMap[(int)XSC.TokenType.Delimiter] = new TokenData { Type = TokenType.Delimiter, Color = TokenColor.Text };
- mTokenMap[(int)XSC.TokenType.Operator] = new TokenData { Type = TokenType.Operator, Color = TokenColor.Text };
- mTokenMap[(int)XSC.TokenType.WhiteSpace] = new TokenData { Type = TokenType.WhiteSpace, Color = TokenColor.Text };
- mTokenMap[(int)XSC.TokenType.Unknown] = new TokenData { Type = TokenType.Unknown, Color = TokenColor.Text };
- }
-
- public Scanner(IVsTextBuffer aBuffer)
- {
- mBuffer = aBuffer;
- }
-
- // State argument: http://social.msdn.microsoft.com/Forums/en-US/vsx/thread/38939d76-6f8b-473f-9ee1-fc3ae7b59cce
- bool IScanner.ScanTokenAndProvideInfoAboutIt(TokenInfo aTokenInfo, ref int aState)
- {
- if (mTokenIdx == mParser.Tokens.Count)
- {
- return false;
- }
-
- var xToken = mParser.Tokens[mTokenIdx];
- mTokenIdx++;
-
- aTokenInfo.Token = (int)xToken.Type;
- aTokenInfo.StartIndex = xToken.SrcPosStart;
- aTokenInfo.EndIndex = xToken.SrcPosEnd;
-
- var xTokenData = mTokenMap[(int)xToken.Type];
- aTokenInfo.Type = xTokenData.Type;
- aTokenInfo.Color = xTokenData.Color;
-
- return true;
- }
-
- void IScanner.SetSource(string aSource, int aOffset)
- {
- mTokenIdx = 0;
- mParser = new XSC.Parser(aSource, aOffset, true, false);
- }
- }
-}
diff --git a/Cosmos/source/XSharp.VS/Template/XSharpFileItem.zip b/Cosmos/source/XSharp.VS/Template/XSharpFileItem.zip
deleted file mode 100644
index c298c1b4bd..0000000000
Binary files a/Cosmos/source/XSharp.VS/Template/XSharpFileItem.zip and /dev/null differ
diff --git a/Cosmos/source/XSharp.VS/VSPackage.resx b/Cosmos/source/XSharp.VS/VSPackage.resx
deleted file mode 100644
index 177da72546..0000000000
--- a/Cosmos/source/XSharp.VS/VSPackage.resx
+++ /dev/null
@@ -1,140 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
- XSharp.VS
-
-
- Cosmos X# Language
-
-
- Resources\Package.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
\ No newline at end of file
diff --git a/Cosmos/source/XSharp.VS/XSharp.VS.csproj b/Cosmos/source/XSharp.VS/XSharp.VS.csproj
deleted file mode 100644
index ef8bc3c2bb..0000000000
--- a/Cosmos/source/XSharp.VS/XSharp.VS.csproj
+++ /dev/null
@@ -1,238 +0,0 @@
-
-
-
-
- 15.0
- $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
- true
-
-
- true
-
-
- ..\..\Cosmos.snk
-
-
-
- Debug
- AnyCPU
- 2.0
- {82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- {FB71E8EF-E229-4D81-984A-B9170D752BF9}
- Library
- Properties
- XSharp.VS
- XSharp.VS
- v4.6.2
- true
- true
- true
- true
- true
- false
-
-
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
- False
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- VSPackage
-
-
-
-
- Cosmos.snk
-
-
-
- Designer
-
-
- Designer
-
-
-
-
-
-
-
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
-
- False
-
-
- ..\..\packages\Microsoft.VisualStudio.CoreUtility.15.0.26606\lib\net45\Microsoft.VisualStudio.CoreUtility.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Imaging.15.0.26606\lib\net45\Microsoft.VisualStudio.Imaging.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070\lib\Microsoft.VisualStudio.OLE.Interop.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Package.LanguageService.15.0.15.0.26606\lib\Microsoft.VisualStudio.Package.LanguageService.15.0.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Shell.15.0.15.0.26606\lib\Microsoft.VisualStudio.Shell.15.0.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Shell.Framework.15.0.26606\lib\net45\Microsoft.VisualStudio.Shell.Framework.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071\lib\Microsoft.VisualStudio.Shell.Interop.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Shell.Interop.15.3.DesignTime.15.0.26606\lib\net20\Microsoft.VisualStudio.Shell.Interop.15.3.DesignTime.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070\lib\Microsoft.VisualStudio.TextManager.Interop.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Threading.15.3.23\lib\net45\Microsoft.VisualStudio.Threading.dll
-
-
- ..\..\packages\Microsoft.VisualStudio.Utilities.15.0.26606\lib\net45\Microsoft.VisualStudio.Utilities.dll
- True
-
-
- ..\..\packages\Microsoft.VisualStudio.Validation.15.3.15\lib\net45\Microsoft.VisualStudio.Validation.dll
-
-
-
-
- False
-
-
-
-
-
-
-
- ..\..\packages\System.Reflection.4.1.0\lib\net462\System.Reflection.dll
- True
-
-
- ..\..\packages\System.Reflection.TypeExtensions.4.1.0\lib\net462\System.Reflection.TypeExtensions.dll
- True
-
-
- ..\..\packages\System.Runtime.4.1.0\lib\net462\System.Runtime.dll
- True
-
-
- ..\..\packages\System.Runtime.Extensions.4.1.0\lib\net462\System.Runtime.Extensions.dll
- True
-
-
-
-
-
- False
-
-
-
-
-
- {f82f4769-4362-40c4-a8c1-4ce6a56344bf}
- Cosmos.Assembler
-
-
- {73428975-9677-48a6-8481-6d5c39c64e4a}
- XSharp.Common
-
-
-
-
-
-
-
- This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Cosmos/source/XSharp.VS/XSharpLanguageService.cs b/Cosmos/source/XSharp.VS/XSharpLanguageService.cs
deleted file mode 100644
index ab5ed01b8f..0000000000
--- a/Cosmos/source/XSharp.VS/XSharpLanguageService.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using Microsoft.VisualStudio;
-using Microsoft.VisualStudio.Package;
-using Microsoft.VisualStudio.TextManager.Interop;
-using Microsoft.VisualStudio.OLE.Interop;
-using System.Runtime.InteropServices;
-
-// Walkthrough: Creating a Language Service (MPF)
-// http://msdn.microsoft.com/en-us/library/bb165744
-// Language Service Features (MPF)
-// http://msdn.microsoft.com/en-us/library/bb166215
-// Syntax Colorizing
-// http://msdn.microsoft.com/en-us/library/bb165041
-// Managed Babel
-// http://msdn.microsoft.com/en-us/library/bb165037.aspx
-
-namespace XSharp.VS {
- [Guid(Guids.guidCosmos_VS_XSharpLangSvcString)]
- public class XSharpLanguageService : LanguageService {
- public override string GetFormatFilterList() {
- return "X# files (*.xs)\n*.xs\n";
- }
-
- private LanguagePreferences mPreferences;
- public override LanguagePreferences GetLanguagePreferences() {
- if (mPreferences == null) {
- mPreferences = new LanguagePreferences(Site, typeof(XSharpLanguageService).GUID, Name);
- mPreferences.Init();
- }
- return mPreferences;
- }
-
- private Scanner mScanner;
- public override IScanner GetScanner(IVsTextLines aBuffer) {
- if (mScanner == null) {
- mScanner = new Scanner(aBuffer);
- }
- return mScanner;
- }
-
- public override string Name {
- get { return "X#"; }
- }
-
- public override AuthoringScope ParseSource(ParseRequest req) {
- return new Parser();
- }
- }
-}
diff --git a/Cosmos/source/XSharp.VS/XSharpPackage.cs b/Cosmos/source/XSharp.VS/XSharpPackage.cs
deleted file mode 100644
index d71231679a..0000000000
--- a/Cosmos/source/XSharp.VS/XSharpPackage.cs
+++ /dev/null
@@ -1,125 +0,0 @@
-using System;
-using System.Diagnostics;
-using System.Globalization;
-using System.Runtime.InteropServices;
-using System.ComponentModel.Design;
-using Microsoft.Win32;
-using Microsoft.VisualStudio;
-using Microsoft.VisualStudio.Shell.Interop;
-using Microsoft.VisualStudio.OLE.Interop;
-using Microsoft.VisualStudio.Shell;
-using Microsoft.VisualStudio.Package;
-using Microsoft.VisualStudio.TextManager.Interop;
-
-namespace XSharp.VS
-{
- /// This is the class that implements the package exposed by this assembly.
- ///
- /// The minimum requirement for a class to be considered a valid package for Visual Studio
- /// is to implement the IVsPackage interface and register itself with the shell.
- /// This package uses the helper classes defined inside the Managed Package Framework (MPF)
- /// to do it: it derives from the Package class that provides the implementation of the
- /// IVsPackage interface and uses the registration attributes defined in the framework to
- /// register itself and its components with the shell.
- //
- [PackageRegistration(UseManagedResourcesOnly = true)]
- [InstalledProductRegistration("#110", "#112", "1.0", IconResourceID = 400)]
- [ProvideService(typeof(XSharpLanguageService))]
- [ProvideLanguageExtension(typeof(XSharpLanguageService), ".xs")]
- [ProvideLanguageService(typeof(XSharpLanguageService), "X#", 0, RequestStockColors = true)]
- [Guid(Guids.guidCosmos_VS_XSharpPkgString)]
- public sealed class XSharpPackage : Package, IOleComponent
- {
- uint mComponentID;
-
- // Default constructor of the package.
- // Inside this method you can place any initialization code that does not require
- // any Visual Studio service because at this point the package object is created but
- // not sited yet inside Visual Studio environment. The place to do all the other
- // initialization is the Initialize method.
- public XSharpPackage()
- {
- }
-
- /// Initialization of the package; this method is called right after the package is sited, so this is the place
- /// where you can put all the initilaization code that rely on services provided by VisualStudio.
- protected override void Initialize()
- {
- base.Initialize();
- // Proffer the service.
- var serviceContainer = this as IServiceContainer;
- var langService = new XSharpLanguageService();
- langService.SetSite(this);
- serviceContainer.AddService(typeof(XSharpLanguageService), langService, true);
-
- // Register a timer to call our language service during idle periods.
- var xMgr = GetService(typeof(SOleComponentManager)) as IOleComponentManager;
- if (mComponentID == 0 && xMgr != null)
- {
- OLECRINFO[] crinfo = new OLECRINFO[1];
- crinfo[0].cbSize = (uint)Marshal.SizeOf(typeof(OLECRINFO));
- crinfo[0].grfcrf = (uint)_OLECRF.olecrfNeedIdleTime | (uint)_OLECRF.olecrfNeedPeriodicIdleTime;
- crinfo[0].grfcadvf = (uint)_OLECADVF.olecadvfModal | (uint)_OLECADVF.olecadvfRedrawOff | (uint)_OLECADVF.olecadvfWarningsOff;
- crinfo[0].uIdleTimeInterval = 1000;
- xMgr.FRegisterComponent(this, crinfo, out mComponentID);
- }
- }
-
- protected override void Dispose(bool disposing)
- {
- if (mComponentID != 0)
- {
- var xMgr = GetService(typeof(SOleComponentManager)) as IOleComponentManager;
- if (xMgr != null)
- {
- xMgr.FRevokeComponent(mComponentID);
- }
- mComponentID = 0;
- }
- base.Dispose(disposing);
- }
-
- public int FDoIdle(uint grfidlef)
- {
- bool bPeriodic = (grfidlef & (uint)_OLEIDLEF.oleidlefPeriodic) != 0;
- // Use typeof(TestLanguageService) because we need to reference the GUID for our language service.
- LanguageService xService = GetService(typeof(XSharpLanguageService)) as LanguageService;
- if (xService != null)
- {
- xService.OnIdle(bPeriodic);
- }
- return 0;
- }
-
- public int FContinueMessageLoop(uint uReason, IntPtr pvLoopData, MSG[] pMsgPeeked)
- {
- return 1;
- }
-
- public int FPreTranslateMessage(MSG[] pMsg)
- {
- return 0;
- }
-
- public int FQueryTerminate(int fPromptUser)
- {
- return 1;
- }
-
- public int FReserved1(uint dwReserved, uint message, IntPtr wParam, IntPtr lParam)
- {
- return 1;
- }
-
- public IntPtr HwndGetWindow(uint dwWhich, uint dwReserved)
- {
- return IntPtr.Zero;
- }
-
- public void OnActivationChange(IOleComponent pic, int fSameComponent, OLECRINFO[] pcrinfo, int fHostIsActivating, OLECHOSTINFO[] pchostinfo, uint dwReserved) { }
- public void OnAppActivate(int fActive, uint dwOtherThreadID) { }
- public void OnEnterState(uint uStateID, int fEnter) { }
- public void OnLoseActivation() { }
- public void Terminate() { }
- }
-}
diff --git a/Cosmos/source/XSharp.VS/XsToAsmFileGenerator.cs b/Cosmos/source/XSharp.VS/XsToAsmFileGenerator.cs
deleted file mode 100644
index 781e0bf263..0000000000
--- a/Cosmos/source/XSharp.VS/XsToAsmFileGenerator.cs
+++ /dev/null
@@ -1,78 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using Microsoft.VisualStudio.Shell.Interop;
-using Microsoft.VisualStudio;
-using System.Runtime.InteropServices;
-using System.IO;
-using Cosmos.Assembler;
-using XSharp.Common;
-
-namespace XSharp.VS
-{
- // This class generates .asm files from .xs files.
- //
- // The .asm is not used for actual compiling, but for now we still generate .asm files on save because:
- // 1) It allows user to syntax check by saving, or running custom tool.
- // 2) It allows easy viewing of the output (XSharp.Test can also be used)
- // When we get .xsproj types, we can eliminate this class.
- public class XsToAsmFileGenerator : IVsSingleFileGenerator
- {
- public int DefaultExtension(out string oDefaultExt)
- {
- oDefaultExt = ".asm";
- return VSConstants.S_OK;
- }
-
- public int Generate(string aInputFilePath, string aInputFileContents, string aDefaultNamespace, IntPtr[] aOutputFileContents, out uint oPcbOutput, IVsGeneratorProgress aGenerateProgress)
- {
- string xResult;
- using (var xInput = new StringReader(aInputFileContents))
- {
- using (var xOut = new StringWriter())
- {
- try
- {
- new Assembler();
- try
- {
- var xGen = new AsmGenerator();
- xGen.Generate(xInput, xOut);
- xResult = $"Generated at {DateTime.Now} {Environment.NewLine} {Environment.NewLine} {xOut} {Environment.NewLine}";
- }
- finally
- {
- Assembler.ClearCurrentInstance();
- }
- }
- catch (Exception ex)
- {
- var xSB = new StringBuilder();
- xSB.Append(xOut);
- xSB.AppendLine();
-
- for (Exception e = ex; e != null; e = e.InnerException)
- {
- xSB.AppendLine(e.Message);
- }
- xResult = xSB.ToString();
- }
- }
- }
-
- aOutputFileContents[0] = IntPtr.Zero;
- oPcbOutput = 0;
- var xBytes = Encoding.UTF8.GetBytes(xResult);
- if (xBytes.Length > 0)
- {
- aOutputFileContents[0] = Marshal.AllocCoTaskMem(xBytes.Length);
- Marshal.Copy(xBytes, 0, aOutputFileContents[0], xBytes.Length);
- oPcbOutput = (uint)xBytes.Length;
- }
-
- return VSConstants.S_OK;
- }
-
- }
-}
diff --git a/Cosmos/source/XSharp.VS/app.config b/Cosmos/source/XSharp.VS/app.config
deleted file mode 100644
index adf7bfb4a8..0000000000
--- a/Cosmos/source/XSharp.VS/app.config
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Cosmos/source/XSharp.VS/packages.config b/Cosmos/source/XSharp.VS/packages.config
deleted file mode 100644
index bd49cecece..0000000000
--- a/Cosmos/source/XSharp.VS/packages.config
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Cosmos/source/XSharp.VS/source.extension.vsixmanifest b/Cosmos/source/XSharp.VS/source.extension.vsixmanifest
deleted file mode 100644
index 29d149ac11..0000000000
--- a/Cosmos/source/XSharp.VS/source.extension.vsixmanifest
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
- Cosmos X# Language
- Cosmos X# Extension for Visual Studio
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Cosmos/Demos/CosmosGraphicSubsystem/CosmosGraphicSubsystem.csproj b/Demos/CosmosGraphicSubsystem/CosmosGraphicSubsystem.csproj
similarity index 100%
rename from Cosmos/Demos/CosmosGraphicSubsystem/CosmosGraphicSubsystem.csproj
rename to Demos/CosmosGraphicSubsystem/CosmosGraphicSubsystem.csproj
diff --git a/Cosmos/Demos/CosmosGraphicSubsystem/CosmosGraphicSubsystemBoot.Cosmos b/Demos/CosmosGraphicSubsystem/CosmosGraphicSubsystemBoot.Cosmos
similarity index 100%
rename from Cosmos/Demos/CosmosGraphicSubsystem/CosmosGraphicSubsystemBoot.Cosmos
rename to Demos/CosmosGraphicSubsystem/CosmosGraphicSubsystemBoot.Cosmos
diff --git a/Cosmos/Demos/CosmosGraphicSubsystem/Kernel.cs b/Demos/CosmosGraphicSubsystem/Kernel.cs
similarity index 100%
rename from Cosmos/Demos/CosmosGraphicSubsystem/Kernel.cs
rename to Demos/CosmosGraphicSubsystem/Kernel.cs
diff --git a/Cosmos/Demos/Guess/GuessKernel.csproj b/Demos/Guess/GuessKernel.csproj
similarity index 100%
rename from Cosmos/Demos/Guess/GuessKernel.csproj
rename to Demos/Guess/GuessKernel.csproj
diff --git a/Cosmos/Demos/Guess/GuessKernelBoot.Cosmos b/Demos/Guess/GuessKernelBoot.Cosmos
similarity index 100%
rename from Cosmos/Demos/Guess/GuessKernelBoot.Cosmos
rename to Demos/Guess/GuessKernelBoot.Cosmos
diff --git a/Cosmos/Demos/Guess/Kernel.cs b/Demos/Guess/Kernel.cs
similarity index 100%
rename from Cosmos/Demos/Guess/Kernel.cs
rename to Demos/Guess/Kernel.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/Games/ZORK1.DAT b/Demos/zMachine/Frotz.Net/Games/ZORK1.DAT
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/Games/ZORK1.DAT
rename to Demos/zMachine/Frotz.Net/Games/ZORK1.DAT
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/Games/ZORK2.DAT b/Demos/zMachine/Frotz.Net/Games/ZORK2.DAT
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/Games/ZORK2.DAT
rename to Demos/zMachine/Frotz.Net/Games/ZORK2.DAT
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/Games/ZORK3.DAT b/Demos/zMachine/Frotz.Net/Games/ZORK3.DAT
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/Games/ZORK3.DAT
rename to Demos/zMachine/Frotz.Net/Games/ZORK3.DAT
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/WPFMachine.exe.config b/Demos/zMachine/Frotz.Net/WPFMachine.exe.config
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/WPFMachine.exe.config
rename to Demos/zMachine/Frotz.Net/WPFMachine.exe.config
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/WinFrotzR52b_source.zip b/Demos/zMachine/Frotz.Net/WinFrotzR52b_source.zip
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/WinFrotzR52b_source.zip
rename to Demos/zMachine/Frotz.Net/WinFrotzR52b_source.zip
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/.gitattributes b/Demos/zMachine/Frotz.Net/source/.gitattributes
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/.gitattributes
rename to Demos/zMachine/Frotz.Net/source/.gitattributes
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/.gitignore b/Demos/zMachine/Frotz.Net/source/.gitignore
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/.gitignore
rename to Demos/zMachine/Frotz.Net/source/.gitignore
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/DefaultTemplate.11.1.xaml b/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/DefaultTemplate.11.1.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/DefaultTemplate.11.1.xaml
rename to Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/DefaultTemplate.11.1.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/DefaultTemplate.xaml b/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/DefaultTemplate.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/DefaultTemplate.xaml
rename to Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/DefaultTemplate.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/LabDefaultTemplate.11.xaml b/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/LabDefaultTemplate.11.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/LabDefaultTemplate.11.xaml
rename to Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/LabDefaultTemplate.11.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/UpgradeTemplate.xaml b/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/UpgradeTemplate.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/UpgradeTemplate.xaml
rename to Demos/zMachine/Frotz.Net/source/BuildProcessTemplates/UpgradeTemplate.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/ErrorCodes.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/ErrorCodes.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/ErrorCodes.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/ErrorCodes.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/General.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/General.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/General.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/General.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/ZMachine.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/ZMachine.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/ZMachine.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Constants/ZMachine.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/buffer.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/buffer.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/buffer.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/buffer.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/err.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/err.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/err.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/err.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/fastmem.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/fastmem.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/fastmem.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/fastmem.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/files.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/files.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/files.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/files.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/getopt.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/getopt.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/getopt.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/getopt.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/hotkey.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/hotkey.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/hotkey.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/hotkey.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/input.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/input.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/input.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/input.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/main.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/main.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/main.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/main.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/math.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/math.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/math.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/math.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/object.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/object.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/object.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/object.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/process.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/process.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/process.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/process.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/quetzal.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/quetzal.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/quetzal.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/quetzal.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/random.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/random.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/random.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/random.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/redirect.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/redirect.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/redirect.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/redirect.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/screen.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/screen.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/screen.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/screen.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/sound.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/sound.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/sound.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/sound.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/stream.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/stream.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/stream.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/stream.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/table.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/table.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/table.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/table.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/text.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/text.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/text.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/text.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/variable.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/variable.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/variable.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Generic/variable.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Global.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Global.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Global.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Global.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ArrayCopy.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ArrayCopy.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ArrayCopy.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ArrayCopy.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/BlorbFiles.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/BlorbFiles.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/BlorbFiles.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/BlorbFiles.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/CRC.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/CRC.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/CRC.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/CRC.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/GraphicsFont.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/GraphicsFont.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/GraphicsFont.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/GraphicsFont.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/PNG.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/PNG.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/PNG.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/PNG.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/TrueColorStuff.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/TrueColorStuff.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/TrueColorStuff.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/TrueColorStuff.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZMath.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZMath.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZMath.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZMath.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZMetaData.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZMetaData.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZMetaData.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZMetaData.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZWindow.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZWindow.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZWindow.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Other/ZWindow.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Story.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Story.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Story.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Frotz/Story.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/FrotzNetDLL.csproj b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/FrotzNetDLL.csproj
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/FrotzNetDLL.csproj
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/FrotzNetDLL.csproj
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/CharDisplayInfo.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/CharDisplayInfo.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/CharDisplayInfo.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/CharDisplayInfo.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/CharInfo.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/CharInfo.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/CharInfo.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/CharInfo.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/IZScreen.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/IZScreen.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/IZScreen.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/IZScreen.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/LineInfo.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/LineInfo.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/LineInfo.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/LineInfo.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/ScreenLines.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/ScreenLines.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/ScreenLines.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/ScreenLines.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/ScreenStuff.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/ScreenStuff.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/ScreenStuff.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/Screen/ScreenStuff.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/TestStuff/DebugState.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/TestStuff/DebugState.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/TestStuff/DebugState.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/TestStuff/DebugState.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/infinfo.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/infinfo.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/infinfo.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/infinfo.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/infodump.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/infodump.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/infodump.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/infodump.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showdict.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showdict.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showdict.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showdict.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showhead.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showhead.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showhead.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showhead.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showobj.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showobj.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showobj.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showobj.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showverb.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showverb.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showverb.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/showverb.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/symbols.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/symbols.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/symbols.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/symbols.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/tx_h.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/tx_h.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/tx_h.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/tx_h.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/txd.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/txd.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/txd.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/txd.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/txio.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/txio.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/txio.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/ZTools/txio.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/os_WPF.cs b/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/os_WPF.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/os_WPF.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/FrotzBase/os_WPF.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/AboutWindow.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/AboutWindow.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/AboutWindow.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/AboutWindow.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/AboutWindow.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/AboutWindow.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/AboutWindow.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/AboutWindow.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/AbsoluteScreen.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/AbsoluteScreen.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/AbsoluteScreen.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/AbsoluteScreen.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/AbsoluteScreen.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/AbsoluteScreen.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/AbsoluteScreen.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/AbsoluteScreen.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/FrotzImage.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/FrotzImage.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/FrotzImage.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/FrotzImage.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/ScaleImages.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/ScaleImages.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/ScaleImages.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/ScaleImages.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/ScrollbackArea.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/ScrollbackArea.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/ScrollbackArea.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Absolute/ScrollbackArea.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/App.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/App.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/App.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/App.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/App.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/App.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/App.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/App.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/BlorbMetadata.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/BlorbMetadata.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/BlorbMetadata.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/BlorbMetadata.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/BlorbMetadata.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/BlorbMetadata.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/BlorbMetadata.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/BlorbMetadata.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Conversion.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Conversion.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Conversion.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Conversion.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/FontInfo.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/FontInfo.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/FontInfo.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/FontInfo.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/FrozSound.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/FrozSound.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/FrozSound.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/FrozSound.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/GameSelectedEventArgs.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/GameSelectedEventArgs.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/GameSelectedEventArgs.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/GameSelectedEventArgs.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Icon1.ico b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Icon1.ico
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Icon1.ico
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Icon1.ico
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/MainWindow.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/MainWindow.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/MainWindow.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/MainWindow.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/MainWindow.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/MainWindow.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/MainWindow.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/MainWindow.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/ColorChooser.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/ColorChooser.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/ColorChooser.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/ColorChooser.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/ColorChooser.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/ColorChooser.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/ColorChooser.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/ColorChooser.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/FontDropDown.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/FontDropDown.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/FontDropDown.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/FontDropDown.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/FontDropDown.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/FontDropDown.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/FontDropDown.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/FontDropDown.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/GameDirectory.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/GameDirectory.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/GameDirectory.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/GameDirectory.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/GameDirectory.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/GameDirectory.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/GameDirectory.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/GameDirectory.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/OptionsScreen.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/OptionsScreen.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/OptionsScreen.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/OptionsScreen.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/OptionsScreen.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/OptionsScreen.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/OptionsScreen.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/OptionsScreen.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/RTBSubclasses/ZParagraph.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/RTBSubclasses/ZParagraph.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/RTBSubclasses/ZParagraph.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/RTBSubclasses/ZParagraph.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/RTBSubclasses/ZRun.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/RTBSubclasses/ZRun.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/RTBSubclasses/ZRun.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/RTBSubclasses/ZRun.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Resources/BEYZORK.FON b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Resources/BEYZORK.FON
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Resources/BEYZORK.FON
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Resources/BEYZORK.FON
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/Conversion.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/Conversion.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/Conversion.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/Conversion.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/OverlayAdorner.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/OverlayAdorner.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/OverlayAdorner.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/OverlayAdorner.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/TextControlScreen.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/TextControlScreen.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/TextControlScreen.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/TextControlScreen.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/TextControlScreen.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/TextControlScreen.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/TextControlScreen.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/TextControlScreen.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZBlankContainer.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZBlankContainer.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZBlankContainer.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZBlankContainer.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZParagraph.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZParagraph.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZParagraph.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZParagraph.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZRun.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZRun.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZRun.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZRun.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZTextControl.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZTextControl.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZTextControl.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZTextControl.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZTextControl.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZTextControl.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZTextControl.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Screen/ZTextControl.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/ScreenBase.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/ScreenBase.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/ScreenBase.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/ScreenBase.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ColorType.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ColorType.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ColorType.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ColorType.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZColorCheck.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZColorCheck.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZColorCheck.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZColorCheck.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZInfoTXD.xaml b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZInfoTXD.xaml
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZInfoTXD.xaml
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZInfoTXD.xaml
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZInfoTXD.xaml.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZInfoTXD.xaml.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZInfoTXD.xaml.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZInfoTXD.xaml.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZMachineException.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZMachineException.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZMachineException.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZMachineException.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZStringBuilder.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZStringBuilder.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZStringBuilder.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Support/ZStringBuilder.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/WPFMachine.csproj b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/WPFMachine.csproj
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/WPFMachine.csproj
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/WPFMachine.csproj
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/ZMachineScreen.cs b/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/ZMachineScreen.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/ZMachineScreen.cs
rename to Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/ZMachineScreen.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel.sln b/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel.sln
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel.sln
rename to Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel.sln
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/AssemblyInfo.cs b/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/AssemblyInfo.cs
rename to Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/AssemblyInfo.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/FrotzKernel.csproj b/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/FrotzKernel.csproj
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/FrotzKernel.csproj
rename to Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/FrotzKernel.csproj
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/FrotzKernelBoot.Cosmos b/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/FrotzKernelBoot.Cosmos
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/FrotzKernelBoot.Cosmos
rename to Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/FrotzKernelBoot.Cosmos
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/Kernel.cs b/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/Kernel.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/Kernel.cs
rename to Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/Kernel.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ManifestResourceStreamAttribute.cs b/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ManifestResourceStreamAttribute.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ManifestResourceStreamAttribute.cs
rename to Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ManifestResourceStreamAttribute.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK1.DAT b/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK1.DAT
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK1.DAT
rename to Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK1.DAT
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK2.DAT b/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK2.DAT
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK2.DAT
rename to Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK2.DAT
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK3.DAT b/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK3.DAT
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK3.DAT
rename to Demos/zMachine/Frotz.Net/source/FrotzKernel/FrotzKernel/FrotzKernel/ZORK3.DAT
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/FrotzNet.sln b/Demos/zMachine/Frotz.Net/source/FrotzNet.sln
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/FrotzNet.sln
rename to Demos/zMachine/Frotz.Net/source/FrotzNet.sln
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/Notes.txt b/Demos/zMachine/Frotz.Net/source/Notes.txt
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/Notes.txt
rename to Demos/zMachine/Frotz.Net/source/Notes.txt
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/cosmos-todos.txt b/Demos/zMachine/Frotz.Net/source/cosmos-todos.txt
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/cosmos-todos.txt
rename to Demos/zMachine/Frotz.Net/source/cosmos-todos.txt
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/todos.txt b/Demos/zMachine/Frotz.Net/source/todos.txt
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/todos.txt
rename to Demos/zMachine/Frotz.Net/source/todos.txt
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/App.config b/Demos/zMachine/Frotz.Net/source/zConsole/App.config
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/App.config
rename to Demos/zMachine/Frotz.Net/source/zConsole/App.config
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/Program.cs b/Demos/zMachine/Frotz.Net/source/zConsole/Program.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/Program.cs
rename to Demos/zMachine/Frotz.Net/source/zConsole/Program.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/ZConsoleScreen.cs b/Demos/zMachine/Frotz.Net/source/zConsole/ZConsoleScreen.cs
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/ZConsoleScreen.cs
rename to Demos/zMachine/Frotz.Net/source/zConsole/ZConsoleScreen.cs
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/ZORK1.DAT b/Demos/zMachine/Frotz.Net/source/zConsole/ZORK1.DAT
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/ZORK1.DAT
rename to Demos/zMachine/Frotz.Net/source/zConsole/ZORK1.DAT
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/ZORK2.DAT b/Demos/zMachine/Frotz.Net/source/zConsole/ZORK2.DAT
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/ZORK2.DAT
rename to Demos/zMachine/Frotz.Net/source/zConsole/ZORK2.DAT
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/ZORK3.DAT b/Demos/zMachine/Frotz.Net/source/zConsole/ZORK3.DAT
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/ZORK3.DAT
rename to Demos/zMachine/Frotz.Net/source/zConsole/ZORK3.DAT
diff --git a/Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/zConsole.csproj b/Demos/zMachine/Frotz.Net/source/zConsole/zConsole.csproj
similarity index 100%
rename from Cosmos/Demos/zMachine/Frotz.Net/source/zConsole/zConsole.csproj
rename to Demos/zMachine/Frotz.Net/source/zConsole/zConsole.csproj
diff --git a/Cosmos/Docs/3rdParty/VSDebugger/Concord/HelloWorld.zip b/Docs/3rdParty/VSDebugger/Concord/HelloWorld.zip
similarity index 100%
rename from Cosmos/Docs/3rdParty/VSDebugger/Concord/HelloWorld.zip
rename to Docs/3rdParty/VSDebugger/Concord/HelloWorld.zip
diff --git a/Cosmos/Docs/3rdParty/VSDebugger/Concord/ReadMe.docx b/Docs/3rdParty/VSDebugger/Concord/ReadMe.docx
similarity index 100%
rename from Cosmos/Docs/3rdParty/VSDebugger/Concord/ReadMe.docx
rename to Docs/3rdParty/VSDebugger/Concord/ReadMe.docx
diff --git a/Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0000.png b/Docs/Articles/MS5/CosmosMS5/SNAG-0000.png
similarity index 100%
rename from Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0000.png
rename to Docs/Articles/MS5/CosmosMS5/SNAG-0000.png
diff --git a/Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0001.png b/Docs/Articles/MS5/CosmosMS5/SNAG-0001.png
similarity index 100%
rename from Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0001.png
rename to Docs/Articles/MS5/CosmosMS5/SNAG-0001.png
diff --git a/Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0002.png b/Docs/Articles/MS5/CosmosMS5/SNAG-0002.png
similarity index 100%
rename from Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0002.png
rename to Docs/Articles/MS5/CosmosMS5/SNAG-0002.png
diff --git a/Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0003.png b/Docs/Articles/MS5/CosmosMS5/SNAG-0003.png
similarity index 100%
rename from Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0003.png
rename to Docs/Articles/MS5/CosmosMS5/SNAG-0003.png
diff --git a/Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0005.png b/Docs/Articles/MS5/CosmosMS5/SNAG-0005.png
similarity index 100%
rename from Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0005.png
rename to Docs/Articles/MS5/CosmosMS5/SNAG-0005.png
diff --git a/Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0006.png b/Docs/Articles/MS5/CosmosMS5/SNAG-0006.png
similarity index 100%
rename from Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0006.png
rename to Docs/Articles/MS5/CosmosMS5/SNAG-0006.png
diff --git a/Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0007.png b/Docs/Articles/MS5/CosmosMS5/SNAG-0007.png
similarity index 100%
rename from Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0007.png
rename to Docs/Articles/MS5/CosmosMS5/SNAG-0007.png
diff --git a/Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0008.png b/Docs/Articles/MS5/CosmosMS5/SNAG-0008.png
similarity index 100%
rename from Cosmos/Docs/Articles/MS5/CosmosMS5/SNAG-0008.png
rename to Docs/Articles/MS5/CosmosMS5/SNAG-0008.png
diff --git a/Cosmos/Docs/Articles/MS5/ToDo.md b/Docs/Articles/MS5/ToDo.md
similarity index 100%
rename from Cosmos/Docs/Articles/MS5/ToDo.md
rename to Docs/Articles/MS5/ToDo.md
diff --git a/Cosmos/Docs/Articles/MS5/index.md b/Docs/Articles/MS5/index.md
similarity index 100%
rename from Cosmos/Docs/Articles/MS5/index.md
rename to Docs/Articles/MS5/index.md
diff --git a/Cosmos/Docs/Compiler/il2cpu.md b/Docs/Compiler/il2cpu.md
similarity index 100%
rename from Cosmos/Docs/Compiler/il2cpu.md
rename to Docs/Compiler/il2cpu.md
diff --git a/Cosmos/Docs/Debugger/DebugCommands.txt b/Docs/Debugger/DebugCommands.txt
similarity index 100%
rename from Cosmos/Docs/Debugger/DebugCommands.txt
rename to Docs/Debugger/DebugCommands.txt
diff --git a/Cosmos/Docs/Directories.md b/Docs/Directories.md
similarity index 100%
rename from Cosmos/Docs/Directories.md
rename to Docs/Directories.md
diff --git a/Cosmos/Docs/Express/Compile.md b/Docs/Express/Compile.md
similarity index 100%
rename from Cosmos/Docs/Express/Compile.md
rename to Docs/Express/Compile.md
diff --git a/Cosmos/Docs/Installation/DevKit.md b/Docs/Installation/DevKit.md
similarity index 100%
rename from Cosmos/Docs/Installation/DevKit.md
rename to Docs/Installation/DevKit.md
diff --git a/Cosmos/Docs/Installation/Running.md b/Docs/Installation/Running.md
similarity index 100%
rename from Cosmos/Docs/Installation/Running.md
rename to Docs/Installation/Running.md
diff --git a/Cosmos/Docs/Kernel/Hardware/Index.md b/Docs/Kernel/Hardware/Index.md
similarity index 100%
rename from Cosmos/Docs/Kernel/Hardware/Index.md
rename to Docs/Kernel/Hardware/Index.md
diff --git a/Cosmos/Docs/Kernel/Heap.md b/Docs/Kernel/Heap.md
similarity index 100%
rename from Cosmos/Docs/Kernel/Heap.md
rename to Docs/Kernel/Heap.md
diff --git a/Cosmos/Docs/Kernel/Levels.md b/Docs/Kernel/Levels.md
similarity index 100%
rename from Cosmos/Docs/Kernel/Levels.md
rename to Docs/Kernel/Levels.md
diff --git a/Cosmos/Docs/Kernel/Memory.md b/Docs/Kernel/Memory.md
similarity index 100%
rename from Cosmos/Docs/Kernel/Memory.md
rename to Docs/Kernel/Memory.md
diff --git a/Cosmos/Docs/Kernel/Plugs.md b/Docs/Kernel/Plugs.md
similarity index 100%
rename from Cosmos/Docs/Kernel/Plugs.md
rename to Docs/Kernel/Plugs.md
diff --git a/Cosmos/Docs/Kernel/Startup.md b/Docs/Kernel/Startup.md
similarity index 100%
rename from Cosmos/Docs/Kernel/Startup.md
rename to Docs/Kernel/Startup.md
diff --git a/Cosmos/Docs/Reference/x86.md b/Docs/Reference/x86.md
similarity index 100%
rename from Cosmos/Docs/Reference/x86.md
rename to Docs/Reference/x86.md
diff --git a/Cosmos/Docs/RingsGen3.vsdx b/Docs/RingsGen3.vsdx
similarity index 100%
rename from Cosmos/Docs/RingsGen3.vsdx
rename to Docs/RingsGen3.vsdx
diff --git a/Cosmos/Docs/RingsGen3.xlsx b/Docs/RingsGen3.xlsx
similarity index 100%
rename from Cosmos/Docs/RingsGen3.xlsx
rename to Docs/RingsGen3.xlsx
diff --git a/Cosmos/Docs/Tests/TestRunner.md b/Docs/Tests/TestRunner.md
similarity index 100%
rename from Cosmos/Docs/Tests/TestRunner.md
rename to Docs/Tests/TestRunner.md
diff --git a/Cosmos/Docs/Web.config b/Docs/Web.config
similarity index 100%
rename from Cosmos/Docs/Web.config
rename to Docs/Web.config
diff --git a/Cosmos/Docs/index.md b/Docs/index.md
similarity index 100%
rename from Cosmos/Docs/index.md
rename to Docs/index.md
diff --git a/Cosmos/IDE.sln b/IDE.sln
similarity index 100%
rename from Cosmos/IDE.sln
rename to IDE.sln
diff --git a/Cosmos/IL2CPU.sln b/IL2CPU.sln
similarity index 100%
rename from Cosmos/IL2CPU.sln
rename to IL2CPU.sln
diff --git a/Cosmos/Kernel.sln b/Kernel.sln
similarity index 100%
rename from Cosmos/Kernel.sln
rename to Kernel.sln
diff --git a/Cosmos/ReadMe - Solutions.txt b/ReadMe - Solutions.txt
similarity index 100%
rename from Cosmos/ReadMe - Solutions.txt
rename to ReadMe - Solutions.txt
diff --git a/Cosmos/Resources/Bochs/BIOS-bochs-latest b/Resources/Bochs/BIOS-bochs-latest
similarity index 100%
rename from Cosmos/Resources/Bochs/BIOS-bochs-latest
rename to Resources/Bochs/BIOS-bochs-latest
diff --git a/Cosmos/Resources/Bochs/BIOS-bochs-legacy b/Resources/Bochs/BIOS-bochs-legacy
similarity index 100%
rename from Cosmos/Resources/Bochs/BIOS-bochs-legacy
rename to Resources/Bochs/BIOS-bochs-legacy
diff --git a/Cosmos/Resources/Bochs/CHANGES.txt b/Resources/Bochs/CHANGES.txt
similarity index 100%
rename from Cosmos/Resources/Bochs/CHANGES.txt
rename to Resources/Bochs/CHANGES.txt
diff --git a/Cosmos/Resources/Bochs/COPYING.txt b/Resources/Bochs/COPYING.txt
similarity index 100%
rename from Cosmos/Resources/Bochs/COPYING.txt
rename to Resources/Bochs/COPYING.txt
diff --git a/Cosmos/Resources/Bochs/LICENSE.txt b/Resources/Bochs/LICENSE.txt
similarity index 100%
rename from Cosmos/Resources/Bochs/LICENSE.txt
rename to Resources/Bochs/LICENSE.txt
diff --git a/Cosmos/Resources/Bochs/README.txt b/Resources/Bochs/README.txt
similarity index 100%
rename from Cosmos/Resources/Bochs/README.txt
rename to Resources/Bochs/README.txt
diff --git a/Cosmos/Resources/Bochs/SeaBIOS-README.txt b/Resources/Bochs/SeaBIOS-README.txt
similarity index 100%
rename from Cosmos/Resources/Bochs/SeaBIOS-README.txt
rename to Resources/Bochs/SeaBIOS-README.txt
diff --git a/Cosmos/Resources/Bochs/TESTFORM.txt b/Resources/Bochs/TESTFORM.txt
similarity index 100%
rename from Cosmos/Resources/Bochs/TESTFORM.txt
rename to Resources/Bochs/TESTFORM.txt
diff --git a/Cosmos/Resources/Bochs/TODO.txt b/Resources/Bochs/TODO.txt
similarity index 100%
rename from Cosmos/Resources/Bochs/TODO.txt
rename to Resources/Bochs/TODO.txt
diff --git a/Cosmos/Resources/Bochs/VGABIOS-elpin-2.40 b/Resources/Bochs/VGABIOS-elpin-2.40
similarity index 100%
rename from Cosmos/Resources/Bochs/VGABIOS-elpin-2.40
rename to Resources/Bochs/VGABIOS-elpin-2.40
diff --git a/Cosmos/Resources/Bochs/VGABIOS-elpin-LICENSE.txt b/Resources/Bochs/VGABIOS-elpin-LICENSE.txt
similarity index 100%
rename from Cosmos/Resources/Bochs/VGABIOS-elpin-LICENSE.txt
rename to Resources/Bochs/VGABIOS-elpin-LICENSE.txt
diff --git a/Cosmos/Resources/Bochs/VGABIOS-lgpl-README.txt b/Resources/Bochs/VGABIOS-lgpl-README.txt
similarity index 100%
rename from Cosmos/Resources/Bochs/VGABIOS-lgpl-README.txt
rename to Resources/Bochs/VGABIOS-lgpl-README.txt
diff --git a/Cosmos/Resources/Bochs/VGABIOS-lgpl-latest b/Resources/Bochs/VGABIOS-lgpl-latest
similarity index 100%
rename from Cosmos/Resources/Bochs/VGABIOS-lgpl-latest
rename to Resources/Bochs/VGABIOS-lgpl-latest
diff --git a/Cosmos/Resources/Bochs/VGABIOS-lgpl-latest-cirrus b/Resources/Bochs/VGABIOS-lgpl-latest-cirrus
similarity index 100%
rename from Cosmos/Resources/Bochs/VGABIOS-lgpl-latest-cirrus
rename to Resources/Bochs/VGABIOS-lgpl-latest-cirrus
diff --git a/Cosmos/Resources/Bochs/VGABIOS-lgpl-latest-cirrus-debug b/Resources/Bochs/VGABIOS-lgpl-latest-cirrus-debug
similarity index 100%
rename from Cosmos/Resources/Bochs/VGABIOS-lgpl-latest-cirrus-debug
rename to Resources/Bochs/VGABIOS-lgpl-latest-cirrus-debug
diff --git a/Cosmos/Resources/Bochs/VGABIOS-lgpl-latest-debug b/Resources/Bochs/VGABIOS-lgpl-latest-debug
similarity index 100%
rename from Cosmos/Resources/Bochs/VGABIOS-lgpl-latest-debug
rename to Resources/Bochs/VGABIOS-lgpl-latest-debug
diff --git a/Cosmos/Resources/Bochs/bios.bin-1.7.5 b/Resources/Bochs/bios.bin-1.7.5
similarity index 100%
rename from Cosmos/Resources/Bochs/bios.bin-1.7.5
rename to Resources/Bochs/bios.bin-1.7.5
diff --git a/Cosmos/Resources/Bochs/bochs.ico b/Resources/Bochs/bochs.ico
similarity index 100%
rename from Cosmos/Resources/Bochs/bochs.ico
rename to Resources/Bochs/bochs.ico
diff --git a/Cosmos/Resources/Bochs/bochsrc-sample.txt b/Resources/Bochs/bochsrc-sample.txt
similarity index 100%
rename from Cosmos/Resources/Bochs/bochsrc-sample.txt
rename to Resources/Bochs/bochsrc-sample.txt
diff --git a/Cosmos/Resources/Bochs/keymaps/sdl-pc-de.map b/Resources/Bochs/keymaps/sdl-pc-de.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/sdl-pc-de.map
rename to Resources/Bochs/keymaps/sdl-pc-de.map
diff --git a/Cosmos/Resources/Bochs/keymaps/sdl-pc-us.map b/Resources/Bochs/keymaps/sdl-pc-us.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/sdl-pc-us.map
rename to Resources/Bochs/keymaps/sdl-pc-us.map
diff --git a/Cosmos/Resources/Bochs/keymaps/sdl2-pc-de.map b/Resources/Bochs/keymaps/sdl2-pc-de.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/sdl2-pc-de.map
rename to Resources/Bochs/keymaps/sdl2-pc-de.map
diff --git a/Cosmos/Resources/Bochs/keymaps/sdl2-pc-us.map b/Resources/Bochs/keymaps/sdl2-pc-us.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/sdl2-pc-us.map
rename to Resources/Bochs/keymaps/sdl2-pc-us.map
diff --git a/Cosmos/Resources/Bochs/keymaps/x11-pc-be.map b/Resources/Bochs/keymaps/x11-pc-be.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/x11-pc-be.map
rename to Resources/Bochs/keymaps/x11-pc-be.map
diff --git a/Cosmos/Resources/Bochs/keymaps/x11-pc-da.map b/Resources/Bochs/keymaps/x11-pc-da.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/x11-pc-da.map
rename to Resources/Bochs/keymaps/x11-pc-da.map
diff --git a/Cosmos/Resources/Bochs/keymaps/x11-pc-de.map b/Resources/Bochs/keymaps/x11-pc-de.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/x11-pc-de.map
rename to Resources/Bochs/keymaps/x11-pc-de.map
diff --git a/Cosmos/Resources/Bochs/keymaps/x11-pc-es.map b/Resources/Bochs/keymaps/x11-pc-es.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/x11-pc-es.map
rename to Resources/Bochs/keymaps/x11-pc-es.map
diff --git a/Cosmos/Resources/Bochs/keymaps/x11-pc-fr.map b/Resources/Bochs/keymaps/x11-pc-fr.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/x11-pc-fr.map
rename to Resources/Bochs/keymaps/x11-pc-fr.map
diff --git a/Cosmos/Resources/Bochs/keymaps/x11-pc-it.map b/Resources/Bochs/keymaps/x11-pc-it.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/x11-pc-it.map
rename to Resources/Bochs/keymaps/x11-pc-it.map
diff --git a/Cosmos/Resources/Bochs/keymaps/x11-pc-ru.map b/Resources/Bochs/keymaps/x11-pc-ru.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/x11-pc-ru.map
rename to Resources/Bochs/keymaps/x11-pc-ru.map
diff --git a/Cosmos/Resources/Bochs/keymaps/x11-pc-se.map b/Resources/Bochs/keymaps/x11-pc-se.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/x11-pc-se.map
rename to Resources/Bochs/keymaps/x11-pc-se.map
diff --git a/Cosmos/Resources/Bochs/keymaps/x11-pc-si.map b/Resources/Bochs/keymaps/x11-pc-si.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/x11-pc-si.map
rename to Resources/Bochs/keymaps/x11-pc-si.map
diff --git a/Cosmos/Resources/Bochs/keymaps/x11-pc-uk.map b/Resources/Bochs/keymaps/x11-pc-uk.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/x11-pc-uk.map
rename to Resources/Bochs/keymaps/x11-pc-uk.map
diff --git a/Cosmos/Resources/Bochs/keymaps/x11-pc-us.map b/Resources/Bochs/keymaps/x11-pc-us.map
similarity index 100%
rename from Cosmos/Resources/Bochs/keymaps/x11-pc-us.map
rename to Resources/Bochs/keymaps/x11-pc-us.map
diff --git a/Cosmos/Resources/Bochs/lgban.ico b/Resources/Bochs/lgban.ico
similarity index 100%
rename from Cosmos/Resources/Bochs/lgban.ico
rename to Resources/Bochs/lgban.ico
diff --git a/Cosmos/Resources/Bochs/logo.ico b/Resources/Bochs/logo.ico
similarity index 100%
rename from Cosmos/Resources/Bochs/logo.ico
rename to Resources/Bochs/logo.ico
diff --git a/Cosmos/Resources/Bochs/penguin.ico b/Resources/Bochs/penguin.ico
similarity index 100%
rename from Cosmos/Resources/Bochs/penguin.ico
rename to Resources/Bochs/penguin.ico
diff --git a/Cosmos/Resources/Bochs/sb16ctrl.txt b/Resources/Bochs/sb16ctrl.txt
similarity index 100%
rename from Cosmos/Resources/Bochs/sb16ctrl.txt
rename to Resources/Bochs/sb16ctrl.txt
diff --git a/Cosmos/Resources/Bochs/slirp.conf b/Resources/Bochs/slirp.conf
similarity index 100%
rename from Cosmos/Resources/Bochs/slirp.conf
rename to Resources/Bochs/slirp.conf
diff --git a/Cosmos/Resources/Bochs/unbochs.ico b/Resources/Bochs/unbochs.ico
similarity index 100%
rename from Cosmos/Resources/Bochs/unbochs.ico
rename to Resources/Bochs/unbochs.ico
diff --git a/Cosmos/Resources/Dependencies/Dapper/Dapper.xml b/Resources/Dependencies/Dapper/Dapper.xml
similarity index 100%
rename from Cosmos/Resources/Dependencies/Dapper/Dapper.xml
rename to Resources/Dependencies/Dapper/Dapper.xml
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.StrongName.csproj b/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.StrongName.csproj
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.StrongName.csproj
rename to Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.StrongName.csproj
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.StrongName.sln b/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.StrongName.sln
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.StrongName.sln
rename to Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.StrongName.sln
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.cs b/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/DapperExtensions.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensionsConfiguration.cs b/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensionsConfiguration.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/DapperExtensionsConfiguration.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/DapperExtensionsConfiguration.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/DapperImplementor.cs b/Resources/Dependencies/DapperExtensions.StrongName/DapperImplementor.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/DapperImplementor.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/DapperImplementor.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Database.cs b/Resources/Dependencies/DapperExtensions.StrongName/Database.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Database.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Database.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/GetMultiplePredicate.cs b/Resources/Dependencies/DapperExtensions.StrongName/GetMultiplePredicate.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/GetMultiplePredicate.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/GetMultiplePredicate.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/GetMultipleResult.cs b/Resources/Dependencies/DapperExtensions.StrongName/GetMultipleResult.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/GetMultipleResult.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/GetMultipleResult.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Mapper/AutoClassMapper.cs b/Resources/Dependencies/DapperExtensions.StrongName/Mapper/AutoClassMapper.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Mapper/AutoClassMapper.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Mapper/AutoClassMapper.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Mapper/ClassMapper.cs b/Resources/Dependencies/DapperExtensions.StrongName/Mapper/ClassMapper.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Mapper/ClassMapper.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Mapper/ClassMapper.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Mapper/PluralizedAutoClassMapper.cs b/Resources/Dependencies/DapperExtensions.StrongName/Mapper/PluralizedAutoClassMapper.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Mapper/PluralizedAutoClassMapper.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Mapper/PluralizedAutoClassMapper.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Mapper/PropertyMap.cs b/Resources/Dependencies/DapperExtensions.StrongName/Mapper/PropertyMap.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Mapper/PropertyMap.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Mapper/PropertyMap.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Predicates.cs b/Resources/Dependencies/DapperExtensions.StrongName/Predicates.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Predicates.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Predicates.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/ReflectionHelper.cs b/Resources/Dependencies/DapperExtensions.StrongName/ReflectionHelper.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/ReflectionHelper.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/ReflectionHelper.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/MySqlDialect.cs b/Resources/Dependencies/DapperExtensions.StrongName/Sql/MySqlDialect.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/MySqlDialect.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Sql/MySqlDialect.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/PostgreSqlDialect.cs b/Resources/Dependencies/DapperExtensions.StrongName/Sql/PostgreSqlDialect.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/PostgreSqlDialect.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Sql/PostgreSqlDialect.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlCeDialect.cs b/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlCeDialect.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlCeDialect.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlCeDialect.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlDialectBase.cs b/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlDialectBase.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlDialectBase.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlDialectBase.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlGenerator.cs b/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlGenerator.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlGenerator.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlGenerator.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlServerDialect.cs b/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlServerDialect.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlServerDialect.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Sql/SqlServerDialect.cs
diff --git a/Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqliteDialect.cs b/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqliteDialect.cs
similarity index 100%
rename from Cosmos/Resources/Dependencies/DapperExtensions.StrongName/Sql/SqliteDialect.cs
rename to Resources/Dependencies/DapperExtensions.StrongName/Sql/SqliteDialect.cs
diff --git a/Cosmos/Resources/Dependencies/ILSpy/ILSpy.exe.config b/Resources/Dependencies/ILSpy/ILSpy.exe.config
similarity index 100%
rename from Cosmos/Resources/Dependencies/ILSpy/ILSpy.exe.config
rename to Resources/Dependencies/ILSpy/ILSpy.exe.config
diff --git a/Cosmos/Resources/Dependencies/versions.txt b/Resources/Dependencies/versions.txt
similarity index 100%
rename from Cosmos/Resources/Dependencies/versions.txt
rename to Resources/Dependencies/versions.txt
diff --git a/Cosmos/Setup/Cosmos.iss b/Setup/Cosmos.iss
similarity index 100%
rename from Cosmos/Setup/Cosmos.iss
rename to Setup/Cosmos.iss
diff --git a/Cosmos/Setup/Languages/Basque-1-5.1.0.isl b/Setup/Languages/Basque-1-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Basque-1-5.1.0.isl
rename to Setup/Languages/Basque-1-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/BrazilianPortuguese-16-5.1.0.isl b/Setup/Languages/BrazilianPortuguese-16-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/BrazilianPortuguese-16-5.1.0.isl
rename to Setup/Languages/BrazilianPortuguese-16-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Catalan-4-5.1.0.isl b/Setup/Languages/Catalan-4-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Catalan-4-5.1.0.isl
rename to Setup/Languages/Catalan-4-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Czech-5-5.1.0.isl b/Setup/Languages/Czech-5-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Czech-5-5.1.0.isl
rename to Setup/Languages/Czech-5-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Danish-4-5.1.0.isl b/Setup/Languages/Danish-4-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Danish-4-5.1.0.isl
rename to Setup/Languages/Danish-4-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Dutch-8-5.1.0.isl b/Setup/Languages/Dutch-8-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Dutch-8-5.1.0.isl
rename to Setup/Languages/Dutch-8-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Finnish-5.1.0.isl b/Setup/Languages/Finnish-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Finnish-5.1.0.isl
rename to Setup/Languages/Finnish-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/French-15-5.1.0.isl b/Setup/Languages/French-15-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/French-15-5.1.0.isl
rename to Setup/Languages/French-15-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/German-2-5.1.0.isl b/Setup/Languages/German-2-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/German-2-5.1.0.isl
rename to Setup/Languages/German-2-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Hungarian-5.1.0.isl b/Setup/Languages/Hungarian-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Hungarian-5.1.0.isl
rename to Setup/Languages/Hungarian-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/Bulgarian-5.1.0.isl b/Setup/Languages/InOfficial/Bulgarian-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/Bulgarian-5.1.0.isl
rename to Setup/Languages/InOfficial/Bulgarian-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/ChineseSimp-11-5.1.0.isl b/Setup/Languages/InOfficial/ChineseSimp-11-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/ChineseSimp-11-5.1.0.isl
rename to Setup/Languages/InOfficial/ChineseSimp-11-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/ChineseTrad-2-5.1.0.isl b/Setup/Languages/InOfficial/ChineseTrad-2-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/ChineseTrad-2-5.1.0.isl
rename to Setup/Languages/InOfficial/ChineseTrad-2-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/Croatian-5-5.1.0.isl b/Setup/Languages/InOfficial/Croatian-5-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/Croatian-5-5.1.0.isl
rename to Setup/Languages/InOfficial/Croatian-5-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/Greek-4-5.1.0.isl b/Setup/Languages/InOfficial/Greek-4-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/Greek-4-5.1.0.isl
rename to Setup/Languages/InOfficial/Greek-4-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/Icelandic-1-5.1.0.isl b/Setup/Languages/InOfficial/Icelandic-1-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/Icelandic-1-5.1.0.isl
rename to Setup/Languages/InOfficial/Icelandic-1-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/Indonesian-5.1.0.isl b/Setup/Languages/InOfficial/Indonesian-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/Indonesian-5.1.0.isl
rename to Setup/Languages/InOfficial/Indonesian-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/Japanese-5-5.1.0.isl b/Setup/Languages/InOfficial/Japanese-5-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/Japanese-5-5.1.0.isl
rename to Setup/Languages/InOfficial/Japanese-5-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/Korean-5-5.1.0.isl b/Setup/Languages/InOfficial/Korean-5-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/Korean-5-5.1.0.isl
rename to Setup/Languages/InOfficial/Korean-5-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/Malaysian-2-5.1.0.isl b/Setup/Languages/InOfficial/Malaysian-2-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/Malaysian-2-5.1.0.isl
rename to Setup/Languages/InOfficial/Malaysian-2-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/SpanishMex-4-5.1.0.isl b/Setup/Languages/InOfficial/SpanishMex-4-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/SpanishMex-4-5.1.0.isl
rename to Setup/Languages/InOfficial/SpanishMex-4-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/SpanishStd-2-5.1.0.isl b/Setup/Languages/InOfficial/SpanishStd-2-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/SpanishStd-2-5.1.0.isl
rename to Setup/Languages/InOfficial/SpanishStd-2-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/Swedish-8-5.1.0.isl b/Setup/Languages/InOfficial/Swedish-8-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/Swedish-8-5.1.0.isl
rename to Setup/Languages/InOfficial/Swedish-8-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/Turkish-3-5.1.0.isl b/Setup/Languages/InOfficial/Turkish-3-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/Turkish-3-5.1.0.isl
rename to Setup/Languages/InOfficial/Turkish-3-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/InOfficial/Ukrainian-5-5.1.0.isl b/Setup/Languages/InOfficial/Ukrainian-5-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/InOfficial/Ukrainian-5-5.1.0.isl
rename to Setup/Languages/InOfficial/Ukrainian-5-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Italian-14-5.1.0.isl b/Setup/Languages/Italian-14-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Italian-14-5.1.0.isl
rename to Setup/Languages/Italian-14-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Norwegian-5.1.0.isl b/Setup/Languages/Norwegian-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Norwegian-5.1.0.isl
rename to Setup/Languages/Norwegian-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Polish-8-5.1.0.isl b/Setup/Languages/Polish-8-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Polish-8-5.1.0.isl
rename to Setup/Languages/Polish-8-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/PortugueseStd-1-5.1.0.isl b/Setup/Languages/PortugueseStd-1-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/PortugueseStd-1-5.1.0.isl
rename to Setup/Languages/PortugueseStd-1-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Russian-19-5.1.0.isl b/Setup/Languages/Russian-19-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Russian-19-5.1.0.isl
rename to Setup/Languages/Russian-19-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Slovak-6-5.1.0.isl b/Setup/Languages/Slovak-6-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Slovak-6-5.1.0.isl
rename to Setup/Languages/Slovak-6-5.1.0.isl
diff --git a/Cosmos/Setup/Languages/Slovenian-3-5.1.0.isl b/Setup/Languages/Slovenian-3-5.1.0.isl
similarity index 100%
rename from Cosmos/Setup/Languages/Slovenian-3-5.1.0.isl
rename to Setup/Languages/Slovenian-3-5.1.0.isl
diff --git a/Cosmos/Setup/Localization.inc b/Setup/Localization.inc
similarity index 100%
rename from Cosmos/Setup/Localization.inc
rename to Setup/Localization.inc
diff --git a/Cosmos/Setup/ReadMe.txt b/Setup/ReadMe.txt
similarity index 100%
rename from Cosmos/Setup/ReadMe.txt
rename to Setup/ReadMe.txt
diff --git a/Cosmos/Setup/images/cosmos.bmp b/Setup/images/cosmos.bmp
similarity index 100%
rename from Cosmos/Setup/images/cosmos.bmp
rename to Setup/images/cosmos.bmp
diff --git a/Cosmos/Setup/images/cosmos_small.bmp b/Setup/images/cosmos_small.bmp
similarity index 100%
rename from Cosmos/Setup/images/cosmos_small.bmp
rename to Setup/images/cosmos_small.bmp
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/Build.lnk b/Temp - Ignore me (or not, but dont goof me up)/Build.lnk
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/Build.lnk
rename to Temp - Ignore me (or not, but dont goof me up)/Build.lnk
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/Builder.lnk b/Temp - Ignore me (or not, but dont goof me up)/Builder.lnk
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/Builder.lnk
rename to Temp - Ignore me (or not, but dont goof me up)/Builder.lnk
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/Clean nuget.bat b/Temp - Ignore me (or not, but dont goof me up)/Clean nuget.bat
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/Clean nuget.bat
rename to Temp - Ignore me (or not, but dont goof me up)/Clean nuget.bat
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/Cosmos.Build.MSBuild.lnk b/Temp - Ignore me (or not, but dont goof me up)/Cosmos.Build.MSBuild.lnk
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/Cosmos.Build.MSBuild.lnk
rename to Temp - Ignore me (or not, but dont goof me up)/Cosmos.Build.MSBuild.lnk
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/IDE.lnk b/Temp - Ignore me (or not, but dont goof me up)/IDE.lnk
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/IDE.lnk
rename to Temp - Ignore me (or not, but dont goof me up)/IDE.lnk
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/IL2CPU.lnk b/Temp - Ignore me (or not, but dont goof me up)/IL2CPU.lnk
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/IL2CPU.lnk
rename to Temp - Ignore me (or not, but dont goof me up)/IL2CPU.lnk
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/Install-VS2017.lnk b/Temp - Ignore me (or not, but dont goof me up)/Install-VS2017.lnk
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/Install-VS2017.lnk
rename to Temp - Ignore me (or not, but dont goof me up)/Install-VS2017.lnk
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/Kernel.lnk b/Temp - Ignore me (or not, but dont goof me up)/Kernel.lnk
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/Kernel.lnk
rename to Temp - Ignore me (or not, but dont goof me up)/Kernel.lnk
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/RingsGen3.lnk b/Temp - Ignore me (or not, but dont goof me up)/RingsGen3.lnk
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/RingsGen3.lnk
rename to Temp - Ignore me (or not, but dont goof me up)/RingsGen3.lnk
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/Test.lnk b/Temp - Ignore me (or not, but dont goof me up)/Test.lnk
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/Test.lnk
rename to Temp - Ignore me (or not, but dont goof me up)/Test.lnk
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/Update G3.bat b/Temp - Ignore me (or not, but dont goof me up)/Update G3.bat
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/Update G3.bat
rename to Temp - Ignore me (or not, but dont goof me up)/Update G3.bat
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/UserKit Kernel.lnk b/Temp - Ignore me (or not, but dont goof me up)/UserKit Kernel.lnk
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/UserKit Kernel.lnk
rename to Temp - Ignore me (or not, but dont goof me up)/UserKit Kernel.lnk
diff --git a/Cosmos/Temp - Ignore me (or not, but dont goof me up)/UserKit.lnk b/Temp - Ignore me (or not, but dont goof me up)/UserKit.lnk
similarity index 100%
rename from Cosmos/Temp - Ignore me (or not, but dont goof me up)/UserKit.lnk
rename to Temp - Ignore me (or not, but dont goof me up)/UserKit.lnk
diff --git a/Cosmos/Test.sln b/Test.sln
similarity index 100%
rename from Cosmos/Test.sln
rename to Test.sln
diff --git a/Cosmos/Tests/.editorconfig b/Tests/.editorconfig
similarity index 100%
rename from Cosmos/Tests/.editorconfig
rename to Tests/.editorconfig
diff --git a/Cosmos/Tests/BoxingTests/BoxingTests.csproj b/Tests/BoxingTests/BoxingTests.csproj
similarity index 100%
rename from Cosmos/Tests/BoxingTests/BoxingTests.csproj
rename to Tests/BoxingTests/BoxingTests.csproj
diff --git a/Cosmos/Tests/BoxingTests/BoxingTestsBoot.Cosmos b/Tests/BoxingTests/BoxingTestsBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/BoxingTests/BoxingTestsBoot.Cosmos
rename to Tests/BoxingTests/BoxingTestsBoot.Cosmos
diff --git a/Cosmos/Tests/BoxingTests/Kernel.cs b/Tests/BoxingTests/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/BoxingTests/Kernel.cs
rename to Tests/BoxingTests/Kernel.cs
diff --git a/Cosmos/Tests/Cosmos.Build.Common.Tests/BuildPropertiesTest.cs b/Tests/Cosmos.Build.Common.Tests/BuildPropertiesTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Build.Common.Tests/BuildPropertiesTest.cs
rename to Tests/Cosmos.Build.Common.Tests/BuildPropertiesTest.cs
diff --git a/Cosmos/Tests/Cosmos.Build.Common.Tests/Cosmos.Build.Common.Tests.csproj b/Tests/Cosmos.Build.Common.Tests/Cosmos.Build.Common.Tests.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Build.Common.Tests/Cosmos.Build.Common.Tests.csproj
rename to Tests/Cosmos.Build.Common.Tests/Cosmos.Build.Common.Tests.csproj
diff --git a/Cosmos/Tests/Cosmos.Build.Common.Tests/EnumValueTest.cs b/Tests/Cosmos.Build.Common.Tests/EnumValueTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Build.Common.Tests/EnumValueTest.cs
rename to Tests/Cosmos.Build.Common.Tests/EnumValueTest.cs
diff --git a/Cosmos/Tests/Cosmos.Common.Tests/.editorconfig b/Tests/Cosmos.Common.Tests/.editorconfig
similarity index 100%
rename from Cosmos/Tests/Cosmos.Common.Tests/.editorconfig
rename to Tests/Cosmos.Common.Tests/.editorconfig
diff --git a/Cosmos/Tests/Cosmos.Common.Tests/Cosmos.Common.Tests.xproj b/Tests/Cosmos.Common.Tests/Cosmos.Common.Tests.xproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Common.Tests/Cosmos.Common.Tests.xproj
rename to Tests/Cosmos.Common.Tests/Cosmos.Common.Tests.xproj
diff --git a/Cosmos/Tests/Cosmos.Common.Tests/ToHexStringTest.cs b/Tests/Cosmos.Common.Tests/ToHexStringTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Common.Tests/ToHexStringTest.cs
rename to Tests/Cosmos.Common.Tests/ToHexStringTest.cs
diff --git a/Cosmos/Tests/Cosmos.Common.Tests/project.json b/Tests/Cosmos.Common.Tests/project.json
similarity index 100%
rename from Cosmos/Tests/Cosmos.Common.Tests/project.json
rename to Tests/Cosmos.Common.Tests/project.json
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/CSharp/ForeachLoopTests.cs b/Tests/Cosmos.Compiler.Tests.Bcl/CSharp/ForeachLoopTests.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/CSharp/ForeachLoopTests.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/CSharp/ForeachLoopTests.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/CSharp/WhileLoopTests.cs b/Tests/Cosmos.Compiler.Tests.Bcl/CSharp/WhileLoopTests.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/CSharp/WhileLoopTests.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/CSharp/WhileLoopTests.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/Cosmos.Compiler.Tests.Bcl.csproj b/Tests/Cosmos.Compiler.Tests.Bcl/Cosmos.Compiler.Tests.Bcl.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/Cosmos.Compiler.Tests.Bcl.csproj
rename to Tests/Cosmos.Compiler.Tests.Bcl/Cosmos.Compiler.Tests.Bcl.csproj
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/Cosmos.Compiler.Tests.BclBoot.Cosmos b/Tests/Cosmos.Compiler.Tests.Bcl/Cosmos.Compiler.Tests.BclBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/Cosmos.Compiler.Tests.BclBoot.Cosmos
rename to Tests/Cosmos.Compiler.Tests.Bcl/Cosmos.Compiler.Tests.BclBoot.Cosmos
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/Helper/EqualityHelper.cs b/Tests/Cosmos.Compiler.Tests.Bcl/Helper/EqualityHelper.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/Helper/EqualityHelper.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/Helper/EqualityHelper.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/Kernel.cs b/Tests/Cosmos.Compiler.Tests.Bcl/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/Kernel.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/Kernel.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/ArrayTests.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/ArrayTests.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/ArrayTests.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/ArrayTests.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/BitConverterTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/BitConverterTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/BitConverterTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/BitConverterTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/BooleanTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/BooleanTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/BooleanTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/BooleanTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/ByteTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/ByteTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/ByteTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/ByteTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/CharTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/CharTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/CharTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/CharTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/DictionaryTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/DictionaryTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/DictionaryTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/DictionaryTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/ListTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/ListTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/ListTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/ListTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/QueueTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/QueueTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/QueueTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/Collections/Generic/QueueTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/DecimalTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/DecimalTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/DecimalTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/DecimalTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/DelegatesTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/DelegatesTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/DelegatesTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/DelegatesTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/DoubleTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/DoubleTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/DoubleTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/DoubleTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Int16Test.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/Int16Test.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Int16Test.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/Int16Test.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Int32Test.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/Int32Test.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Int32Test.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/Int32Test.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Int64Test.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/Int64Test.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/Int64Test.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/Int64Test.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/MathTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/MathTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/MathTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/MathTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/ObjectTests.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/ObjectTests.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/ObjectTests.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/ObjectTests.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/SByteTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/SByteTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/SByteTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/SByteTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/SingleTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/SingleTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/SingleTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/SingleTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/StringTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/StringTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/StringTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/StringTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/UInt16Test.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/UInt16Test.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/UInt16Test.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/UInt16Test.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/UInt32Test.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/UInt32Test.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/UInt32Test.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/UInt32Test.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/UInt64Test.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/UInt64Test.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/UInt64Test.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/UInt64Test.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/UnsafeCodeTest.cs b/Tests/Cosmos.Compiler.Tests.Bcl/System/UnsafeCodeTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Bcl/System/UnsafeCodeTest.cs
rename to Tests/Cosmos.Compiler.Tests.Bcl/System/UnsafeCodeTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Encryption/Cosmos.Compiler.Tests.Encryption.csproj b/Tests/Cosmos.Compiler.Tests.Encryption/Cosmos.Compiler.Tests.Encryption.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Encryption/Cosmos.Compiler.Tests.Encryption.csproj
rename to Tests/Cosmos.Compiler.Tests.Encryption/Cosmos.Compiler.Tests.Encryption.csproj
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Encryption/Cosmos.Compiler.Tests.EncryptionBoot.Cosmos b/Tests/Cosmos.Compiler.Tests.Encryption/Cosmos.Compiler.Tests.EncryptionBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Encryption/Cosmos.Compiler.Tests.EncryptionBoot.Cosmos
rename to Tests/Cosmos.Compiler.Tests.Encryption/Cosmos.Compiler.Tests.EncryptionBoot.Cosmos
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Encryption/Kernel.cs b/Tests/Cosmos.Compiler.Tests.Encryption/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Encryption/Kernel.cs
rename to Tests/Cosmos.Compiler.Tests.Encryption/Kernel.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Exceptions/Cosmos.Compiler.Tests.Exceptions.csproj b/Tests/Cosmos.Compiler.Tests.Exceptions/Cosmos.Compiler.Tests.Exceptions.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Exceptions/Cosmos.Compiler.Tests.Exceptions.csproj
rename to Tests/Cosmos.Compiler.Tests.Exceptions/Cosmos.Compiler.Tests.Exceptions.csproj
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Exceptions/Cosmos.Compiler.Tests.ExceptionsBoot.Cosmos b/Tests/Cosmos.Compiler.Tests.Exceptions/Cosmos.Compiler.Tests.ExceptionsBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Exceptions/Cosmos.Compiler.Tests.ExceptionsBoot.Cosmos
rename to Tests/Cosmos.Compiler.Tests.Exceptions/Cosmos.Compiler.Tests.ExceptionsBoot.Cosmos
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Exceptions/Kernel.cs b/Tests/Cosmos.Compiler.Tests.Exceptions/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Exceptions/Kernel.cs
rename to Tests/Cosmos.Compiler.Tests.Exceptions/Kernel.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/Cosmos.Compiler.Tests.Interfaces.csproj b/Tests/Cosmos.Compiler.Tests.Interfaces/Cosmos.Compiler.Tests.Interfaces.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/Cosmos.Compiler.Tests.Interfaces.csproj
rename to Tests/Cosmos.Compiler.Tests.Interfaces/Cosmos.Compiler.Tests.Interfaces.csproj
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/Cosmos.Compiler.Tests.InterfacesBoot.Cosmos b/Tests/Cosmos.Compiler.Tests.Interfaces/Cosmos.Compiler.Tests.InterfacesBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/Cosmos.Compiler.Tests.InterfacesBoot.Cosmos
rename to Tests/Cosmos.Compiler.Tests.Interfaces/Cosmos.Compiler.Tests.InterfacesBoot.Cosmos
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceA.cs b/Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceA.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceA.cs
rename to Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceA.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceB.cs b/Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceB.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceB.cs
rename to Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceB.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceT.cs b/Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceT.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceT.cs
rename to Tests/Cosmos.Compiler.Tests.Interfaces/IInterfaceT.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/Kernel.cs b/Tests/Cosmos.Compiler.Tests.Interfaces/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.Interfaces/Kernel.cs
rename to Tests/Cosmos.Compiler.Tests.Interfaces/Kernel.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.LinqTests/Cosmos.Compiler.Tests.LinqTests.csproj b/Tests/Cosmos.Compiler.Tests.LinqTests/Cosmos.Compiler.Tests.LinqTests.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.LinqTests/Cosmos.Compiler.Tests.LinqTests.csproj
rename to Tests/Cosmos.Compiler.Tests.LinqTests/Cosmos.Compiler.Tests.LinqTests.csproj
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.LinqTests/Cosmos.Compiler.Tests.LinqTestsBoot.Cosmos b/Tests/Cosmos.Compiler.Tests.LinqTests/Cosmos.Compiler.Tests.LinqTestsBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.LinqTests/Cosmos.Compiler.Tests.LinqTestsBoot.Cosmos
rename to Tests/Cosmos.Compiler.Tests.LinqTests/Cosmos.Compiler.Tests.LinqTestsBoot.Cosmos
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.LinqTests/Kernel.cs b/Tests/Cosmos.Compiler.Tests.LinqTests/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.LinqTests/Kernel.cs
rename to Tests/Cosmos.Compiler.Tests.LinqTests/Kernel.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.MethodTests/Cosmos.Compiler.Tests.MethodTests.csproj b/Tests/Cosmos.Compiler.Tests.MethodTests/Cosmos.Compiler.Tests.MethodTests.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.MethodTests/Cosmos.Compiler.Tests.MethodTests.csproj
rename to Tests/Cosmos.Compiler.Tests.MethodTests/Cosmos.Compiler.Tests.MethodTests.csproj
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.MethodTests/Cosmos.Compiler.Tests.MethodTestsBoot.Cosmos b/Tests/Cosmos.Compiler.Tests.MethodTests/Cosmos.Compiler.Tests.MethodTestsBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.MethodTests/Cosmos.Compiler.Tests.MethodTestsBoot.Cosmos
rename to Tests/Cosmos.Compiler.Tests.MethodTests/Cosmos.Compiler.Tests.MethodTestsBoot.Cosmos
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.MethodTests/Kernel.cs b/Tests/Cosmos.Compiler.Tests.MethodTests/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.MethodTests/Kernel.cs
rename to Tests/Cosmos.Compiler.Tests.MethodTests/Kernel.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.MethodTests/ReturnTests.cs b/Tests/Cosmos.Compiler.Tests.MethodTests/ReturnTests.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.MethodTests/ReturnTests.cs
rename to Tests/Cosmos.Compiler.Tests.MethodTests/ReturnTests.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Cosmos.Compiler.Tests.SimpleWriteLine.csproj b/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Cosmos.Compiler.Tests.SimpleWriteLine.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Cosmos.Compiler.Tests.SimpleWriteLine.csproj
rename to Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Cosmos.Compiler.Tests.SimpleWriteLine.csproj
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Cosmos.Compiler.Tests.SimpleWriteLineBoot.Cosmos b/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Cosmos.Compiler.Tests.SimpleWriteLineBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Cosmos.Compiler.Tests.SimpleWriteLineBoot.Cosmos
rename to Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Cosmos.Compiler.Tests.SimpleWriteLineBoot.Cosmos
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Kernel.cs b/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Kernel.cs
rename to Tests/Cosmos.Compiler.Tests.SimpleWriteLine/Kernel.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/TestTryFinally.cs b/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/TestTryFinally.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.SimpleWriteLine/TestTryFinally.cs
rename to Tests/Cosmos.Compiler.Tests.SimpleWriteLine/TestTryFinally.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.SingleEchoTest/Cosmos.Compiler.Tests.SingleEchoTest.csproj b/Tests/Cosmos.Compiler.Tests.SingleEchoTest/Cosmos.Compiler.Tests.SingleEchoTest.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.SingleEchoTest/Cosmos.Compiler.Tests.SingleEchoTest.csproj
rename to Tests/Cosmos.Compiler.Tests.SingleEchoTest/Cosmos.Compiler.Tests.SingleEchoTest.csproj
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.SingleEchoTest/Cosmos.Compiler.Tests.SingleEchoTestBoot.Cosmos b/Tests/Cosmos.Compiler.Tests.SingleEchoTest/Cosmos.Compiler.Tests.SingleEchoTestBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.SingleEchoTest/Cosmos.Compiler.Tests.SingleEchoTestBoot.Cosmos
rename to Tests/Cosmos.Compiler.Tests.SingleEchoTest/Cosmos.Compiler.Tests.SingleEchoTestBoot.Cosmos
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests.SingleEchoTest/Kernel.cs b/Tests/Cosmos.Compiler.Tests.SingleEchoTest/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests.SingleEchoTest/Kernel.cs
rename to Tests/Cosmos.Compiler.Tests.SingleEchoTest/Kernel.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests/Cosmos.Compiler.Tests.csproj b/Tests/Cosmos.Compiler.Tests/Cosmos.Compiler.Tests.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests/Cosmos.Compiler.Tests.csproj
rename to Tests/Cosmos.Compiler.Tests/Cosmos.Compiler.Tests.csproj
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests/DoTest.InterfacesTest.Logfile.approved.txt b/Tests/Cosmos.Compiler.Tests/DoTest.InterfacesTest.Logfile.approved.txt
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests/DoTest.InterfacesTest.Logfile.approved.txt
rename to Tests/Cosmos.Compiler.Tests/DoTest.InterfacesTest.Logfile.approved.txt
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests/DoTest.InterfacesTest.Output.approved.txt b/Tests/Cosmos.Compiler.Tests/DoTest.InterfacesTest.Output.approved.txt
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests/DoTest.InterfacesTest.Output.approved.txt
rename to Tests/Cosmos.Compiler.Tests/DoTest.InterfacesTest.Output.approved.txt
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests/DoTest.SimpleWriteLineTest.Logfile.approved.txt b/Tests/Cosmos.Compiler.Tests/DoTest.SimpleWriteLineTest.Logfile.approved.txt
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests/DoTest.SimpleWriteLineTest.Logfile.approved.txt
rename to Tests/Cosmos.Compiler.Tests/DoTest.SimpleWriteLineTest.Logfile.approved.txt
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests/DoTest.cs b/Tests/Cosmos.Compiler.Tests/DoTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests/DoTest.cs
rename to Tests/Cosmos.Compiler.Tests/DoTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.Tests/app.config b/Tests/Cosmos.Compiler.Tests/app.config
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.Tests/app.config
rename to Tests/Cosmos.Compiler.Tests/app.config
diff --git a/Cosmos/Tests/Cosmos.Compiler.TestsBase/BaseTest.cs b/Tests/Cosmos.Compiler.TestsBase/BaseTest.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.TestsBase/BaseTest.cs
rename to Tests/Cosmos.Compiler.TestsBase/BaseTest.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.TestsBase/CompilerRunner.cs b/Tests/Cosmos.Compiler.TestsBase/CompilerRunner.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.TestsBase/CompilerRunner.cs
rename to Tests/Cosmos.Compiler.TestsBase/CompilerRunner.cs
diff --git a/Cosmos/Tests/Cosmos.Compiler.TestsBase/Cosmos.Compiler.TestsBase.csproj b/Tests/Cosmos.Compiler.TestsBase/Cosmos.Compiler.TestsBase.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Compiler.TestsBase/Cosmos.Compiler.TestsBase.csproj
rename to Tests/Cosmos.Compiler.TestsBase/Cosmos.Compiler.TestsBase.csproj
diff --git a/Cosmos/Tests/Cosmos.Core.Memory.Test/Cosmos.Core.Memory.Test.csproj b/Tests/Cosmos.Core.Memory.Test/Cosmos.Core.Memory.Test.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Core.Memory.Test/Cosmos.Core.Memory.Test.csproj
rename to Tests/Cosmos.Core.Memory.Test/Cosmos.Core.Memory.Test.csproj
diff --git a/Cosmos/Tests/Cosmos.Core.Memory.Test/Heap.xlsx b/Tests/Cosmos.Core.Memory.Test/Heap.xlsx
similarity index 100%
rename from Cosmos/Tests/Cosmos.Core.Memory.Test/Heap.xlsx
rename to Tests/Cosmos.Core.Memory.Test/Heap.xlsx
diff --git a/Cosmos/Tests/Cosmos.Core.Memory.Test/UnitTest1.cs b/Tests/Cosmos.Core.Memory.Test/UnitTest1.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Core.Memory.Test/UnitTest1.cs
rename to Tests/Cosmos.Core.Memory.Test/UnitTest1.cs
diff --git a/Cosmos/Tests/Cosmos.Core.Tests/Cosmos.Core.Tests.csproj b/Tests/Cosmos.Core.Tests/Cosmos.Core.Tests.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Core.Tests/Cosmos.Core.Tests.csproj
rename to Tests/Cosmos.Core.Tests/Cosmos.Core.Tests.csproj
diff --git a/Cosmos/Tests/Cosmos.Core.Tests/FieldOrderTests.cs b/Tests/Cosmos.Core.Tests/FieldOrderTests.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Core.Tests/FieldOrderTests.cs
rename to Tests/Cosmos.Core.Tests/FieldOrderTests.cs
diff --git a/Cosmos/Tests/Cosmos.Kernel.Tests.Fat/Cosmos.Kernel.Tests.Fat.csproj b/Tests/Cosmos.Kernel.Tests.Fat/Cosmos.Kernel.Tests.Fat.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Kernel.Tests.Fat/Cosmos.Kernel.Tests.Fat.csproj
rename to Tests/Cosmos.Kernel.Tests.Fat/Cosmos.Kernel.Tests.Fat.csproj
diff --git a/Cosmos/Tests/Cosmos.Kernel.Tests.Fat/Cosmos.Kernel.Tests.FatBoot.Cosmos b/Tests/Cosmos.Kernel.Tests.Fat/Cosmos.Kernel.Tests.FatBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/Cosmos.Kernel.Tests.Fat/Cosmos.Kernel.Tests.FatBoot.Cosmos
rename to Tests/Cosmos.Kernel.Tests.Fat/Cosmos.Kernel.Tests.FatBoot.Cosmos
diff --git a/Cosmos/Tests/Cosmos.Kernel.Tests.Fat/Kernel.cs b/Tests/Cosmos.Kernel.Tests.Fat/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Kernel.Tests.Fat/Kernel.cs
rename to Tests/Cosmos.Kernel.Tests.Fat/Kernel.cs
diff --git a/Cosmos/Tests/Cosmos.Kernel.Tests.IO/Cosmos.Kernel.Tests.IO.csproj b/Tests/Cosmos.Kernel.Tests.IO/Cosmos.Kernel.Tests.IO.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.Kernel.Tests.IO/Cosmos.Kernel.Tests.IO.csproj
rename to Tests/Cosmos.Kernel.Tests.IO/Cosmos.Kernel.Tests.IO.csproj
diff --git a/Cosmos/Tests/Cosmos.Kernel.Tests.IO/Cosmos.Kernel.Tests.IOBoot.Cosmos b/Tests/Cosmos.Kernel.Tests.IO/Cosmos.Kernel.Tests.IOBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/Cosmos.Kernel.Tests.IO/Cosmos.Kernel.Tests.IOBoot.Cosmos
rename to Tests/Cosmos.Kernel.Tests.IO/Cosmos.Kernel.Tests.IOBoot.Cosmos
diff --git a/Cosmos/Tests/Cosmos.Kernel.Tests.IO/Kernel.cs b/Tests/Cosmos.Kernel.Tests.IO/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.Kernel.Tests.IO/Kernel.cs
rename to Tests/Cosmos.Kernel.Tests.IO/Kernel.cs
diff --git a/Cosmos/Tests/Cosmos.System.Tests/ARPRequestTests.EnsureEncodedCorrectly.approved.txt b/Tests/Cosmos.System.Tests/ARPRequestTests.EnsureEncodedCorrectly.approved.txt
similarity index 100%
rename from Cosmos/Tests/Cosmos.System.Tests/ARPRequestTests.EnsureEncodedCorrectly.approved.txt
rename to Tests/Cosmos.System.Tests/ARPRequestTests.EnsureEncodedCorrectly.approved.txt
diff --git a/Cosmos/Tests/Cosmos.System.Tests/ARPRequestTests.cs b/Tests/Cosmos.System.Tests/ARPRequestTests.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.System.Tests/ARPRequestTests.cs
rename to Tests/Cosmos.System.Tests/ARPRequestTests.cs
diff --git a/Cosmos/Tests/Cosmos.System.Tests/Cosmos.System.Tests.csproj b/Tests/Cosmos.System.Tests/Cosmos.System.Tests.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.System.Tests/Cosmos.System.Tests.csproj
rename to Tests/Cosmos.System.Tests/Cosmos.System.Tests.csproj
diff --git a/Cosmos/Tests/Cosmos.System.Tests/Utilities.cs b/Tests/Cosmos.System.Tests/Utilities.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.System.Tests/Utilities.cs
rename to Tests/Cosmos.System.Tests/Utilities.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/Cosmos.TestRunner.Core.csproj b/Tests/Cosmos.TestRunner.Core/Cosmos.TestRunner.Core.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/Cosmos.TestRunner.Core.csproj
rename to Tests/Cosmos.TestRunner.Core/Cosmos.TestRunner.Core.csproj
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/DefaultEngineConfiguration.cs b/Tests/Cosmos.TestRunner.Core/DefaultEngineConfiguration.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/DefaultEngineConfiguration.cs
rename to Tests/Cosmos.TestRunner.Core/DefaultEngineConfiguration.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/Engine.Bochs.cs b/Tests/Cosmos.TestRunner.Core/Engine.Bochs.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/Engine.Bochs.cs
rename to Tests/Cosmos.TestRunner.Core/Engine.Bochs.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/Engine.Helpers.cs b/Tests/Cosmos.TestRunner.Core/Engine.Helpers.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/Engine.Helpers.cs
rename to Tests/Cosmos.TestRunner.Core/Engine.Helpers.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/Engine.HyperV.cs b/Tests/Cosmos.TestRunner.Core/Engine.HyperV.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/Engine.HyperV.cs
rename to Tests/Cosmos.TestRunner.Core/Engine.HyperV.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/Engine.Run.cs b/Tests/Cosmos.TestRunner.Core/Engine.Run.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/Engine.Run.cs
rename to Tests/Cosmos.TestRunner.Core/Engine.Run.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/Engine.Running.cs b/Tests/Cosmos.TestRunner.Core/Engine.Running.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/Engine.Running.cs
rename to Tests/Cosmos.TestRunner.Core/Engine.Running.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/Engine.VMware.cs b/Tests/Cosmos.TestRunner.Core/Engine.VMware.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/Engine.VMware.cs
rename to Tests/Cosmos.TestRunner.Core/Engine.VMware.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/Engine.cs b/Tests/Cosmos.TestRunner.Core/Engine.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/Engine.cs
rename to Tests/Cosmos.TestRunner.Core/Engine.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/Enums.cs b/Tests/Cosmos.TestRunner.Core/Enums.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/Enums.cs
rename to Tests/Cosmos.TestRunner.Core/Enums.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/MultiplexingOutputHandler.cs b/Tests/Cosmos.TestRunner.Core/MultiplexingOutputHandler.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/MultiplexingOutputHandler.cs
rename to Tests/Cosmos.TestRunner.Core/MultiplexingOutputHandler.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerBase.cs b/Tests/Cosmos.TestRunner.Core/OutputHandlerBase.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerBase.cs
rename to Tests/Cosmos.TestRunner.Core/OutputHandlerBase.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerBasic.cs b/Tests/Cosmos.TestRunner.Core/OutputHandlerBasic.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerBasic.cs
rename to Tests/Cosmos.TestRunner.Core/OutputHandlerBasic.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerConsole.cs b/Tests/Cosmos.TestRunner.Core/OutputHandlerConsole.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerConsole.cs
rename to Tests/Cosmos.TestRunner.Core/OutputHandlerConsole.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerFullConsole.cs b/Tests/Cosmos.TestRunner.Core/OutputHandlerFullConsole.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerFullConsole.cs
rename to Tests/Cosmos.TestRunner.Core/OutputHandlerFullConsole.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerFullTextBase.cs b/Tests/Cosmos.TestRunner.Core/OutputHandlerFullTextBase.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerFullTextBase.cs
rename to Tests/Cosmos.TestRunner.Core/OutputHandlerFullTextBase.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerTextBase.cs b/Tests/Cosmos.TestRunner.Core/OutputHandlerTextBase.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerTextBase.cs
rename to Tests/Cosmos.TestRunner.Core/OutputHandlerTextBase.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerXml.Helpers.cs b/Tests/Cosmos.TestRunner.Core/OutputHandlerXml.Helpers.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerXml.Helpers.cs
rename to Tests/Cosmos.TestRunner.Core/OutputHandlerXml.Helpers.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerXml.cs b/Tests/Cosmos.TestRunner.Core/OutputHandlerXml.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/OutputHandlerXml.cs
rename to Tests/Cosmos.TestRunner.Core/OutputHandlerXml.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/RunConfiguration.cs b/Tests/Cosmos.TestRunner.Core/RunConfiguration.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/RunConfiguration.cs
rename to Tests/Cosmos.TestRunner.Core/RunConfiguration.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/TaskFailedException.cs b/Tests/Cosmos.TestRunner.Core/TaskFailedException.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/TaskFailedException.cs
rename to Tests/Cosmos.TestRunner.Core/TaskFailedException.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.Core/TestKernelSets.cs b/Tests/Cosmos.TestRunner.Core/TestKernelSets.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.Core/TestKernelSets.cs
rename to Tests/Cosmos.TestRunner.Core/TestKernelSets.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.TestController/Assert.cs b/Tests/Cosmos.TestRunner.TestController/Assert.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.TestController/Assert.cs
rename to Tests/Cosmos.TestRunner.TestController/Assert.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.TestController/Cosmos.TestRunner.TestController.csproj b/Tests/Cosmos.TestRunner.TestController/Cosmos.TestRunner.TestController.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.TestController/Cosmos.TestRunner.TestController.csproj
rename to Tests/Cosmos.TestRunner.TestController/Cosmos.TestRunner.TestController.csproj
diff --git a/Cosmos/Tests/Cosmos.TestRunner.TestController/Enums.cs b/Tests/Cosmos.TestRunner.TestController/Enums.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.TestController/Enums.cs
rename to Tests/Cosmos.TestRunner.TestController/Enums.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.TestController/TestController.cs b/Tests/Cosmos.TestRunner.TestController/TestController.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.TestController/TestController.cs
rename to Tests/Cosmos.TestRunner.TestController/TestController.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UI/App.config b/Tests/Cosmos.TestRunner.UI/App.config
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UI/App.config
rename to Tests/Cosmos.TestRunner.UI/App.config
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UI/App.xaml b/Tests/Cosmos.TestRunner.UI/App.xaml
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UI/App.xaml
rename to Tests/Cosmos.TestRunner.UI/App.xaml
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UI/App.xaml.cs b/Tests/Cosmos.TestRunner.UI/App.xaml.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UI/App.xaml.cs
rename to Tests/Cosmos.TestRunner.UI/App.xaml.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UI/Cosmos.TestRunner.UI.csproj b/Tests/Cosmos.TestRunner.UI/Cosmos.TestRunner.UI.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UI/Cosmos.TestRunner.UI.csproj
rename to Tests/Cosmos.TestRunner.UI/Cosmos.TestRunner.UI.csproj
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UI/ListViewLogMessage.cs b/Tests/Cosmos.TestRunner.UI/ListViewLogMessage.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UI/ListViewLogMessage.cs
rename to Tests/Cosmos.TestRunner.UI/ListViewLogMessage.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UI/MainWindow.xaml b/Tests/Cosmos.TestRunner.UI/MainWindow.xaml
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UI/MainWindow.xaml
rename to Tests/Cosmos.TestRunner.UI/MainWindow.xaml
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UI/MainWindow.xaml.cs b/Tests/Cosmos.TestRunner.UI/MainWindow.xaml.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UI/MainWindow.xaml.cs
rename to Tests/Cosmos.TestRunner.UI/MainWindow.xaml.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UI/MainWindowHandler.OutputHandler.cs b/Tests/Cosmos.TestRunner.UI/MainWindowHandler.OutputHandler.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UI/MainWindowHandler.OutputHandler.cs
rename to Tests/Cosmos.TestRunner.UI/MainWindowHandler.OutputHandler.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UI/MainWindowHandler.TestEngine.cs b/Tests/Cosmos.TestRunner.UI/MainWindowHandler.TestEngine.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UI/MainWindowHandler.TestEngine.cs
rename to Tests/Cosmos.TestRunner.UI/MainWindowHandler.TestEngine.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UI/Properties/AssemblyInfo.cs b/Tests/Cosmos.TestRunner.UI/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UI/Properties/AssemblyInfo.cs
rename to Tests/Cosmos.TestRunner.UI/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UI/packages.config b/Tests/Cosmos.TestRunner.UI/packages.config
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UI/packages.config
rename to Tests/Cosmos.TestRunner.UI/packages.config
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UnitTest/Cosmos.TestRunner.UnitTest.csproj b/Tests/Cosmos.TestRunner.UnitTest/Cosmos.TestRunner.UnitTest.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UnitTest/Cosmos.TestRunner.UnitTest.csproj
rename to Tests/Cosmos.TestRunner.UnitTest/Cosmos.TestRunner.UnitTest.csproj
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UnitTest/MyEngine.cs b/Tests/Cosmos.TestRunner.UnitTest/MyEngine.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UnitTest/MyEngine.cs
rename to Tests/Cosmos.TestRunner.UnitTest/MyEngine.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner.UnitTest/MySource.cs b/Tests/Cosmos.TestRunner.UnitTest/MySource.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner.UnitTest/MySource.cs
rename to Tests/Cosmos.TestRunner.UnitTest/MySource.cs
diff --git a/Cosmos/Tests/Cosmos.TestRunner/Cosmos.TestRunner.csproj b/Tests/Cosmos.TestRunner/Cosmos.TestRunner.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner/Cosmos.TestRunner.csproj
rename to Tests/Cosmos.TestRunner/Cosmos.TestRunner.csproj
diff --git a/Cosmos/Tests/Cosmos.TestRunner/Program.cs b/Tests/Cosmos.TestRunner/Program.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.TestRunner/Program.cs
rename to Tests/Cosmos.TestRunner/Program.cs
diff --git a/Cosmos/Tests/Cosmos.VS.Windows.Test/App.xaml b/Tests/Cosmos.VS.Windows.Test/App.xaml
similarity index 100%
rename from Cosmos/Tests/Cosmos.VS.Windows.Test/App.xaml
rename to Tests/Cosmos.VS.Windows.Test/App.xaml
diff --git a/Cosmos/Tests/Cosmos.VS.Windows.Test/App.xaml.cs b/Tests/Cosmos.VS.Windows.Test/App.xaml.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.VS.Windows.Test/App.xaml.cs
rename to Tests/Cosmos.VS.Windows.Test/App.xaml.cs
diff --git a/Cosmos/Tests/Cosmos.VS.Windows.Test/Cosmos.VS.Windows.Test.csproj b/Tests/Cosmos.VS.Windows.Test/Cosmos.VS.Windows.Test.csproj
similarity index 100%
rename from Cosmos/Tests/Cosmos.VS.Windows.Test/Cosmos.VS.Windows.Test.csproj
rename to Tests/Cosmos.VS.Windows.Test/Cosmos.VS.Windows.Test.csproj
diff --git a/Cosmos/Tests/Cosmos.VS.Windows.Test/MainWindow.xaml b/Tests/Cosmos.VS.Windows.Test/MainWindow.xaml
similarity index 100%
rename from Cosmos/Tests/Cosmos.VS.Windows.Test/MainWindow.xaml
rename to Tests/Cosmos.VS.Windows.Test/MainWindow.xaml
diff --git a/Cosmos/Tests/Cosmos.VS.Windows.Test/MainWindow.xaml.cs b/Tests/Cosmos.VS.Windows.Test/MainWindow.xaml.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.VS.Windows.Test/MainWindow.xaml.cs
rename to Tests/Cosmos.VS.Windows.Test/MainWindow.xaml.cs
diff --git a/Cosmos/Tests/Cosmos.VS.Windows.Test/Properties/AssemblyInfo.cs b/Tests/Cosmos.VS.Windows.Test/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.VS.Windows.Test/Properties/AssemblyInfo.cs
rename to Tests/Cosmos.VS.Windows.Test/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Tests/Cosmos.VS.Windows.Test/Properties/Resources.Designer.cs b/Tests/Cosmos.VS.Windows.Test/Properties/Resources.Designer.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.VS.Windows.Test/Properties/Resources.Designer.cs
rename to Tests/Cosmos.VS.Windows.Test/Properties/Resources.Designer.cs
diff --git a/Cosmos/Tests/Cosmos.VS.Windows.Test/Properties/Resources.resx b/Tests/Cosmos.VS.Windows.Test/Properties/Resources.resx
similarity index 100%
rename from Cosmos/Tests/Cosmos.VS.Windows.Test/Properties/Resources.resx
rename to Tests/Cosmos.VS.Windows.Test/Properties/Resources.resx
diff --git a/Cosmos/Tests/Cosmos.VS.Windows.Test/Properties/Settings.Designer.cs b/Tests/Cosmos.VS.Windows.Test/Properties/Settings.Designer.cs
similarity index 100%
rename from Cosmos/Tests/Cosmos.VS.Windows.Test/Properties/Settings.Designer.cs
rename to Tests/Cosmos.VS.Windows.Test/Properties/Settings.Designer.cs
diff --git a/Cosmos/Tests/Cosmos.VS.Windows.Test/app.config b/Tests/Cosmos.VS.Windows.Test/app.config
similarity index 100%
rename from Cosmos/Tests/Cosmos.VS.Windows.Test/app.config
rename to Tests/Cosmos.VS.Windows.Test/app.config
diff --git a/Cosmos/Tests/GraphicTest/GraphicTest.csproj b/Tests/GraphicTest/GraphicTest.csproj
similarity index 100%
rename from Cosmos/Tests/GraphicTest/GraphicTest.csproj
rename to Tests/GraphicTest/GraphicTest.csproj
diff --git a/Cosmos/Tests/GraphicTest/GraphicTestBoot.Cosmos b/Tests/GraphicTest/GraphicTestBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/GraphicTest/GraphicTestBoot.Cosmos
rename to Tests/GraphicTest/GraphicTestBoot.Cosmos
diff --git a/Cosmos/Tests/GraphicTest/Kernel.cs b/Tests/GraphicTest/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/GraphicTest/Kernel.cs
rename to Tests/GraphicTest/Kernel.cs
diff --git a/Cosmos/Tests/SimpleStructsAndArraysTest/ConstrainedTest.cs b/Tests/SimpleStructsAndArraysTest/ConstrainedTest.cs
similarity index 100%
rename from Cosmos/Tests/SimpleStructsAndArraysTest/ConstrainedTest.cs
rename to Tests/SimpleStructsAndArraysTest/ConstrainedTest.cs
diff --git a/Cosmos/Tests/SimpleStructsAndArraysTest/Kernel.cs b/Tests/SimpleStructsAndArraysTest/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/SimpleStructsAndArraysTest/Kernel.cs
rename to Tests/SimpleStructsAndArraysTest/Kernel.cs
diff --git a/Cosmos/Tests/SimpleStructsAndArraysTest/SimpleStructsAndArraysTest.csproj b/Tests/SimpleStructsAndArraysTest/SimpleStructsAndArraysTest.csproj
similarity index 100%
rename from Cosmos/Tests/SimpleStructsAndArraysTest/SimpleStructsAndArraysTest.csproj
rename to Tests/SimpleStructsAndArraysTest/SimpleStructsAndArraysTest.csproj
diff --git a/Cosmos/Tests/SimpleStructsAndArraysTest/SimpleStructsAndArraysTestBoot.Cosmos b/Tests/SimpleStructsAndArraysTest/SimpleStructsAndArraysTestBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/SimpleStructsAndArraysTest/SimpleStructsAndArraysTestBoot.Cosmos
rename to Tests/SimpleStructsAndArraysTest/SimpleStructsAndArraysTestBoot.Cosmos
diff --git a/Cosmos/Tests/VGACompilerCrash/Kernel.cs b/Tests/VGACompilerCrash/Kernel.cs
similarity index 100%
rename from Cosmos/Tests/VGACompilerCrash/Kernel.cs
rename to Tests/VGACompilerCrash/Kernel.cs
diff --git a/Cosmos/Tests/VGACompilerCrash/VGACompilerCrash.csproj b/Tests/VGACompilerCrash/VGACompilerCrash.csproj
similarity index 100%
rename from Cosmos/Tests/VGACompilerCrash/VGACompilerCrash.csproj
rename to Tests/VGACompilerCrash/VGACompilerCrash.csproj
diff --git a/Cosmos/Tests/VGACompilerCrash/VGACompilerCrashBoot.Cosmos b/Tests/VGACompilerCrash/VGACompilerCrashBoot.Cosmos
similarity index 100%
rename from Cosmos/Tests/VGACompilerCrash/VGACompilerCrashBoot.Cosmos
rename to Tests/VGACompilerCrash/VGACompilerCrashBoot.Cosmos
diff --git a/Cosmos/Tools/Cosmos.IL2CPU.Profiler/Assembler.cs b/Tools/Cosmos.IL2CPU.Profiler/Assembler.cs
similarity index 100%
rename from Cosmos/Tools/Cosmos.IL2CPU.Profiler/Assembler.cs
rename to Tools/Cosmos.IL2CPU.Profiler/Assembler.cs
diff --git a/Cosmos/Tools/Cosmos.IL2CPU.Profiler/Cosmos.IL2CPU.Profiler.csproj b/Tools/Cosmos.IL2CPU.Profiler/Cosmos.IL2CPU.Profiler.csproj
similarity index 100%
rename from Cosmos/Tools/Cosmos.IL2CPU.Profiler/Cosmos.IL2CPU.Profiler.csproj
rename to Tools/Cosmos.IL2CPU.Profiler/Cosmos.IL2CPU.Profiler.csproj
diff --git a/Cosmos/Tools/Cosmos.IL2CPU.Profiler/FakeKernel.cs b/Tools/Cosmos.IL2CPU.Profiler/FakeKernel.cs
similarity index 100%
rename from Cosmos/Tools/Cosmos.IL2CPU.Profiler/FakeKernel.cs
rename to Tools/Cosmos.IL2CPU.Profiler/FakeKernel.cs
diff --git a/Cosmos/Tools/Cosmos.IL2CPU.Profiler/ILOp.cs b/Tools/Cosmos.IL2CPU.Profiler/ILOp.cs
similarity index 100%
rename from Cosmos/Tools/Cosmos.IL2CPU.Profiler/ILOp.cs
rename to Tools/Cosmos.IL2CPU.Profiler/ILOp.cs
diff --git a/Cosmos/Tools/Cosmos.IL2CPU.Profiler/Program.cs b/Tools/Cosmos.IL2CPU.Profiler/Program.cs
similarity index 100%
rename from Cosmos/Tools/Cosmos.IL2CPU.Profiler/Program.cs
rename to Tools/Cosmos.IL2CPU.Profiler/Program.cs
diff --git a/Cosmos/Tools/ElfMap2DebugDb/ElfMap2DebugDb.csproj b/Tools/ElfMap2DebugDb/ElfMap2DebugDb.csproj
similarity index 100%
rename from Cosmos/Tools/ElfMap2DebugDb/ElfMap2DebugDb.csproj
rename to Tools/ElfMap2DebugDb/ElfMap2DebugDb.csproj
diff --git a/Cosmos/Tools/ElfMap2DebugDb/Program.cs b/Tools/ElfMap2DebugDb/Program.cs
similarity index 100%
rename from Cosmos/Tools/ElfMap2DebugDb/Program.cs
rename to Tools/ElfMap2DebugDb/Program.cs
diff --git a/Cosmos/Tools/File2ByteArray Converter/File2ByteArray Converter.csproj b/Tools/File2ByteArray Converter/File2ByteArray Converter.csproj
similarity index 100%
rename from Cosmos/Tools/File2ByteArray Converter/File2ByteArray Converter.csproj
rename to Tools/File2ByteArray Converter/File2ByteArray Converter.csproj
diff --git a/Cosmos/Tools/File2ByteArray Converter/Form1.Designer.cs b/Tools/File2ByteArray Converter/Form1.Designer.cs
similarity index 100%
rename from Cosmos/Tools/File2ByteArray Converter/Form1.Designer.cs
rename to Tools/File2ByteArray Converter/Form1.Designer.cs
diff --git a/Cosmos/Tools/File2ByteArray Converter/Form1.cs b/Tools/File2ByteArray Converter/Form1.cs
similarity index 100%
rename from Cosmos/Tools/File2ByteArray Converter/Form1.cs
rename to Tools/File2ByteArray Converter/Form1.cs
diff --git a/Cosmos/Tools/File2ByteArray Converter/Form1.resx b/Tools/File2ByteArray Converter/Form1.resx
similarity index 100%
rename from Cosmos/Tools/File2ByteArray Converter/Form1.resx
rename to Tools/File2ByteArray Converter/Form1.resx
diff --git a/Cosmos/Tools/File2ByteArray Converter/Program.cs b/Tools/File2ByteArray Converter/Program.cs
similarity index 100%
rename from Cosmos/Tools/File2ByteArray Converter/Program.cs
rename to Tools/File2ByteArray Converter/Program.cs
diff --git a/Cosmos/Tools/File2ByteArray Converter/Properties/AssemblyInfo.cs b/Tools/File2ByteArray Converter/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Tools/File2ByteArray Converter/Properties/AssemblyInfo.cs
rename to Tools/File2ByteArray Converter/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Tests/XSharp.Test/app.config b/Tools/File2ByteArray Converter/app.config
similarity index 100%
rename from Cosmos/Tests/XSharp.Test/app.config
rename to Tools/File2ByteArray Converter/app.config
diff --git a/Cosmos/Tools/ILSpyPlugAddIn/BaseContextMenuEntry.cs b/Tools/ILSpyPlugAddIn/BaseContextMenuEntry.cs
similarity index 100%
rename from Cosmos/Tools/ILSpyPlugAddIn/BaseContextMenuEntry.cs
rename to Tools/ILSpyPlugAddIn/BaseContextMenuEntry.cs
diff --git a/Cosmos/Tools/ILSpyPlugAddIn/GenerateFieldAccessParameterEntry.cs b/Tools/ILSpyPlugAddIn/GenerateFieldAccessParameterEntry.cs
similarity index 100%
rename from Cosmos/Tools/ILSpyPlugAddIn/GenerateFieldAccessParameterEntry.cs
rename to Tools/ILSpyPlugAddIn/GenerateFieldAccessParameterEntry.cs
diff --git a/Cosmos/Tools/ILSpyPlugAddIn/GenerateMethodPlugEntry.cs b/Tools/ILSpyPlugAddIn/GenerateMethodPlugEntry.cs
similarity index 100%
rename from Cosmos/Tools/ILSpyPlugAddIn/GenerateMethodPlugEntry.cs
rename to Tools/ILSpyPlugAddIn/GenerateMethodPlugEntry.cs
diff --git a/Cosmos/Tools/ILSpyPlugAddIn/GeneratePropertyAccessorsPlugEntry.cs b/Tools/ILSpyPlugAddIn/GeneratePropertyAccessorsPlugEntry.cs
similarity index 100%
rename from Cosmos/Tools/ILSpyPlugAddIn/GeneratePropertyAccessorsPlugEntry.cs
rename to Tools/ILSpyPlugAddIn/GeneratePropertyAccessorsPlugEntry.cs
diff --git a/Cosmos/Tools/ILSpyPlugAddIn/GenerateTypePlugEntry.cs b/Tools/ILSpyPlugAddIn/GenerateTypePlugEntry.cs
similarity index 100%
rename from Cosmos/Tools/ILSpyPlugAddIn/GenerateTypePlugEntry.cs
rename to Tools/ILSpyPlugAddIn/GenerateTypePlugEntry.cs
diff --git a/Cosmos/Tools/ILSpyPlugAddIn/ILSpyPlugAddIn.csproj b/Tools/ILSpyPlugAddIn/ILSpyPlugAddIn.csproj
similarity index 100%
rename from Cosmos/Tools/ILSpyPlugAddIn/ILSpyPlugAddIn.csproj
rename to Tools/ILSpyPlugAddIn/ILSpyPlugAddIn.csproj
diff --git a/Cosmos/Tools/ILSpyPlugAddIn/Properties/AssemblyInfo.cs b/Tools/ILSpyPlugAddIn/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Tools/ILSpyPlugAddIn/Properties/AssemblyInfo.cs
rename to Tools/ILSpyPlugAddIn/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Tools/ILSpyPlugAddIn/Utilities.cs b/Tools/ILSpyPlugAddIn/Utilities.cs
similarity index 100%
rename from Cosmos/Tools/ILSpyPlugAddIn/Utilities.cs
rename to Tools/ILSpyPlugAddIn/Utilities.cs
diff --git a/Cosmos/Tools/NASM/NASM.csproj b/Tools/NASM/NASM.csproj
similarity index 100%
rename from Cosmos/Tools/NASM/NASM.csproj
rename to Tools/NASM/NASM.csproj
diff --git a/Cosmos/Tools/NASM/Program.cs b/Tools/NASM/Program.cs
similarity index 100%
rename from Cosmos/Tools/NASM/Program.cs
rename to Tools/NASM/Program.cs
diff --git a/Cosmos/Tools/PlugsInspector/App.config b/Tools/PlugsInspector/App.config
similarity index 100%
rename from Cosmos/Tools/PlugsInspector/App.config
rename to Tools/PlugsInspector/App.config
diff --git a/Cosmos/Tools/PlugsInspector/AssembliesPreloader.cs b/Tools/PlugsInspector/AssembliesPreloader.cs
similarity index 100%
rename from Cosmos/Tools/PlugsInspector/AssembliesPreloader.cs
rename to Tools/PlugsInspector/AssembliesPreloader.cs
diff --git a/Cosmos/Tools/PlugsInspector/Form1.Designer.cs b/Tools/PlugsInspector/Form1.Designer.cs
similarity index 100%
rename from Cosmos/Tools/PlugsInspector/Form1.Designer.cs
rename to Tools/PlugsInspector/Form1.Designer.cs
diff --git a/Cosmos/Tools/PlugsInspector/Form1.cs b/Tools/PlugsInspector/Form1.cs
similarity index 100%
rename from Cosmos/Tools/PlugsInspector/Form1.cs
rename to Tools/PlugsInspector/Form1.cs
diff --git a/Cosmos/Tools/PlugsInspector/Form1.resx b/Tools/PlugsInspector/Form1.resx
similarity index 100%
rename from Cosmos/Tools/PlugsInspector/Form1.resx
rename to Tools/PlugsInspector/Form1.resx
diff --git a/Cosmos/Tools/PlugsInspector/PlugsInspector.csproj b/Tools/PlugsInspector/PlugsInspector.csproj
similarity index 100%
rename from Cosmos/Tools/PlugsInspector/PlugsInspector.csproj
rename to Tools/PlugsInspector/PlugsInspector.csproj
diff --git a/Cosmos/Tools/PlugsInspector/Program.cs b/Tools/PlugsInspector/Program.cs
similarity index 100%
rename from Cosmos/Tools/PlugsInspector/Program.cs
rename to Tools/PlugsInspector/Program.cs
diff --git a/Cosmos/Tools/TTF2OPFF Converter/BWGreayscale.patch b/Tools/TTF2OPFF Converter/BWGreayscale.patch
similarity index 100%
rename from Cosmos/Tools/TTF2OPFF Converter/BWGreayscale.patch
rename to Tools/TTF2OPFF Converter/BWGreayscale.patch
diff --git a/Cosmos/Tools/TTF2OPFF Converter/Form1.Designer.cs b/Tools/TTF2OPFF Converter/Form1.Designer.cs
similarity index 100%
rename from Cosmos/Tools/TTF2OPFF Converter/Form1.Designer.cs
rename to Tools/TTF2OPFF Converter/Form1.Designer.cs
diff --git a/Cosmos/Tools/TTF2OPFF Converter/Form1.cs b/Tools/TTF2OPFF Converter/Form1.cs
similarity index 100%
rename from Cosmos/Tools/TTF2OPFF Converter/Form1.cs
rename to Tools/TTF2OPFF Converter/Form1.cs
diff --git a/Cosmos/Tools/TTF2OPFF Converter/Form1.resx b/Tools/TTF2OPFF Converter/Form1.resx
similarity index 100%
rename from Cosmos/Tools/TTF2OPFF Converter/Form1.resx
rename to Tools/TTF2OPFF Converter/Form1.resx
diff --git a/Cosmos/Tools/TTF2OPFF Converter/LZMACoder.cs b/Tools/TTF2OPFF Converter/LZMACoder.cs
similarity index 100%
rename from Cosmos/Tools/TTF2OPFF Converter/LZMACoder.cs
rename to Tools/TTF2OPFF Converter/LZMACoder.cs
diff --git a/Cosmos/Tools/TTF2OPFF Converter/Program.cs b/Tools/TTF2OPFF Converter/Program.cs
similarity index 100%
rename from Cosmos/Tools/TTF2OPFF Converter/Program.cs
rename to Tools/TTF2OPFF Converter/Program.cs
diff --git a/Cosmos/Tools/TTF2OPFF Converter/Properties/AssemblyInfo.cs b/Tools/TTF2OPFF Converter/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Tools/TTF2OPFF Converter/Properties/AssemblyInfo.cs
rename to Tools/TTF2OPFF Converter/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Tools/TTF2OPFF Converter/TTF2OPFF Converter.csproj b/Tools/TTF2OPFF Converter/TTF2OPFF Converter.csproj
similarity index 100%
rename from Cosmos/Tools/TTF2OPFF Converter/TTF2OPFF Converter.csproj
rename to Tools/TTF2OPFF Converter/TTF2OPFF Converter.csproj
diff --git a/Cosmos/Users/BlueSkeye/GuessForBochs/GuessForBochs.Cosmos b/Users/BlueSkeye/GuessForBochs/GuessForBochs.Cosmos
similarity index 100%
rename from Cosmos/Users/BlueSkeye/GuessForBochs/GuessForBochs.Cosmos
rename to Users/BlueSkeye/GuessForBochs/GuessForBochs.Cosmos
diff --git a/Cosmos/Users/BlueSkeye/XSharpTestCases/DoTests.cmd b/Users/BlueSkeye/XSharpTestCases/DoTests.cmd
similarity index 100%
rename from Cosmos/Users/BlueSkeye/XSharpTestCases/DoTests.cmd
rename to Users/BlueSkeye/XSharpTestCases/DoTests.cmd
diff --git a/Cosmos/Users/BlueSkeye/XSharpTestCases/Issue15662-SingleSlashLine.xs b/Users/BlueSkeye/XSharpTestCases/Issue15662-SingleSlashLine.xs
similarity index 100%
rename from Cosmos/Users/BlueSkeye/XSharpTestCases/Issue15662-SingleSlashLine.xs
rename to Users/BlueSkeye/XSharpTestCases/Issue15662-SingleSlashLine.xs
diff --git a/Cosmos/Users/BlueSkeye/XSharpTestCases/Issue15663-UnproperlyFormattedComment.xs b/Users/BlueSkeye/XSharpTestCases/Issue15663-UnproperlyFormattedComment.xs
similarity index 100%
rename from Cosmos/Users/BlueSkeye/XSharpTestCases/Issue15663-UnproperlyFormattedComment.xs
rename to Users/BlueSkeye/XSharpTestCases/Issue15663-UnproperlyFormattedComment.xs
diff --git a/Cosmos/Users/BlueSkeye/XSharpTestCases/Issue15665-UnbalancedClosingCurlyBracesImproperlyHandled.xs b/Users/BlueSkeye/XSharpTestCases/Issue15665-UnbalancedClosingCurlyBracesImproperlyHandled.xs
similarity index 100%
rename from Cosmos/Users/BlueSkeye/XSharpTestCases/Issue15665-UnbalancedClosingCurlyBracesImproperlyHandled.xs
rename to Users/BlueSkeye/XSharpTestCases/Issue15665-UnbalancedClosingCurlyBracesImproperlyHandled.xs
diff --git a/Cosmos/Users/BlueSkeye/XSharpTestCases/Issue15666-LastFunctionNotCheckedForCompletion.xs b/Users/BlueSkeye/XSharpTestCases/Issue15666-LastFunctionNotCheckedForCompletion.xs
similarity index 100%
rename from Cosmos/Users/BlueSkeye/XSharpTestCases/Issue15666-LastFunctionNotCheckedForCompletion.xs
rename to Users/BlueSkeye/XSharpTestCases/Issue15666-LastFunctionNotCheckedForCompletion.xs
diff --git a/Cosmos/Users/Clearosdev/StandAloneDebug/StandAloneDebug.sln b/Users/Clearosdev/StandAloneDebug/StandAloneDebug.sln
similarity index 100%
rename from Cosmos/Users/Clearosdev/StandAloneDebug/StandAloneDebug.sln
rename to Users/Clearosdev/StandAloneDebug/StandAloneDebug.sln
diff --git a/Cosmos/Users/Clearosdev/StandAloneDebug/StandAloneDebug/Debugger.cs b/Users/Clearosdev/StandAloneDebug/StandAloneDebug/Debugger.cs
similarity index 100%
rename from Cosmos/Users/Clearosdev/StandAloneDebug/StandAloneDebug/Debugger.cs
rename to Users/Clearosdev/StandAloneDebug/StandAloneDebug/Debugger.cs
diff --git a/Cosmos/Users/Clearosdev/StandAloneDebug/StandAloneDebug/Program.cs b/Users/Clearosdev/StandAloneDebug/StandAloneDebug/Program.cs
similarity index 100%
rename from Cosmos/Users/Clearosdev/StandAloneDebug/StandAloneDebug/Program.cs
rename to Users/Clearosdev/StandAloneDebug/StandAloneDebug/Program.cs
diff --git a/Cosmos/Users/Clearosdev/StandAloneDebug/StandAloneDebug/Properties/AssemblyInfo.cs b/Users/Clearosdev/StandAloneDebug/StandAloneDebug/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Clearosdev/StandAloneDebug/StandAloneDebug/Properties/AssemblyInfo.cs
rename to Users/Clearosdev/StandAloneDebug/StandAloneDebug/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Clearosdev/StandAloneDebug/StandAloneDebug/StandAloneDebug.csproj b/Users/Clearosdev/StandAloneDebug/StandAloneDebug/StandAloneDebug.csproj
similarity index 100%
rename from Cosmos/Users/Clearosdev/StandAloneDebug/StandAloneDebug/StandAloneDebug.csproj
rename to Users/Clearosdev/StandAloneDebug/StandAloneDebug/StandAloneDebug.csproj
diff --git a/Cosmos/Users/EdNutting/EdNuttingsTest/AssemblyInfo.cs b/Users/EdNutting/EdNuttingsTest/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/EdNutting/EdNuttingsTest/AssemblyInfo.cs
rename to Users/EdNutting/EdNuttingsTest/AssemblyInfo.cs
diff --git a/Cosmos/Users/EdNutting/EdNuttingsTest/EdNuttingsTestBoot.Cosmos b/Users/EdNutting/EdNuttingsTest/EdNuttingsTestBoot.Cosmos
similarity index 100%
rename from Cosmos/Users/EdNutting/EdNuttingsTest/EdNuttingsTestBoot.Cosmos
rename to Users/EdNutting/EdNuttingsTest/EdNuttingsTestBoot.Cosmos
diff --git a/Cosmos/Users/EdNutting/EdNuttingsTest/Kernel.cs b/Users/EdNutting/EdNuttingsTest/Kernel.cs
similarity index 100%
rename from Cosmos/Users/EdNutting/EdNuttingsTest/Kernel.cs
rename to Users/EdNutting/EdNuttingsTest/Kernel.cs
diff --git a/Cosmos/Users/Emile/Emile.TestApp/App.config b/Users/Emile/Emile.TestApp/App.config
similarity index 100%
rename from Cosmos/Users/Emile/Emile.TestApp/App.config
rename to Users/Emile/Emile.TestApp/App.config
diff --git a/Cosmos/Users/Emile/Emile.TestApp/Emile.TestApp.csproj b/Users/Emile/Emile.TestApp/Emile.TestApp.csproj
similarity index 100%
rename from Cosmos/Users/Emile/Emile.TestApp/Emile.TestApp.csproj
rename to Users/Emile/Emile.TestApp/Emile.TestApp.csproj
diff --git a/Cosmos/Users/Emile/Emile.TestApp/Program.cs b/Users/Emile/Emile.TestApp/Program.cs
similarity index 100%
rename from Cosmos/Users/Emile/Emile.TestApp/Program.cs
rename to Users/Emile/Emile.TestApp/Program.cs
diff --git a/Cosmos/Users/Emile/Emile.TestApp/Properties/AssemblyInfo.cs b/Users/Emile/Emile.TestApp/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Emile/Emile.TestApp/Properties/AssemblyInfo.cs
rename to Users/Emile/Emile.TestApp/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Emile/Emile.TestApp/ReallySimpleAllocator.cs b/Users/Emile/Emile.TestApp/ReallySimpleAllocator.cs
similarity index 100%
rename from Cosmos/Users/Emile/Emile.TestApp/ReallySimpleAllocator.cs
rename to Users/Emile/Emile.TestApp/ReallySimpleAllocator.cs
diff --git a/Cosmos/Users/Emile/TestBed/TestBed.sln b/Users/Emile/TestBed/TestBed.sln
similarity index 100%
rename from Cosmos/Users/Emile/TestBed/TestBed.sln
rename to Users/Emile/TestBed/TestBed.sln
diff --git a/Cosmos/Users/Emile/TestBed/TestBed/AssemblyInfo.cs b/Users/Emile/TestBed/TestBed/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Emile/TestBed/TestBed/AssemblyInfo.cs
rename to Users/Emile/TestBed/TestBed/AssemblyInfo.cs
diff --git a/Cosmos/Users/Emile/TestBed/TestBed/C.cs b/Users/Emile/TestBed/TestBed/C.cs
similarity index 100%
rename from Cosmos/Users/Emile/TestBed/TestBed/C.cs
rename to Users/Emile/TestBed/TestBed/C.cs
diff --git a/Cosmos/Users/Emile/TestBed/TestBed/IA.cs b/Users/Emile/TestBed/TestBed/IA.cs
similarity index 100%
rename from Cosmos/Users/Emile/TestBed/TestBed/IA.cs
rename to Users/Emile/TestBed/TestBed/IA.cs
diff --git a/Cosmos/Users/Emile/TestBed/TestBed/IB.cs b/Users/Emile/TestBed/TestBed/IB.cs
similarity index 100%
rename from Cosmos/Users/Emile/TestBed/TestBed/IB.cs
rename to Users/Emile/TestBed/TestBed/IB.cs
diff --git a/Cosmos/Users/Emile/TestBed/TestBed/Kernel.cs b/Users/Emile/TestBed/TestBed/Kernel.cs
similarity index 100%
rename from Cosmos/Users/Emile/TestBed/TestBed/Kernel.cs
rename to Users/Emile/TestBed/TestBed/Kernel.cs
diff --git a/Cosmos/Users/Emile/TestBed/TestBed/TestBed.csproj b/Users/Emile/TestBed/TestBed/TestBed.csproj
similarity index 100%
rename from Cosmos/Users/Emile/TestBed/TestBed/TestBed.csproj
rename to Users/Emile/TestBed/TestBed/TestBed.csproj
diff --git a/Cosmos/Users/Emile/TestBed/TestBed/TestBedBoot.Cosmos b/Users/Emile/TestBed/TestBed/TestBedBoot.Cosmos
similarity index 100%
rename from Cosmos/Users/Emile/TestBed/TestBed/TestBedBoot.Cosmos
rename to Users/Emile/TestBed/TestBed/TestBedBoot.Cosmos
diff --git a/Cosmos/Users/Geramy/GeramyLovelessTest/AssemblyInfo.cs b/Users/Geramy/GeramyLovelessTest/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Geramy/GeramyLovelessTest/AssemblyInfo.cs
rename to Users/Geramy/GeramyLovelessTest/AssemblyInfo.cs
diff --git a/Cosmos/Users/Geramy/GeramyLovelessTest/GeramyLovelessTest.csproj b/Users/Geramy/GeramyLovelessTest/GeramyLovelessTest.csproj
similarity index 100%
rename from Cosmos/Users/Geramy/GeramyLovelessTest/GeramyLovelessTest.csproj
rename to Users/Geramy/GeramyLovelessTest/GeramyLovelessTest.csproj
diff --git a/Cosmos/Users/Geramy/GeramyLovelessTest/GeramyLovelessTestBoot.Cosmos b/Users/Geramy/GeramyLovelessTest/GeramyLovelessTestBoot.Cosmos
similarity index 100%
rename from Cosmos/Users/Geramy/GeramyLovelessTest/GeramyLovelessTestBoot.Cosmos
rename to Users/Geramy/GeramyLovelessTest/GeramyLovelessTestBoot.Cosmos
diff --git a/Cosmos/Users/Geramy/GeramyLovelessTest/Kernel.cs b/Users/Geramy/GeramyLovelessTest/Kernel.cs
similarity index 100%
rename from Cosmos/Users/Geramy/GeramyLovelessTest/Kernel.cs
rename to Users/Geramy/GeramyLovelessTest/Kernel.cs
diff --git a/Cosmos/Users/Geramy/GeramysPlayground/RamTest/RamTest.sln b/Users/Geramy/GeramysPlayground/RamTest/RamTest.sln
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysPlayground/RamTest/RamTest.sln
rename to Users/Geramy/GeramysPlayground/RamTest/RamTest.sln
diff --git a/Cosmos/Users/Geramy/GeramysPlayground/RamTest/RamTest/Program.cs b/Users/Geramy/GeramysPlayground/RamTest/RamTest/Program.cs
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysPlayground/RamTest/RamTest/Program.cs
rename to Users/Geramy/GeramysPlayground/RamTest/RamTest/Program.cs
diff --git a/Cosmos/Users/Geramy/GeramysPlayground/RamTest/RamTest/Properties/AssemblyInfo.cs b/Users/Geramy/GeramysPlayground/RamTest/RamTest/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysPlayground/RamTest/RamTest/Properties/AssemblyInfo.cs
rename to Users/Geramy/GeramysPlayground/RamTest/RamTest/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Geramy/GeramysPlayground/RamTest/RamTest/RamTest.csproj b/Users/Geramy/GeramysPlayground/RamTest/RamTest/RamTest.csproj
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysPlayground/RamTest/RamTest/RamTest.csproj
rename to Users/Geramy/GeramysPlayground/RamTest/RamTest/RamTest.csproj
diff --git a/Cosmos/Users/Geramy/GeramysPlayground2/AssemblyInfo.cs b/Users/Geramy/GeramysPlayground2/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysPlayground2/AssemblyInfo.cs
rename to Users/Geramy/GeramysPlayground2/AssemblyInfo.cs
diff --git a/Cosmos/Users/Geramy/GeramysPlayground2/GeramysPlayground.csproj b/Users/Geramy/GeramysPlayground2/GeramysPlayground.csproj
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysPlayground2/GeramysPlayground.csproj
rename to Users/Geramy/GeramysPlayground2/GeramysPlayground.csproj
diff --git a/Cosmos/Users/Geramy/GeramysPlayground2/GeramysPlaygroundBoot.Cosmos b/Users/Geramy/GeramysPlayground2/GeramysPlaygroundBoot.Cosmos
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysPlayground2/GeramysPlaygroundBoot.Cosmos
rename to Users/Geramy/GeramysPlayground2/GeramysPlaygroundBoot.Cosmos
diff --git a/Cosmos/Users/Geramy/GeramysPlayground2/Kernel.cs b/Users/Geramy/GeramysPlayground2/Kernel.cs
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysPlayground2/Kernel.cs
rename to Users/Geramy/GeramysPlayground2/Kernel.cs
diff --git a/Cosmos/Users/Geramy/GeramysTest2/AssemblyInfo.cs b/Users/Geramy/GeramysTest2/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysTest2/AssemblyInfo.cs
rename to Users/Geramy/GeramysTest2/AssemblyInfo.cs
diff --git a/Cosmos/Users/Geramy/GeramysTest2/Cosmos.bxrc b/Users/Geramy/GeramysTest2/Cosmos.bxrc
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysTest2/Cosmos.bxrc
rename to Users/Geramy/GeramysTest2/Cosmos.bxrc
diff --git a/Cosmos/Users/Geramy/GeramysTest2/GeramysTest.csproj b/Users/Geramy/GeramysTest2/GeramysTest.csproj
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysTest2/GeramysTest.csproj
rename to Users/Geramy/GeramysTest2/GeramysTest.csproj
diff --git a/Cosmos/Users/Geramy/GeramysTest2/GeramysTestBoot.Cosmos b/Users/Geramy/GeramysTest2/GeramysTestBoot.Cosmos
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysTest2/GeramysTestBoot.Cosmos
rename to Users/Geramy/GeramysTest2/GeramysTestBoot.Cosmos
diff --git a/Cosmos/Users/Geramy/GeramysTest2/Kernel.cs b/Users/Geramy/GeramysTest2/Kernel.cs
similarity index 100%
rename from Cosmos/Users/Geramy/GeramysTest2/Kernel.cs
rename to Users/Geramy/GeramysTest2/Kernel.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Assembler.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Assembler.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Assembler.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Assembler.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/BitSize.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/BitSize.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/BitSize.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/BitSize.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/ConditionalTestEnum.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/ConditionalTestEnum.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/ConditionalTestEnum.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/ConditionalTestEnum.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Cosmos.Assembler.X86.Gero.csproj b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Cosmos.Assembler.X86.Gero.csproj
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Cosmos.Assembler.X86.Gero.csproj
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Cosmos.Assembler.X86.Gero.csproj
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/DstSrcInstructionData.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/DstSrcInstructionData.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/DstSrcInstructionData.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/DstSrcInstructionData.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Extensions.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Extensions.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Extensions.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Extensions.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/ExternalLabel.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/ExternalLabel.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/ExternalLabel.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/ExternalLabel.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/IInstructionData.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/IInstructionData.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/IInstructionData.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/IInstructionData.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Instruction.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Instruction.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Instruction.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Instruction.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionData.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionData.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionData.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionData.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionEnum.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionEnum.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionEnum.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionEnum.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionOutputFormat.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionOutputFormat.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionOutputFormat.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionOutputFormat.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionRequirement.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionRequirement.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionRequirement.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionRequirement.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionSet.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionSet.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionSet.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionSet.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionVariant.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionVariant.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionVariant.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionVariant.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Operand.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Operand.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Operand.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Operand.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/OperandType.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/OperandType.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/OperandType.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/OperandType.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Properties/AssemblyInfo.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Properties/AssemblyInfo.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/RegisterGroup.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/RegisterGroup.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/RegisterGroup.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/RegisterGroup.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Registers.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Registers.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Registers.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/Registers.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/RegistersEnum.cs b/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/RegistersEnum.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/RegistersEnum.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86.Gero/RegistersEnum.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeBinData.cs b/Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeBinData.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeBinData.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeBinData.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeBuilder.cs b/Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeBuilder.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeBuilder.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeBuilder.cs
diff --git a/Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeData.cs b/Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeData.cs
similarity index 100%
rename from Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeData.cs
rename to Users/Gero Landmann/Cosmos.Assembler.X86/OpCodeData.cs
diff --git a/Cosmos/Users/HKSplayground/AssemblyInfo.cs b/Users/HKSplayground/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/HKSplayground/AssemblyInfo.cs
rename to Users/HKSplayground/AssemblyInfo.cs
diff --git a/Cosmos/Users/HKSplayground/HKSplaygroundBoot.Cosmos b/Users/HKSplayground/HKSplaygroundBoot.Cosmos
similarity index 100%
rename from Cosmos/Users/HKSplayground/HKSplaygroundBoot.Cosmos
rename to Users/HKSplayground/HKSplaygroundBoot.Cosmos
diff --git a/Cosmos/Users/HKSplayground/Kernel.cs b/Users/HKSplayground/Kernel.cs
similarity index 100%
rename from Cosmos/Users/HKSplayground/Kernel.cs
rename to Users/HKSplayground/Kernel.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/.editorconfig b/Users/Kudzu/Breakpoints/.editorconfig
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/.editorconfig
rename to Users/Kudzu/Breakpoints/.editorconfig
diff --git a/Cosmos/Users/Kudzu/Breakpoints/BreakpointsOS.cs b/Users/Kudzu/Breakpoints/BreakpointsOS.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/BreakpointsOS.cs
rename to Users/Kudzu/Breakpoints/BreakpointsOS.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/Compile last with NASM.bat b/Users/Kudzu/Breakpoints/Compile last with NASM.bat
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/Compile last with NASM.bat
rename to Users/Kudzu/Breakpoints/Compile last with NASM.bat
diff --git a/Cosmos/Users/Kudzu/Breakpoints/Cosmos.bxrc b/Users/Kudzu/Breakpoints/Cosmos.bxrc
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/Cosmos.bxrc
rename to Users/Kudzu/Breakpoints/Cosmos.bxrc
diff --git a/Cosmos/Users/Kudzu/Breakpoints/Debug in IDA.au3 b/Users/Kudzu/Breakpoints/Debug in IDA.au3
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/Debug in IDA.au3
rename to Users/Kudzu/Breakpoints/Debug in IDA.au3
diff --git a/Cosmos/Users/Kudzu/Breakpoints/FAT/FatFileSystem.cs b/Users/Kudzu/Breakpoints/FAT/FatFileSystem.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/FAT/FatFileSystem.cs
rename to Users/Kudzu/Breakpoints/FAT/FatFileSystem.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/FAT/FatStream.cs b/Users/Kudzu/Breakpoints/FAT/FatStream.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/FAT/FatStream.cs
rename to Users/Kudzu/Breakpoints/FAT/FatStream.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/FAT/Listing/FatDirectory.cs b/Users/Kudzu/Breakpoints/FAT/Listing/FatDirectory.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/FAT/Listing/FatDirectory.cs
rename to Users/Kudzu/Breakpoints/FAT/Listing/FatDirectory.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/FAT/Listing/FatFile.cs b/Users/Kudzu/Breakpoints/FAT/Listing/FatFile.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/FAT/Listing/FatFile.cs
rename to Users/Kudzu/Breakpoints/FAT/Listing/FatFile.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/FieldInitTest.cs b/Users/Kudzu/Breakpoints/FieldInitTest.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/FieldInitTest.cs
rename to Users/Kudzu/Breakpoints/FieldInitTest.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/Int64Test.cs b/Users/Kudzu/Breakpoints/Int64Test.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/Int64Test.cs
rename to Users/Kudzu/Breakpoints/Int64Test.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/Kudzu.Breakpoints.Cosmos b/Users/Kudzu/Breakpoints/Kudzu.Breakpoints.Cosmos
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/Kudzu.Breakpoints.Cosmos
rename to Users/Kudzu/Breakpoints/Kudzu.Breakpoints.Cosmos
diff --git a/Cosmos/Users/Kudzu/Breakpoints/Kudzu.BreakpointsKernel.csproj b/Users/Kudzu/Breakpoints/Kudzu.BreakpointsKernel.csproj
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/Kudzu.BreakpointsKernel.csproj
rename to Users/Kudzu/Breakpoints/Kudzu.BreakpointsKernel.csproj
diff --git a/Cosmos/Users/Kudzu/Breakpoints/ListTest.cs b/Users/Kudzu/Breakpoints/ListTest.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/ListTest.cs
rename to Users/Kudzu/Breakpoints/ListTest.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/NullableTest.cs b/Users/Kudzu/Breakpoints/NullableTest.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/NullableTest.cs
rename to Users/Kudzu/Breakpoints/NullableTest.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/Properties/AssemblyInfo.cs b/Users/Kudzu/Breakpoints/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/Properties/AssemblyInfo.cs
rename to Users/Kudzu/Breakpoints/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/StringBuilderTest.cs b/Users/Kudzu/Breakpoints/StringBuilderTest.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/StringBuilderTest.cs
rename to Users/Kudzu/Breakpoints/StringBuilderTest.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/StringTest.cs b/Users/Kudzu/Breakpoints/StringTest.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/StringTest.cs
rename to Users/Kudzu/Breakpoints/StringTest.cs
diff --git a/Cosmos/Users/Kudzu/Breakpoints/Test.cs b/Users/Kudzu/Breakpoints/Test.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Breakpoints/Test.cs
rename to Users/Kudzu/Breakpoints/Test.cs
diff --git a/Cosmos/Users/Kudzu/Force Update from TFS.bat b/Users/Kudzu/Force Update from TFS.bat
similarity index 100%
rename from Cosmos/Users/Kudzu/Force Update from TFS.bat
rename to Users/Kudzu/Force Update from TFS.bat
diff --git a/Cosmos/Users/Kudzu/Hive/Kudzu.Hive/Class1.cs b/Users/Kudzu/Hive/Kudzu.Hive/Class1.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Hive/Kudzu.Hive/Class1.cs
rename to Users/Kudzu/Hive/Kudzu.Hive/Class1.cs
diff --git a/Cosmos/Users/Kudzu/Hive/Kudzu.Hive/Kudzu.Hive.csproj b/Users/Kudzu/Hive/Kudzu.Hive/Kudzu.Hive.csproj
similarity index 100%
rename from Cosmos/Users/Kudzu/Hive/Kudzu.Hive/Kudzu.Hive.csproj
rename to Users/Kudzu/Hive/Kudzu.Hive/Kudzu.Hive.csproj
diff --git a/Cosmos/Users/Kudzu/Hive/Kudzu.Hive/Properties/AssemblyInfo.cs b/Users/Kudzu/Hive/Kudzu.Hive/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Kudzu/Hive/Kudzu.Hive/Properties/AssemblyInfo.cs
rename to Users/Kudzu/Hive/Kudzu.Hive/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Kudzu/Kudzu-Notes.html b/Users/Kudzu/Kudzu-Notes.html
similarity index 100%
rename from Cosmos/Users/Kudzu/Kudzu-Notes.html
rename to Users/Kudzu/Kudzu-Notes.html
diff --git a/Cosmos/Users/Kudzu/MemDisk End.bat b/Users/Kudzu/MemDisk End.bat
similarity index 100%
rename from Cosmos/Users/Kudzu/MemDisk End.bat
rename to Users/Kudzu/MemDisk End.bat
diff --git a/Cosmos/Users/Kudzu/MemDisk Start.bat b/Users/Kudzu/MemDisk Start.bat
similarity index 100%
rename from Cosmos/Users/Kudzu/MemDisk Start.bat
rename to Users/Kudzu/MemDisk Start.bat
diff --git a/Cosmos/Users/Kudzu/Old-IDANotes.html b/Users/Kudzu/Old-IDANotes.html
similarity index 100%
rename from Cosmos/Users/Kudzu/Old-IDANotes.html
rename to Users/Kudzu/Old-IDANotes.html
diff --git a/Cosmos/Users/LWatson/AssemblyInfo.cs b/Users/LWatson/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/LWatson/AssemblyInfo.cs
rename to Users/LWatson/AssemblyInfo.cs
diff --git a/Cosmos/Users/LWatson/FileSystem.cs b/Users/LWatson/FileSystem.cs
similarity index 100%
rename from Cosmos/Users/LWatson/FileSystem.cs
rename to Users/LWatson/FileSystem.cs
diff --git a/Cosmos/Users/LWatson/Kernel.cs b/Users/LWatson/Kernel.cs
similarity index 100%
rename from Cosmos/Users/LWatson/Kernel.cs
rename to Users/LWatson/Kernel.cs
diff --git a/Cosmos/Users/LWatson/LWatsonBoot.Cosmos b/Users/LWatson/LWatsonBoot.Cosmos
similarity index 100%
rename from Cosmos/Users/LWatson/LWatsonBoot.Cosmos
rename to Users/LWatson/LWatsonBoot.Cosmos
diff --git a/Cosmos/Users/Matthijs/.editorconfig b/Users/Matthijs/.editorconfig
similarity index 100%
rename from Cosmos/Users/Matthijs/.editorconfig
rename to Users/Matthijs/.editorconfig
diff --git a/Cosmos/Users/Matthijs/DebugCompiler/DebugCompiler.csproj b/Users/Matthijs/DebugCompiler/DebugCompiler.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/DebugCompiler/DebugCompiler.csproj
rename to Users/Matthijs/DebugCompiler/DebugCompiler.csproj
diff --git a/Cosmos/Users/Matthijs/DebugCompiler/MyEngine.cs b/Users/Matthijs/DebugCompiler/MyEngine.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/DebugCompiler/MyEngine.cs
rename to Users/Matthijs/DebugCompiler/MyEngine.cs
diff --git a/Cosmos/Users/Matthijs/DebugCompiler/MySource.cs b/Users/Matthijs/DebugCompiler/MySource.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/DebugCompiler/MySource.cs
rename to Users/Matthijs/DebugCompiler/MySource.cs
diff --git a/Cosmos/Users/Matthijs/DebugCompiler/Properties/AssemblyInfo.cs b/Users/Matthijs/DebugCompiler/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/DebugCompiler/Properties/AssemblyInfo.cs
rename to Users/Matthijs/DebugCompiler/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/DebugCompiler/app.config b/Users/Matthijs/DebugCompiler/app.config
similarity index 100%
rename from Cosmos/Users/Matthijs/DebugCompiler/app.config
rename to Users/Matthijs/DebugCompiler/app.config
diff --git a/Cosmos/Users/Matthijs/Playground/Kernel.cs b/Users/Matthijs/Playground/Kernel.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Playground/Kernel.cs
rename to Users/Matthijs/Playground/Kernel.cs
diff --git a/Cosmos/Users/Matthijs/Playground/Playground.csproj b/Users/Matthijs/Playground/Playground.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Playground/Playground.csproj
rename to Users/Matthijs/Playground/Playground.csproj
diff --git a/Cosmos/Users/Matthijs/Playground/PlaygroundBoot.Cosmos b/Users/Matthijs/Playground/PlaygroundBoot.Cosmos
similarity index 100%
rename from Cosmos/Users/Matthijs/Playground/PlaygroundBoot.Cosmos
rename to Users/Matthijs/Playground/PlaygroundBoot.Cosmos
diff --git a/Cosmos/Users/Matthijs/Playground/Properties/AssemblyInfo.cs b/Users/Matthijs/Playground/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Playground/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Playground/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/PlaygroundCore/PlaygroundCore.csproj b/Users/Matthijs/PlaygroundCore/PlaygroundCore.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/PlaygroundCore/PlaygroundCore.csproj
rename to Users/Matthijs/PlaygroundCore/PlaygroundCore.csproj
diff --git a/Cosmos/Users/Matthijs/PlaygroundCore/Properties/AssemblyInfo.cs b/Users/Matthijs/PlaygroundCore/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/PlaygroundCore/Properties/AssemblyInfo.cs
rename to Users/Matthijs/PlaygroundCore/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/PlaygroundHAL/HALGlobal.cs b/Users/Matthijs/PlaygroundHAL/HALGlobal.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/PlaygroundHAL/HALGlobal.cs
rename to Users/Matthijs/PlaygroundHAL/HALGlobal.cs
diff --git a/Cosmos/Users/Matthijs/PlaygroundHAL/PlaygroundHAL.csproj b/Users/Matthijs/PlaygroundHAL/PlaygroundHAL.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/PlaygroundHAL/PlaygroundHAL.csproj
rename to Users/Matthijs/PlaygroundHAL/PlaygroundHAL.csproj
diff --git a/Cosmos/Users/Matthijs/PlaygroundHAL/Properties/AssemblyInfo.cs b/Users/Matthijs/PlaygroundHAL/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/PlaygroundHAL/Properties/AssemblyInfo.cs
rename to Users/Matthijs/PlaygroundHAL/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/PlaygroundSystem/OurKernel.cs b/Users/Matthijs/PlaygroundSystem/OurKernel.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/PlaygroundSystem/OurKernel.cs
rename to Users/Matthijs/PlaygroundSystem/OurKernel.cs
diff --git a/Cosmos/Users/Matthijs/PlaygroundSystem/PlaygroundSystem.csproj b/Users/Matthijs/PlaygroundSystem/PlaygroundSystem.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/PlaygroundSystem/PlaygroundSystem.csproj
rename to Users/Matthijs/PlaygroundSystem/PlaygroundSystem.csproj
diff --git a/Cosmos/Users/Matthijs/PlaygroundSystem/Properties/AssemblyInfo.cs b/Users/Matthijs/PlaygroundSystem/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/PlaygroundSystem/Properties/AssemblyInfo.cs
rename to Users/Matthijs/PlaygroundSystem/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/PlaygroundSystem/SystemGlobal.cs b/Users/Matthijs/PlaygroundSystem/SystemGlobal.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/PlaygroundSystem/SystemGlobal.cs
rename to Users/Matthijs/PlaygroundSystem/SystemGlobal.cs
diff --git a/Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/AssemblerMethod.cs b/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/AssemblerMethod.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/AssemblerMethod.cs
rename to Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/AssemblerMethod.cs
diff --git a/Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/Cosmos.IL2CPU.Plugs.csproj b/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/Cosmos.IL2CPU.Plugs.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/Cosmos.IL2CPU.Plugs.csproj
rename to Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/Cosmos.IL2CPU.Plugs.csproj
diff --git a/Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/FieldAccessAttribute.cs b/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/FieldAccessAttribute.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/FieldAccessAttribute.cs
rename to Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/FieldAccessAttribute.cs
diff --git a/Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugAttribute.cs b/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugAttribute.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugAttribute.cs
rename to Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugAttribute.cs
diff --git a/Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugFieldAttribute.cs b/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugFieldAttribute.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugFieldAttribute.cs
rename to Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugFieldAttribute.cs
diff --git a/Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugMethodAttribute.cs b/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugMethodAttribute.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugMethodAttribute.cs
rename to Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/PlugMethodAttribute.cs
diff --git a/Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/Properties/AssemblyInfo.cs b/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Testing/Cosmos.IL2CPU.Plugs/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/Testing/CosmosCompiler.sln b/Users/Matthijs/Testing/CosmosCompiler.sln
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/CosmosCompiler.sln
rename to Users/Matthijs/Testing/CosmosCompiler.sln
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/Program.cs b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/Program.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/Program.cs
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/Program.cs
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/Properties/AssemblyInfo.cs b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/SimpleClass2Test.csproj b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/SimpleClass2Test.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/SimpleClass2Test.csproj
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/SimpleClass2Test.csproj
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/app.config b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/app.config
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/app.config
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClass2Test/app.config
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/Program.cs b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/Program.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/Program.cs
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/Program.cs
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/Properties/AssemblyInfo.cs b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/SimpleClassTest.csproj b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/SimpleClassTest.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/SimpleClassTest.csproj
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/SimpleClassTest.csproj
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/app.config b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/app.config
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/app.config
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleClassTest/app.config
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/Program.cs b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/Program.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/Program.cs
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/Program.cs
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/Properties/AssemblyInfo.cs b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/SimpleMethodsTest.csproj b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/SimpleMethodsTest.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/SimpleMethodsTest.csproj
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/SimpleMethodsTest.csproj
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/SimpleMethodsTests.xml b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/SimpleMethodsTests.xml
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/SimpleMethodsTests.xml
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/SimpleMethodsTests.xml
diff --git a/Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/app.config b/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/app.config
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/app.config
rename to Users/Matthijs/Testing/FileToEcmaCilTests/SimpleMethodsTest/app.config
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/ArrayTypeMeta.cs b/Users/Matthijs/Testing/IRs/EcmaCil/ArrayTypeMeta.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/ArrayTypeMeta.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/ArrayTypeMeta.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/BaseMemberMeta.cs b/Users/Matthijs/Testing/IRs/EcmaCil/BaseMemberMeta.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/BaseMemberMeta.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/BaseMemberMeta.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/BaseMeta.cs b/Users/Matthijs/Testing/IRs/EcmaCil/BaseMeta.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/BaseMeta.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/BaseMeta.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/BaseMetaComparer.cs b/Users/Matthijs/Testing/IRs/EcmaCil/BaseMetaComparer.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/BaseMetaComparer.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/BaseMetaComparer.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/ClassDiagram1.cd b/Users/Matthijs/Testing/IRs/EcmaCil/ClassDiagram1.cd
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/ClassDiagram1.cd
rename to Users/Matthijs/Testing/IRs/EcmaCil/ClassDiagram1.cd
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/DataIds.cs b/Users/Matthijs/Testing/IRs/EcmaCil/DataIds.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/DataIds.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/DataIds.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/Dump.cs b/Users/Matthijs/Testing/IRs/EcmaCil/Dump.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/Dump.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/Dump.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/EcmaCil.csproj b/Users/Matthijs/Testing/IRs/EcmaCil/EcmaCil.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/EcmaCil.csproj
rename to Users/Matthijs/Testing/IRs/EcmaCil/EcmaCil.csproj
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/Enums.cs b/Users/Matthijs/Testing/IRs/EcmaCil/Enums.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/Enums.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/Enums.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/ExceptionHandlingClauseMeta.cs b/Users/Matthijs/Testing/IRs/EcmaCil/ExceptionHandlingClauseMeta.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/ExceptionHandlingClauseMeta.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/ExceptionHandlingClauseMeta.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/FieldMeta.cs b/Users/Matthijs/Testing/IRs/EcmaCil/FieldMeta.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/FieldMeta.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/FieldMeta.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/BaseInstruction.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/BaseInstruction.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/BaseInstruction.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/BaseInstruction.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/Enums.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/Enums.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/Enums.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/Enums.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionArgument.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionArgument.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionArgument.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionArgument.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionBranch.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionBranch.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionBranch.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionBranch.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionDouble.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionDouble.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionDouble.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionDouble.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionField.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionField.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionField.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionField.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionInt32.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionInt32.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionInt32.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionInt32.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionInt64.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionInt64.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionInt64.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionInt64.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionLocal.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionLocal.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionLocal.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionLocal.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionMethod.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionMethod.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionMethod.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionMethod.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionNone.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionNone.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionNone.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionNone.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionSingle.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionSingle.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionSingle.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionSingle.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionString.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionString.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionString.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionString.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionSwitch.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionSwitch.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionSwitch.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionSwitch.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionToken.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionToken.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionToken.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionToken.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionType.cs b/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionType.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionType.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionType.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/LocalVariableMeta.cs b/Users/Matthijs/Testing/IRs/EcmaCil/LocalVariableMeta.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/LocalVariableMeta.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/LocalVariableMeta.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/MetaSorter.cs b/Users/Matthijs/Testing/IRs/EcmaCil/MetaSorter.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/MetaSorter.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/MetaSorter.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/MethodBodyMeta.cs b/Users/Matthijs/Testing/IRs/EcmaCil/MethodBodyMeta.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/MethodBodyMeta.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/MethodBodyMeta.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/MethodMeta.cs b/Users/Matthijs/Testing/IRs/EcmaCil/MethodMeta.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/MethodMeta.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/MethodMeta.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/MethodParameterMeta.cs b/Users/Matthijs/Testing/IRs/EcmaCil/MethodParameterMeta.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/MethodParameterMeta.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/MethodParameterMeta.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/PointerTypeMeta.cs b/Users/Matthijs/Testing/IRs/EcmaCil/PointerTypeMeta.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/PointerTypeMeta.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/PointerTypeMeta.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/Properties/AssemblyInfo.cs b/Users/Matthijs/Testing/IRs/EcmaCil/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/TypeMeta.cs b/Users/Matthijs/Testing/IRs/EcmaCil/TypeMeta.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/TypeMeta.cs
rename to Users/Matthijs/Testing/IRs/EcmaCil/TypeMeta.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/BaseTest.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/BaseTest.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/BaseTest.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/BaseTest.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/MonoCecilToEcmaCil1.Tests.csproj b/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/MonoCecilToEcmaCil1.Tests.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/MonoCecilToEcmaCil1.Tests.csproj
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/MonoCecilToEcmaCil1.Tests.csproj
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/Properties/AssemblyInfo.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/SimpleMethodsTestsTest.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/SimpleMethodsTestsTest.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/SimpleMethodsTestsTest.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1.Tests/SimpleMethodsTestsTest.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/CecilExtensions.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1/CecilExtensions.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/CecilExtensions.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1/CecilExtensions.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/MonoCecilToEcmaCil1.csproj b/Users/Matthijs/Testing/MonoCecilToEcmaCil1/MonoCecilToEcmaCil1.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/MonoCecilToEcmaCil1.csproj
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1/MonoCecilToEcmaCil1.csproj
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Properties/AssemblyInfo.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.MonoHelpers.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.MonoHelpers.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.MonoHelpers.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.MonoHelpers.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.ScanLog.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.ScanLog.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.ScanLog.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.ScanLog.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1/Reader.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/ReaderWithPlugSupport.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1/ReaderWithPlugSupport.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/ReaderWithPlugSupport.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1/ReaderWithPlugSupport.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedArrayType.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedArrayType.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedArrayType.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedArrayType.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedMethod.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedMethod.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedMethod.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedMethod.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedPointerType.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedPointerType.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedPointerType.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedPointerType.cs
diff --git a/Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedType.cs b/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedType.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedType.cs
rename to Users/Matthijs/Testing/MonoCecilToEcmaCil1/_QueueItems/QueuedType.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/BaseTest.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/BaseTest.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/BaseTest.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/BaseTest.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/Properties/AssemblyInfo.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/ReflectionToEcmaCil.Tests.csproj b/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/ReflectionToEcmaCil.Tests.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/ReflectionToEcmaCil.Tests.csproj
rename to Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/ReflectionToEcmaCil.Tests.csproj
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/SimpleMethodsTest.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/SimpleMethodsTest.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/SimpleMethodsTest.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/SimpleMethodsTest.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Enums.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/Enums.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Enums.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/Enums.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Extensions.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/Extensions.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Extensions.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/Extensions.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/ILReader.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/ILReader.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/ILReader.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/ILReader.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/ILStreamPositionReader.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/ILStreamPositionReader.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/ILStreamPositionReader.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/ILStreamPositionReader.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Properties/AssemblyInfo.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.Queueing.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.Queueing.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.Queueing.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.Queueing.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.ScanLog.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.ScanLog.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.ScanLog.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.ScanLog.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.Scanning.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.Scanning.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.Scanning.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.Scanning.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/Reader.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/ReflectionToEcmaCil.csproj b/Users/Matthijs/Testing/ReflectionToEcmaCil/ReflectionToEcmaCil.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/ReflectionToEcmaCil.csproj
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/ReflectionToEcmaCil.csproj
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedArrayType.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedArrayType.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedArrayType.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedArrayType.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedMethod.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedMethod.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedMethod.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedMethod.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedPointerType.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedPointerType.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedPointerType.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedPointerType.cs
diff --git a/Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedType.cs b/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedType.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedType.cs
rename to Users/Matthijs/Testing/ReflectionToEcmaCil/_QueueItems/QueuedType.cs
diff --git a/Cosmos/Users/Matthijs/Testing/TestApp/Program.cs b/Users/Matthijs/Testing/TestApp/Program.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/TestApp/Program.cs
rename to Users/Matthijs/Testing/TestApp/Program.cs
diff --git a/Cosmos/Users/Matthijs/Testing/TestApp/Properties/AssemblyInfo.cs b/Users/Matthijs/Testing/TestApp/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/TestApp/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Testing/TestApp/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/Testing/TestApp/TestApp.csproj b/Users/Matthijs/Testing/TestApp/TestApp.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/TestApp/TestApp.csproj
rename to Users/Matthijs/Testing/TestApp/TestApp.csproj
diff --git a/Cosmos/Users/Matthijs/Testing/TestApp/app.config b/Users/Matthijs/Testing/TestApp/app.config
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/TestApp/app.config
rename to Users/Matthijs/Testing/TestApp/app.config
diff --git a/Cosmos/Users/Matthijs/Testing/UtilityClasses/HashSetUsingEquatable.cs b/Users/Matthijs/Testing/UtilityClasses/HashSetUsingEquatable.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/UtilityClasses/HashSetUsingEquatable.cs
rename to Users/Matthijs/Testing/UtilityClasses/HashSetUsingEquatable.cs
diff --git a/Cosmos/Users/Matthijs/Testing/UtilityClasses/Properties/AssemblyInfo.cs b/Users/Matthijs/Testing/UtilityClasses/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/UtilityClasses/Properties/AssemblyInfo.cs
rename to Users/Matthijs/Testing/UtilityClasses/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Matthijs/Testing/UtilityClasses/SimpleHashSetOld.cs b/Users/Matthijs/Testing/UtilityClasses/SimpleHashSetOld.cs
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/UtilityClasses/SimpleHashSetOld.cs
rename to Users/Matthijs/Testing/UtilityClasses/SimpleHashSetOld.cs
diff --git a/Cosmos/Users/Matthijs/Testing/UtilityClasses/UtilityClasses.csproj b/Users/Matthijs/Testing/UtilityClasses/UtilityClasses.csproj
similarity index 100%
rename from Cosmos/Users/Matthijs/Testing/UtilityClasses/UtilityClasses.csproj
rename to Users/Matthijs/Testing/UtilityClasses/UtilityClasses.csproj
diff --git a/Cosmos/Users/Orvid/Cosmos.Plugs.7z b/Users/Orvid/Cosmos.Plugs.7z
similarity index 100%
rename from Cosmos/Users/Orvid/Cosmos.Plugs.7z
rename to Users/Orvid/Cosmos.Plugs.7z
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/CsTests.csproj b/Users/Orvid/IL2CPU Tester/CsTests/CsTests.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/CsTests.csproj
rename to Users/Orvid/IL2CPU Tester/CsTests/CsTests.csproj
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/arrays.cs b/Users/Orvid/IL2CPU Tester/CsTests/arrays.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/arrays.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/arrays.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/basic-calls.cs b/Users/Orvid/IL2CPU Tester/CsTests/basic-calls.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/basic-calls.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/basic-calls.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/basic-float.cs b/Users/Orvid/IL2CPU Tester/CsTests/basic-float.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/basic-float.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/basic-float.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/basic-long.cs b/Users/Orvid/IL2CPU Tester/CsTests/basic-long.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/basic-long.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/basic-long.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/basic-math.cs b/Users/Orvid/IL2CPU Tester/CsTests/basic-math.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/basic-math.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/basic-math.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/basic.cs b/Users/Orvid/IL2CPU Tester/CsTests/basic.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/basic.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/basic.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/bench.cs b/Users/Orvid/IL2CPU Tester/CsTests/bench.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/bench.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/bench.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/devirtualization.cs b/Users/Orvid/IL2CPU Tester/CsTests/devirtualization.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/devirtualization.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/devirtualization.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/exceptions.cs b/Users/Orvid/IL2CPU Tester/CsTests/exceptions.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/exceptions.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/exceptions.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/gc-test.cs b/Users/Orvid/IL2CPU Tester/CsTests/gc-test.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/gc-test.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/gc-test.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/generics.cs b/Users/Orvid/IL2CPU Tester/CsTests/generics.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/generics.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/generics.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/objects.cs b/Users/Orvid/IL2CPU Tester/CsTests/objects.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/objects.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/objects.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/ratests.cs b/Users/Orvid/IL2CPU Tester/CsTests/ratests.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/ratests.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/ratests.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/CsTests/s390-abi.cs b/Users/Orvid/IL2CPU Tester/CsTests/s390-abi.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/CsTests/s390-abi.cs
rename to Users/Orvid/IL2CPU Tester/CsTests/s390-abi.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/RawILTests/MSIL.targets b/Users/Orvid/IL2CPU Tester/RawILTests/MSIL.targets
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/RawILTests/MSIL.targets
rename to Users/Orvid/IL2CPU Tester/RawILTests/MSIL.targets
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/RawILTests/RawILTests.csproj b/Users/Orvid/IL2CPU Tester/RawILTests/RawILTests.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/RawILTests/RawILTests.csproj
rename to Users/Orvid/IL2CPU Tester/RawILTests/RawILTests.csproj
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/RawILTests/iltests.il b/Users/Orvid/IL2CPU Tester/RawILTests/iltests.il
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/RawILTests/iltests.il
rename to Users/Orvid/IL2CPU Tester/RawILTests/iltests.il
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/TestDriverGenerator/GenMethodList.cs b/Users/Orvid/IL2CPU Tester/TestDriverGenerator/GenMethodList.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/TestDriverGenerator/GenMethodList.cs
rename to Users/Orvid/IL2CPU Tester/TestDriverGenerator/GenMethodList.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/Kernel.cs b/Users/Orvid/IL2CPU Tester/TestKernel/Kernel.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/Kernel.cs
rename to Users/Orvid/IL2CPU Tester/TestKernel/Kernel.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/Microsoft.NetLog.txt b/Users/Orvid/IL2CPU Tester/TestKernel/Microsoft.NetLog.txt
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/Microsoft.NetLog.txt
rename to Users/Orvid/IL2CPU Tester/TestKernel/Microsoft.NetLog.txt
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/MonoLog.txt b/Users/Orvid/IL2CPU Tester/TestKernel/MonoLog.txt
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/MonoLog.txt
rename to Users/Orvid/IL2CPU Tester/TestKernel/MonoLog.txt
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/Program.cs b/Users/Orvid/IL2CPU Tester/TestKernel/Program.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/Program.cs
rename to Users/Orvid/IL2CPU Tester/TestKernel/Program.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/TestDriver.cs b/Users/Orvid/IL2CPU Tester/TestKernel/TestDriver.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/TestDriver.cs
rename to Users/Orvid/IL2CPU Tester/TestKernel/TestDriver.cs
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/TestKernel.csproj b/Users/Orvid/IL2CPU Tester/TestKernel/TestKernel.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/TestKernel/TestKernel.csproj
rename to Users/Orvid/IL2CPU Tester/TestKernel/TestKernel.csproj
diff --git a/Cosmos/Users/Orvid/IL2CPU Tester/Tester/Tester.Cosmos b/Users/Orvid/IL2CPU Tester/Tester/Tester.Cosmos
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPU Tester/Tester/Tester.Cosmos
rename to Users/Orvid/IL2CPU Tester/Tester/Tester.Cosmos
diff --git a/Cosmos/Users/Orvid/IL2CPURunner/IL2CPURunner.csproj b/Users/Orvid/IL2CPURunner/IL2CPURunner.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPURunner/IL2CPURunner.csproj
rename to Users/Orvid/IL2CPURunner/IL2CPURunner.csproj
diff --git a/Cosmos/Users/Orvid/IL2CPURunner/Program.cs b/Users/Orvid/IL2CPURunner/Program.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPURunner/Program.cs
rename to Users/Orvid/IL2CPURunner/Program.cs
diff --git a/Cosmos/Users/Orvid/IL2CPURunner/Properties/AssemblyInfo.cs b/Users/Orvid/IL2CPURunner/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/IL2CPURunner/Properties/AssemblyInfo.cs
rename to Users/Orvid/IL2CPURunner/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/Form1.Designer.cs b/Users/Orvid/ImageManipulatorTester/Form1.Designer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/Form1.Designer.cs
rename to Users/Orvid/ImageManipulatorTester/Form1.Designer.cs
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/Form1.cs b/Users/Orvid/ImageManipulatorTester/Form1.cs
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/Form1.cs
rename to Users/Orvid/ImageManipulatorTester/Form1.cs
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/Form1.resx b/Users/Orvid/ImageManipulatorTester/Form1.resx
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/Form1.resx
rename to Users/Orvid/ImageManipulatorTester/Form1.resx
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-16Color.bmp b/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-16Color.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-16Color.bmp
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-16Color.bmp
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-24Bit.bmp b/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-24Bit.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-24Bit.bmp
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-24Bit.bmp
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-256Color.bmp b/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-256Color.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-256Color.bmp
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-256Color.bmp
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-Monochrome.bmp b/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-Monochrome.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-Monochrome.bmp
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/bmp/Building-Monochrome.bmp
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-3Dc.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-3Dc.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-3Dc.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-3Dc.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A16B16G16R16.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A16B16G16R16.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A16B16G16R16.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A16B16G16R16.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A16B16G16R16F.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A16B16G16R16F.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A16B16G16R16F.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A16B16G16R16F.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A1R5G5B5.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A1R5G5B5.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A1R5G5B5.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A1R5G5B5.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2B10G10R10.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2B10G10R10.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2B10G10R10.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2B10G10R10.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2R10G10B10.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2R10G10B10.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2R10G10B10.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2R10G10B10.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2W10V10U10.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2W10V10U10.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2W10V10U10.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A2W10V10U10.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A32B32G32R32F.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A32B32G32R32F.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A32B32G32R32F.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A32B32G32R32F.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A4L4.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A4L4.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A4L4.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A4L4.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A4R4G4B4.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A4R4G4B4.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A4R4G4B4.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A4R4G4B4.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8B8G8R8.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8B8G8R8.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8B8G8R8.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8B8G8R8.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8R3G3B2.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8R3G3B2.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8R3G3B2.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8R3G3B2.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8R8G8B8.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8R8G8B8.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8R8G8B8.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-A8R8G8B8.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Ati1n.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Ati1n.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Ati1n.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Ati1n.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt1.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt1.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt1.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt1.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt2.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt2.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt2.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt2.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt3.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt3.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt3.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt3.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt4.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt4.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt4.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt4.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt5.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt5.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt5.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Dxt5.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-G8R8_G8B8.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-G8R8_G8B8.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-G8R8_G8B8.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-G8R8_G8B8.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-L8.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-L8.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-L8.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-L8.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-L8A8.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-L8A8.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-L8A8.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-L8A8.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Q16W16V16U16.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Q16W16V16U16.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Q16W16V16U16.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Q16W16V16U16.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Q8W8V8U8.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Q8W8V8U8.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Q8W8V8U8.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-Q8W8V8U8.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R3G3B2.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R3G3B2.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R3G3B2.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R3G3B2.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R5G6B5.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R5G6B5.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R5G6B5.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R5G6B5.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R8G8B8.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R8G8B8.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R8G8B8.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R8G8B8.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R8G8_B8G8.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R8G8_B8G8.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R8G8_B8G8.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-R8G8_B8G8.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-UYVY.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-UYVY.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-UYVY.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-UYVY.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X1R5G5B5.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X1R5G5B5.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X1R5G5B5.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X1R5G5B5.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X4R4G4B4.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X4R4G4B4.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X4R4G4B4.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X4R4G4B4.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X8B8G8R8.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X8B8G8R8.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X8B8G8R8.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X8B8G8R8.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X8R8G8B8.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X8R8G8B8.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X8R8G8B8.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-X8R8G8B8.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-YUY2.dds b/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-YUY2.dds
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-YUY2.dds
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/dds/Building-YUY2.dds
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/gif/Test.gif b/Users/Orvid/ImageManipulatorTester/ImageFormats/gif/Test.gif
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/gif/Test.gif
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/gif/Test.gif
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/jpeg/Building.JPG b/Users/Orvid/ImageManipulatorTester/ImageFormats/jpeg/Building.JPG
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/jpeg/Building.JPG
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/jpeg/Building.JPG
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/pcx/Building.pcx b/Users/Orvid/ImageManipulatorTester/ImageFormats/pcx/Building.pcx
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/pcx/Building.pcx
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/pcx/Building.pcx
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/png/Building.png b/Users/Orvid/ImageManipulatorTester/ImageFormats/png/Building.png
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/png/Building.png
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/png/Building.png
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.pbm b/Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.pbm
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.pbm
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.pbm
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.pgm b/Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.pgm
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.pgm
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.pgm
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.ppm b/Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.ppm
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.ppm
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/pnm/Building.ppm
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/tga/Building.tga b/Users/Orvid/ImageManipulatorTester/ImageFormats/tga/Building.tga
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/tga/Building.tga
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/tga/Building.tga
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/tiff/Building.tiff b/Users/Orvid/ImageManipulatorTester/ImageFormats/tiff/Building.tiff
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/tiff/Building.tiff
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/tiff/Building.tiff
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/xpm/Building.xpm b/Users/Orvid/ImageManipulatorTester/ImageFormats/xpm/Building.xpm
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageFormats/xpm/Building.xpm
rename to Users/Orvid/ImageManipulatorTester/ImageFormats/xpm/Building.xpm
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/ImageManipulatorTester.csproj b/Users/Orvid/ImageManipulatorTester/ImageManipulatorTester.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/ImageManipulatorTester.csproj
rename to Users/Orvid/ImageManipulatorTester/ImageManipulatorTester.csproj
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/LabeledImage.Designer.cs b/Users/Orvid/ImageManipulatorTester/LabeledImage.Designer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/LabeledImage.Designer.cs
rename to Users/Orvid/ImageManipulatorTester/LabeledImage.Designer.cs
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/LabeledImage.cs b/Users/Orvid/ImageManipulatorTester/LabeledImage.cs
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/LabeledImage.cs
rename to Users/Orvid/ImageManipulatorTester/LabeledImage.cs
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/LabeledImage.resx b/Users/Orvid/ImageManipulatorTester/LabeledImage.resx
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/LabeledImage.resx
rename to Users/Orvid/ImageManipulatorTester/LabeledImage.resx
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/Program.cs b/Users/Orvid/ImageManipulatorTester/Program.cs
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/Program.cs
rename to Users/Orvid/ImageManipulatorTester/Program.cs
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/Properties/AssemblyInfo.cs b/Users/Orvid/ImageManipulatorTester/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/Properties/AssemblyInfo.cs
rename to Users/Orvid/ImageManipulatorTester/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/Properties/Resources.Designer.cs b/Users/Orvid/ImageManipulatorTester/Properties/Resources.Designer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/Properties/Resources.Designer.cs
rename to Users/Orvid/ImageManipulatorTester/Properties/Resources.Designer.cs
diff --git a/Cosmos/Tests/XSharp.Test/Properties/Resources.resx b/Users/Orvid/ImageManipulatorTester/Properties/Resources.resx
similarity index 100%
rename from Cosmos/Tests/XSharp.Test/Properties/Resources.resx
rename to Users/Orvid/ImageManipulatorTester/Properties/Resources.resx
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/Properties/Settings.Designer.cs b/Users/Orvid/ImageManipulatorTester/Properties/Settings.Designer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/Properties/Settings.Designer.cs
rename to Users/Orvid/ImageManipulatorTester/Properties/Settings.Designer.cs
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/Properties/Settings.settings b/Users/Orvid/ImageManipulatorTester/Properties/Settings.settings
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/Properties/Settings.settings
rename to Users/Orvid/ImageManipulatorTester/Properties/Settings.settings
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/SupportedFormats.txt b/Users/Orvid/ImageManipulatorTester/SupportedFormats.txt
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/SupportedFormats.txt
rename to Users/Orvid/ImageManipulatorTester/SupportedFormats.txt
diff --git a/Cosmos/Users/Orvid/License.txt b/Users/Orvid/License.txt
similarity index 100%
rename from Cosmos/Users/Orvid/License.txt
rename to Users/Orvid/License.txt
diff --git a/Cosmos/Users/Orvid/OForms/Controls/Button.cs b/Users/Orvid/OForms/Controls/Button.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OForms/Controls/Button.cs
rename to Users/Orvid/OForms/Controls/Button.cs
diff --git a/Cosmos/Users/Orvid/OForms/Controls/Control.cs b/Users/Orvid/OForms/Controls/Control.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OForms/Controls/Control.cs
rename to Users/Orvid/OForms/Controls/Control.cs
diff --git a/Cosmos/Users/Orvid/OForms/Controls/Delegates.cs b/Users/Orvid/OForms/Controls/Delegates.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OForms/Controls/Delegates.cs
rename to Users/Orvid/OForms/Controls/Delegates.cs
diff --git a/Cosmos/Users/Orvid/OForms/Controls/MouseButtons.cs b/Users/Orvid/OForms/Controls/MouseButtons.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OForms/Controls/MouseButtons.cs
rename to Users/Orvid/OForms/Controls/MouseButtons.cs
diff --git a/Cosmos/Users/Orvid/OForms/EmbeddedFiles/Fonts.cs b/Users/Orvid/OForms/EmbeddedFiles/Fonts.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OForms/EmbeddedFiles/Fonts.cs
rename to Users/Orvid/OForms/EmbeddedFiles/Fonts.cs
diff --git a/Cosmos/Users/Orvid/OForms/OForms.csproj b/Users/Orvid/OForms/OForms.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/OForms/OForms.csproj
rename to Users/Orvid/OForms/OForms.csproj
diff --git a/Cosmos/Users/Orvid/OForms/Properties/AssemblyInfo.cs b/Users/Orvid/OForms/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OForms/Properties/AssemblyInfo.cs
rename to Users/Orvid/OForms/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/OForms/Windows/Taskbar.cs b/Users/Orvid/OForms/Windows/Taskbar.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OForms/Windows/Taskbar.cs
rename to Users/Orvid/OForms/Windows/Taskbar.cs
diff --git a/Cosmos/Users/Orvid/OForms/Windows/Window.cs b/Users/Orvid/OForms/Windows/Window.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OForms/Windows/Window.cs
rename to Users/Orvid/OForms/Windows/Window.cs
diff --git a/Cosmos/Users/Orvid/OForms/Windows/WindowManager.cs b/Users/Orvid/OForms/Windows/WindowManager.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OForms/Windows/WindowManager.cs
rename to Users/Orvid/OForms/Windows/WindowManager.cs
diff --git a/Cosmos/Users/Orvid/OForms/Windows/WindowState.cs b/Users/Orvid/OForms/Windows/WindowState.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OForms/Windows/WindowState.cs
rename to Users/Orvid/OForms/Windows/WindowState.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/BZip2.cs b/Users/Orvid/Orvid.Compression/BZip2.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/BZip2.cs
rename to Users/Orvid/Orvid.Compression/BZip2.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/Checksums/Adler32.cs b/Users/Orvid/Orvid.Compression/Checksums/Adler32.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/Checksums/Adler32.cs
rename to Users/Orvid/Orvid.Compression/Checksums/Adler32.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/Checksums/CRC32.cs b/Users/Orvid/Orvid.Compression/Checksums/CRC32.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/Checksums/CRC32.cs
rename to Users/Orvid/Orvid.Compression/Checksums/CRC32.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/Checksums/StrangeCRC.cs b/Users/Orvid/Orvid.Compression/Checksums/StrangeCRC.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/Checksums/StrangeCRC.cs
rename to Users/Orvid/Orvid.Compression/Checksums/StrangeCRC.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/LZMA.cs b/Users/Orvid/Orvid.Compression/LZMA.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/LZMA.cs
rename to Users/Orvid/Orvid.Compression/LZMA.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/Lzw.cs b/Users/Orvid/Orvid.Compression/Lzw.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/Lzw.cs
rename to Users/Orvid/Orvid.Compression/Lzw.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/Orvid.Compression.csproj b/Users/Orvid/Orvid.Compression/Orvid.Compression.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/Orvid.Compression.csproj
rename to Users/Orvid/Orvid.Compression/Orvid.Compression.csproj
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/Properties/AssemblyInfo.cs b/Users/Orvid/Orvid.Compression/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/Properties/AssemblyInfo.cs
rename to Users/Orvid/Orvid.Compression/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/Streams/BZip2.cs b/Users/Orvid/Orvid.Compression/Streams/BZip2.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/Streams/BZip2.cs
rename to Users/Orvid/Orvid.Compression/Streams/BZip2.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/Streams/Deflate.cs b/Users/Orvid/Orvid.Compression/Streams/Deflate.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/Streams/Deflate.cs
rename to Users/Orvid/Orvid.Compression/Streams/Deflate.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/Streams/Gzip.cs b/Users/Orvid/Orvid.Compression/Streams/Gzip.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/Streams/Gzip.cs
rename to Users/Orvid/Orvid.Compression/Streams/Gzip.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/Streams/Lzw.cs b/Users/Orvid/Orvid.Compression/Streams/Lzw.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/Streams/Lzw.cs
rename to Users/Orvid/Orvid.Compression/Streams/Lzw.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/GZip/GZIPConstants.cs b/Users/Orvid/Orvid.Compression/TODO/GZip/GZIPConstants.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/GZip/GZIPConstants.cs
rename to Users/Orvid/Orvid.Compression/TODO/GZip/GZIPConstants.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/GZip/GZipException.cs b/Users/Orvid/Orvid.Compression/TODO/GZip/GZipException.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/GZip/GZipException.cs
rename to Users/Orvid/Orvid.Compression/TODO/GZip/GZipException.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/GZip/GzipInputStream.cs b/Users/Orvid/Orvid.Compression/TODO/GZip/GzipInputStream.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/GZip/GzipInputStream.cs
rename to Users/Orvid/Orvid.Compression/TODO/GZip/GzipInputStream.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/GZip/GzipOutputStream.cs b/Users/Orvid/Orvid.Compression/TODO/GZip/GzipOutputStream.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/GZip/GzipOutputStream.cs
rename to Users/Orvid/Orvid.Compression/TODO/GZip/GzipOutputStream.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/LZHAM.7z b/Users/Orvid/Orvid.Compression/TODO/LZHAM.7z
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/LZHAM.7z
rename to Users/Orvid/Orvid.Compression/TODO/LZHAM.7z
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Lzw/LzwConstants.cs b/Users/Orvid/Orvid.Compression/TODO/Lzw/LzwConstants.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Lzw/LzwConstants.cs
rename to Users/Orvid/Orvid.Compression/TODO/Lzw/LzwConstants.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Lzw/LzwException.cs b/Users/Orvid/Orvid.Compression/TODO/Lzw/LzwException.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Lzw/LzwException.cs
rename to Users/Orvid/Orvid.Compression/TODO/Lzw/LzwException.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Lzw/LzwInputStream.cs b/Users/Orvid/Orvid.Compression/TODO/Lzw/LzwInputStream.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Lzw/LzwInputStream.cs
rename to Users/Orvid/Orvid.Compression/TODO/Lzw/LzwInputStream.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/InvalidHeaderException.cs b/Users/Orvid/Orvid.Compression/TODO/Tar/InvalidHeaderException.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/InvalidHeaderException.cs
rename to Users/Orvid/Orvid.Compression/TODO/Tar/InvalidHeaderException.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarArchive.cs b/Users/Orvid/Orvid.Compression/TODO/Tar/TarArchive.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarArchive.cs
rename to Users/Orvid/Orvid.Compression/TODO/Tar/TarArchive.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarBuffer.cs b/Users/Orvid/Orvid.Compression/TODO/Tar/TarBuffer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarBuffer.cs
rename to Users/Orvid/Orvid.Compression/TODO/Tar/TarBuffer.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarEntry.cs b/Users/Orvid/Orvid.Compression/TODO/Tar/TarEntry.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarEntry.cs
rename to Users/Orvid/Orvid.Compression/TODO/Tar/TarEntry.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarException.cs b/Users/Orvid/Orvid.Compression/TODO/Tar/TarException.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarException.cs
rename to Users/Orvid/Orvid.Compression/TODO/Tar/TarException.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarHeader.cs b/Users/Orvid/Orvid.Compression/TODO/Tar/TarHeader.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarHeader.cs
rename to Users/Orvid/Orvid.Compression/TODO/Tar/TarHeader.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarInputStream.cs b/Users/Orvid/Orvid.Compression/TODO/Tar/TarInputStream.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarInputStream.cs
rename to Users/Orvid/Orvid.Compression/TODO/Tar/TarInputStream.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarOutputStream.cs b/Users/Orvid/Orvid.Compression/TODO/Tar/TarOutputStream.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Tar/TarOutputStream.cs
rename to Users/Orvid/Orvid.Compression/TODO/Tar/TarOutputStream.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Wilt/Wilt.cs b/Users/Orvid/Orvid.Compression/TODO/Wilt/Wilt.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Wilt/Wilt.cs
rename to Users/Orvid/Orvid.Compression/TODO/Wilt/Wilt.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltCompress.c b/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltCompress.c
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltCompress.c
rename to Users/Orvid/Orvid.Compression/TODO/Wilt/WiltCompress.c
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltCompress16.c b/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltCompress16.c
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltCompress16.c
rename to Users/Orvid/Orvid.Compression/TODO/Wilt/WiltCompress16.c
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltDecompress.c b/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltDecompress.c
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltDecompress.c
rename to Users/Orvid/Orvid.Compression/TODO/Wilt/WiltDecompress.c
diff --git a/Cosmos/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltDecompress16.c b/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltDecompress16.c
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Compression/TODO/Wilt/WiltDecompress16.c
rename to Users/Orvid/Orvid.Compression/TODO/Wilt/WiltDecompress16.c
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/Cache.cs b/Users/Orvid/Orvid.Concurrent/Cache.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/Cache.cs
rename to Users/Orvid/Orvid.Concurrent/Cache.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/ConcurrentDictionary.cs b/Users/Orvid/Orvid.Concurrent/ConcurrentDictionary.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/ConcurrentDictionary.cs
rename to Users/Orvid/Orvid.Concurrent/ConcurrentDictionary.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/ConcurrentHashtable.cs b/Users/Orvid/Orvid.Concurrent/ConcurrentHashtable.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/ConcurrentHashtable.cs
rename to Users/Orvid/Orvid.Concurrent/ConcurrentHashtable.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/DictionaryBase.cs b/Users/Orvid/Orvid.Concurrent/DictionaryBase.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/DictionaryBase.cs
rename to Users/Orvid/Orvid.Concurrent/DictionaryBase.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/Hasher.cs b/Users/Orvid/Orvid.Concurrent/Hasher.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/Hasher.cs
rename to Users/Orvid/Orvid.Concurrent/Hasher.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/IMaintainable.cs b/Users/Orvid/Orvid.Concurrent/IMaintainable.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/IMaintainable.cs
rename to Users/Orvid/Orvid.Concurrent/IMaintainable.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/InternalWeakDictionaryStrongValueBase.cs b/Users/Orvid/Orvid.Concurrent/InternalWeakDictionaryStrongValueBase.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/InternalWeakDictionaryStrongValueBase.cs
rename to Users/Orvid/Orvid.Concurrent/InternalWeakDictionaryStrongValueBase.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/InternalWeakDictionaryWeakValueBase.cs b/Users/Orvid/Orvid.Concurrent/InternalWeakDictionaryWeakValueBase.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/InternalWeakDictionaryWeakValueBase.cs
rename to Users/Orvid/Orvid.Concurrent/InternalWeakDictionaryWeakValueBase.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/Key.cs b/Users/Orvid/Orvid.Concurrent/Key.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/Key.cs
rename to Users/Orvid/Orvid.Concurrent/Key.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/KeyComparer.cs b/Users/Orvid/Orvid.Concurrent/KeyComparer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/KeyComparer.cs
rename to Users/Orvid/Orvid.Concurrent/KeyComparer.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/MaintenanceWorker.cs b/Users/Orvid/Orvid.Concurrent/MaintenanceWorker.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/MaintenanceWorker.cs
rename to Users/Orvid/Orvid.Concurrent/MaintenanceWorker.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/Orvid.Concurrent.csproj b/Users/Orvid/Orvid.Concurrent/Orvid.Concurrent.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/Orvid.Concurrent.csproj
rename to Users/Orvid/Orvid.Concurrent/Orvid.Concurrent.csproj
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/Properties/AssemblyInfo.cs b/Users/Orvid/Orvid.Concurrent/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/Properties/AssemblyInfo.cs
rename to Users/Orvid/Orvid.Concurrent/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/Segment.cs b/Users/Orvid/Orvid.Concurrent/Segment.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/Segment.cs
rename to Users/Orvid/Orvid.Concurrent/Segment.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/Segmentrange.cs b/Users/Orvid/Orvid.Concurrent/Segmentrange.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/Segmentrange.cs
rename to Users/Orvid/Orvid.Concurrent/Segmentrange.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/Stacktype.cs b/Users/Orvid/Orvid.Concurrent/Stacktype.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/Stacktype.cs
rename to Users/Orvid/Orvid.Concurrent/Stacktype.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/TinyReaderWriterLock.cs b/Users/Orvid/Orvid.Concurrent/TinyReaderWriterLock.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/TinyReaderWriterLock.cs
rename to Users/Orvid/Orvid.Concurrent/TinyReaderWriterLock.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/TransformedCollection.cs b/Users/Orvid/Orvid.Concurrent/TransformedCollection.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/TransformedCollection.cs
rename to Users/Orvid/Orvid.Concurrent/TransformedCollection.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/WeakDictionary.0.cs b/Users/Orvid/Orvid.Concurrent/WeakDictionary.0.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/WeakDictionary.0.cs
rename to Users/Orvid/Orvid.Concurrent/WeakDictionary.0.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/WeakDictionary.1.cs b/Users/Orvid/Orvid.Concurrent/WeakDictionary.1.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/WeakDictionary.1.cs
rename to Users/Orvid/Orvid.Concurrent/WeakDictionary.1.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/WeakDictionary.2.cs b/Users/Orvid/Orvid.Concurrent/WeakDictionary.2.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/WeakDictionary.2.cs
rename to Users/Orvid/Orvid.Concurrent/WeakDictionary.2.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/WeakDictionary.3.cs b/Users/Orvid/Orvid.Concurrent/WeakDictionary.3.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/WeakDictionary.3.cs
rename to Users/Orvid/Orvid.Concurrent/WeakDictionary.3.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/WeakDictionary.4.cs b/Users/Orvid/Orvid.Concurrent/WeakDictionary.4.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/WeakDictionary.4.cs
rename to Users/Orvid/Orvid.Concurrent/WeakDictionary.4.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.1.cs b/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.1.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.1.cs
rename to Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.1.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.2.cs b/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.2.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.2.cs
rename to Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.2.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.3.cs b/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.3.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.3.cs
rename to Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.3.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.4.cs b/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.4.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.4.cs
rename to Users/Orvid/Orvid.Concurrent/WeakKeyDictionary.4.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/WeakValueDictionary.cs b/Users/Orvid/Orvid.Concurrent/WeakValueDictionary.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/WeakValueDictionary.cs
rename to Users/Orvid/Orvid.Concurrent/WeakValueDictionary.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Concurrent/WeakValueRef.cs b/Users/Orvid/Orvid.Concurrent/WeakValueRef.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Concurrent/WeakValueRef.cs
rename to Users/Orvid/Orvid.Concurrent/WeakValueRef.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Extensions/Orvid.Extensions.csproj b/Users/Orvid/Orvid.Extensions/Orvid.Extensions.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Extensions/Orvid.Extensions.csproj
rename to Users/Orvid/Orvid.Extensions/Orvid.Extensions.csproj
diff --git a/Cosmos/Users/Orvid/Orvid.Extensions/Properties/AssemblyInfo.cs b/Users/Orvid/Orvid.Extensions/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Extensions/Properties/AssemblyInfo.cs
rename to Users/Orvid/Orvid.Extensions/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Extensions/System/Half.cs b/Users/Orvid/Orvid.Extensions/System/Half.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Extensions/System/Half.cs
rename to Users/Orvid/Orvid.Extensions/System/Half.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Extensions/System/Int128.cs b/Users/Orvid/Orvid.Extensions/System/Int128.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Extensions/System/Int128.cs
rename to Users/Orvid/Orvid.Extensions/System/Int128.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Extensions/System/Math.cs b/Users/Orvid/Orvid.Extensions/System/Math.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Extensions/System/Math.cs
rename to Users/Orvid/Orvid.Extensions/System/Math.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Extensions/System/Oyster.IntX.cs b/Users/Orvid/Orvid.Extensions/System/Oyster.IntX.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Extensions/System/Oyster.IntX.cs
rename to Users/Orvid/Orvid.Extensions/System/Oyster.IntX.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Extensions/System/Quad.cs b/Users/Orvid/Orvid.Extensions/System/Quad.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Extensions/System/Quad.cs
rename to Users/Orvid/Orvid.Extensions/System/Quad.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Extensions/license.txt b/Users/Orvid/Orvid.Extensions/license.txt
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Extensions/license.txt
rename to Users/Orvid/Orvid.Extensions/license.txt
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/Drivers/PCI/VMWareSVGAII.cs b/Users/Orvid/Orvid.Graphics.Cosmos/Drivers/PCI/VMWareSVGAII.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/Drivers/PCI/VMWareSVGAII.cs
rename to Users/Orvid/Orvid.Graphics.Cosmos/Drivers/PCI/VMWareSVGAII.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/Drivers/VGADriver.cs b/Users/Orvid/Orvid.Graphics.Cosmos/Drivers/VGADriver.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/Drivers/VGADriver.cs
rename to Users/Orvid/Orvid.Graphics.Cosmos/Drivers/VGADriver.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/GraphicsDriver.cs b/Users/Orvid/Orvid.Graphics.Cosmos/GraphicsDriver.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/GraphicsDriver.cs
rename to Users/Orvid/Orvid.Graphics.Cosmos/GraphicsDriver.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/GraphicsMode.cs b/Users/Orvid/Orvid.Graphics.Cosmos/GraphicsMode.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/GraphicsMode.cs
rename to Users/Orvid/Orvid.Graphics.Cosmos/GraphicsMode.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/GraphicsPlugs.cs b/Users/Orvid/Orvid.Graphics.Cosmos/GraphicsPlugs.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/GraphicsPlugs.cs
rename to Users/Orvid/Orvid.Graphics.Cosmos/GraphicsPlugs.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/Monitor.cs b/Users/Orvid/Orvid.Graphics.Cosmos/Monitor.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/Monitor.cs
rename to Users/Orvid/Orvid.Graphics.Cosmos/Monitor.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/Orvid.Graphics.Cosmos.csproj b/Users/Orvid/Orvid.Graphics.Cosmos/Orvid.Graphics.Cosmos.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/Orvid.Graphics.Cosmos.csproj
rename to Users/Orvid/Orvid.Graphics.Cosmos/Orvid.Graphics.Cosmos.csproj
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/Properties/AssemblyInfo.cs b/Users/Orvid/Orvid.Graphics.Cosmos/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Cosmos/Properties/AssemblyInfo.cs
rename to Users/Orvid/Orvid.Graphics.Cosmos/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/DataFormats/Half.cs b/Users/Orvid/Orvid.Graphics.Dependancies/DataFormats/Half.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/DataFormats/Half.cs
rename to Users/Orvid/Orvid.Graphics.Dependancies/DataFormats/Half.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/DataFormats/Quad.cs b/Users/Orvid/Orvid.Graphics.Dependancies/DataFormats/Quad.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/DataFormats/Quad.cs
rename to Users/Orvid/Orvid.Graphics.Dependancies/DataFormats/Quad.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/Deps/zLib.cs b/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/Deps/zLib.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/Deps/zLib.cs
rename to Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/Deps/zLib.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/LibJpeg.cs b/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/LibJpeg.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/LibJpeg.cs
rename to Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/LibJpeg.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/LibTiff.cs b/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/LibTiff.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/LibTiff.cs
rename to Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/BitMiracle/LibTiff.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/PnmImage.cs b/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/PnmImage.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/PnmImage.cs
rename to Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/PnmImage.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/TgaImage.cs b/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/TgaImage.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/TgaImage.cs
rename to Users/Orvid/Orvid.Graphics.Dependancies/Image Formats/TgaImage.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Orvid.Graphics.Dependancies.csproj b/Users/Orvid/Orvid.Graphics.Dependancies/Orvid.Graphics.Dependancies.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Orvid.Graphics.Dependancies.csproj
rename to Users/Orvid/Orvid.Graphics.Dependancies/Orvid.Graphics.Dependancies.csproj
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Properties/AssemblyInfo.cs b/Users/Orvid/Orvid.Graphics.Dependancies/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Properties/AssemblyInfo.cs
rename to Users/Orvid/Orvid.Graphics.Dependancies/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Resizing Algorithms/Hqx.cs b/Users/Orvid/Orvid.Graphics.Dependancies/Resizing Algorithms/Hqx.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics.Dependancies/Resizing Algorithms/Hqx.cs
rename to Users/Orvid/Orvid.Graphics.Dependancies/Resizing Algorithms/Hqx.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/AnimatedImage.cs b/Users/Orvid/Orvid.Graphics/AnimatedImage.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/AnimatedImage.cs
rename to Users/Orvid/Orvid.Graphics/AnimatedImage.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/BoundingBox.cs b/Users/Orvid/Orvid.Graphics/BoundingBox.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/BoundingBox.cs
rename to Users/Orvid/Orvid.Graphics/BoundingBox.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/Colors.cs b/Users/Orvid/Orvid.Graphics/Colors.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/Colors.cs
rename to Users/Orvid/Orvid.Graphics/Colors.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/EGAPallet.PNG b/Users/Orvid/Orvid.Graphics/EGAPallet.PNG
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/EGAPallet.PNG
rename to Users/Orvid/Orvid.Graphics/EGAPallet.PNG
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/BWGreyscale.patch b/Users/Orvid/Orvid.Graphics/FontSupport/BWGreyscale.patch
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/BWGreyscale.patch
rename to Users/Orvid/Orvid.Graphics/FontSupport/BWGreyscale.patch
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Defaults/DefaultFontManager.cs b/Users/Orvid/Orvid.Graphics/FontSupport/Defaults/DefaultFontManager.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Defaults/DefaultFontManager.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/Defaults/DefaultFontManager.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Font.cs b/Users/Orvid/Orvid.Graphics/FontSupport/Font.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Font.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/Font.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/FontManager.cs b/Users/Orvid/Orvid.Graphics/FontSupport/FontManager.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/FontManager.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/FontManager.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/FontMetrics.cs b/Users/Orvid/Orvid.Graphics/FontSupport/FontMetrics.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/FontMetrics.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/FontMetrics.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/FontStyle.cs b/Users/Orvid/Orvid.Graphics/FontSupport/FontStyle.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/FontStyle.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/FontStyle.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Interfaces/ITextRenderer.cs b/Users/Orvid/Orvid.Graphics/FontSupport/Interfaces/ITextRenderer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Interfaces/ITextRenderer.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/Interfaces/ITextRenderer.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Old/Font.cs b/Users/Orvid/Orvid.Graphics/FontSupport/Old/Font.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Old/Font.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/Old/Font.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Old/FontCharacter.cs b/Users/Orvid/Orvid.Graphics/FontSupport/Old/FontCharacter.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Old/FontCharacter.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/Old/FontCharacter.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Old/FontCharacterSet.cs b/Users/Orvid/Orvid.Graphics/FontSupport/Old/FontCharacterSet.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Old/FontCharacterSet.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/Old/FontCharacterSet.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Old/OPFF.cs b/Users/Orvid/Orvid.Graphics/FontSupport/Old/OPFF.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/Old/OPFF.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/Old/OPFF.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/SupportClasses/AffineTransform.cs b/Users/Orvid/Orvid.Graphics/FontSupport/SupportClasses/AffineTransform.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/SupportClasses/AffineTransform.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/SupportClasses/AffineTransform.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFont.cs b/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFont.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFont.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFont.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFontContainer.cs b/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFontContainer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFontContainer.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFontContainer.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFontMetrics.cs b/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFontMetrics.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFontMetrics.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFFontMetrics.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFGlyph.cs b/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFGlyph.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFGlyph.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFGlyph.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFMetrics.cs b/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFMetrics.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFMetrics.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFMetrics.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFParser.cs b/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFParser.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFParser.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFParser.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFTextRenderer.cs b/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFTextRenderer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFTextRenderer.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/bdf/BDFTextRenderer.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/StringBuilder.cs b/Users/Orvid/Orvid.Graphics/FontSupport/bdf/StringBuilder.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/bdf/StringBuilder.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/bdf/StringBuilder.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntFont.cs b/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntFont.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntFont.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntFont.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntGlyph.cs b/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntGlyph.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntGlyph.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntGlyph.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntLoader.cs b/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntLoader.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntLoader.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntLoader.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntMetrics.cs b/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntMetrics.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntMetrics.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntMetrics.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntTextRenderer.cs b/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntTextRenderer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntTextRenderer.cs
rename to Users/Orvid/Orvid.Graphics/FontSupport/fnt/FntTextRenderer.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/Image.cs b/Users/Orvid/Orvid.Graphics/Image.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/Image.cs
rename to Users/Orvid/Orvid.Graphics/Image.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/BmpSupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/BmpSupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/BmpSupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/BmpSupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/DdsSupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/DdsSupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/DdsSupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/DdsSupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/FormatManager.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/FormatManager.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/FormatManager.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/FormatManager.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/GifDecoder.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/GifDecoder.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/GifDecoder.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/GifDecoder.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/GifSupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/GifSupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/GifSupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/GifSupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/ImageFormat.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/ImageFormat.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/ImageFormat.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/ImageFormat.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/JpegSupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/JpegSupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/JpegSupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/JpegSupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/OIFSupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/OIFSupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/OIFSupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/OIFSupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/PcxSupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/PcxSupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/PcxSupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/PcxSupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/PngSupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/PngSupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/PngSupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/PngSupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/PnmFamilySupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/PnmFamilySupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/PnmFamilySupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/PnmFamilySupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/TgaSupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/TgaSupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/TgaSupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/TgaSupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/TiffSupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/TiffSupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/TiffSupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/TiffSupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/VbpSupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/VbpSupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/VbpSupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/VbpSupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/XpmSupport.cs b/Users/Orvid/Orvid.Graphics/ImageFormats/XpmSupport.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageFormats/XpmSupport.cs
rename to Users/Orvid/Orvid.Graphics/ImageFormats/XpmSupport.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/ImageManipulator.cs b/Users/Orvid/Orvid.Graphics/ImageManipulator.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/ImageManipulator.cs
rename to Users/Orvid/Orvid.Graphics/ImageManipulator.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/MiImage.cs b/Users/Orvid/Orvid.Graphics/MiImage.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/MiImage.cs
rename to Users/Orvid/Orvid.Graphics/MiImage.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/Orvid.Graphics.csproj b/Users/Orvid/Orvid.Graphics/Orvid.Graphics.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/Orvid.Graphics.csproj
rename to Users/Orvid/Orvid.Graphics/Orvid.Graphics.csproj
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/Pixel.cs b/Users/Orvid/Orvid.Graphics/Pixel.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/Pixel.cs
rename to Users/Orvid/Orvid.Graphics/Pixel.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/Properties/AssemblyInfo.cs b/Users/Orvid/Orvid.Graphics/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/Properties/AssemblyInfo.cs
rename to Users/Orvid/Orvid.Graphics/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/Rectangle.cs b/Users/Orvid/Orvid.Graphics/Rectangle.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/Rectangle.cs
rename to Users/Orvid/Orvid.Graphics/Rectangle.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/Shapes/Shape.cs b/Users/Orvid/Orvid.Graphics/Shapes/Shape.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/Shapes/Shape.cs
rename to Users/Orvid/Orvid.Graphics/Shapes/Shape.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/Shapes/ShapedImage.cs b/Users/Orvid/Orvid.Graphics/Shapes/ShapedImage.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/Shapes/ShapedImage.cs
rename to Users/Orvid/Orvid.Graphics/Shapes/ShapedImage.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/Shapes/Square.cs b/Users/Orvid/Orvid.Graphics/Shapes/Square.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/Shapes/Square.cs
rename to Users/Orvid/Orvid.Graphics/Shapes/Square.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/VGAPallet.png b/Users/Orvid/Orvid.Graphics/VGAPallet.png
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/VGAPallet.png
rename to Users/Orvid/Orvid.Graphics/VGAPallet.png
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/Vec2.cs b/Users/Orvid/Orvid.Graphics/Vec2.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/Vec2.cs
rename to Users/Orvid/Orvid.Graphics/Vec2.cs
diff --git a/Cosmos/Users/Orvid/Orvid.Graphics/Vec2d.cs b/Users/Orvid/Orvid.Graphics/Vec2d.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.Graphics/Vec2d.cs
rename to Users/Orvid/Orvid.Graphics/Vec2d.cs
diff --git a/Cosmos/Users/Orvid/Orvid.sln b/Users/Orvid/Orvid.sln
similarity index 100%
rename from Cosmos/Users/Orvid/Orvid.sln
rename to Users/Orvid/Orvid.sln
diff --git a/Cosmos/Users/Orvid/OrvidTestOS/AsmMouse.cs b/Users/Orvid/OrvidTestOS/AsmMouse.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OrvidTestOS/AsmMouse.cs
rename to Users/Orvid/OrvidTestOS/AsmMouse.cs
diff --git a/Cosmos/Users/Orvid/OrvidTestOS/GuessOS.cs b/Users/Orvid/OrvidTestOS/GuessOS.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OrvidTestOS/GuessOS.cs
rename to Users/Orvid/OrvidTestOS/GuessOS.cs
diff --git a/Cosmos/Users/Orvid/OrvidTestOS/Mouse.cs b/Users/Orvid/OrvidTestOS/Mouse.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OrvidTestOS/Mouse.cs
rename to Users/Orvid/OrvidTestOS/Mouse.cs
diff --git a/Cosmos/Users/Orvid/OrvidTestOS/OrvidKernel.csproj b/Users/Orvid/OrvidTestOS/OrvidKernel.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/OrvidTestOS/OrvidKernel.csproj
rename to Users/Orvid/OrvidTestOS/OrvidKernel.csproj
diff --git a/Cosmos/Users/Orvid/OrvidTestOS/OrvidTest.Cosmos b/Users/Orvid/OrvidTestOS/OrvidTest.Cosmos
similarity index 100%
rename from Cosmos/Users/Orvid/OrvidTestOS/OrvidTest.Cosmos
rename to Users/Orvid/OrvidTestOS/OrvidTest.Cosmos
diff --git a/Cosmos/Users/Orvid/OrvidTestOS/Plugs.cs b/Users/Orvid/OrvidTestOS/Plugs.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OrvidTestOS/Plugs.cs
rename to Users/Orvid/OrvidTestOS/Plugs.cs
diff --git a/Cosmos/Users/Orvid/OrvidTestOS/Properties/AssemblyInfo.cs b/Users/Orvid/OrvidTestOS/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OrvidTestOS/Properties/AssemblyInfo.cs
rename to Users/Orvid/OrvidTestOS/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/OrvidTestOS/VGAScreenExtra.cs b/Users/Orvid/OrvidTestOS/VGAScreenExtra.cs
similarity index 100%
rename from Cosmos/Users/Orvid/OrvidTestOS/VGAScreenExtra.cs
rename to Users/Orvid/OrvidTestOS/VGAScreenExtra.cs
diff --git a/Cosmos/Users/Orvid/OtherStuff/ONLIntegration.patch b/Users/Orvid/OtherStuff/ONLIntegration.patch
similarity index 100%
rename from Cosmos/Users/Orvid/OtherStuff/ONLIntegration.patch
rename to Users/Orvid/OtherStuff/ONLIntegration.patch
diff --git a/Cosmos/Users/Orvid/OtherStuff/TimesNewRoman.opff b/Users/Orvid/OtherStuff/TimesNewRoman.opff
similarity index 100%
rename from Cosmos/Users/Orvid/OtherStuff/TimesNewRoman.opff
rename to Users/Orvid/OtherStuff/TimesNewRoman.opff
diff --git a/Cosmos/Users/Orvid/PlugViewer/Constants.cs b/Users/Orvid/PlugViewer/Constants.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Constants.cs
rename to Users/Orvid/PlugViewer/Constants.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/Errors/BaseError.cs b/Users/Orvid/PlugViewer/Errors/BaseError.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Errors/BaseError.cs
rename to Users/Orvid/PlugViewer/Errors/BaseError.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/Errors/InternalCallImplError.cs b/Users/Orvid/PlugViewer/Errors/InternalCallImplError.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Errors/InternalCallImplError.cs
rename to Users/Orvid/PlugViewer/Errors/InternalCallImplError.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/Errors/NativeImplError.cs b/Users/Orvid/PlugViewer/Errors/NativeImplError.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Errors/NativeImplError.cs
rename to Users/Orvid/PlugViewer/Errors/NativeImplError.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/Errors/PInvokeError.cs b/Users/Orvid/PlugViewer/Errors/PInvokeError.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Errors/PInvokeError.cs
rename to Users/Orvid/PlugViewer/Errors/PInvokeError.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/Errors/UnmanagedImplError.cs b/Users/Orvid/PlugViewer/Errors/UnmanagedImplError.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Errors/UnmanagedImplError.cs
rename to Users/Orvid/PlugViewer/Errors/UnmanagedImplError.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/Log.cs b/Users/Orvid/PlugViewer/Log.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Log.cs
rename to Users/Orvid/PlugViewer/Log.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/MainForm.Designer.cs b/Users/Orvid/PlugViewer/MainForm.Designer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/MainForm.Designer.cs
rename to Users/Orvid/PlugViewer/MainForm.Designer.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/MainForm.cs b/Users/Orvid/PlugViewer/MainForm.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/MainForm.cs
rename to Users/Orvid/PlugViewer/MainForm.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/MainForm.resx b/Users/Orvid/PlugViewer/MainForm.resx
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/MainForm.resx
rename to Users/Orvid/PlugViewer/MainForm.resx
diff --git a/Cosmos/Users/Orvid/PlugViewer/NameBuilder.cs b/Users/Orvid/PlugViewer/NameBuilder.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/NameBuilder.cs
rename to Users/Orvid/PlugViewer/NameBuilder.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/Orvid.sln b/Users/Orvid/PlugViewer/Orvid.sln
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Orvid.sln
rename to Users/Orvid/PlugViewer/Orvid.sln
diff --git a/Cosmos/Users/Orvid/PlugViewer/PlugTemplateDumper.cs b/Users/Orvid/PlugViewer/PlugTemplateDumper.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/PlugTemplateDumper.cs
rename to Users/Orvid/PlugViewer/PlugTemplateDumper.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/PlugViewer.csproj b/Users/Orvid/PlugViewer/PlugViewer.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/PlugViewer.csproj
rename to Users/Orvid/PlugViewer/PlugViewer.csproj
diff --git a/Cosmos/Users/Orvid/PlugViewer/Program.cs b/Users/Orvid/PlugViewer/Program.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Program.cs
rename to Users/Orvid/PlugViewer/Program.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/Properties/AssemblyInfo.cs b/Users/Orvid/PlugViewer/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Properties/AssemblyInfo.cs
rename to Users/Orvid/PlugViewer/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/Readme.txt b/Users/Orvid/PlugViewer/Readme.txt
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Readme.txt
rename to Users/Orvid/PlugViewer/Readme.txt
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Assembly.bmp b/Users/Orvid/PlugViewer/Resources/Assembly.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Assembly.bmp
rename to Users/Orvid/PlugViewer/Resources/Assembly.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/BrokenReference.bmp b/Users/Orvid/PlugViewer/Resources/BrokenReference.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/BrokenReference.bmp
rename to Users/Orvid/PlugViewer/Resources/BrokenReference.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Class.bmp b/Users/Orvid/PlugViewer/Resources/Class.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Class.bmp
rename to Users/Orvid/PlugViewer/Resources/Class.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Class_Internal.bmp b/Users/Orvid/PlugViewer/Resources/Class_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Class_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/Class_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Class_Private.bmp b/Users/Orvid/PlugViewer/Resources/Class_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Class_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Class_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Class_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Class_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Class_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Class_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Constant.bmp b/Users/Orvid/PlugViewer/Resources/Constant.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Constant.bmp
rename to Users/Orvid/PlugViewer/Resources/Constant.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Delegate.bmp b/Users/Orvid/PlugViewer/Resources/Delegate.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Delegate.bmp
rename to Users/Orvid/PlugViewer/Resources/Delegate.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Delegate_Friend.bmp b/Users/Orvid/PlugViewer/Resources/Delegate_Friend.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Delegate_Friend.bmp
rename to Users/Orvid/PlugViewer/Resources/Delegate_Friend.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Delegate_Private.bmp b/Users/Orvid/PlugViewer/Resources/Delegate_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Delegate_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Delegate_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Delegate_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Delegate_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Delegate_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Delegate_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Enum.bmp b/Users/Orvid/PlugViewer/Resources/Enum.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Enum.bmp
rename to Users/Orvid/PlugViewer/Resources/Enum.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/EnumItem.bmp b/Users/Orvid/PlugViewer/Resources/EnumItem.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/EnumItem.bmp
rename to Users/Orvid/PlugViewer/Resources/EnumItem.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/EnumItem_Internal.bmp b/Users/Orvid/PlugViewer/Resources/EnumItem_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/EnumItem_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/EnumItem_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/EnumItem_Private.bmp b/Users/Orvid/PlugViewer/Resources/EnumItem_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/EnumItem_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/EnumItem_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/EnumItem_Protected.bmp b/Users/Orvid/PlugViewer/Resources/EnumItem_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/EnumItem_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/EnumItem_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Enum_Internal.bmp b/Users/Orvid/PlugViewer/Resources/Enum_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Enum_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/Enum_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Enum_Private.bmp b/Users/Orvid/PlugViewer/Resources/Enum_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Enum_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Enum_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Enum_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Enum_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Enum_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Enum_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Error.bmp b/Users/Orvid/PlugViewer/Resources/Error.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Error.bmp
rename to Users/Orvid/PlugViewer/Resources/Error.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Event.bmp b/Users/Orvid/PlugViewer/Resources/Event.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Event.bmp
rename to Users/Orvid/PlugViewer/Resources/Event.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Exception.bmp b/Users/Orvid/PlugViewer/Resources/Exception.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Exception.bmp
rename to Users/Orvid/PlugViewer/Resources/Exception.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Exception_Internal.bmp b/Users/Orvid/PlugViewer/Resources/Exception_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Exception_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/Exception_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Exception_Private.bmp b/Users/Orvid/PlugViewer/Resources/Exception_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Exception_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Exception_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Exception_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Exception_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Exception_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Exception_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Field.bmp b/Users/Orvid/PlugViewer/Resources/Field.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Field.bmp
rename to Users/Orvid/PlugViewer/Resources/Field.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Field_Internal.bmp b/Users/Orvid/PlugViewer/Resources/Field_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Field_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/Field_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Field_Private.bmp b/Users/Orvid/PlugViewer/Resources/Field_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Field_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Field_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Field_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Field_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Field_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Field_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Interface.bmp b/Users/Orvid/PlugViewer/Resources/Interface.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Interface.bmp
rename to Users/Orvid/PlugViewer/Resources/Interface.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/InterfaceImpl.bmp b/Users/Orvid/PlugViewer/Resources/InterfaceImpl.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/InterfaceImpl.bmp
rename to Users/Orvid/PlugViewer/Resources/InterfaceImpl.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/InterfaceImpl_Internal.bmp b/Users/Orvid/PlugViewer/Resources/InterfaceImpl_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/InterfaceImpl_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/InterfaceImpl_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/InterfaceImpl_Private.bmp b/Users/Orvid/PlugViewer/Resources/InterfaceImpl_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/InterfaceImpl_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/InterfaceImpl_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/InterfaceImpl_Protected.bmp b/Users/Orvid/PlugViewer/Resources/InterfaceImpl_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/InterfaceImpl_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/InterfaceImpl_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Interface_Internal.bmp b/Users/Orvid/PlugViewer/Resources/Interface_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Interface_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/Interface_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Interface_Private.bmp b/Users/Orvid/PlugViewer/Resources/Interface_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Interface_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Interface_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Interface_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Interface_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Interface_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Interface_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Library.bmp b/Users/Orvid/PlugViewer/Resources/Library.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Library.bmp
rename to Users/Orvid/PlugViewer/Resources/Library.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Method.bmp b/Users/Orvid/PlugViewer/Resources/Method.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Method.bmp
rename to Users/Orvid/PlugViewer/Resources/Method.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/MethodOverload.bmp b/Users/Orvid/PlugViewer/Resources/MethodOverload.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/MethodOverload.bmp
rename to Users/Orvid/PlugViewer/Resources/MethodOverload.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/MethodOverload_Internal.bmp b/Users/Orvid/PlugViewer/Resources/MethodOverload_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/MethodOverload_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/MethodOverload_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/MethodOverload_Private.bmp b/Users/Orvid/PlugViewer/Resources/MethodOverload_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/MethodOverload_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/MethodOverload_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/MethodOverload_Protected.bmp b/Users/Orvid/PlugViewer/Resources/MethodOverload_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/MethodOverload_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/MethodOverload_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Method_Internal.bmp b/Users/Orvid/PlugViewer/Resources/Method_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Method_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/Method_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Method_Private.bmp b/Users/Orvid/PlugViewer/Resources/Method_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Method_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Method_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Method_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Method_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Method_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Method_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Namespace.bmp b/Users/Orvid/PlugViewer/Resources/Namespace.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Namespace.bmp
rename to Users/Orvid/PlugViewer/Resources/Namespace.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Operator.bmp b/Users/Orvid/PlugViewer/Resources/Operator.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Operator.bmp
rename to Users/Orvid/PlugViewer/Resources/Operator.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Operator_Internal.bmp b/Users/Orvid/PlugViewer/Resources/Operator_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Operator_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/Operator_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Operator_Private.bmp b/Users/Orvid/PlugViewer/Resources/Operator_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Operator_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Operator_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Operator_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Operator_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Operator_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Operator_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Plug.png b/Users/Orvid/PlugViewer/Resources/Plug.png
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Plug.png
rename to Users/Orvid/PlugViewer/Resources/Plug.png
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly.bmp b/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly.bmp
rename to Users/Orvid/PlugViewer/Resources/Properties-ReadOnly.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Internal.bmp b/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Private.bmp b/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Properties-ReadOnly_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Properties.bmp b/Users/Orvid/PlugViewer/Resources/Properties.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Properties.bmp
rename to Users/Orvid/PlugViewer/Resources/Properties.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Properties_Internal.bmp b/Users/Orvid/PlugViewer/Resources/Properties_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Properties_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/Properties_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Properties_Private.bmp b/Users/Orvid/PlugViewer/Resources/Properties_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Properties_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Properties_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Properties_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Properties_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Properties_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Properties_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Structure.bmp b/Users/Orvid/PlugViewer/Resources/Structure.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Structure.bmp
rename to Users/Orvid/PlugViewer/Resources/Structure.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Structure_Internal.bmp b/Users/Orvid/PlugViewer/Resources/Structure_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Structure_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/Structure_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Structure_Private.bmp b/Users/Orvid/PlugViewer/Resources/Structure_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Structure_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Structure_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Structure_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Structure_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Structure_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Structure_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Union.bmp b/Users/Orvid/PlugViewer/Resources/Union.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Union.bmp
rename to Users/Orvid/PlugViewer/Resources/Union.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Union_Internal.bmp b/Users/Orvid/PlugViewer/Resources/Union_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Union_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/Union_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Union_Private.bmp b/Users/Orvid/PlugViewer/Resources/Union_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Union_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/Union_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Union_Protected.bmp b/Users/Orvid/PlugViewer/Resources/Union_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Union_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/Union_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/ValueType.bmp b/Users/Orvid/PlugViewer/Resources/ValueType.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/ValueType.bmp
rename to Users/Orvid/PlugViewer/Resources/ValueType.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/ValueType_Internal.bmp b/Users/Orvid/PlugViewer/Resources/ValueType_Internal.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/ValueType_Internal.bmp
rename to Users/Orvid/PlugViewer/Resources/ValueType_Internal.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/ValueType_Private.bmp b/Users/Orvid/PlugViewer/Resources/ValueType_Private.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/ValueType_Private.bmp
rename to Users/Orvid/PlugViewer/Resources/ValueType_Private.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/ValueType_Protected.bmp b/Users/Orvid/PlugViewer/Resources/ValueType_Protected.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/ValueType_Protected.bmp
rename to Users/Orvid/PlugViewer/Resources/ValueType_Protected.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/Resources/Warning.bmp b/Users/Orvid/PlugViewer/Resources/Warning.bmp
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Resources/Warning.bmp
rename to Users/Orvid/PlugViewer/Resources/Warning.bmp
diff --git a/Cosmos/Users/Orvid/PlugViewer/TestRunner.cs b/Users/Orvid/PlugViewer/TestRunner.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/TestRunner.cs
rename to Users/Orvid/PlugViewer/TestRunner.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/AssemblyTreeNode.cs b/Users/Orvid/PlugViewer/TreeViewNodes/AssemblyTreeNode.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/AssemblyTreeNode.cs
rename to Users/Orvid/PlugViewer/TreeViewNodes/AssemblyTreeNode.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/ClassTreeNode.cs b/Users/Orvid/PlugViewer/TreeViewNodes/ClassTreeNode.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/ClassTreeNode.cs
rename to Users/Orvid/PlugViewer/TreeViewNodes/ClassTreeNode.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/EventTreeNode.cs b/Users/Orvid/PlugViewer/TreeViewNodes/EventTreeNode.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/EventTreeNode.cs
rename to Users/Orvid/PlugViewer/TreeViewNodes/EventTreeNode.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/FieldTreeNode.cs b/Users/Orvid/PlugViewer/TreeViewNodes/FieldTreeNode.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/FieldTreeNode.cs
rename to Users/Orvid/PlugViewer/TreeViewNodes/FieldTreeNode.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/MethodTreeNode.cs b/Users/Orvid/PlugViewer/TreeViewNodes/MethodTreeNode.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/MethodTreeNode.cs
rename to Users/Orvid/PlugViewer/TreeViewNodes/MethodTreeNode.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/ModuleTreeNode.cs b/Users/Orvid/PlugViewer/TreeViewNodes/ModuleTreeNode.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/ModuleTreeNode.cs
rename to Users/Orvid/PlugViewer/TreeViewNodes/ModuleTreeNode.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/NamespaceTreeNode.cs b/Users/Orvid/PlugViewer/TreeViewNodes/NamespaceTreeNode.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/NamespaceTreeNode.cs
rename to Users/Orvid/PlugViewer/TreeViewNodes/NamespaceTreeNode.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/OTreeNode.cs b/Users/Orvid/PlugViewer/TreeViewNodes/OTreeNode.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/OTreeNode.cs
rename to Users/Orvid/PlugViewer/TreeViewNodes/OTreeNode.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/PropertyTreeNode.cs b/Users/Orvid/PlugViewer/TreeViewNodes/PropertyTreeNode.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/TreeViewNodes/PropertyTreeNode.cs
rename to Users/Orvid/PlugViewer/TreeViewNodes/PropertyTreeNode.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/TreeViewSorter.cs b/Users/Orvid/PlugViewer/TreeViewSorter.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/TreeViewSorter.cs
rename to Users/Orvid/PlugViewer/TreeViewSorter.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/Warnings/BaseWarning.cs b/Users/Orvid/PlugViewer/Warnings/BaseWarning.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Warnings/BaseWarning.cs
rename to Users/Orvid/PlugViewer/Warnings/BaseWarning.cs
diff --git a/Cosmos/Users/Orvid/PlugViewer/Warnings/InterfaceUsageWarning.cs b/Users/Orvid/PlugViewer/Warnings/InterfaceUsageWarning.cs
similarity index 100%
rename from Cosmos/Users/Orvid/PlugViewer/Warnings/InterfaceUsageWarning.cs
rename to Users/Orvid/PlugViewer/Warnings/InterfaceUsageWarning.cs
diff --git a/Cosmos/Users/Orvid/StructTest/Kernel.cs b/Users/Orvid/StructTest/Kernel.cs
similarity index 100%
rename from Cosmos/Users/Orvid/StructTest/Kernel.cs
rename to Users/Orvid/StructTest/Kernel.cs
diff --git a/Cosmos/Users/Orvid/StructTest/Logger.cs b/Users/Orvid/StructTest/Logger.cs
similarity index 100%
rename from Cosmos/Users/Orvid/StructTest/Logger.cs
rename to Users/Orvid/StructTest/Logger.cs
diff --git a/Cosmos/Users/Orvid/StructTest/MultiBoot.cs b/Users/Orvid/StructTest/MultiBoot.cs
similarity index 100%
rename from Cosmos/Users/Orvid/StructTest/MultiBoot.cs
rename to Users/Orvid/StructTest/MultiBoot.cs
diff --git a/Cosmos/Users/Orvid/StructTest/Program.cs b/Users/Orvid/StructTest/Program.cs
similarity index 100%
rename from Cosmos/Users/Orvid/StructTest/Program.cs
rename to Users/Orvid/StructTest/Program.cs
diff --git a/Cosmos/Users/Orvid/StructTest/RAM.cs b/Users/Orvid/StructTest/RAM.cs
similarity index 100%
rename from Cosmos/Users/Orvid/StructTest/RAM.cs
rename to Users/Orvid/StructTest/RAM.cs
diff --git a/Cosmos/Users/Orvid/StructTest/SecondaryKernel.cs b/Users/Orvid/StructTest/SecondaryKernel.cs
similarity index 100%
rename from Cosmos/Users/Orvid/StructTest/SecondaryKernel.cs
rename to Users/Orvid/StructTest/SecondaryKernel.cs
diff --git a/Cosmos/Users/Orvid/StructTest/StructTest.Cosmos b/Users/Orvid/StructTest/StructTest.Cosmos
similarity index 100%
rename from Cosmos/Users/Orvid/StructTest/StructTest.Cosmos
rename to Users/Orvid/StructTest/StructTest.Cosmos
diff --git a/Cosmos/Users/Orvid/StructTest/StructTest.sln b/Users/Orvid/StructTest/StructTest.sln
similarity index 100%
rename from Cosmos/Users/Orvid/StructTest/StructTest.sln
rename to Users/Orvid/StructTest/StructTest.sln
diff --git a/Cosmos/Users/Orvid/StructTest/StructTestKernel.csproj b/Users/Orvid/StructTest/StructTestKernel.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/StructTest/StructTestKernel.csproj
rename to Users/Orvid/StructTest/StructTestKernel.csproj
diff --git a/Cosmos/Users/Orvid/TestBed/ExitButton.cs b/Users/Orvid/TestBed/ExitButton.cs
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/ExitButton.cs
rename to Users/Orvid/TestBed/ExitButton.cs
diff --git a/Cosmos/Users/Orvid/TestBed/Form1.Designer.cs b/Users/Orvid/TestBed/Form1.Designer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/Form1.Designer.cs
rename to Users/Orvid/TestBed/Form1.Designer.cs
diff --git a/Cosmos/Users/Orvid/TestBed/Form1.cs b/Users/Orvid/TestBed/Form1.cs
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/Form1.cs
rename to Users/Orvid/TestBed/Form1.cs
diff --git a/Cosmos/Users/Orvid/TestBed/Form1.resx b/Users/Orvid/TestBed/Form1.resx
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/Form1.resx
rename to Users/Orvid/TestBed/Form1.resx
diff --git a/Cosmos/Users/Orvid/TestBed/MS-Sans-Serif_24.FNT b/Users/Orvid/TestBed/MS-Sans-Serif_24.FNT
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/MS-Sans-Serif_24.FNT
rename to Users/Orvid/TestBed/MS-Sans-Serif_24.FNT
diff --git a/Cosmos/Users/Orvid/TestBed/ObjectEvents.cs b/Users/Orvid/TestBed/ObjectEvents.cs
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/ObjectEvents.cs
rename to Users/Orvid/TestBed/ObjectEvents.cs
diff --git a/Cosmos/Users/Orvid/TestBed/Program.cs b/Users/Orvid/TestBed/Program.cs
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/Program.cs
rename to Users/Orvid/TestBed/Program.cs
diff --git a/Cosmos/Users/Orvid/TestBed/Properties/AssemblyInfo.cs b/Users/Orvid/TestBed/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/Properties/AssemblyInfo.cs
rename to Users/Orvid/TestBed/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/TestBed/Properties/Resources.Designer.cs b/Users/Orvid/TestBed/Properties/Resources.Designer.cs
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/Properties/Resources.Designer.cs
rename to Users/Orvid/TestBed/Properties/Resources.Designer.cs
diff --git a/Cosmos/Users/Orvid/ImageManipulatorTester/Properties/Resources.resx b/Users/Orvid/TestBed/Properties/Resources.resx
similarity index 100%
rename from Cosmos/Users/Orvid/ImageManipulatorTester/Properties/Resources.resx
rename to Users/Orvid/TestBed/Properties/Resources.resx
diff --git a/Cosmos/Users/Orvid/TestBed/TestBed.csproj b/Users/Orvid/TestBed/TestBed.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/TestBed.csproj
rename to Users/Orvid/TestBed/TestBed.csproj
diff --git a/Cosmos/Users/Orvid/TestBed/TestBed.sln b/Users/Orvid/TestBed/TestBed.sln
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/TestBed.sln
rename to Users/Orvid/TestBed/TestBed.sln
diff --git a/Cosmos/Users/Orvid/TestBed/Utils.cs b/Users/Orvid/TestBed/Utils.cs
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/Utils.cs
rename to Users/Orvid/TestBed/Utils.cs
diff --git a/Cosmos/Users/Orvid/TestBed/Vera-10.bdf b/Users/Orvid/TestBed/Vera-10.bdf
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/Vera-10.bdf
rename to Users/Orvid/TestBed/Vera-10.bdf
diff --git a/Cosmos/Users/Orvid/TestRunner/Kernel.cs b/Users/Orvid/TestRunner/Kernel.cs
similarity index 100%
rename from Cosmos/Users/Orvid/TestRunner/Kernel.cs
rename to Users/Orvid/TestRunner/Kernel.cs
diff --git a/Cosmos/Users/Orvid/TestRunner/Logger.cs b/Users/Orvid/TestRunner/Logger.cs
similarity index 100%
rename from Cosmos/Users/Orvid/TestRunner/Logger.cs
rename to Users/Orvid/TestRunner/Logger.cs
diff --git a/Cosmos/Users/Orvid/TestRunner/TestRunner.Cosmos b/Users/Orvid/TestRunner/TestRunner.Cosmos
similarity index 100%
rename from Cosmos/Users/Orvid/TestRunner/TestRunner.Cosmos
rename to Users/Orvid/TestRunner/TestRunner.Cosmos
diff --git a/Cosmos/Users/Orvid/TestRunner/TestRunnerKernel.csproj b/Users/Orvid/TestRunner/TestRunnerKernel.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/TestRunner/TestRunnerKernel.csproj
rename to Users/Orvid/TestRunner/TestRunnerKernel.csproj
diff --git a/Cosmos/Users/Orvid/Utils/CharMapGenerator/CharMapGenerator.csproj b/Users/Orvid/Utils/CharMapGenerator/CharMapGenerator.csproj
similarity index 100%
rename from Cosmos/Users/Orvid/Utils/CharMapGenerator/CharMapGenerator.csproj
rename to Users/Orvid/Utils/CharMapGenerator/CharMapGenerator.csproj
diff --git a/Cosmos/Users/Orvid/Utils/CharMapGenerator/Program.cs b/Users/Orvid/Utils/CharMapGenerator/Program.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Utils/CharMapGenerator/Program.cs
rename to Users/Orvid/Utils/CharMapGenerator/Program.cs
diff --git a/Cosmos/Users/Orvid/Utils/CharMapGenerator/Properties/AssemblyInfo.cs b/Users/Orvid/Utils/CharMapGenerator/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Orvid/Utils/CharMapGenerator/Properties/AssemblyInfo.cs
rename to Users/Orvid/Utils/CharMapGenerator/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Orvid/Utils/CharMapGenerator/mappings b/Users/Orvid/Utils/CharMapGenerator/mappings
similarity index 100%
rename from Cosmos/Users/Orvid/Utils/CharMapGenerator/mappings
rename to Users/Orvid/Utils/CharMapGenerator/mappings
diff --git a/Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/GeneralIntegerImpl.Test.csproj b/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/GeneralIntegerImpl.Test.csproj
similarity index 100%
rename from Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/GeneralIntegerImpl.Test.csproj
rename to Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/GeneralIntegerImpl.Test.csproj
diff --git a/Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/Properties/AssemblyInfo.cs b/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/Properties/AssemblyInfo.cs
rename to Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt16.cs b/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt16.cs
similarity index 100%
rename from Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt16.cs
rename to Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt16.cs
diff --git a/Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt32.cs b/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt32.cs
similarity index 100%
rename from Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt32.cs
rename to Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt32.cs
diff --git a/Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt8.cs b/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt8.cs
similarity index 100%
rename from Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt8.cs
rename to Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.Test/UnitTestOfInt8.cs
diff --git a/Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.cs b/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.cs
similarity index 100%
rename from Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.cs
rename to Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.cs
diff --git a/Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.csproj b/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.csproj
similarity index 100%
rename from Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.csproj
rename to Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/GeneralIntegerImpl.csproj
diff --git a/Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/Properties/AssemblyInfo.cs b/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/Properties/AssemblyInfo.cs
rename to Users/Pegasusplus/Cosmos.IL2CPU.Plugs/GeneralIntegerImpl/Properties/AssemblyInfo.cs
diff --git a/Cosmos/Users/ReadMe.txt b/Users/ReadMe.txt
similarity index 100%
rename from Cosmos/Users/ReadMe.txt
rename to Users/ReadMe.txt
diff --git a/Cosmos/Users/SSchocke/SSchockeTest/AssemblyInfo.cs b/Users/SSchocke/SSchockeTest/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/Users/SSchocke/SSchockeTest/AssemblyInfo.cs
rename to Users/SSchocke/SSchockeTest/AssemblyInfo.cs
diff --git a/Cosmos/Users/SSchocke/SSchockeTest/Kernel.cs b/Users/SSchocke/SSchockeTest/Kernel.cs
similarity index 100%
rename from Cosmos/Users/SSchocke/SSchockeTest/Kernel.cs
rename to Users/SSchocke/SSchockeTest/Kernel.cs
diff --git a/Cosmos/Users/SSchocke/SSchockeTest/Map.cs b/Users/SSchocke/SSchockeTest/Map.cs
similarity index 100%
rename from Cosmos/Users/SSchocke/SSchockeTest/Map.cs
rename to Users/SSchocke/SSchockeTest/Map.cs
diff --git a/Cosmos/Users/SSchocke/SSchockeTest/SSchockeTest.csproj b/Users/SSchocke/SSchockeTest/SSchockeTest.csproj
similarity index 100%
rename from Cosmos/Users/SSchocke/SSchockeTest/SSchockeTest.csproj
rename to Users/SSchocke/SSchockeTest/SSchockeTest.csproj
diff --git a/Cosmos/Users/SSchocke/SSchockeTest/SSchockeTestBoot.Cosmos b/Users/SSchocke/SSchockeTest/SSchockeTestBoot.Cosmos
similarity index 100%
rename from Cosmos/Users/SSchocke/SSchockeTest/SSchockeTestBoot.Cosmos
rename to Users/SSchocke/SSchockeTest/SSchockeTestBoot.Cosmos
diff --git a/Cosmos/install-VS2017.bat b/install-VS2017.bat
similarity index 100%
rename from Cosmos/install-VS2017.bat
rename to install-VS2017.bat
diff --git a/Cosmos/nuget.config b/nuget.config
similarity index 100%
rename from Cosmos/nuget.config
rename to nuget.config
diff --git a/Cosmos/source/Archive/Cosmos.Assembler.Nasm/Assembler.cs b/source/Archive/Cosmos.Assembler.Nasm/Assembler.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Assembler.Nasm/Assembler.cs
rename to source/Archive/Cosmos.Assembler.Nasm/Assembler.cs
diff --git a/Cosmos/source/Archive/Cosmos.Assembler.Nasm/Cosmos.Assembler.Nasm.csproj b/source/Archive/Cosmos.Assembler.Nasm/Cosmos.Assembler.Nasm.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Assembler.Nasm/Cosmos.Assembler.Nasm.csproj
rename to source/Archive/Cosmos.Assembler.Nasm/Cosmos.Assembler.Nasm.csproj
diff --git a/Cosmos/source/Archive/Cosmos.Assembler.Nasm/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.Assembler.Nasm/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Assembler.Nasm/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.Assembler.Nasm/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Drivers/Cosmos.Drivers.csproj b/source/Archive/Cosmos.Drivers/Cosmos.Drivers.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Drivers/Cosmos.Drivers.csproj
rename to source/Archive/Cosmos.Drivers/Cosmos.Drivers.csproj
diff --git a/Cosmos/source/Archive/Cosmos.Drivers/Driver.cs b/source/Archive/Cosmos.Drivers/Driver.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Drivers/Driver.cs
rename to source/Archive/Cosmos.Drivers/Driver.cs
diff --git a/Cosmos/source/Archive/Cosmos.Drivers/HardwareManager.cs b/source/Archive/Cosmos.Drivers/HardwareManager.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Drivers/HardwareManager.cs
rename to source/Archive/Cosmos.Drivers/HardwareManager.cs
diff --git a/Cosmos/source/Archive/Cosmos.Drivers/PCI/PCIDriver.cs b/source/Archive/Cosmos.Drivers/PCI/PCIDriver.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Drivers/PCI/PCIDriver.cs
rename to source/Archive/Cosmos.Drivers/PCI/PCIDriver.cs
diff --git a/Cosmos/source/Archive/Cosmos.Drivers/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.Drivers/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Drivers/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.Drivers/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Drivers/Properties/Resources.Designer.cs b/source/Archive/Cosmos.Drivers/Properties/Resources.Designer.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Drivers/Properties/Resources.Designer.cs
rename to source/Archive/Cosmos.Drivers/Properties/Resources.Designer.cs
diff --git a/Cosmos/Users/Orvid/TestBed/Properties/Resources.resx b/source/Archive/Cosmos.Drivers/Properties/Resources.resx
similarity index 100%
rename from Cosmos/Users/Orvid/TestBed/Properties/Resources.resx
rename to source/Archive/Cosmos.Drivers/Properties/Resources.resx
diff --git a/Cosmos/source/Archive/Cosmos.Drivers/Properties/Settings.Designer.cs b/source/Archive/Cosmos.Drivers/Properties/Settings.Designer.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Drivers/Properties/Settings.Designer.cs
rename to source/Archive/Cosmos.Drivers/Properties/Settings.Designer.cs
diff --git a/Cosmos/source/Archive/Cosmos.Drivers/Storage/FileSystem.cs b/source/Archive/Cosmos.Drivers/Storage/FileSystem.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Drivers/Storage/FileSystem.cs
rename to source/Archive/Cosmos.Drivers/Storage/FileSystem.cs
diff --git a/Cosmos/source/Archive/Cosmos.Drivers/Storage/Storage.cs b/source/Archive/Cosmos.Drivers/Storage/Storage.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Drivers/Storage/Storage.cs
rename to source/Archive/Cosmos.Drivers/Storage/Storage.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/Cosmos.Hardware.SMBIOS.csproj b/source/Archive/Cosmos.Hardware.SMBIOS/Cosmos.Hardware.SMBIOS.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/Cosmos.Hardware.SMBIOS.csproj
rename to source/Archive/Cosmos.Hardware.SMBIOS/Cosmos.Hardware.SMBIOS.csproj
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.Hardware.SMBIOS/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/BaseInfo.cs b/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/BaseInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/BaseInfo.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/BaseInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/BaseTable.cs b/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/BaseTable.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/BaseTable.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/BaseTable.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Classes/BIOSInformation.cs b/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Classes/BIOSInformation.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Classes/BIOSInformation.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Classes/BIOSInformation.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Classes/ProcessorInformation.cs b/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Classes/ProcessorInformation.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Classes/ProcessorInformation.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Classes/ProcessorInformation.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Enums/TableTypes.cs b/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Enums/TableTypes.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Enums/TableTypes.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Enums/TableTypes.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IBIOSInformation.cs b/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IBIOSInformation.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IBIOSInformation.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IBIOSInformation.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IHardwareType.cs b/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IHardwareType.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IHardwareType.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IHardwareType.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IProcessorInformation.cs b/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IProcessorInformation.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IProcessorInformation.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/Interfaces/IProcessorInformation.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/SMBIOS Base.cs b/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/SMBIOS Base.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/SMBIOS Base.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/SMBIOS Base.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/TableFactory.cs b/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/TableFactory.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/TableFactory.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS Tables/TableFactory.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS.cs b/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/SMBIOS.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/TODO.txt b/source/Archive/Cosmos.Hardware.SMBIOS/TODO.txt
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/TODO.txt
rename to source/Archive/Cosmos.Hardware.SMBIOS/TODO.txt
diff --git a/Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/TestProgram.cs b/source/Archive/Cosmos.Hardware.SMBIOS/TestProgram.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware.SMBIOS/TestProgram.cs
rename to source/Archive/Cosmos.Hardware.SMBIOS/TestProgram.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/ACPIManager.cs b/source/Archive/Cosmos.Hardware/ACPIManager.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/ACPIManager.cs
rename to source/Archive/Cosmos.Hardware/ACPIManager.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/ATA.cs b/source/Archive/Cosmos.Hardware/ATA.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/ATA.cs
rename to source/Archive/Cosmos.Hardware/ATA.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Components/DACak4531.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Components/DACak4531.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Components/DACak4531.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Components/DACak4531.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/ES1370.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/ES1370.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/ES1370.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/ES1370.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Managers/AK4531Manager.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Managers/AK4531Manager.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Managers/AK4531Manager.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Managers/AK4531Manager.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/CommandRegister.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/CommandRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/CommandRegister.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/CommandRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/ControlRegister.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/ControlRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/ControlRegister.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/ControlRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/InterruptStatusRegister.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/InterruptStatusRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/InterruptStatusRegister.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/InterruptStatusRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/MainRegister.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/MainRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/MainRegister.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/MainRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/SerialInterfaceRegister.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/SerialInterfaceRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/SerialInterfaceRegister.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/SerialInterfaceRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/UARTInterfaceRegister.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/UARTInterfaceRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/UARTInterfaceRegister.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/UARTInterfaceRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/UartFIFORegister.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/UartFIFORegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/UartFIFORegister.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/ES1370/Registers/UartFIFORegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/ADCEntity.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/ADCEntity.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/ADCEntity.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/ADCEntity.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/DACEntity.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/DACEntity.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/DACEntity.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/DACEntity.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/UARTEntity.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/UARTEntity.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/UARTEntity.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Components/UARTEntity.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/GenericSoundCard.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/GenericSoundCard.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/GenericSoundCard.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/Generic/GenericSoundCard.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/ADCManager.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/ADCManager.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/ADCManager.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/ADCManager.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/DACManager.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/DACManager.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/DACManager.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/DACManager.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/UARTManager.cs b/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/UARTManager.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/UARTManager.cs
rename to source/Archive/Cosmos.Hardware/Audio/Devices/Generic/Managers/UARTManager.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Audio/PCMStream.cs b/source/Archive/Cosmos.Hardware/Audio/PCMStream.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Audio/PCMStream.cs
rename to source/Archive/Cosmos.Hardware/Audio/PCMStream.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/BinaryHelper.cs b/source/Archive/Cosmos.Hardware/BinaryHelper.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/BinaryHelper.cs
rename to source/Archive/Cosmos.Hardware/BinaryHelper.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/BlockDevice.cs b/source/Archive/Cosmos.Hardware/BlockDevice.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/BlockDevice.cs
rename to source/Archive/Cosmos.Hardware/BlockDevice.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Cosmos.Hardware2.csproj b/source/Archive/Cosmos.Hardware/Cosmos.Hardware2.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Cosmos.Hardware2.csproj
rename to source/Archive/Cosmos.Hardware/Cosmos.Hardware2.csproj
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Device.cs b/source/Archive/Cosmos.Hardware/Device.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Device.cs
rename to source/Archive/Cosmos.Hardware/Device.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/DeviceSerial.cs b/source/Archive/Cosmos.Hardware/DeviceSerial.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/DeviceSerial.cs
rename to source/Archive/Cosmos.Hardware/DeviceSerial.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Enums.cs b/source/Archive/Cosmos.Hardware/Enums.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Enums.cs
rename to source/Archive/Cosmos.Hardware/Enums.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Global.cs b/source/Archive/Cosmos.Hardware/Global.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Global.cs
rename to source/Archive/Cosmos.Hardware/Global.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Hardware.cs b/source/Archive/Cosmos.Hardware/Hardware.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Hardware.cs
rename to source/Archive/Cosmos.Hardware/Hardware.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Mouse.cs b/source/Archive/Cosmos.Hardware/Mouse.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Mouse.cs
rename to source/Archive/Cosmos.Hardware/Mouse.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/AMDPCNetII/AMDPCNet.cs b/source/Archive/Cosmos.Hardware/Network/Devices/AMDPCNetII/AMDPCNet.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/AMDPCNetII/AMDPCNet.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/AMDPCNetII/AMDPCNet.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139/RTL8139.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139/RTL8139.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139/RTL8139.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139/RTL8139.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/BinaryHelper.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/BinaryHelper.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/BinaryHelper.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/BinaryHelper.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Packet.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Packet.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Packet.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Packet.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/PacketHeader.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/PacketHeader.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/PacketHeader.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/PacketHeader.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/RTL8139_Old.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/RTL8139_Old.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/RTL8139_Old.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/RTL8139_Old.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/CommandRegister.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/CommandRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/CommandRegister.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/CommandRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ConfigurationRegister1.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ConfigurationRegister1.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ConfigurationRegister1.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ConfigurationRegister1.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/EarlyRxStatusRegister.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/EarlyRxStatusRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/EarlyRxStatusRegister.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/EarlyRxStatusRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/InterruptMaskRegister.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/InterruptMaskRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/InterruptMaskRegister.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/InterruptMaskRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/InterruptStatusRegister.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/InterruptStatusRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/InterruptStatusRegister.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/InterruptStatusRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/MainRegister.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/MainRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/MainRegister.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/MainRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/MediaStatusRegister.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/MediaStatusRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/MediaStatusRegister.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/MediaStatusRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ReceiveConfigurationRegister.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ReceiveConfigurationRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ReceiveConfigurationRegister.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ReceiveConfigurationRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/TransmitConfigurationRegister.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/TransmitConfigurationRegister.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/TransmitConfigurationRegister.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/TransmitConfigurationRegister.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/TransmitStatusDescriptor.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/TransmitStatusDescriptor.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/TransmitStatusDescriptor.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/TransmitStatusDescriptor.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ValueTypeRegisters.cs b/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ValueTypeRegisters.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ValueTypeRegisters.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/RTL8139Old/Register/ValueTypeRegisters.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/ViaRhine/VT6102.cs b/source/Archive/Cosmos.Hardware/Network/Devices/ViaRhine/VT6102.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/Devices/ViaRhine/VT6102.cs
rename to source/Archive/Cosmos.Hardware/Network/Devices/ViaRhine/VT6102.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/MACAddress.cs b/source/Archive/Cosmos.Hardware/Network/MACAddress.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/MACAddress.cs
rename to source/Archive/Cosmos.Hardware/Network/MACAddress.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/NetworkDevice.cs b/source/Archive/Cosmos.Hardware/Network/NetworkDevice.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/NetworkDevice.cs
rename to source/Archive/Cosmos.Hardware/Network/NetworkDevice.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/TCPIPModel/Ethernet2Frame.cs b/source/Archive/Cosmos.Hardware/Network/TCPIPModel/Ethernet2Frame.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/TCPIPModel/Ethernet2Frame.cs
rename to source/Archive/Cosmos.Hardware/Network/TCPIPModel/Ethernet2Frame.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/TCPIPModel/IPv4Address.cs b/source/Archive/Cosmos.Hardware/Network/TCPIPModel/IPv4Address.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/TCPIPModel/IPv4Address.cs
rename to source/Archive/Cosmos.Hardware/Network/TCPIPModel/IPv4Address.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Network/TCPIPModel/IPv4Packet.cs b/source/Archive/Cosmos.Hardware/Network/TCPIPModel/IPv4Packet.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Network/TCPIPModel/IPv4Packet.cs
rename to source/Archive/Cosmos.Hardware/Network/TCPIPModel/IPv4Packet.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/OldTempDictionary.cs b/source/Archive/Cosmos.Hardware/OldTempDictionary.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/OldTempDictionary.cs
rename to source/Archive/Cosmos.Hardware/OldTempDictionary.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/PCIBus.cs b/source/Archive/Cosmos.Hardware/PCIBus.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/PCIBus.cs
rename to source/Archive/Cosmos.Hardware/PCIBus.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.Hardware/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.Hardware/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/RTC.cs b/source/Archive/Cosmos.Hardware/RTC.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/RTC.cs
rename to source/Archive/Cosmos.Hardware/RTC.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/Serial.cs b/source/Archive/Cosmos.Hardware/Serial.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/Serial.cs
rename to source/Archive/Cosmos.Hardware/Serial.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/USB/USBHost.cs b/source/Archive/Cosmos.Hardware/USB/USBHost.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/USB/USBHost.cs
rename to source/Archive/Cosmos.Hardware/USB/USBHost.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/USB/USBHostOHCI.cs b/source/Archive/Cosmos.Hardware/USB/USBHostOHCI.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/USB/USBHostOHCI.cs
rename to source/Archive/Cosmos.Hardware/USB/USBHostOHCI.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/USB/USBHostOHCIRegisters.cs b/source/Archive/Cosmos.Hardware/USB/USBHostOHCIRegisters.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/USB/USBHostOHCIRegisters.cs
rename to source/Archive/Cosmos.Hardware/USB/USBHostOHCIRegisters.cs
diff --git a/Cosmos/source/Archive/Cosmos.Hardware/VGAScreen.cs b/source/Archive/Cosmos.Hardware/VGAScreen.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Hardware/VGAScreen.cs
rename to source/Archive/Cosmos.Hardware/VGAScreen.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/Cosmos.Sys.FileSystem.csproj b/source/Archive/Cosmos.Kernel.FileSystems/Cosmos.Sys.FileSystem.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/Cosmos.Sys.FileSystem.csproj
rename to source/Archive/Cosmos.Kernel.FileSystems/Cosmos.Sys.FileSystem.csproj
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/DebugUtil.cs b/source/Archive/Cosmos.Kernel.FileSystems/DebugUtil.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/DebugUtil.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/DebugUtil.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/Ext2/Ext2.Structs.cs b/source/Archive/Cosmos.Kernel.FileSystems/Ext2/Ext2.Structs.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/Ext2/Ext2.Structs.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/Ext2/Ext2.Structs.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/Ext2/Ext2.cs b/source/Archive/Cosmos.Kernel.FileSystems/Ext2/Ext2.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/Ext2/Ext2.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/Ext2/Ext2.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/BootSector.cs b/source/Archive/Cosmos.Kernel.FileSystems/FAT32/BootSector.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/BootSector.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/FAT32/BootSector.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/DirectoryTable.cs b/source/Archive/Cosmos.Kernel.FileSystems/FAT32/DirectoryTable.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/DirectoryTable.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/FAT32/DirectoryTable.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FAT.cs b/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FAT.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FAT.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/FAT32/FAT.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FATStream.cs b/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FATStream.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FATStream.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/FAT32/FATStream.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FileAllocationTable.cs b/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FileAllocationTable.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FileAllocationTable.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/FAT32/FileAllocationTable.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FileSystemInfo32.cs b/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FileSystemInfo32.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FAT32/FileSystemInfo32.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/FAT32/FileSystemInfo32.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FileSystem_Old.cs b/source/Archive/Cosmos.Kernel.FileSystems/FileSystem_Old.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/FileSystem_Old.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/FileSystem_Old.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/Filesystem.cs b/source/Archive/Cosmos.Kernel.FileSystems/Filesystem.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/Filesystem.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/Filesystem.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/MBR.cs b/source/Archive/Cosmos.Kernel.FileSystems/MBR.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/MBR.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/MBR.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/MBT.cs b/source/Archive/Cosmos.Kernel.FileSystems/MBT.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/MBT.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/MBT.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.FileSystems/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.Kernel.FileSystems/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.FileSystems/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.Kernel.FileSystems/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Cosmos.Kernel.LogTail.csproj b/source/Archive/Cosmos.Kernel.LogTail/Cosmos.Kernel.LogTail.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Cosmos.Kernel.LogTail.csproj
rename to source/Archive/Cosmos.Kernel.LogTail/Cosmos.Kernel.LogTail.csproj
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/ErrorStrippingFileStream.cs b/source/Archive/Cosmos.Kernel.LogTail/ErrorStrippingFileStream.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/ErrorStrippingFileStream.cs
rename to source/Archive/Cosmos.Kernel.LogTail/ErrorStrippingFileStream.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.Designer.cs b/source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.Designer.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.Designer.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.Designer.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.cs b/source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.resx b/source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.resx
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.resx
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/HeapLogHandler.resx
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/LogHandler.Designer.cs b/source/Archive/Cosmos.Kernel.LogTail/Handlers/LogHandler.Designer.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/LogHandler.Designer.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/LogHandler.Designer.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/LogHandler.cs b/source/Archive/Cosmos.Kernel.LogTail/Handlers/LogHandler.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/LogHandler.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/LogHandler.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/LogMessage.cs b/source/Archive/Cosmos.Kernel.LogTail/Handlers/LogMessage.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/LogMessage.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/LogMessage.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.Designer.cs b/source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.Designer.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.Designer.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.Designer.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.cs b/source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.resx b/source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.resx
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.resx
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/MessageLogHandler.resx
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.Designer.cs b/source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.Designer.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.Designer.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.Designer.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.cs b/source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.resx b/source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.resx
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.resx
rename to source/Archive/Cosmos.Kernel.LogTail/Handlers/TestLogHandler.resx
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/MainForm.Designer.cs b/source/Archive/Cosmos.Kernel.LogTail/MainForm.Designer.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/MainForm.Designer.cs
rename to source/Archive/Cosmos.Kernel.LogTail/MainForm.Designer.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/MainForm.cs b/source/Archive/Cosmos.Kernel.LogTail/MainForm.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/MainForm.cs
rename to source/Archive/Cosmos.Kernel.LogTail/MainForm.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/MainForm.resx b/source/Archive/Cosmos.Kernel.LogTail/MainForm.resx
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/MainForm.resx
rename to source/Archive/Cosmos.Kernel.LogTail/MainForm.resx
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Program.cs b/source/Archive/Cosmos.Kernel.LogTail/Program.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Program.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Program.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.Kernel.LogTail/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Properties/Resources.Designer.cs b/source/Archive/Cosmos.Kernel.LogTail/Properties/Resources.Designer.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Properties/Resources.Designer.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Properties/Resources.Designer.cs
diff --git a/Cosmos/source/Archive/Cosmos.Drivers/Properties/Resources.resx b/source/Archive/Cosmos.Kernel.LogTail/Properties/Resources.resx
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Drivers/Properties/Resources.resx
rename to source/Archive/Cosmos.Kernel.LogTail/Properties/Resources.resx
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Properties/Settings.Designer.cs b/source/Archive/Cosmos.Kernel.LogTail/Properties/Settings.Designer.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Properties/Settings.Designer.cs
rename to source/Archive/Cosmos.Kernel.LogTail/Properties/Settings.Designer.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/CPUID.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/CPUID.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/CPUID.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/CPUID.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisableInterrupts.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisableInterrupts.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisableInterrupts.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisableInterrupts.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisablePSE.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisablePSE.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisablePSE.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisablePSE.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisablePaging.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisablePaging.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisablePaging.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/DisablePaging.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnableInterrupts.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnableInterrupts.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnableInterrupts.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnableInterrupts.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnablePSE.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnablePSE.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnablePSE.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnablePSE.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnablePaging.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnablePaging.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnablePaging.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/EnablePaging.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetAmountOfRAM.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetAmountOfRAM.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetAmountOfRAM.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetAmountOfRAM.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetCurrentESP.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetCurrentESP.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetCurrentESP.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetCurrentESP.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetMBIAddress.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetMBIAddress.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetMBIAddress.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/GetMBIAddress.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/InitFloat.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/InitFloat.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/InitFloat.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/InitFloat.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/SetPageDirectory.cs b/source/Archive/Cosmos.Kernel.Plugs/Assemblers/SetPageDirectory.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Assemblers/SetPageDirectory.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Assemblers/SetPageDirectory.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Cosmos.Kernel.Plugs.csproj b/source/Archive/Cosmos.Kernel.Plugs/Cosmos.Kernel.Plugs.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Cosmos.Kernel.Plugs.csproj
rename to source/Archive/Cosmos.Kernel.Plugs/Cosmos.Kernel.Plugs.csproj
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/GCImplementationImpl.cs b/source/Archive/Cosmos.Kernel.Plugs/GCImplementationImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/GCImplementationImpl.cs
rename to source/Archive/Cosmos.Kernel.Plugs/GCImplementationImpl.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/HeapImpl.cs b/source/Archive/Cosmos.Kernel.Plugs/HeapImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/HeapImpl.cs
rename to source/Archive/Cosmos.Kernel.Plugs/HeapImpl.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Interlocked.cs b/source/Archive/Cosmos.Kernel.Plugs/Interlocked.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Interlocked.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Interlocked.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/PagingUtilityImpl.cs b/source/Archive/Cosmos.Kernel.Plugs/PagingUtilityImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/PagingUtilityImpl.cs
rename to source/Archive/Cosmos.Kernel.Plugs/PagingUtilityImpl.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.Kernel.Plugs/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.Kernel.Plugs/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.Plugs/ThreadImpl.cs b/source/Archive/Cosmos.Kernel.Plugs/ThreadImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.Plugs/ThreadImpl.cs
rename to source/Archive/Cosmos.Kernel.Plugs/ThreadImpl.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/AddressSpace.cs b/source/Archive/Cosmos.Kernel/AddressSpace.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/AddressSpace.cs
rename to source/Archive/Cosmos.Kernel/AddressSpace.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/CPU.cs b/source/Archive/Cosmos.Kernel/CPU.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/CPU.cs
rename to source/Archive/Cosmos.Kernel/CPU.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/CPUBus.cs b/source/Archive/Cosmos.Kernel/CPUBus.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/CPUBus.cs
rename to source/Archive/Cosmos.Kernel/CPUBus.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/Cosmos.Kernel.csproj b/source/Archive/Cosmos.Kernel/Cosmos.Kernel.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/Cosmos.Kernel.csproj
rename to source/Archive/Cosmos.Kernel/Cosmos.Kernel.csproj
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/Extension/Binary.cs b/source/Archive/Cosmos.Kernel/Extension/Binary.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/Extension/Binary.cs
rename to source/Archive/Cosmos.Kernel/Extension/Binary.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/GC.cs b/source/Archive/Cosmos.Kernel/GC.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/GC.cs
rename to source/Archive/Cosmos.Kernel/GC.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/Global.cs b/source/Archive/Cosmos.Kernel/Global.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/Global.cs
rename to source/Archive/Cosmos.Kernel/Global.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/Heap.cs b/source/Archive/Cosmos.Kernel/Heap.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/Heap.cs
rename to source/Archive/Cosmos.Kernel/Heap.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/IOAddressSpace.cs b/source/Archive/Cosmos.Kernel/IOAddressSpace.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/IOAddressSpace.cs
rename to source/Archive/Cosmos.Kernel/IOAddressSpace.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/KPaging/PagingStructs.cs b/source/Archive/Cosmos.Kernel/KPaging/PagingStructs.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/KPaging/PagingStructs.cs
rename to source/Archive/Cosmos.Kernel/KPaging/PagingStructs.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/KPaging/PagingUtility.cs b/source/Archive/Cosmos.Kernel/KPaging/PagingUtility.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/KPaging/PagingUtility.cs
rename to source/Archive/Cosmos.Kernel/KPaging/PagingUtility.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/ManagedMemory/ManagedByteArray.cs b/source/Archive/Cosmos.Kernel/ManagedMemory/ManagedByteArray.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/ManagedMemory/ManagedByteArray.cs
rename to source/Archive/Cosmos.Kernel/ManagedMemory/ManagedByteArray.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/ManagedMemory/ManagedUInt32Array.cs b/source/Archive/Cosmos.Kernel/ManagedMemory/ManagedUInt32Array.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/ManagedMemory/ManagedUInt32Array.cs
rename to source/Archive/Cosmos.Kernel/ManagedMemory/ManagedUInt32Array.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/ManagedMemorySpace.cs b/source/Archive/Cosmos.Kernel/ManagedMemorySpace.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/ManagedMemorySpace.cs
rename to source/Archive/Cosmos.Kernel/ManagedMemorySpace.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/MemoryAddressSpace.cs b/source/Archive/Cosmos.Kernel/MemoryAddressSpace.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/MemoryAddressSpace.cs
rename to source/Archive/Cosmos.Kernel/MemoryAddressSpace.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.Kernel/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.Kernel/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/BreakCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/BreakCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/BreakCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/BreakCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/ClsCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/ClsCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/ClsCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/ClsCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/CommandBase.cs b/source/Archive/Cosmos.Shell.Console/Commands/CommandBase.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/CommandBase.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/CommandBase.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/DirCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/DirCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/DirCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/DirCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/EchoCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/EchoCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/EchoCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/EchoCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/ExitCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/ExitCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/ExitCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/ExitCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/FailCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/FailCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/FailCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/FailCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/HelpCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/HelpCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/HelpCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/HelpCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/LspciCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/LspciCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/LspciCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/LspciCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/MountCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/MountCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/MountCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/MountCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/TimeCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/TimeCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/TimeCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/TimeCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/TypeCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/TypeCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/TypeCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/TypeCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Commands/VersionCommand.cs b/source/Archive/Cosmos.Shell.Console/Commands/VersionCommand.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Commands/VersionCommand.cs
rename to source/Archive/Cosmos.Shell.Console/Commands/VersionCommand.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Cosmos.Demo.Shell.csproj b/source/Archive/Cosmos.Shell.Console/Cosmos.Demo.Shell.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Cosmos.Demo.Shell.csproj
rename to source/Archive/Cosmos.Shell.Console/Cosmos.Demo.Shell.csproj
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Program.cs b/source/Archive/Cosmos.Shell.Console/Program.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Program.cs
rename to source/Archive/Cosmos.Shell.Console/Program.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Prompter.cs b/source/Archive/Cosmos.Shell.Console/Prompter.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Prompter.cs
rename to source/Archive/Cosmos.Shell.Console/Prompter.cs
diff --git a/Cosmos/source/Archive/Cosmos.Shell.Console/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.Shell.Console/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Shell.Console/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.Shell.Console/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeControlInfoAssembler.cs b/source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeControlInfoAssembler.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeControlInfoAssembler.cs
rename to source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeControlInfoAssembler.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeModeAssembler.cs b/source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeModeAssembler.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeModeAssembler.cs
rename to source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeModeAssembler.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeModeInfoAssembler.cs b/source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeModeInfoAssembler.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeModeInfoAssembler.cs
rename to source/Archive/Cosmos.Sys.Plugs/Assemblers/GetVbeModeInfoAssembler.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/Assemblers/Reboot.cs b/source/Archive/Cosmos.Sys.Plugs/Assemblers/Reboot.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/Assemblers/Reboot.cs
rename to source/Archive/Cosmos.Sys.Plugs/Assemblers/Reboot.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/Assemblers/Shutdown.cs b/source/Archive/Cosmos.Sys.Plugs/Assemblers/Shutdown.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/Assemblers/Shutdown.cs
rename to source/Archive/Cosmos.Sys.Plugs/Assemblers/Shutdown.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/BootInfo.cs b/source/Archive/Cosmos.Sys.Plugs/BootInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/BootInfo.cs
rename to source/Archive/Cosmos.Sys.Plugs/BootInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/Cosmos.Sys.Plugs.csproj b/source/Archive/Cosmos.Sys.Plugs/Cosmos.Sys.Plugs.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/Cosmos.Sys.Plugs.csproj
rename to source/Archive/Cosmos.Sys.Plugs/Cosmos.Sys.Plugs.csproj
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/Deboot.cs b/source/Archive/Cosmos.Sys.Plugs/Deboot.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/Deboot.cs
rename to source/Archive/Cosmos.Sys.Plugs/Deboot.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.Sys.Plugs/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.Sys.Plugs/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/DirectoryImpl.cs b/source/Archive/Cosmos.Sys.Plugs/VFS/DirectoryImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/DirectoryImpl.cs
rename to source/Archive/Cosmos.Sys.Plugs/VFS/DirectoryImpl.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/DirectoryInfoImpl.cs b/source/Archive/Cosmos.Sys.Plugs/VFS/DirectoryInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/DirectoryInfoImpl.cs
rename to source/Archive/Cosmos.Sys.Plugs/VFS/DirectoryInfoImpl.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/DriveInfoImpl.cs b/source/Archive/Cosmos.Sys.Plugs/VFS/DriveInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/DriveInfoImpl.cs
rename to source/Archive/Cosmos.Sys.Plugs/VFS/DriveInfoImpl.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/FileImpl.cs b/source/Archive/Cosmos.Sys.Plugs/VFS/FileImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/FileImpl.cs
rename to source/Archive/Cosmos.Sys.Plugs/VFS/FileImpl.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/FileInfoImpl.cs b/source/Archive/Cosmos.Sys.Plugs/VFS/FileInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/FileInfoImpl.cs
rename to source/Archive/Cosmos.Sys.Plugs/VFS/FileInfoImpl.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/FileSystemInfoImpl.cs b/source/Archive/Cosmos.Sys.Plugs/VFS/FileSystemInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/FileSystemInfoImpl.cs
rename to source/Archive/Cosmos.Sys.Plugs/VFS/FileSystemInfoImpl.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/PathImpl.cs b/source/Archive/Cosmos.Sys.Plugs/VFS/PathImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys.Plugs/VFS/PathImpl.cs
rename to source/Archive/Cosmos.Sys.Plugs/VFS/PathImpl.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Boot.cs b/source/Archive/Cosmos.Sys/Boot.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Boot.cs
rename to source/Archive/Cosmos.Sys/Boot.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/BootInfo.cs b/source/Archive/Cosmos.Sys/BootInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/BootInfo.cs
rename to source/Archive/Cosmos.Sys/BootInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Cosmos.Sys.csproj b/source/Archive/Cosmos.Sys/Cosmos.Sys.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Cosmos.Sys.csproj
rename to source/Archive/Cosmos.Sys/Cosmos.Sys.csproj
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Deboot.cs b/source/Archive/Cosmos.Sys/Deboot.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Deboot.cs
rename to source/Archive/Cosmos.Sys/Deboot.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Global.cs b/source/Archive/Cosmos.Sys/Global.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Global.cs
rename to source/Archive/Cosmos.Sys/Global.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/ChadTCPIP/EthernetPacket.cs b/source/Archive/Cosmos.Sys/Network/ChadTCPIP/EthernetPacket.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/ChadTCPIP/EthernetPacket.cs
rename to source/Archive/Cosmos.Sys/Network/ChadTCPIP/EthernetPacket.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/ChadTCPIP/ICMPPacket.cs b/source/Archive/Cosmos.Sys/Network/ChadTCPIP/ICMPPacket.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/ChadTCPIP/ICMPPacket.cs
rename to source/Archive/Cosmos.Sys/Network/ChadTCPIP/ICMPPacket.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/ChadTCPIP/IP4Packet.cs b/source/Archive/Cosmos.Sys/Network/ChadTCPIP/IP4Packet.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/ChadTCPIP/IP4Packet.cs
rename to source/Archive/Cosmos.Sys/Network/ChadTCPIP/IP4Packet.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/ChadTCPIP/Packet.cs b/source/Archive/Cosmos.Sys/Network/ChadTCPIP/Packet.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/ChadTCPIP/Packet.cs
rename to source/Archive/Cosmos.Sys/Network/ChadTCPIP/Packet.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/ChadTCPIP/UDPPacket.cs b/source/Archive/Cosmos.Sys/Network/ChadTCPIP/UDPPacket.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/ChadTCPIP/UDPPacket.cs
rename to source/Archive/Cosmos.Sys/Network/ChadTCPIP/UDPPacket.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/IPv4Address.cs b/source/Archive/Cosmos.Sys/Network/IPv4Address.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/IPv4Address.cs
rename to source/Archive/Cosmos.Sys/Network/IPv4Address.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/IPv4Config.cs b/source/Archive/Cosmos.Sys/Network/IPv4Config.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/IPv4Config.cs
rename to source/Archive/Cosmos.Sys/Network/IPv4Config.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/IPv4EndPoint.cs b/source/Archive/Cosmos.Sys/Network/IPv4EndPoint.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/IPv4EndPoint.cs
rename to source/Archive/Cosmos.Sys/Network/IPv4EndPoint.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPCache.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPCache.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPCache.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPCache.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPPacket.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPPacket.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPPacket.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPPacket.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPPacket_EthernetIPv4.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPPacket_EthernetIPv4.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPPacket_EthernetIPv4.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPPacket_EthernetIPv4.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPReply_EthernetIPv4.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPReply_EthernetIPv4.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPReply_EthernetIPv4.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPReply_EthernetIPv4.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPRequest_EthernetIPv4.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPRequest_EthernetIPv4.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPRequest_EthernetIPv4.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/ARP/ARPRequest_EthernetIPv4.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/EthernetPacket.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/EthernetPacket.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/EthernetPacket.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/EthernetPacket.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPEchoReply.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPEchoReply.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPEchoReply.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPEchoReply.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPEchoRequest.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPEchoRequest.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPEchoRequest.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPEchoRequest.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPPacket.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPPacket.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPPacket.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/ICMP/ICMPPacket.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/IPPacket.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/IPPacket.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/IPPacket.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/IPPacket.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/IPv4OutgoingBuffer.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/IPv4OutgoingBuffer.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/IPv4OutgoingBuffer.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/IPv4OutgoingBuffer.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/TCP/TCPConnection.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/TCP/TCPConnection.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/TCP/TCPConnection.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/TCP/TCPConnection.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/TCP/TCPPacket.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/TCP/TCPPacket.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/TCP/TCPPacket.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/TCP/TCPPacket.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/UDP/UDPPacket.cs b/source/Archive/Cosmos.Sys/Network/TCPIP/UDP/UDPPacket.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIP/UDP/UDPPacket.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIP/UDP/UDPPacket.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TCPIPStack.cs b/source/Archive/Cosmos.Sys/Network/TCPIPStack.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TCPIPStack.cs
rename to source/Archive/Cosmos.Sys/Network/TCPIPStack.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Network/TcpClient.cs b/source/Archive/Cosmos.Sys/Network/TcpClient.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Network/TcpClient.cs
rename to source/Archive/Cosmos.Sys/Network/TcpClient.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.Sys/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.Sys/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Cosmos.Sys/VFSManager.cs b/source/Archive/Cosmos.Sys/VFSManager.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Sys/VFSManager.cs
rename to source/Archive/Cosmos.Sys/VFSManager.cs
diff --git a/Cosmos/source/Archive/Cosmos.VS.DummyHost/Cosmos.VS.DummyHost.csproj b/source/Archive/Cosmos.VS.DummyHost/Cosmos.VS.DummyHost.csproj
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.VS.DummyHost/Cosmos.VS.DummyHost.csproj
rename to source/Archive/Cosmos.VS.DummyHost/Cosmos.VS.DummyHost.csproj
diff --git a/Cosmos/source/Archive/Cosmos.VS.DummyHost/Program.cs b/source/Archive/Cosmos.VS.DummyHost/Program.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.VS.DummyHost/Program.cs
rename to source/Archive/Cosmos.VS.DummyHost/Program.cs
diff --git a/Cosmos/source/Archive/Cosmos.VS.DummyHost/Properties/AssemblyInfo.cs b/source/Archive/Cosmos.VS.DummyHost/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.VS.DummyHost/Properties/AssemblyInfo.cs
rename to source/Archive/Cosmos.VS.DummyHost/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/BooleanImpl.cs b/source/Archive/Old System Plugs/BooleanImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/BooleanImpl.cs
rename to source/Archive/Old System Plugs/BooleanImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/CharImpl.cs b/source/Archive/Old System Plugs/CharImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/CharImpl.cs
rename to source/Archive/Old System Plugs/CharImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Collections/Generic/EqualityComparerImpl.cs b/source/Archive/Old System Plugs/Collections/Generic/EqualityComparerImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Collections/Generic/EqualityComparerImpl.cs
rename to source/Archive/Old System Plugs/Collections/Generic/EqualityComparerImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/DecimalImpl.cs b/source/Archive/Old System Plugs/DecimalImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/DecimalImpl.cs
rename to source/Archive/Old System Plugs/DecimalImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/DictionaryImpl.cs b/source/Archive/Old System Plugs/DictionaryImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/DictionaryImpl.cs
rename to source/Archive/Old System Plugs/DictionaryImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Drawing/ColorImpl.cs b/source/Archive/Old System Plugs/Drawing/ColorImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Drawing/ColorImpl.cs
rename to source/Archive/Old System Plugs/Drawing/ColorImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Drawing/SRImpl.cs b/source/Archive/Old System Plugs/Drawing/SRImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Drawing/SRImpl.cs
rename to source/Archive/Old System Plugs/Drawing/SRImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Globalization/CultureInfoImpl.cs b/source/Archive/Old System Plugs/Globalization/CultureInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Globalization/CultureInfoImpl.cs
rename to source/Archive/Old System Plugs/Globalization/CultureInfoImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/IO/DirectoryInfoImpl.cs b/source/Archive/Old System Plugs/IO/DirectoryInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/IO/DirectoryInfoImpl.cs
rename to source/Archive/Old System Plugs/IO/DirectoryInfoImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/IO/DriveInfoImpl.cs b/source/Archive/Old System Plugs/IO/DriveInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/IO/DriveInfoImpl.cs
rename to source/Archive/Old System Plugs/IO/DriveInfoImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/IO/ErrorImpl.cs b/source/Archive/Old System Plugs/IO/ErrorImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/IO/ErrorImpl.cs
rename to source/Archive/Old System Plugs/IO/ErrorImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/IO/FileInfoImpl.cs b/source/Archive/Old System Plugs/IO/FileInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/IO/FileInfoImpl.cs
rename to source/Archive/Old System Plugs/IO/FileInfoImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/IO/FileSystemInfoImpl.cs b/source/Archive/Old System Plugs/IO/FileSystemInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/IO/FileSystemInfoImpl.cs
rename to source/Archive/Old System Plugs/IO/FileSystemInfoImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/IO/StreamReaderImpl.cs b/source/Archive/Old System Plugs/IO/StreamReaderImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/IO/StreamReaderImpl.cs
rename to source/Archive/Old System Plugs/IO/StreamReaderImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Mda.cs b/source/Archive/Old System Plugs/Mda.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Mda.cs
rename to source/Archive/Old System Plugs/Mda.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Net/IPAddressImpl.cs b/source/Archive/Old System Plugs/Net/IPAddressImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Net/IPAddressImpl.cs
rename to source/Archive/Old System Plugs/Net/IPAddressImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Net/SocketAddressImpl.cs b/source/Archive/Old System Plugs/Net/SocketAddressImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Net/SocketAddressImpl.cs
rename to source/Archive/Old System Plugs/Net/SocketAddressImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/NumberImpl.cs b/source/Archive/Old System Plugs/NumberImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/NumberImpl.cs
rename to source/Archive/Old System Plugs/NumberImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Runtime/Compilerservices/runtimehelpersImpl.cs b/source/Archive/Old System Plugs/Runtime/Compilerservices/runtimehelpersImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Runtime/Compilerservices/runtimehelpersImpl.cs
rename to source/Archive/Old System Plugs/Runtime/Compilerservices/runtimehelpersImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/RuntimeTypeImpl.cs b/source/Archive/Old System Plugs/RuntimeTypeImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/RuntimeTypeImpl.cs
rename to source/Archive/Old System Plugs/RuntimeTypeImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/SRImpl.cs b/source/Archive/Old System Plugs/SRImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/SRImpl.cs
rename to source/Archive/Old System Plugs/SRImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Security/CodeAccessSecurityEngineImpl.cs b/source/Archive/Old System Plugs/Security/CodeAccessSecurityEngineImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Security/CodeAccessSecurityEngineImpl.cs
rename to source/Archive/Old System Plugs/Security/CodeAccessSecurityEngineImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Security/Cryptography/CryptoConfigImpl.cs b/source/Archive/Old System Plugs/Security/Cryptography/CryptoConfigImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Security/Cryptography/CryptoConfigImpl.cs
rename to source/Archive/Old System Plugs/Security/Cryptography/CryptoConfigImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Security/Cryptography/UtilsImpl.cs b/source/Archive/Old System Plugs/Security/Cryptography/UtilsImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Security/Cryptography/UtilsImpl.cs
rename to source/Archive/Old System Plugs/Security/Cryptography/UtilsImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Security/Permissions/FileIOPermissionImpl.cs b/source/Archive/Old System Plugs/Security/Permissions/FileIOPermissionImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Security/Permissions/FileIOPermissionImpl.cs
rename to source/Archive/Old System Plugs/Security/Permissions/FileIOPermissionImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Security/SecurityElementImpl.cs b/source/Archive/Old System Plugs/Security/SecurityElementImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Security/SecurityElementImpl.cs
rename to source/Archive/Old System Plugs/Security/SecurityElementImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Text/ASCIIEncodingImpl.cs b/source/Archive/Old System Plugs/Text/ASCIIEncodingImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Text/ASCIIEncodingImpl.cs
rename to source/Archive/Old System Plugs/Text/ASCIIEncodingImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Text/DecoderFallbackImpl.cs b/source/Archive/Old System Plugs/Text/DecoderFallbackImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Text/DecoderFallbackImpl.cs
rename to source/Archive/Old System Plugs/Text/DecoderFallbackImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Text/EncoderFallbackImpl.cs b/source/Archive/Old System Plugs/Text/EncoderFallbackImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Text/EncoderFallbackImpl.cs
rename to source/Archive/Old System Plugs/Text/EncoderFallbackImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Text/InternalDecoderBestFitFallbackBufferImpl.cs b/source/Archive/Old System Plugs/Text/InternalDecoderBestFitFallbackBufferImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Text/InternalDecoderBestFitFallbackBufferImpl.cs
rename to source/Archive/Old System Plugs/Text/InternalDecoderBestFitFallbackBufferImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/Threading/MonitorImpl.cs b/source/Archive/Old System Plugs/Threading/MonitorImpl.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/Threading/MonitorImpl.cs
rename to source/Archive/Old System Plugs/Threading/MonitorImpl.cs
diff --git a/Cosmos/source/Archive/Old System Plugs/WindowsInsiderPlugs.cs b/source/Archive/Old System Plugs/WindowsInsiderPlugs.cs
similarity index 100%
rename from Cosmos/source/Archive/Old System Plugs/WindowsInsiderPlugs.cs
rename to source/Archive/Old System Plugs/WindowsInsiderPlugs.cs
diff --git a/Cosmos/source/Archive/VMWareLib/App.config b/source/Archive/VMWareLib/App.config
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/App.config
rename to source/Archive/VMWareLib/App.config
diff --git a/Cosmos/source/Archive/VMWareLib/AssemblyInfo.cs b/source/Archive/VMWareLib/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/AssemblyInfo.cs
rename to source/Archive/VMWareLib/AssemblyInfo.cs
diff --git a/Cosmos/source/Archive/VMWareLib/BuildNotes.html b/source/Archive/VMWareLib/BuildNotes.html
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/BuildNotes.html
rename to source/Archive/VMWareLib/BuildNotes.html
diff --git a/Cosmos/source/Archive/VMWareLib/GlobalAssemblyInfo.cs b/source/Archive/VMWareLib/GlobalAssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/GlobalAssemblyInfo.cs
rename to source/Archive/VMWareLib/GlobalAssemblyInfo.cs
diff --git a/Cosmos/source/Archive/VMWareLib/License.txt b/source/Archive/VMWareLib/License.txt
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/License.txt
rename to source/Archive/VMWareLib/License.txt
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareException.cs b/source/Archive/VMWareLib/VMWareException.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareException.cs
rename to source/Archive/VMWareLib/VMWareException.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareInterop.cs b/source/Archive/VMWareLib/VMWareInterop.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareInterop.cs
rename to source/Archive/VMWareLib/VMWareInterop.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareJob.cs b/source/Archive/VMWareLib/VMWareJob.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareJob.cs
rename to source/Archive/VMWareLib/VMWareJob.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareJobCallback.cs b/source/Archive/VMWareLib/VMWareJobCallback.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareJobCallback.cs
rename to source/Archive/VMWareLib/VMWareJobCallback.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareLib.csproj b/source/Archive/VMWareLib/VMWareLib.csproj
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareLib.csproj
rename to source/Archive/VMWareLib/VMWareLib.csproj
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareLib.snk b/source/Archive/VMWareLib/VMWareLib.snk
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareLib.snk
rename to source/Archive/VMWareLib/VMWareLib.snk
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareProcessCollection.cs b/source/Archive/VMWareLib/VMWareProcessCollection.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareProcessCollection.cs
rename to source/Archive/VMWareLib/VMWareProcessCollection.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareRootSnapshotCollection.cs b/source/Archive/VMWareLib/VMWareRootSnapshotCollection.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareRootSnapshotCollection.cs
rename to source/Archive/VMWareLib/VMWareRootSnapshotCollection.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareSharedFolder.cs b/source/Archive/VMWareLib/VMWareSharedFolder.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareSharedFolder.cs
rename to source/Archive/VMWareLib/VMWareSharedFolder.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareSharedFolderCollection.cs b/source/Archive/VMWareLib/VMWareSharedFolderCollection.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareSharedFolderCollection.cs
rename to source/Archive/VMWareLib/VMWareSharedFolderCollection.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareSnapshot.cs b/source/Archive/VMWareLib/VMWareSnapshot.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareSnapshot.cs
rename to source/Archive/VMWareLib/VMWareSnapshot.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareSnapshotCollection.cs b/source/Archive/VMWareLib/VMWareSnapshotCollection.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareSnapshotCollection.cs
rename to source/Archive/VMWareLib/VMWareSnapshotCollection.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareTimeouts.cs b/source/Archive/VMWareLib/VMWareTimeouts.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareTimeouts.cs
rename to source/Archive/VMWareLib/VMWareTimeouts.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareVirtualHost.cs b/source/Archive/VMWareLib/VMWareVirtualHost.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareVirtualHost.cs
rename to source/Archive/VMWareLib/VMWareVirtualHost.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareVirtualMachine.cs b/source/Archive/VMWareLib/VMWareVirtualMachine.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareVirtualMachine.cs
rename to source/Archive/VMWareLib/VMWareVirtualMachine.cs
diff --git a/Cosmos/source/Archive/VMWareLib/VMWareVixHandle.cs b/source/Archive/VMWareLib/VMWareVixHandle.cs
similarity index 100%
rename from Cosmos/source/Archive/VMWareLib/VMWareVixHandle.cs
rename to source/Archive/VMWareLib/VMWareVixHandle.cs
diff --git a/Cosmos/source/Cosmos.Build.Builder/.editorconfig b/source/Cosmos.Build.Builder/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/.editorconfig
rename to source/Cosmos.Build.Builder/.editorconfig
diff --git a/Cosmos/source/Cosmos.Build.Builder/App.xaml b/source/Cosmos.Build.Builder/App.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/App.xaml
rename to source/Cosmos.Build.Builder/App.xaml
diff --git a/Cosmos/source/Cosmos.Build.Builder/App.xaml.cs b/source/Cosmos.Build.Builder/App.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/App.xaml.cs
rename to source/Cosmos.Build.Builder/App.xaml.cs
diff --git a/Cosmos/source/Cosmos.Build.Builder/BuildState.cs b/source/Cosmos.Build.Builder/BuildState.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/BuildState.cs
rename to source/Cosmos.Build.Builder/BuildState.cs
diff --git a/Cosmos/source/Cosmos.Build.Builder/Cosmos.Build.Builder.csproj b/source/Cosmos.Build.Builder/Cosmos.Build.Builder.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/Cosmos.Build.Builder.csproj
rename to source/Cosmos.Build.Builder/Cosmos.Build.Builder.csproj
diff --git a/Cosmos/source/Cosmos.Build.Builder/Cosmos.ico b/source/Cosmos.Build.Builder/Cosmos.ico
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/Cosmos.ico
rename to source/Cosmos.Build.Builder/Cosmos.ico
diff --git a/Cosmos/source/Cosmos.Build.Builder/CosmosTask.cs b/source/Cosmos.Build.Builder/CosmosTask.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/CosmosTask.cs
rename to source/Cosmos.Build.Builder/CosmosTask.cs
diff --git a/Cosmos/source/Cosmos.Build.Builder/FileMgr.cs b/source/Cosmos.Build.Builder/FileMgr.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/FileMgr.cs
rename to source/Cosmos.Build.Builder/FileMgr.cs
diff --git a/Cosmos/source/Cosmos.Build.Builder/MainWindow.xaml b/source/Cosmos.Build.Builder/MainWindow.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/MainWindow.xaml
rename to source/Cosmos.Build.Builder/MainWindow.xaml
diff --git a/Cosmos/source/Cosmos.Build.Builder/MainWindow.xaml.cs b/source/Cosmos.Build.Builder/MainWindow.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/MainWindow.xaml.cs
rename to source/Cosmos.Build.Builder/MainWindow.xaml.cs
diff --git a/Cosmos/source/Cosmos.Build.Builder/Properties/AssemblyInfo.cs b/source/Cosmos.Build.Builder/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/Properties/AssemblyInfo.cs
rename to source/Cosmos.Build.Builder/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.Build.Builder/Properties/Settings.Designer.cs b/source/Cosmos.Build.Builder/Properties/Settings.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/Properties/Settings.Designer.cs
rename to source/Cosmos.Build.Builder/Properties/Settings.Designer.cs
diff --git a/Cosmos/source/Cosmos.Build.Builder/Properties/Settings.settings b/source/Cosmos.Build.Builder/Properties/Settings.settings
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/Properties/Settings.settings
rename to source/Cosmos.Build.Builder/Properties/Settings.settings
diff --git a/Cosmos/source/Cosmos.Build.Builder/app.config b/source/Cosmos.Build.Builder/app.config
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/app.config
rename to source/Cosmos.Build.Builder/app.config
diff --git a/Cosmos/source/Cosmos.Build.Builder/packages.config b/source/Cosmos.Build.Builder/packages.config
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Builder/packages.config
rename to source/Cosmos.Build.Builder/packages.config
diff --git a/Cosmos/source/Cosmos.Build.Common/BinFormat.cs b/source/Cosmos.Build.Common/BinFormat.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/BinFormat.cs
rename to source/Cosmos.Build.Common/BinFormat.cs
diff --git a/Cosmos/source/Cosmos.Build.Common/BuildProperties.cs b/source/Cosmos.Build.Common/BuildProperties.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/BuildProperties.cs
rename to source/Cosmos.Build.Common/BuildProperties.cs
diff --git a/Cosmos/source/Cosmos.Build.Common/BuildPropertyNames.cs b/source/Cosmos.Build.Common/BuildPropertyNames.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/BuildPropertyNames.cs
rename to source/Cosmos.Build.Common/BuildPropertyNames.cs
diff --git a/Cosmos/source/Cosmos.Build.Common/Cosmos.Build.Common.csproj b/source/Cosmos.Build.Common/Cosmos.Build.Common.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/Cosmos.Build.Common.csproj
rename to source/Cosmos.Build.Common/Cosmos.Build.Common.csproj
diff --git a/Cosmos/source/Cosmos.Build.Common/CosmosPaths.cs b/source/Cosmos.Build.Common/CosmosPaths.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/CosmosPaths.cs
rename to source/Cosmos.Build.Common/CosmosPaths.cs
diff --git a/Cosmos/source/Cosmos.Build.Common/EnumValue.cs b/source/Cosmos.Build.Common/EnumValue.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/EnumValue.cs
rename to source/Cosmos.Build.Common/EnumValue.cs
diff --git a/Cosmos/source/Cosmos.Build.Common/Enums.cs b/source/Cosmos.Build.Common/Enums.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/Enums.cs
rename to source/Cosmos.Build.Common/Enums.cs
diff --git a/Cosmos/source/Cosmos.Build.Common/ExtensionMethods.cs b/source/Cosmos.Build.Common/ExtensionMethods.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/ExtensionMethods.cs
rename to source/Cosmos.Build.Common/ExtensionMethods.cs
diff --git a/Cosmos/source/Cosmos.Build.Common/IsoMaker.cs b/source/Cosmos.Build.Common/IsoMaker.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/IsoMaker.cs
rename to source/Cosmos.Build.Common/IsoMaker.cs
diff --git a/Cosmos/source/Cosmos.Build.Common/ProcessExtension.cs b/source/Cosmos.Build.Common/ProcessExtension.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/ProcessExtension.cs
rename to source/Cosmos.Build.Common/ProcessExtension.cs
diff --git a/Cosmos/source/Cosmos.Build.Common/PropertiesBase.cs b/source/Cosmos.Build.Common/PropertiesBase.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/PropertiesBase.cs
rename to source/Cosmos.Build.Common/PropertiesBase.cs
diff --git a/Cosmos/source/Cosmos.Build.Common/UsbMaker.cs b/source/Cosmos.Build.Common/UsbMaker.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Common/UsbMaker.cs
rename to source/Cosmos.Build.Common/UsbMaker.cs
diff --git a/Cosmos/source/Cosmos.Build.Installer/.editorconfig b/source/Cosmos.Build.Installer/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Installer/.editorconfig
rename to source/Cosmos.Build.Installer/.editorconfig
diff --git a/Cosmos/source/Cosmos.Build.Installer/Cosmos.Build.Installer.csproj b/source/Cosmos.Build.Installer/Cosmos.Build.Installer.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Installer/Cosmos.Build.Installer.csproj
rename to source/Cosmos.Build.Installer/Cosmos.Build.Installer.csproj
diff --git a/Cosmos/source/Cosmos.Build.Installer/Log.cs b/source/Cosmos.Build.Installer/Log.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Installer/Log.cs
rename to source/Cosmos.Build.Installer/Log.cs
diff --git a/Cosmos/source/Cosmos.Build.Installer/Paths.cs b/source/Cosmos.Build.Installer/Paths.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Installer/Paths.cs
rename to source/Cosmos.Build.Installer/Paths.cs
diff --git a/Cosmos/source/Cosmos.Build.Installer/Properties/AssemblyInfo.cs b/source/Cosmos.Build.Installer/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Installer/Properties/AssemblyInfo.cs
rename to source/Cosmos.Build.Installer/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.Build.Installer/Task.cs b/source/Cosmos.Build.Installer/Task.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Installer/Task.cs
rename to source/Cosmos.Build.Installer/Task.cs
diff --git a/Cosmos/source/Cosmos.Build.Installer/VsVersion.cs b/source/Cosmos.Build.Installer/VsVersion.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Installer/VsVersion.cs
rename to source/Cosmos.Build.Installer/VsVersion.cs
diff --git a/Cosmos/source/Cosmos.Build.Installer/packages.config b/source/Cosmos.Build.Installer/packages.config
similarity index 100%
rename from Cosmos/source/Cosmos.Build.Installer/packages.config
rename to source/Cosmos.Build.Installer/packages.config
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/.editorconfig b/source/Cosmos.Build.MSBuild/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/.editorconfig
rename to source/Cosmos.Build.MSBuild/.editorconfig
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/BaseToolTask.cs b/source/Cosmos.Build.MSBuild/BaseToolTask.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/BaseToolTask.cs
rename to source/Cosmos.Build.MSBuild/BaseToolTask.cs
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/Cosmos.Build.MSBuild.csproj b/source/Cosmos.Build.MSBuild/Cosmos.Build.MSBuild.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/Cosmos.Build.MSBuild.csproj
rename to source/Cosmos.Build.MSBuild/Cosmos.Build.MSBuild.csproj
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/Cosmos.targets b/source/Cosmos.Build.MSBuild/Cosmos.targets
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/Cosmos.targets
rename to source/Cosmos.Build.MSBuild/Cosmos.targets
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/ExtractMapFromElfFile.cs b/source/Cosmos.Build.MSBuild/ExtractMapFromElfFile.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/ExtractMapFromElfFile.cs
rename to source/Cosmos.Build.MSBuild/ExtractMapFromElfFile.cs
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/IL2CPU.cs b/source/Cosmos.Build.MSBuild/IL2CPU.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/IL2CPU.cs
rename to source/Cosmos.Build.MSBuild/IL2CPU.cs
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/Ld.cs b/source/Cosmos.Build.MSBuild/Ld.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/Ld.cs
rename to source/Cosmos.Build.MSBuild/Ld.cs
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/MakeISO.cs b/source/Cosmos.Build.MSBuild/MakeISO.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/MakeISO.cs
rename to source/Cosmos.Build.MSBuild/MakeISO.cs
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/NAsm.cs b/source/Cosmos.Build.MSBuild/NAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/NAsm.cs
rename to source/Cosmos.Build.MSBuild/NAsm.cs
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/NAsmTask.cs b/source/Cosmos.Build.MSBuild/NAsmTask.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/NAsmTask.cs
rename to source/Cosmos.Build.MSBuild/NAsmTask.cs
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/ReadNAsmMapToDebugInfo.cs b/source/Cosmos.Build.MSBuild/ReadNAsmMapToDebugInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/ReadNAsmMapToDebugInfo.cs
rename to source/Cosmos.Build.MSBuild/ReadNAsmMapToDebugInfo.cs
diff --git a/Cosmos/source/Cosmos.Build.MSBuild/TheRingMaster.cs b/source/Cosmos.Build.MSBuild/TheRingMaster.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Build.MSBuild/TheRingMaster.cs
rename to source/Cosmos.Build.MSBuild/TheRingMaster.cs
diff --git a/Cosmos/source/Cosmos.Common.ReadMe.html b/source/Cosmos.Common.ReadMe.html
similarity index 100%
rename from Cosmos/source/Cosmos.Common.ReadMe.html
rename to source/Cosmos.Common.ReadMe.html
diff --git a/Cosmos/source/Cosmos.Common/.editorconfig b/source/Cosmos.Common/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.Common/.editorconfig
rename to source/Cosmos.Common/.editorconfig
diff --git a/Cosmos/source/Cosmos.Common/BinaryHelper.cs b/source/Cosmos.Common/BinaryHelper.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Common/BinaryHelper.cs
rename to source/Cosmos.Common/BinaryHelper.cs
diff --git a/Cosmos/source/Cosmos.Common/ByteToString.cs b/source/Cosmos.Common/ByteToString.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Common/ByteToString.cs
rename to source/Cosmos.Common/ByteToString.cs
diff --git a/Cosmos/source/Cosmos.Common/Cosmos.Common.csproj b/source/Cosmos.Common/Cosmos.Common.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Common/Cosmos.Common.csproj
rename to source/Cosmos.Common/Cosmos.Common.csproj
diff --git a/Cosmos/source/Cosmos.Common/Extensions/ByteConverter.cs b/source/Cosmos.Common/Extensions/ByteConverter.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Common/Extensions/ByteConverter.cs
rename to source/Cosmos.Common/Extensions/ByteConverter.cs
diff --git a/Cosmos/source/Cosmos.Common/Extensions/ToHexString.cs b/source/Cosmos.Common/Extensions/ToHexString.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Common/Extensions/ToHexString.cs
rename to source/Cosmos.Common/Extensions/ToHexString.cs
diff --git a/Cosmos/source/Cosmos.Common/NumberHelper.cs b/source/Cosmos.Common/NumberHelper.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Common/NumberHelper.cs
rename to source/Cosmos.Common/NumberHelper.cs
diff --git a/Cosmos/source/Cosmos.Common/ReadMe.txt b/source/Cosmos.Common/ReadMe.txt
similarity index 100%
rename from Cosmos/source/Cosmos.Common/ReadMe.txt
rename to source/Cosmos.Common/ReadMe.txt
diff --git a/Cosmos/source/Cosmos.Common/StringHelper.cs b/source/Cosmos.Common/StringHelper.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Common/StringHelper.cs
rename to source/Cosmos.Common/StringHelper.cs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/.editorconfig b/source/Cosmos.Core.DebugStub/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/.editorconfig
rename to source/Cosmos.Core.DebugStub/.editorconfig
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/AsmBreak.asm b/source/Cosmos.Core.DebugStub/AsmBreak.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/AsmBreak.asm
rename to source/Cosmos.Core.DebugStub/AsmBreak.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/AsmBreak.xs b/source/Cosmos.Core.DebugStub/AsmBreak.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/AsmBreak.xs
rename to source/Cosmos.Core.DebugStub/AsmBreak.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/CmdMisc.asm b/source/Cosmos.Core.DebugStub/CmdMisc.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/CmdMisc.asm
rename to source/Cosmos.Core.DebugStub/CmdMisc.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/CmdMisc.xs b/source/Cosmos.Core.DebugStub/CmdMisc.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/CmdMisc.xs
rename to source/Cosmos.Core.DebugStub/CmdMisc.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/CmdProcess.asm b/source/Cosmos.Core.DebugStub/CmdProcess.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/CmdProcess.asm
rename to source/Cosmos.Core.DebugStub/CmdProcess.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/CmdProcess.xs b/source/Cosmos.Core.DebugStub/CmdProcess.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/CmdProcess.xs
rename to source/Cosmos.Core.DebugStub/CmdProcess.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/CmdSend.asm b/source/Cosmos.Core.DebugStub/CmdSend.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/CmdSend.asm
rename to source/Cosmos.Core.DebugStub/CmdSend.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/CmdSend.xs b/source/Cosmos.Core.DebugStub/CmdSend.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/CmdSend.xs
rename to source/Cosmos.Core.DebugStub/CmdSend.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/Consts.asm b/source/Cosmos.Core.DebugStub/Consts.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/Consts.asm
rename to source/Cosmos.Core.DebugStub/Consts.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/Consts.xs b/source/Cosmos.Core.DebugStub/Consts.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/Consts.xs
rename to source/Cosmos.Core.DebugStub/Consts.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/Cosmos.Core.DebugStub.csproj b/source/Cosmos.Core.DebugStub/Cosmos.Core.DebugStub.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/Cosmos.Core.DebugStub.csproj
rename to source/Cosmos.Core.DebugStub/Cosmos.Core.DebugStub.csproj
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/DebugStub.asm b/source/Cosmos.Core.DebugStub/DebugStub.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/DebugStub.asm
rename to source/Cosmos.Core.DebugStub/DebugStub.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/DebugStub.xs b/source/Cosmos.Core.DebugStub/DebugStub.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/DebugStub.xs
rename to source/Cosmos.Core.DebugStub/DebugStub.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/Init.asm b/source/Cosmos.Core.DebugStub/Init.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/Init.asm
rename to source/Cosmos.Core.DebugStub/Init.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/Init.xs b/source/Cosmos.Core.DebugStub/Init.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/Init.xs
rename to source/Cosmos.Core.DebugStub/Init.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/ReferenceHelper.cs b/source/Cosmos.Core.DebugStub/ReferenceHelper.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/ReferenceHelper.cs
rename to source/Cosmos.Core.DebugStub/ReferenceHelper.cs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/Screen.asm b/source/Cosmos.Core.DebugStub/Screen.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/Screen.asm
rename to source/Cosmos.Core.DebugStub/Screen.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/Screen.xs b/source/Cosmos.Core.DebugStub/Screen.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/Screen.xs
rename to source/Cosmos.Core.DebugStub/Screen.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/Serial.asm b/source/Cosmos.Core.DebugStub/Serial.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/Serial.asm
rename to source/Cosmos.Core.DebugStub/Serial.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/Serial.xs b/source/Cosmos.Core.DebugStub/Serial.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/Serial.xs
rename to source/Cosmos.Core.DebugStub/Serial.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/SerialHelpers.asm b/source/Cosmos.Core.DebugStub/SerialHelpers.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/SerialHelpers.asm
rename to source/Cosmos.Core.DebugStub/SerialHelpers.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/SerialHelpers.xs b/source/Cosmos.Core.DebugStub/SerialHelpers.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/SerialHelpers.xs
rename to source/Cosmos.Core.DebugStub/SerialHelpers.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/SerialIO.asm b/source/Cosmos.Core.DebugStub/SerialIO.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/SerialIO.asm
rename to source/Cosmos.Core.DebugStub/SerialIO.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/SerialIO.xs b/source/Cosmos.Core.DebugStub/SerialIO.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/SerialIO.xs
rename to source/Cosmos.Core.DebugStub/SerialIO.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/TracerEntry.asm b/source/Cosmos.Core.DebugStub/TracerEntry.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/TracerEntry.asm
rename to source/Cosmos.Core.DebugStub/TracerEntry.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/TracerEntry.xs b/source/Cosmos.Core.DebugStub/TracerEntry.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/TracerEntry.xs
rename to source/Cosmos.Core.DebugStub/TracerEntry.xs
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/Utilities.asm b/source/Cosmos.Core.DebugStub/Utilities.asm
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/Utilities.asm
rename to source/Cosmos.Core.DebugStub/Utilities.asm
diff --git a/Cosmos/source/Cosmos.Core.DebugStub/Utilities.xs b/source/Cosmos.Core.DebugStub/Utilities.xs
similarity index 100%
rename from Cosmos/source/Cosmos.Core.DebugStub/Utilities.xs
rename to source/Cosmos.Core.DebugStub/Utilities.xs
diff --git a/Cosmos/source/Cosmos.Core/.editorconfig b/source/Cosmos.Core/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.Core/.editorconfig
rename to source/Cosmos.Core/.editorconfig
diff --git a/Cosmos/source/Cosmos.Core/ACPI.cs b/source/Cosmos.Core/ACPI.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/ACPI.cs
rename to source/Cosmos.Core/ACPI.cs
diff --git a/Cosmos/source/Cosmos.Core/BaseIOGroups.cs b/source/Cosmos.Core/BaseIOGroups.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/BaseIOGroups.cs
rename to source/Cosmos.Core/BaseIOGroups.cs
diff --git a/Cosmos/source/Cosmos.Core/Bootstrap.cs b/source/Cosmos.Core/Bootstrap.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Bootstrap.cs
rename to source/Cosmos.Core/Bootstrap.cs
diff --git a/Cosmos/source/Cosmos.Core/CPU.cs b/source/Cosmos.Core/CPU.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/CPU.cs
rename to source/Cosmos.Core/CPU.cs
diff --git a/Cosmos/source/Cosmos.Core/Cosmos.Core.csproj b/source/Cosmos.Core/Cosmos.Core.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Cosmos.Core.csproj
rename to source/Cosmos.Core/Cosmos.Core.csproj
diff --git a/Cosmos/source/Cosmos.Core/DeviceIDAttribute.cs b/source/Cosmos.Core/DeviceIDAttribute.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/DeviceIDAttribute.cs
rename to source/Cosmos.Core/DeviceIDAttribute.cs
diff --git a/Cosmos/source/Cosmos.Core/GCImplementation.cs b/source/Cosmos.Core/GCImplementation.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/GCImplementation.cs
rename to source/Cosmos.Core/GCImplementation.cs
diff --git a/Cosmos/source/Cosmos.Core/Global.cs b/source/Cosmos.Core/Global.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Global.cs
rename to source/Cosmos.Core/Global.cs
diff --git a/Cosmos/source/Cosmos.Core/INTs.cs b/source/Cosmos.Core/INTs.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/INTs.cs
rename to source/Cosmos.Core/INTs.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/ATA.cs b/source/Cosmos.Core/IOGroup/ATA.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/ATA.cs
rename to source/Cosmos.Core/IOGroup/ATA.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/COM.cs b/source/Cosmos.Core/IOGroup/COM.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/COM.cs
rename to source/Cosmos.Core/IOGroup/COM.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/IOGroup.cs b/source/Cosmos.Core/IOGroup/IOGroup.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/IOGroup.cs
rename to source/Cosmos.Core/IOGroup/IOGroup.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/Keyboard.cs b/source/Cosmos.Core/IOGroup/Keyboard.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/Keyboard.cs
rename to source/Cosmos.Core/IOGroup/Keyboard.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/Mouse.cs b/source/Cosmos.Core/IOGroup/Mouse.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/Mouse.cs
rename to source/Cosmos.Core/IOGroup/Mouse.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/Network/AMDPCNetIIIOGroup.cs b/source/Cosmos.Core/IOGroup/Network/AMDPCNetIIIOGroup.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/Network/AMDPCNetIIIOGroup.cs
rename to source/Cosmos.Core/IOGroup/Network/AMDPCNetIIIOGroup.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/PCI.cs b/source/Cosmos.Core/IOGroup/PCI.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/PCI.cs
rename to source/Cosmos.Core/IOGroup/PCI.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/PCSpeaker.cs b/source/Cosmos.Core/IOGroup/PCSpeaker.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/PCSpeaker.cs
rename to source/Cosmos.Core/IOGroup/PCSpeaker.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/PIC.cs b/source/Cosmos.Core/IOGroup/PIC.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/PIC.cs
rename to source/Cosmos.Core/IOGroup/PIC.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/PIT.cs b/source/Cosmos.Core/IOGroup/PIT.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/PIT.cs
rename to source/Cosmos.Core/IOGroup/PIT.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/RTC.cs b/source/Cosmos.Core/IOGroup/RTC.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/RTC.cs
rename to source/Cosmos.Core/IOGroup/RTC.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/TextScreen.cs b/source/Cosmos.Core/IOGroup/TextScreen.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/TextScreen.cs
rename to source/Cosmos.Core/IOGroup/TextScreen.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/VBE.cs b/source/Cosmos.Core/IOGroup/VBE.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/VBE.cs
rename to source/Cosmos.Core/IOGroup/VBE.cs
diff --git a/Cosmos/source/Cosmos.Core/IOGroup/VGA.cs b/source/Cosmos.Core/IOGroup/VGA.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOGroup/VGA.cs
rename to source/Cosmos.Core/IOGroup/VGA.cs
diff --git a/Cosmos/source/Cosmos.Core/IOPort.cs b/source/Cosmos.Core/IOPort.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/IOPort.cs
rename to source/Cosmos.Core/IOPort.cs
diff --git a/Cosmos/source/Cosmos.Core/ManagedMemoryBlock.cs b/source/Cosmos.Core/ManagedMemoryBlock.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/ManagedMemoryBlock.cs
rename to source/Cosmos.Core/ManagedMemoryBlock.cs
diff --git a/Cosmos/source/Cosmos.Core/Memory/Heap.cs b/source/Cosmos.Core/Memory/Heap.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Memory/Heap.cs
rename to source/Cosmos.Core/Memory/Heap.cs
diff --git a/Cosmos/source/Cosmos.Core/Memory/HeapLarge.cs b/source/Cosmos.Core/Memory/HeapLarge.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Memory/HeapLarge.cs
rename to source/Cosmos.Core/Memory/HeapLarge.cs
diff --git a/Cosmos/source/Cosmos.Core/Memory/HeapMedium.cs b/source/Cosmos.Core/Memory/HeapMedium.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Memory/HeapMedium.cs
rename to source/Cosmos.Core/Memory/HeapMedium.cs
diff --git a/Cosmos/source/Cosmos.Core/Memory/HeapSmall.cs b/source/Cosmos.Core/Memory/HeapSmall.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Memory/HeapSmall.cs
rename to source/Cosmos.Core/Memory/HeapSmall.cs
diff --git a/Cosmos/source/Cosmos.Core/Memory/Old/DataLookupEntry.cs b/source/Cosmos.Core/Memory/Old/DataLookupEntry.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Memory/Old/DataLookupEntry.cs
rename to source/Cosmos.Core/Memory/Old/DataLookupEntry.cs
diff --git a/Cosmos/source/Cosmos.Core/Memory/Old/DataLookupTable.cs b/source/Cosmos.Core/Memory/Old/DataLookupTable.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Memory/Old/DataLookupTable.cs
rename to source/Cosmos.Core/Memory/Old/DataLookupTable.cs
diff --git a/Cosmos/source/Cosmos.Core/Memory/Old/GlobalInformationTable.cs b/source/Cosmos.Core/Memory/Old/GlobalInformationTable.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Memory/Old/GlobalInformationTable.cs
rename to source/Cosmos.Core/Memory/Old/GlobalInformationTable.cs
diff --git a/Cosmos/source/Cosmos.Core/Memory/Old/GlobalSystemInfo.cs b/source/Cosmos.Core/Memory/Old/GlobalSystemInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Memory/Old/GlobalSystemInfo.cs
rename to source/Cosmos.Core/Memory/Old/GlobalSystemInfo.cs
diff --git a/Cosmos/source/Cosmos.Core/Memory/Old/Old_Heap.cs b/source/Cosmos.Core/Memory/Old/Old_Heap.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Memory/Old/Old_Heap.cs
rename to source/Cosmos.Core/Memory/Old/Old_Heap.cs
diff --git a/Cosmos/source/Cosmos.Core/Memory/RAT.cs b/source/Cosmos.Core/Memory/RAT.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Memory/RAT.cs
rename to source/Cosmos.Core/Memory/RAT.cs
diff --git a/Cosmos/source/Cosmos.Core/MemoryBlock.cs b/source/Cosmos.Core/MemoryBlock.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/MemoryBlock.cs
rename to source/Cosmos.Core/MemoryBlock.cs
diff --git a/Cosmos/source/Cosmos.Core/MemoryBlock.html b/source/Cosmos.Core/MemoryBlock.html
similarity index 100%
rename from Cosmos/source/Cosmos.Core/MemoryBlock.html
rename to source/Cosmos.Core/MemoryBlock.html
diff --git a/Cosmos/source/Cosmos.Core/MemoryOperations.cs b/source/Cosmos.Core/MemoryOperations.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/MemoryOperations.cs
rename to source/Cosmos.Core/MemoryOperations.cs
diff --git a/Cosmos/source/Cosmos.Core/PIC.cs b/source/Cosmos.Core/PIC.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/PIC.cs
rename to source/Cosmos.Core/PIC.cs
diff --git a/Cosmos/source/Cosmos.Core/ProcessorInformation.cs b/source/Cosmos.Core/ProcessorInformation.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/ProcessorInformation.cs
rename to source/Cosmos.Core/ProcessorInformation.cs
diff --git a/Cosmos/source/Cosmos.Core/Properties/AssemblyInfo.cs b/source/Cosmos.Core/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core/Properties/AssemblyInfo.cs
rename to source/Cosmos.Core/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/Array/ArrayGetLengthAsm.cs b/source/Cosmos.Core_Asm/Array/ArrayGetLengthAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/Array/ArrayGetLengthAsm.cs
rename to source/Cosmos.Core_Asm/Array/ArrayGetLengthAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/Array/ArrayInternalCopyAsm.cs b/source/Cosmos.Core_Asm/Array/ArrayInternalCopyAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/Array/ArrayInternalCopyAsm.cs
rename to source/Cosmos.Core_Asm/Array/ArrayInternalCopyAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/ArrayImpl.cs b/source/Cosmos.Core_Asm/ArrayImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/ArrayImpl.cs
rename to source/Cosmos.Core_Asm/ArrayImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/Buffer/BufferBlockCopyAsm.cs b/source/Cosmos.Core_Asm/Buffer/BufferBlockCopyAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/Buffer/BufferBlockCopyAsm.cs
rename to source/Cosmos.Core_Asm/Buffer/BufferBlockCopyAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/BufferImpl.cs b/source/Cosmos.Core_Asm/BufferImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/BufferImpl.cs
rename to source/Cosmos.Core_Asm/BufferImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/CPU/CPUDisableINTsAsm.cs b/source/Cosmos.Core_Asm/CPU/CPUDisableINTsAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/CPU/CPUDisableINTsAsm.cs
rename to source/Cosmos.Core_Asm/CPU/CPUDisableINTsAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/CPU/CPUEnableINTsAsm.cs b/source/Cosmos.Core_Asm/CPU/CPUEnableINTsAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/CPU/CPUEnableINTsAsm.cs
rename to source/Cosmos.Core_Asm/CPU/CPUEnableINTsAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/CPU/CPUGetAmountOfRAMAsm.cs b/source/Cosmos.Core_Asm/CPU/CPUGetAmountOfRAMAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/CPU/CPUGetAmountOfRAMAsm.cs
rename to source/Cosmos.Core_Asm/CPU/CPUGetAmountOfRAMAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/CPU/CPUGetEndOfKernelAsm.cs b/source/Cosmos.Core_Asm/CPU/CPUGetEndOfKernelAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/CPU/CPUGetEndOfKernelAsm.cs
rename to source/Cosmos.Core_Asm/CPU/CPUGetEndOfKernelAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/CPU/CPUHaltAsm.cs b/source/Cosmos.Core_Asm/CPU/CPUHaltAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/CPU/CPUHaltAsm.cs
rename to source/Cosmos.Core_Asm/CPU/CPUHaltAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/CPU/CPUInitFloatAsm.cs b/source/Cosmos.Core_Asm/CPU/CPUInitFloatAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/CPU/CPUInitFloatAsm.cs
rename to source/Cosmos.Core_Asm/CPU/CPUInitFloatAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/CPU/CPUInitSSEAsm.cs b/source/Cosmos.Core_Asm/CPU/CPUInitSSEAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/CPU/CPUInitSSEAsm.cs
rename to source/Cosmos.Core_Asm/CPU/CPUInitSSEAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/CPU/CPUUpdateIDTAsm.cs b/source/Cosmos.Core_Asm/CPU/CPUUpdateIDTAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/CPU/CPUUpdateIDTAsm.cs
rename to source/Cosmos.Core_Asm/CPU/CPUUpdateIDTAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/CPU/CPUZeroFillAsm.cs b/source/Cosmos.Core_Asm/CPU/CPUZeroFillAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/CPU/CPUZeroFillAsm.cs
rename to source/Cosmos.Core_Asm/CPU/CPUZeroFillAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/CPUImpl.cs b/source/Cosmos.Core_Asm/CPUImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/CPUImpl.cs
rename to source/Cosmos.Core_Asm/CPUImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/Cosmos.Core_Asm.csproj b/source/Cosmos.Core_Asm/Cosmos.Core_Asm.csproj
similarity index 90%
rename from Cosmos/source/Cosmos.Core_Asm/Cosmos.Core_Asm.csproj
rename to source/Cosmos.Core_Asm/Cosmos.Core_Asm.csproj
index b908658b0d..f6f0fab783 100644
--- a/Cosmos/source/Cosmos.Core_Asm/Cosmos.Core_Asm.csproj
+++ b/source/Cosmos.Core_Asm/Cosmos.Core_Asm.csproj
@@ -19,7 +19,7 @@
-
+
diff --git a/Cosmos/source/Cosmos.Core_Asm/Delegate/DelegateCtorAsm.cs b/source/Cosmos.Core_Asm/Delegate/DelegateCtorAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/Delegate/DelegateCtorAsm.cs
rename to source/Cosmos.Core_Asm/Delegate/DelegateCtorAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/Delegate/DelegateGetMulticastInvokeAsm.cs b/source/Cosmos.Core_Asm/Delegate/DelegateGetMulticastInvokeAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/Delegate/DelegateGetMulticastInvokeAsm.cs
rename to source/Cosmos.Core_Asm/Delegate/DelegateGetMulticastInvokeAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/Delegate/DelegateInvokeAsm.cs b/source/Cosmos.Core_Asm/Delegate/DelegateInvokeAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/Delegate/DelegateInvokeAsm.cs
rename to source/Cosmos.Core_Asm/Delegate/DelegateInvokeAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/DelegateImpl.cs b/source/Cosmos.Core_Asm/DelegateImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/DelegateImpl.cs
rename to source/Cosmos.Core_Asm/DelegateImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/IOPortImpl.cs b/source/Cosmos.Core_Asm/IOPortImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/IOPortImpl.cs
rename to source/Cosmos.Core_Asm/IOPortImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/MemoryOperations/MemoryOperationsFillFastAsm.cs b/source/Cosmos.Core_Asm/MemoryOperations/MemoryOperationsFillFastAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/MemoryOperations/MemoryOperationsFillFastAsm.cs
rename to source/Cosmos.Core_Asm/MemoryOperations/MemoryOperationsFillFastAsm.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/MemoryOperationsImpl.cs b/source/Cosmos.Core_Asm/MemoryOperationsImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/MemoryOperationsImpl.cs
rename to source/Cosmos.Core_Asm/MemoryOperationsImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/ProcessorInformationImpl.cs b/source/Cosmos.Core_Asm/ProcessorInformationImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/ProcessorInformationImpl.cs
rename to source/Cosmos.Core_Asm/ProcessorInformationImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Asm/RuntimeHelpers/RuntimeHelpersImpl.cs b/source/Cosmos.Core_Asm/RuntimeHelpers/RuntimeHelpersImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Asm/RuntimeHelpers/RuntimeHelpersImpl.cs
rename to source/Cosmos.Core_Asm/RuntimeHelpers/RuntimeHelpersImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/.editorconfig b/source/Cosmos.Core_Plugs/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/.editorconfig
rename to source/Cosmos.Core_Plugs/.editorconfig
diff --git a/Cosmos/source/Cosmos.Core_Plugs/Cosmos.Core_Plugs.csproj b/source/Cosmos.Core_Plugs/Cosmos.Core_Plugs.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/Cosmos.Core_Plugs.csproj
rename to source/Cosmos.Core_Plugs/Cosmos.Core_Plugs.csproj
diff --git a/Cosmos/source/Cosmos.Core_Plugs/GCImplementionImpl.cs b/source/Cosmos.Core_Plugs/GCImplementionImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/GCImplementionImpl.cs
rename to source/Cosmos.Core_Plugs/GCImplementionImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/MemoryOperations/MemoryOperationsImpl.cs b/source/Cosmos.Core_Plugs/MemoryOperations/MemoryOperationsImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/MemoryOperations/MemoryOperationsImpl.cs
rename to source/Cosmos.Core_Plugs/MemoryOperations/MemoryOperationsImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/ReadMe.html b/source/Cosmos.Core_Plugs/ReadMe.html
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/ReadMe.html
rename to source/Cosmos.Core_Plugs/ReadMe.html
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/ArrayImpl.cs b/source/Cosmos.Core_Plugs/System/ArrayImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/ArrayImpl.cs
rename to source/Cosmos.Core_Plugs/System/ArrayImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/BufferImpl.cs b/source/Cosmos.Core_Plugs/System/BufferImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/BufferImpl.cs
rename to source/Cosmos.Core_Plugs/System/BufferImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/CharUnicodeInfoImpl.cs b/source/Cosmos.Core_Plugs/System/CharUnicodeInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/CharUnicodeInfoImpl.cs
rename to source/Cosmos.Core_Plugs/System/CharUnicodeInfoImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/DateTimeImpl.cs b/source/Cosmos.Core_Plugs/System/DateTimeImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/DateTimeImpl.cs
rename to source/Cosmos.Core_Plugs/System/DateTimeImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/DelegateImpl.cs b/source/Cosmos.Core_Plugs/System/DelegateImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/DelegateImpl.cs
rename to source/Cosmos.Core_Plugs/System/DelegateImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Diagnostics/DebuggerImpl.cs b/source/Cosmos.Core_Plugs/System/Diagnostics/DebuggerImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Diagnostics/DebuggerImpl.cs
rename to source/Cosmos.Core_Plugs/System/Diagnostics/DebuggerImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Diagnostics/StopwatchImpl.cs b/source/Cosmos.Core_Plugs/System/Diagnostics/StopwatchImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Diagnostics/StopwatchImpl.cs
rename to source/Cosmos.Core_Plugs/System/Diagnostics/StopwatchImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/EnvironmentImpl.cs b/source/Cosmos.Core_Plugs/System/EnvironmentImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/EnvironmentImpl.cs
rename to source/Cosmos.Core_Plugs/System/EnvironmentImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/EventHandlerImpl.cs b/source/Cosmos.Core_Plugs/System/EventHandlerImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/EventHandlerImpl.cs
rename to source/Cosmos.Core_Plugs/System/EventHandlerImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/ExceptionImpl.cs b/source/Cosmos.Core_Plugs/System/ExceptionImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/ExceptionImpl.cs
rename to source/Cosmos.Core_Plugs/System/ExceptionImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/GCImpl.cs b/source/Cosmos.Core_Plugs/System/GCImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/GCImpl.cs
rename to source/Cosmos.Core_Plugs/System/GCImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Globalization/CultureInfoImpl.cs b/source/Cosmos.Core_Plugs/System/Globalization/CultureInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Globalization/CultureInfoImpl.cs
rename to source/Cosmos.Core_Plugs/System/Globalization/CultureInfoImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Globalization/NumberFormatInfoImpl.cs b/source/Cosmos.Core_Plugs/System/Globalization/NumberFormatInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Globalization/NumberFormatInfoImpl.cs
rename to source/Cosmos.Core_Plugs/System/Globalization/NumberFormatInfoImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/MulticastDelegateImpl.cs b/source/Cosmos.Core_Plugs/System/MulticastDelegateImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/MulticastDelegateImpl.cs
rename to source/Cosmos.Core_Plugs/System/MulticastDelegateImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/ObjectImpl.cs b/source/Cosmos.Core_Plugs/System/ObjectImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/ObjectImpl.cs
rename to source/Cosmos.Core_Plugs/System/ObjectImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/OutOfMemoryExceptionImpl.cs b/source/Cosmos.Core_Plugs/System/OutOfMemoryExceptionImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/OutOfMemoryExceptionImpl.cs
rename to source/Cosmos.Core_Plugs/System/OutOfMemoryExceptionImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Resources/ResourceManagerImpl.cs b/source/Cosmos.Core_Plugs/System/Resources/ResourceManagerImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Resources/ResourceManagerImpl.cs
rename to source/Cosmos.Core_Plugs/System/Resources/ResourceManagerImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Runtime/CompilerServices/RuntimeHelpersImpl.cs b/source/Cosmos.Core_Plugs/System/Runtime/CompilerServices/RuntimeHelpersImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Runtime/CompilerServices/RuntimeHelpersImpl.cs
rename to source/Cosmos.Core_Plugs/System/Runtime/CompilerServices/RuntimeHelpersImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Runtime/InteropServices/MarshalImpl.cs b/source/Cosmos.Core_Plugs/System/Runtime/InteropServices/MarshalImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Runtime/InteropServices/MarshalImpl.cs
rename to source/Cosmos.Core_Plugs/System/Runtime/InteropServices/MarshalImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Runtime/InteropServices/SafeHandleImpl.cs b/source/Cosmos.Core_Plugs/System/Runtime/InteropServices/SafeHandleImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Runtime/InteropServices/SafeHandleImpl.cs
rename to source/Cosmos.Core_Plugs/System/Runtime/InteropServices/SafeHandleImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/RuntimeType.RuntimeTypeCache.cs b/source/Cosmos.Core_Plugs/System/RuntimeType.RuntimeTypeCache.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/RuntimeType.RuntimeTypeCache.cs
rename to source/Cosmos.Core_Plugs/System/RuntimeType.RuntimeTypeCache.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/RuntimeType.cs b/source/Cosmos.Core_Plugs/System/RuntimeType.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/RuntimeType.cs
rename to source/Cosmos.Core_Plugs/System/RuntimeType.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/RuntimeTypeHandle.cs b/source/Cosmos.Core_Plugs/System/RuntimeTypeHandle.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/RuntimeTypeHandle.cs
rename to source/Cosmos.Core_Plugs/System/RuntimeTypeHandle.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/StringImpl.cs b/source/Cosmos.Core_Plugs/System/StringImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/StringImpl.cs
rename to source/Cosmos.Core_Plugs/System/StringImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Text/ASCIIEncodingImpl.cs b/source/Cosmos.Core_Plugs/System/Text/ASCIIEncodingImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Text/ASCIIEncodingImpl.cs
rename to source/Cosmos.Core_Plugs/System/Text/ASCIIEncodingImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Text/DecoderFallbackImpl.cs b/source/Cosmos.Core_Plugs/System/Text/DecoderFallbackImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Text/DecoderFallbackImpl.cs
rename to source/Cosmos.Core_Plugs/System/Text/DecoderFallbackImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Text/EncoderFallbackImpl.cs b/source/Cosmos.Core_Plugs/System/Text/EncoderFallbackImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Text/EncoderFallbackImpl.cs
rename to source/Cosmos.Core_Plugs/System/Text/EncoderFallbackImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Text/InternalDecoderBestFitFallbackBufferImpl.cs b/source/Cosmos.Core_Plugs/System/Text/InternalDecoderBestFitFallbackBufferImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Text/InternalDecoderBestFitFallbackBufferImpl.cs
rename to source/Cosmos.Core_Plugs/System/Text/InternalDecoderBestFitFallbackBufferImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Threading/Interlocked.cs b/source/Cosmos.Core_Plugs/System/Threading/Interlocked.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Threading/Interlocked.cs
rename to source/Cosmos.Core_Plugs/System/Threading/Interlocked.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Threading/MonitorImpl.cs b/source/Cosmos.Core_Plugs/System/Threading/MonitorImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Threading/MonitorImpl.cs
rename to source/Cosmos.Core_Plugs/System/Threading/MonitorImpl.cs
diff --git a/Cosmos/source/Cosmos.Core_Plugs/System/Threading/ThreadImpl.cs b/source/Cosmos.Core_Plugs/System/Threading/ThreadImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Core_Plugs/System/Threading/ThreadImpl.cs
rename to source/Cosmos.Core_Plugs/System/Threading/ThreadImpl.cs
diff --git a/Cosmos/source/Cosmos.Debug.Common/BochsSupport.cs b/source/Cosmos.Debug.Common/BochsSupport.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Common/BochsSupport.cs
rename to source/Cosmos.Debug.Common/BochsSupport.cs
diff --git a/Cosmos/source/Cosmos.Debug.Common/Cosmos.Debug.Common.csproj b/source/Cosmos.Debug.Common/Cosmos.Debug.Common.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Common/Cosmos.Debug.Common.csproj
rename to source/Cosmos.Debug.Common/Cosmos.Debug.Common.csproj
diff --git a/Cosmos/source/Cosmos.Debug.Common/DebugInfoDictionaryHelper.cs b/source/Cosmos.Debug.Common/DebugInfoDictionaryHelper.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Common/DebugInfoDictionaryHelper.cs
rename to source/Cosmos.Debug.Common/DebugInfoDictionaryHelper.cs
diff --git a/Cosmos/source/Cosmos.Debug.Common/Entities2.datasource b/source/Cosmos.Debug.Common/Entities2.datasource
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Common/Entities2.datasource
rename to source/Cosmos.Debug.Common/Entities2.datasource
diff --git a/Cosmos/source/Cosmos.Debug.Common/Guess.mdf b/source/Cosmos.Debug.Common/Guess.mdf
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Common/Guess.mdf
rename to source/Cosmos.Debug.Common/Guess.mdf
diff --git a/Cosmos/source/Cosmos.Debug.Common/Guess_log.ldf b/source/Cosmos.Debug.Common/Guess_log.ldf
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Common/Guess_log.ldf
rename to source/Cosmos.Debug.Common/Guess_log.ldf
diff --git a/Cosmos/source/Cosmos.Debug.Common/ObjDump.cs b/source/Cosmos.Debug.Common/ObjDump.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Common/ObjDump.cs
rename to source/Cosmos.Debug.Common/ObjDump.cs
diff --git a/Cosmos/source/Cosmos.Debug.Common/PipeClient.cs b/source/Cosmos.Debug.Common/PipeClient.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Common/PipeClient.cs
rename to source/Cosmos.Debug.Common/PipeClient.cs
diff --git a/Cosmos/source/Cosmos.Debug.Common/PipeServer.cs b/source/Cosmos.Debug.Common/PipeServer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Common/PipeServer.cs
rename to source/Cosmos.Debug.Common/PipeServer.cs
diff --git a/Cosmos/source/Cosmos.Debug.Common/Properties/AssemblyInfo.cs b/source/Cosmos.Debug.Common/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Common/Properties/AssemblyInfo.cs
rename to source/Cosmos.Debug.Common/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/.editorconfig b/source/Cosmos.Debug.DebugConnectors/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/.editorconfig
rename to source/Cosmos.Debug.DebugConnectors/.editorconfig
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/Consts.cs b/source/Cosmos.Debug.DebugConnectors/Consts.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/Consts.cs
rename to source/Cosmos.Debug.DebugConnectors/Consts.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/Cosmos.Debug.DebugConnectors.csproj b/source/Cosmos.Debug.DebugConnectors/Cosmos.Debug.DebugConnectors.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/Cosmos.Debug.DebugConnectors.csproj
rename to source/Cosmos.Debug.DebugConnectors/Cosmos.Debug.DebugConnectors.csproj
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.DebugStub.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnector.DebugStub.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.DebugStub.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnector.DebugStub.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.Helpers.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnector.Helpers.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.Helpers.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnector.Helpers.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.Receiving.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnector.Receiving.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.Receiving.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnector.Receiving.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.Sending.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnector.Sending.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.Sending.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnector.Sending.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.Thread.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnector.Thread.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.Thread.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnector.Thread.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnector.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnector.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnector.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorEdison.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnectorEdison.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorEdison.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnectorEdison.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorPipeClient.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnectorPipeClient.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorPipeClient.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnectorPipeClient.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorPipeServer.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnectorPipeServer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorPipeServer.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnectorPipeServer.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorSerial.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnectorSerial.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorSerial.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnectorSerial.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorStreamWithTimeouts.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnectorStreamWithTimeouts.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorStreamWithTimeouts.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnectorStreamWithTimeouts.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorStreamWithoutTimeouts.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnectorStreamWithoutTimeouts.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorStreamWithoutTimeouts.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnectorStreamWithoutTimeouts.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorTCPServer.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnectorTCPServer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorTCPServer.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnectorTCPServer.cs
diff --git a/Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorTestPipeServer.cs b/source/Cosmos.Debug.DebugConnectors/DebugConnectorTestPipeServer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.DebugConnectors/DebugConnectorTestPipeServer.cs
rename to source/Cosmos.Debug.DebugConnectors/DebugConnectorTestPipeServer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/AsmFile.cs b/source/Cosmos.Debug.GDB/AsmFile.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/AsmFile.cs
rename to source/Cosmos.Debug.GDB/AsmFile.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/AsmLine.cs b/source/Cosmos.Debug.GDB/AsmLine.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/AsmLine.cs
rename to source/Cosmos.Debug.GDB/AsmLine.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/BreakpointUC.Designer.cs b/source/Cosmos.Debug.GDB/BreakpointUC.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/BreakpointUC.Designer.cs
rename to source/Cosmos.Debug.GDB/BreakpointUC.Designer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/BreakpointUC.cs b/source/Cosmos.Debug.GDB/BreakpointUC.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/BreakpointUC.cs
rename to source/Cosmos.Debug.GDB/BreakpointUC.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/BreakpointUC.resx b/source/Cosmos.Debug.GDB/BreakpointUC.resx
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/BreakpointUC.resx
rename to source/Cosmos.Debug.GDB/BreakpointUC.resx
diff --git a/Cosmos/source/Cosmos.Debug.GDB/Cosmos.Debug.GDB.csproj b/source/Cosmos.Debug.GDB/Cosmos.Debug.GDB.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/Cosmos.Debug.GDB.csproj
rename to source/Cosmos.Debug.GDB/Cosmos.Debug.GDB.csproj
diff --git a/Cosmos/source/Cosmos.Debug.GDB/Docs/index.html b/source/Cosmos.Debug.GDB/Docs/index.html
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/Docs/index.html
rename to source/Cosmos.Debug.GDB/Docs/index.html
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormBreakpoints.Designer.cs b/source/Cosmos.Debug.GDB/FormBreakpoints.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormBreakpoints.Designer.cs
rename to source/Cosmos.Debug.GDB/FormBreakpoints.Designer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormBreakpoints.cs b/source/Cosmos.Debug.GDB/FormBreakpoints.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormBreakpoints.cs
rename to source/Cosmos.Debug.GDB/FormBreakpoints.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormBreakpoints.resx b/source/Cosmos.Debug.GDB/FormBreakpoints.resx
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormBreakpoints.resx
rename to source/Cosmos.Debug.GDB/FormBreakpoints.resx
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormCallStack.Designer.cs b/source/Cosmos.Debug.GDB/FormCallStack.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormCallStack.Designer.cs
rename to source/Cosmos.Debug.GDB/FormCallStack.Designer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormCallStack.cs b/source/Cosmos.Debug.GDB/FormCallStack.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormCallStack.cs
rename to source/Cosmos.Debug.GDB/FormCallStack.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormCallStack.resx b/source/Cosmos.Debug.GDB/FormCallStack.resx
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormCallStack.resx
rename to source/Cosmos.Debug.GDB/FormCallStack.resx
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormHistory.Designer.cs b/source/Cosmos.Debug.GDB/FormHistory.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormHistory.Designer.cs
rename to source/Cosmos.Debug.GDB/FormHistory.Designer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormHistory.cs b/source/Cosmos.Debug.GDB/FormHistory.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormHistory.cs
rename to source/Cosmos.Debug.GDB/FormHistory.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormLog.Designer.cs b/source/Cosmos.Debug.GDB/FormLog.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormLog.Designer.cs
rename to source/Cosmos.Debug.GDB/FormLog.Designer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormLog.cs b/source/Cosmos.Debug.GDB/FormLog.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormLog.cs
rename to source/Cosmos.Debug.GDB/FormLog.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormLog.resx b/source/Cosmos.Debug.GDB/FormLog.resx
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormLog.resx
rename to source/Cosmos.Debug.GDB/FormLog.resx
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormMain.Designer.cs b/source/Cosmos.Debug.GDB/FormMain.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormMain.Designer.cs
rename to source/Cosmos.Debug.GDB/FormMain.Designer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormMain.cs b/source/Cosmos.Debug.GDB/FormMain.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormMain.cs
rename to source/Cosmos.Debug.GDB/FormMain.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormMain.resx b/source/Cosmos.Debug.GDB/FormMain.resx
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormMain.resx
rename to source/Cosmos.Debug.GDB/FormMain.resx
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormRegisters.Designer.cs b/source/Cosmos.Debug.GDB/FormRegisters.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormRegisters.Designer.cs
rename to source/Cosmos.Debug.GDB/FormRegisters.Designer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormRegisters.cs b/source/Cosmos.Debug.GDB/FormRegisters.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormRegisters.cs
rename to source/Cosmos.Debug.GDB/FormRegisters.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormRegisters.resx b/source/Cosmos.Debug.GDB/FormRegisters.resx
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormRegisters.resx
rename to source/Cosmos.Debug.GDB/FormRegisters.resx
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormSettings.Designer.cs b/source/Cosmos.Debug.GDB/FormSettings.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormSettings.Designer.cs
rename to source/Cosmos.Debug.GDB/FormSettings.Designer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormSettings.cs b/source/Cosmos.Debug.GDB/FormSettings.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormSettings.cs
rename to source/Cosmos.Debug.GDB/FormSettings.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormWatches.Designer.cs b/source/Cosmos.Debug.GDB/FormWatches.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormWatches.Designer.cs
rename to source/Cosmos.Debug.GDB/FormWatches.Designer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormWatches.cs b/source/Cosmos.Debug.GDB/FormWatches.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormWatches.cs
rename to source/Cosmos.Debug.GDB/FormWatches.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/FormWatches.resx b/source/Cosmos.Debug.GDB/FormWatches.resx
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/FormWatches.resx
rename to source/Cosmos.Debug.GDB/FormWatches.resx
diff --git a/Cosmos/source/Cosmos.Debug.GDB/GDB.cs b/source/Cosmos.Debug.GDB/GDB.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/GDB.cs
rename to source/Cosmos.Debug.GDB/GDB.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/Global.cs b/source/Cosmos.Debug.GDB/Global.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/Global.cs
rename to source/Cosmos.Debug.GDB/Global.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/Program.cs b/source/Cosmos.Debug.GDB/Program.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/Program.cs
rename to source/Cosmos.Debug.GDB/Program.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/Properties/AssemblyInfo.cs b/source/Cosmos.Debug.GDB/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/Properties/AssemblyInfo.cs
rename to source/Cosmos.Debug.GDB/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/ReadMe.html b/source/Cosmos.Debug.GDB/ReadMe.html
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/ReadMe.html
rename to source/Cosmos.Debug.GDB/ReadMe.html
diff --git a/Cosmos/source/Cosmos.Debug.GDB/Settings.cs b/source/Cosmos.Debug.GDB/Settings.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/Settings.cs
rename to source/Cosmos.Debug.GDB/Settings.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/SettingsDS.Designer.cs b/source/Cosmos.Debug.GDB/SettingsDS.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/SettingsDS.Designer.cs
rename to source/Cosmos.Debug.GDB/SettingsDS.Designer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/SettingsDS.xsc b/source/Cosmos.Debug.GDB/SettingsDS.xsc
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/SettingsDS.xsc
rename to source/Cosmos.Debug.GDB/SettingsDS.xsc
diff --git a/Cosmos/source/Cosmos.Debug.GDB/SettingsDS.xsd b/source/Cosmos.Debug.GDB/SettingsDS.xsd
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/SettingsDS.xsd
rename to source/Cosmos.Debug.GDB/SettingsDS.xsd
diff --git a/Cosmos/source/Cosmos.Debug.GDB/SettingsDS.xss b/source/Cosmos.Debug.GDB/SettingsDS.xss
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/SettingsDS.xss
rename to source/Cosmos.Debug.GDB/SettingsDS.xss
diff --git a/Cosmos/source/Cosmos.Debug.GDB/ToDo.html b/source/Cosmos.Debug.GDB/ToDo.html
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/ToDo.html
rename to source/Cosmos.Debug.GDB/ToDo.html
diff --git a/Cosmos/source/Cosmos.Debug.GDB/ToolTipListBox.cs b/source/Cosmos.Debug.GDB/ToolTipListBox.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/ToolTipListBox.cs
rename to source/Cosmos.Debug.GDB/ToolTipListBox.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/WatchUC.Designer.cs b/source/Cosmos.Debug.GDB/WatchUC.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/WatchUC.Designer.cs
rename to source/Cosmos.Debug.GDB/WatchUC.Designer.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/WatchUC.cs b/source/Cosmos.Debug.GDB/WatchUC.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/WatchUC.cs
rename to source/Cosmos.Debug.GDB/WatchUC.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/WatchUC.resx b/source/Cosmos.Debug.GDB/WatchUC.resx
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/WatchUC.resx
rename to source/Cosmos.Debug.GDB/WatchUC.resx
diff --git a/Cosmos/source/Cosmos.Debug.GDB/Windows.cs b/source/Cosmos.Debug.GDB/Windows.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/Windows.cs
rename to source/Cosmos.Debug.GDB/Windows.cs
diff --git a/Cosmos/source/Cosmos.Debug.GDB/app.config b/source/Cosmos.Debug.GDB/app.config
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.GDB/app.config
rename to source/Cosmos.Debug.GDB/app.config
diff --git a/Cosmos/source/Cosmos.Debug.Hosts/.editorconfig b/source/Cosmos.Debug.Hosts/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Hosts/.editorconfig
rename to source/Cosmos.Debug.Hosts/.editorconfig
diff --git a/Cosmos/source/Cosmos.Debug.Hosts/Bochs.Configuration.cs b/source/Cosmos.Debug.Hosts/Bochs.Configuration.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Hosts/Bochs.Configuration.cs
rename to source/Cosmos.Debug.Hosts/Bochs.Configuration.cs
diff --git a/Cosmos/source/Cosmos.Debug.Hosts/Bochs.cs b/source/Cosmos.Debug.Hosts/Bochs.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Hosts/Bochs.cs
rename to source/Cosmos.Debug.Hosts/Bochs.cs
diff --git a/Cosmos/source/Cosmos.Debug.Hosts/Cosmos.Debug.Hosts.csproj b/source/Cosmos.Debug.Hosts/Cosmos.Debug.Hosts.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Hosts/Cosmos.Debug.Hosts.csproj
rename to source/Cosmos.Debug.Hosts/Cosmos.Debug.Hosts.csproj
diff --git a/Cosmos/source/Cosmos.Debug.Hosts/Host.cs b/source/Cosmos.Debug.Hosts/Host.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Hosts/Host.cs
rename to source/Cosmos.Debug.Hosts/Host.cs
diff --git a/Cosmos/source/Cosmos.Debug.Hosts/HyperV.cs b/source/Cosmos.Debug.Hosts/HyperV.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Hosts/HyperV.cs
rename to source/Cosmos.Debug.Hosts/HyperV.cs
diff --git a/Cosmos/source/Cosmos.Debug.Hosts/IntelEdison.cs b/source/Cosmos.Debug.Hosts/IntelEdison.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Hosts/IntelEdison.cs
rename to source/Cosmos.Debug.Hosts/IntelEdison.cs
diff --git a/Cosmos/source/Cosmos.Debug.Hosts/Slave.cs b/source/Cosmos.Debug.Hosts/Slave.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Hosts/Slave.cs
rename to source/Cosmos.Debug.Hosts/Slave.cs
diff --git a/Cosmos/source/Cosmos.Debug.Hosts/VMware.cs b/source/Cosmos.Debug.Hosts/VMware.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Hosts/VMware.cs
rename to source/Cosmos.Debug.Hosts/VMware.cs
diff --git a/Cosmos/source/Cosmos.Debug.Kernel.Plugs.Asm/.editorconfig b/source/Cosmos.Debug.Kernel.Plugs.Asm/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Kernel.Plugs.Asm/.editorconfig
rename to source/Cosmos.Debug.Kernel.Plugs.Asm/.editorconfig
diff --git a/Cosmos/source/Cosmos.Debug.Kernel.Plugs.Asm/Cosmos.Debug.Kernel.Plugs.Asm.csproj b/source/Cosmos.Debug.Kernel.Plugs.Asm/Cosmos.Debug.Kernel.Plugs.Asm.csproj
similarity index 87%
rename from Cosmos/source/Cosmos.Debug.Kernel.Plugs.Asm/Cosmos.Debug.Kernel.Plugs.Asm.csproj
rename to source/Cosmos.Debug.Kernel.Plugs.Asm/Cosmos.Debug.Kernel.Plugs.Asm.csproj
index 9a39473b4c..654747b9d5 100644
--- a/Cosmos/source/Cosmos.Debug.Kernel.Plugs.Asm/Cosmos.Debug.Kernel.Plugs.Asm.csproj
+++ b/source/Cosmos.Debug.Kernel.Plugs.Asm/Cosmos.Debug.Kernel.Plugs.Asm.csproj
@@ -13,7 +13,7 @@
-
+
diff --git a/Cosmos/source/Cosmos.Debug.Kernel.Plugs.Asm/DebuggerAsm.cs b/source/Cosmos.Debug.Kernel.Plugs.Asm/DebuggerAsm.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Kernel.Plugs.Asm/DebuggerAsm.cs
rename to source/Cosmos.Debug.Kernel.Plugs.Asm/DebuggerAsm.cs
diff --git a/Cosmos/source/Cosmos.Debug.Kernel/.editorconfig b/source/Cosmos.Debug.Kernel/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Kernel/.editorconfig
rename to source/Cosmos.Debug.Kernel/.editorconfig
diff --git a/Cosmos/source/Cosmos.Debug.Kernel/Cosmos.Debug.Kernel.csproj b/source/Cosmos.Debug.Kernel/Cosmos.Debug.Kernel.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Kernel/Cosmos.Debug.Kernel.csproj
rename to source/Cosmos.Debug.Kernel/Cosmos.Debug.Kernel.csproj
diff --git a/Cosmos/source/Cosmos.Debug.Kernel/Debugger.cs b/source/Cosmos.Debug.Kernel/Debugger.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Kernel/Debugger.cs
rename to source/Cosmos.Debug.Kernel/Debugger.cs
diff --git a/Cosmos/source/Cosmos.Debug.Kernel/Properties/AssemblyInfo.cs b/source/Cosmos.Debug.Kernel/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Kernel/Properties/AssemblyInfo.cs
rename to source/Cosmos.Debug.Kernel/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.Debug.Kernel/ReadMe.html b/source/Cosmos.Debug.Kernel/ReadMe.html
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Kernel/ReadMe.html
rename to source/Cosmos.Debug.Kernel/ReadMe.html
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/CacheHelper.cs b/source/Cosmos.Debug.Symbols/CacheHelper.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/CacheHelper.cs
rename to source/Cosmos.Debug.Symbols/CacheHelper.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/Cosmos.Debug.Symbols.csproj b/source/Cosmos.Debug.Symbols/Cosmos.Debug.Symbols.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/Cosmos.Debug.Symbols.csproj
rename to source/Cosmos.Debug.Symbols/Cosmos.Debug.Symbols.csproj
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/DebugInfo.cs b/source/Cosmos.Debug.Symbols/DebugInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/DebugInfo.cs
rename to source/Cosmos.Debug.Symbols/DebugInfo.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/DebugModel.cs b/source/Cosmos.Debug.Symbols/DebugModel.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/DebugModel.cs
rename to source/Cosmos.Debug.Symbols/DebugModel.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/DebugSymbolReader.cs b/source/Cosmos.Debug.Symbols/DebugSymbolReader.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/DebugSymbolReader.cs
rename to source/Cosmos.Debug.Symbols/DebugSymbolReader.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/Hashing/TypeHashingAlgorithms.cs b/source/Cosmos.Debug.Symbols/Hashing/TypeHashingAlgorithms.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/Hashing/TypeHashingAlgorithms.cs
rename to source/Cosmos.Debug.Symbols/Hashing/TypeHashingAlgorithms.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/ITokenResolver.cs b/source/Cosmos.Debug.Symbols/ITokenResolver.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/ITokenResolver.cs
rename to source/Cosmos.Debug.Symbols/ITokenResolver.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/LocalTypeGenericContext.cs b/source/Cosmos.Debug.Symbols/LocalTypeGenericContext.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/LocalTypeGenericContext.cs
rename to source/Cosmos.Debug.Symbols/LocalTypeGenericContext.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/LocalTypeProvider.cs b/source/Cosmos.Debug.Symbols/LocalTypeProvider.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/LocalTypeProvider.cs
rename to source/Cosmos.Debug.Symbols/LocalTypeProvider.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/Metadata/CachingMetadataStringDecoder.cs b/source/Cosmos.Debug.Symbols/Metadata/CachingMetadataStringDecoder.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/Metadata/CachingMetadataStringDecoder.cs
rename to source/Cosmos.Debug.Symbols/Metadata/CachingMetadataStringDecoder.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/Metadata/MetadataHelper.cs b/source/Cosmos.Debug.Symbols/Metadata/MetadataHelper.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/Metadata/MetadataHelper.cs
rename to source/Cosmos.Debug.Symbols/Metadata/MetadataHelper.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/ModuleExtensions.cs b/source/Cosmos.Debug.Symbols/ModuleExtensions.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/ModuleExtensions.cs
rename to source/Cosmos.Debug.Symbols/ModuleExtensions.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/ModuleScopeTokenResolver.cs b/source/Cosmos.Debug.Symbols/ModuleScopeTokenResolver.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/ModuleScopeTokenResolver.cs
rename to source/Cosmos.Debug.Symbols/ModuleScopeTokenResolver.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/ObjectReader.cs b/source/Cosmos.Debug.Symbols/ObjectReader.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/ObjectReader.cs
rename to source/Cosmos.Debug.Symbols/ObjectReader.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/Pdb/ILLocalVariable.cs b/source/Cosmos.Debug.Symbols/Pdb/ILLocalVariable.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/Pdb/ILLocalVariable.cs
rename to source/Cosmos.Debug.Symbols/Pdb/ILLocalVariable.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/Pdb/ILSequencePoint.cs b/source/Cosmos.Debug.Symbols/Pdb/ILSequencePoint.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/Pdb/ILSequencePoint.cs
rename to source/Cosmos.Debug.Symbols/Pdb/ILSequencePoint.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/Pdb/PdbSymbolReader.cs b/source/Cosmos.Debug.Symbols/Pdb/PdbSymbolReader.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/Pdb/PdbSymbolReader.cs
rename to source/Cosmos.Debug.Symbols/Pdb/PdbSymbolReader.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/Pdb/PortablePdbSymbolReader.cs b/source/Cosmos.Debug.Symbols/Pdb/PortablePdbSymbolReader.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/Pdb/PortablePdbSymbolReader.cs
rename to source/Cosmos.Debug.Symbols/Pdb/PortablePdbSymbolReader.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/Pdb/UnmanagedPdbSymbolReader.cs b/source/Cosmos.Debug.Symbols/Pdb/UnmanagedPdbSymbolReader.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/Pdb/UnmanagedPdbSymbolReader.cs
rename to source/Cosmos.Debug.Symbols/Pdb/UnmanagedPdbSymbolReader.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/SQL.cs b/source/Cosmos.Debug.Symbols/SQL.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/SQL.cs
rename to source/Cosmos.Debug.Symbols/SQL.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/SQLite.sql b/source/Cosmos.Debug.Symbols/SQLite.sql
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/SQLite.sql
rename to source/Cosmos.Debug.Symbols/SQLite.sql
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/SQLiteIndexes.sql b/source/Cosmos.Debug.Symbols/SQLiteIndexes.sql
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/SQLiteIndexes.sql
rename to source/Cosmos.Debug.Symbols/SQLiteIndexes.sql
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/SourceInfo.cs b/source/Cosmos.Debug.Symbols/SourceInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/SourceInfo.cs
rename to source/Cosmos.Debug.Symbols/SourceInfo.cs
diff --git a/Cosmos/source/Cosmos.Debug.Symbols/SqliteBulkCopy.cs b/source/Cosmos.Debug.Symbols/SqliteBulkCopy.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Debug.Symbols/SqliteBulkCopy.cs
rename to source/Cosmos.Debug.Symbols/SqliteBulkCopy.cs
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/App.xaml b/source/Cosmos.Deploy.Pixie/App.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/App.xaml
rename to source/Cosmos.Deploy.Pixie/App.xaml
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/App.xaml.cs b/source/Cosmos.Deploy.Pixie/App.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/App.xaml.cs
rename to source/Cosmos.Deploy.Pixie/App.xaml.cs
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/Cosmos.Deploy.Pixie.csproj b/source/Cosmos.Deploy.Pixie/Cosmos.Deploy.Pixie.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/Cosmos.Deploy.Pixie.csproj
rename to source/Cosmos.Deploy.Pixie/Cosmos.Deploy.Pixie.csproj
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/Cosmos.ico b/source/Cosmos.Deploy.Pixie/Cosmos.ico
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/Cosmos.ico
rename to source/Cosmos.Deploy.Pixie/Cosmos.ico
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/DHCP/DHCP.cs b/source/Cosmos.Deploy.Pixie/DHCP/DHCP.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/DHCP/DHCP.cs
rename to source/Cosmos.Deploy.Pixie/DHCP/DHCP.cs
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/DHCP/DhcpPacket.cs b/source/Cosmos.Deploy.Pixie/DHCP/DhcpPacket.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/DHCP/DhcpPacket.cs
rename to source/Cosmos.Deploy.Pixie/DHCP/DhcpPacket.cs
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/MainWindow.xaml b/source/Cosmos.Deploy.Pixie/MainWindow.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/MainWindow.xaml
rename to source/Cosmos.Deploy.Pixie/MainWindow.xaml
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/MainWindow.xaml.cs b/source/Cosmos.Deploy.Pixie/MainWindow.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/MainWindow.xaml.cs
rename to source/Cosmos.Deploy.Pixie/MainWindow.xaml.cs
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/Properties/AssemblyInfo.cs b/source/Cosmos.Deploy.Pixie/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/Properties/AssemblyInfo.cs
rename to source/Cosmos.Deploy.Pixie/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/Resources.html b/source/Cosmos.Deploy.Pixie/Resources.html
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/Resources.html
rename to source/Cosmos.Deploy.Pixie/Resources.html
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/TFTP/TrivialFTP.cs b/source/Cosmos.Deploy.Pixie/TFTP/TrivialFTP.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/TFTP/TrivialFTP.cs
rename to source/Cosmos.Deploy.Pixie/TFTP/TrivialFTP.cs
diff --git a/Cosmos/Tools/File2ByteArray Converter/app.config b/source/Cosmos.Deploy.Pixie/app.config
similarity index 100%
rename from Cosmos/Tools/File2ByteArray Converter/app.config
rename to source/Cosmos.Deploy.Pixie/app.config
diff --git a/Cosmos/source/Cosmos.Deploy.USB/App.xaml b/source/Cosmos.Deploy.USB/App.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.USB/App.xaml
rename to source/Cosmos.Deploy.USB/App.xaml
diff --git a/Cosmos/source/Cosmos.Deploy.USB/App.xaml.cs b/source/Cosmos.Deploy.USB/App.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.USB/App.xaml.cs
rename to source/Cosmos.Deploy.USB/App.xaml.cs
diff --git a/Cosmos/source/Cosmos.Deploy.USB/Cosmos.Deploy.USB.csproj b/source/Cosmos.Deploy.USB/Cosmos.Deploy.USB.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.USB/Cosmos.Deploy.USB.csproj
rename to source/Cosmos.Deploy.USB/Cosmos.Deploy.USB.csproj
diff --git a/Cosmos/source/Cosmos.Deploy.USB/Cosmos.ico b/source/Cosmos.Deploy.USB/Cosmos.ico
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.USB/Cosmos.ico
rename to source/Cosmos.Deploy.USB/Cosmos.ico
diff --git a/Cosmos/source/Cosmos.Deploy.USB/MainWindow.xaml b/source/Cosmos.Deploy.USB/MainWindow.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.USB/MainWindow.xaml
rename to source/Cosmos.Deploy.USB/MainWindow.xaml
diff --git a/Cosmos/source/Cosmos.Deploy.USB/MainWindow.xaml.cs b/source/Cosmos.Deploy.USB/MainWindow.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.USB/MainWindow.xaml.cs
rename to source/Cosmos.Deploy.USB/MainWindow.xaml.cs
diff --git a/Cosmos/source/Cosmos.Deploy.USB/Properties/AssemblyInfo.cs b/source/Cosmos.Deploy.USB/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.USB/Properties/AssemblyInfo.cs
rename to source/Cosmos.Deploy.USB/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.Deploy.Pixie/app.config b/source/Cosmos.Deploy.USB/app.config
similarity index 100%
rename from Cosmos/source/Cosmos.Deploy.Pixie/app.config
rename to source/Cosmos.Deploy.USB/app.config
diff --git a/Cosmos/source/Cosmos.HAL2/.editorconfig b/source/Cosmos.HAL2/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/.editorconfig
rename to source/Cosmos.HAL2/.editorconfig
diff --git a/Cosmos/source/Cosmos.HAL2/BlockDevice/ATA.html b/source/Cosmos.HAL2/BlockDevice/ATA.html
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/BlockDevice/ATA.html
rename to source/Cosmos.HAL2/BlockDevice/ATA.html
diff --git a/Cosmos/source/Cosmos.HAL2/BlockDevice/Ata.cs b/source/Cosmos.HAL2/BlockDevice/Ata.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/BlockDevice/Ata.cs
rename to source/Cosmos.HAL2/BlockDevice/Ata.cs
diff --git a/Cosmos/source/Cosmos.HAL2/BlockDevice/AtaPio.cs b/source/Cosmos.HAL2/BlockDevice/AtaPio.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/BlockDevice/AtaPio.cs
rename to source/Cosmos.HAL2/BlockDevice/AtaPio.cs
diff --git a/Cosmos/source/Cosmos.HAL2/BlockDevice/BlockDevice.cs b/source/Cosmos.HAL2/BlockDevice/BlockDevice.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/BlockDevice/BlockDevice.cs
rename to source/Cosmos.HAL2/BlockDevice/BlockDevice.cs
diff --git a/Cosmos/source/Cosmos.HAL2/BlockDevice/EBR.cs b/source/Cosmos.HAL2/BlockDevice/EBR.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/BlockDevice/EBR.cs
rename to source/Cosmos.HAL2/BlockDevice/EBR.cs
diff --git a/Cosmos/source/Cosmos.HAL2/BlockDevice/MBR.cs b/source/Cosmos.HAL2/BlockDevice/MBR.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/BlockDevice/MBR.cs
rename to source/Cosmos.HAL2/BlockDevice/MBR.cs
diff --git a/Cosmos/source/Cosmos.HAL2/BlockDevice/Partition.cs b/source/Cosmos.HAL2/BlockDevice/Partition.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/BlockDevice/Partition.cs
rename to source/Cosmos.HAL2/BlockDevice/Partition.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Bootstrap.cs b/source/Cosmos.HAL2/Bootstrap.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Bootstrap.cs
rename to source/Cosmos.HAL2/Bootstrap.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Cosmos.HAL2.csproj b/source/Cosmos.HAL2/Cosmos.HAL2.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Cosmos.HAL2.csproj
rename to source/Cosmos.HAL2/Cosmos.HAL2.csproj
diff --git a/Cosmos/source/Cosmos.HAL2/DebugTextScreen.cs b/source/Cosmos.HAL2/DebugTextScreen.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/DebugTextScreen.cs
rename to source/Cosmos.HAL2/DebugTextScreen.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Device.cs b/source/Cosmos.HAL2/Device.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Device.cs
rename to source/Cosmos.HAL2/Device.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Components/DACak4531.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Components/DACak4531.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Components/DACak4531.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Components/DACak4531.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/ES1370.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/ES1370.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/ES1370.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/ES1370.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Managers/AK4531Manager.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Managers/AK4531Manager.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Managers/AK4531Manager.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Managers/AK4531Manager.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/CommandRegister.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/CommandRegister.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/CommandRegister.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/CommandRegister.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/ControlRegister.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/ControlRegister.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/ControlRegister.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/ControlRegister.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/InterruptStatusRegister.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/InterruptStatusRegister.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/InterruptStatusRegister.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/InterruptStatusRegister.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/MainRegister.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/MainRegister.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/MainRegister.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/MainRegister.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/SerialInterfaceRegister.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/SerialInterfaceRegister.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/SerialInterfaceRegister.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/SerialInterfaceRegister.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/UARTInterfaceRegister.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/UARTInterfaceRegister.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/UARTInterfaceRegister.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/UARTInterfaceRegister.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/UartFIFORegister.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/UartFIFORegister.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/UartFIFORegister.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/ES1370/Registers/UartFIFORegister.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/ADCEntity.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/ADCEntity.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/ADCEntity.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/ADCEntity.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/DACEntity.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/DACEntity.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/DACEntity.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/DACEntity.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/UARTEntity.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/UARTEntity.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/UARTEntity.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Components/UARTEntity.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/GenericSoundCard.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/GenericSoundCard.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/GenericSoundCard.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/GenericSoundCard.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/ADCManager.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/ADCManager.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/ADCManager.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/ADCManager.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/DACManager.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/DACManager.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/DACManager.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/DACManager.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/UARTManager.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/UARTManager.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/UARTManager.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/Generic/Managers/UARTManager.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/PCMStream.cs b/source/Cosmos.HAL2/Drivers/PCI/Audio/PCMStream.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Audio/PCMStream.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Audio/PCMStream.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Network/AMDPCNetII.cs b/source/Cosmos.HAL2/Drivers/PCI/Network/AMDPCNetII.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Network/AMDPCNetII.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Network/AMDPCNetII.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Network/RTL8139.cs b/source/Cosmos.HAL2/Drivers/PCI/Network/RTL8139.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Network/RTL8139.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Network/RTL8139.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Network/VT6102.cs b/source/Cosmos.HAL2/Drivers/PCI/Network/VT6102.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Network/VT6102.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Network/VT6102.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/PCI/Video/VMWareSVGAII.cs b/source/Cosmos.HAL2/Drivers/PCI/Video/VMWareSVGAII.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/PCI/Video/VMWareSVGAII.cs
rename to source/Cosmos.HAL2/Drivers/PCI/Video/VMWareSVGAII.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/ReadMe.html b/source/Cosmos.HAL2/Drivers/ReadMe.html
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/ReadMe.html
rename to source/Cosmos.HAL2/Drivers/ReadMe.html
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/USB/USBHost.cs b/source/Cosmos.HAL2/Drivers/USB/USBHost.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/USB/USBHost.cs
rename to source/Cosmos.HAL2/Drivers/USB/USBHost.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/USB/USBHostOHCI.cs b/source/Cosmos.HAL2/Drivers/USB/USBHostOHCI.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/USB/USBHostOHCI.cs
rename to source/Cosmos.HAL2/Drivers/USB/USBHostOHCI.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/USB/USBHostOHCIRegisters.cs b/source/Cosmos.HAL2/Drivers/USB/USBHostOHCIRegisters.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/USB/USBHostOHCIRegisters.cs
rename to source/Cosmos.HAL2/Drivers/USB/USBHostOHCIRegisters.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/Video/VBEDriver.cs b/source/Cosmos.HAL2/Drivers/Video/VBEDriver.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/Video/VBEDriver.cs
rename to source/Cosmos.HAL2/Drivers/Video/VBEDriver.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Drivers/Video/VGAScreen.cs b/source/Cosmos.HAL2/Drivers/Video/VGAScreen.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Drivers/Video/VGAScreen.cs
rename to source/Cosmos.HAL2/Drivers/Video/VGAScreen.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Global.cs b/source/Cosmos.HAL2/Global.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Global.cs
rename to source/Cosmos.HAL2/Global.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Keyboard.html b/source/Cosmos.HAL2/Keyboard.html
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Keyboard.html
rename to source/Cosmos.HAL2/Keyboard.html
diff --git a/Cosmos/source/Cosmos.HAL2/KeyboardBase.cs b/source/Cosmos.HAL2/KeyboardBase.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/KeyboardBase.cs
rename to source/Cosmos.HAL2/KeyboardBase.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Mouse.cs b/source/Cosmos.HAL2/Mouse.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Mouse.cs
rename to source/Cosmos.HAL2/Mouse.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Network/MACAddress.cs b/source/Cosmos.HAL2/Network/MACAddress.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Network/MACAddress.cs
rename to source/Cosmos.HAL2/Network/MACAddress.cs
diff --git a/Cosmos/source/Cosmos.HAL2/NetworkDevice.cs b/source/Cosmos.HAL2/NetworkDevice.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/NetworkDevice.cs
rename to source/Cosmos.HAL2/NetworkDevice.cs
diff --git a/Cosmos/source/Cosmos.HAL2/PCI.cs b/source/Cosmos.HAL2/PCI.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/PCI.cs
rename to source/Cosmos.HAL2/PCI.cs
diff --git a/Cosmos/source/Cosmos.HAL2/PCI.html b/source/Cosmos.HAL2/PCI.html
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/PCI.html
rename to source/Cosmos.HAL2/PCI.html
diff --git a/Cosmos/source/Cosmos.HAL2/PCIBaseAddressBar.cs b/source/Cosmos.HAL2/PCIBaseAddressBar.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/PCIBaseAddressBar.cs
rename to source/Cosmos.HAL2/PCIBaseAddressBar.cs
diff --git a/Cosmos/source/Cosmos.HAL2/PCIDeviceBridge.cs b/source/Cosmos.HAL2/PCIDeviceBridge.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/PCIDeviceBridge.cs
rename to source/Cosmos.HAL2/PCIDeviceBridge.cs
diff --git a/Cosmos/source/Cosmos.HAL2/PCIDeviceCardbus.cs b/source/Cosmos.HAL2/PCIDeviceCardbus.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/PCIDeviceCardbus.cs
rename to source/Cosmos.HAL2/PCIDeviceCardbus.cs
diff --git a/Cosmos/source/Cosmos.HAL2/PCIDeviceNormal.cs b/source/Cosmos.HAL2/PCIDeviceNormal.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/PCIDeviceNormal.cs
rename to source/Cosmos.HAL2/PCIDeviceNormal.cs
diff --git a/Cosmos/source/Cosmos.HAL2/PCSpeaker.cs b/source/Cosmos.HAL2/PCSpeaker.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/PCSpeaker.cs
rename to source/Cosmos.HAL2/PCSpeaker.cs
diff --git a/Cosmos/source/Cosmos.HAL2/PIT.cs b/source/Cosmos.HAL2/PIT.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/PIT.cs
rename to source/Cosmos.HAL2/PIT.cs
diff --git a/Cosmos/source/Cosmos.HAL2/PIT.html b/source/Cosmos.HAL2/PIT.html
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/PIT.html
rename to source/Cosmos.HAL2/PIT.html
diff --git a/Cosmos/source/Cosmos.HAL2/PS2Keyboard.cs b/source/Cosmos.HAL2/PS2Keyboard.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/PS2Keyboard.cs
rename to source/Cosmos.HAL2/PS2Keyboard.cs
diff --git a/Cosmos/source/Cosmos.HAL2/PciDevice.cs b/source/Cosmos.HAL2/PciDevice.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/PciDevice.cs
rename to source/Cosmos.HAL2/PciDevice.cs
diff --git a/Cosmos/source/Cosmos.HAL2/Power.cs b/source/Cosmos.HAL2/Power.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/Power.cs
rename to source/Cosmos.HAL2/Power.cs
diff --git a/Cosmos/source/Cosmos.HAL2/RTC.cs b/source/Cosmos.HAL2/RTC.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/RTC.cs
rename to source/Cosmos.HAL2/RTC.cs
diff --git a/Cosmos/source/Cosmos.HAL2/RTC.html b/source/Cosmos.HAL2/RTC.html
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/RTC.html
rename to source/Cosmos.HAL2/RTC.html
diff --git a/Cosmos/source/Cosmos.HAL2/TextScreen.cs b/source/Cosmos.HAL2/TextScreen.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/TextScreen.cs
rename to source/Cosmos.HAL2/TextScreen.cs
diff --git a/Cosmos/source/Cosmos.HAL2/TextScreen.html b/source/Cosmos.HAL2/TextScreen.html
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/TextScreen.html
rename to source/Cosmos.HAL2/TextScreen.html
diff --git a/Cosmos/source/Cosmos.HAL2/TextScreenBase.cs b/source/Cosmos.HAL2/TextScreenBase.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/TextScreenBase.cs
rename to source/Cosmos.HAL2/TextScreenBase.cs
diff --git a/Cosmos/source/Cosmos.HAL2/TextScreenHelpers.cs b/source/Cosmos.HAL2/TextScreenHelpers.cs
similarity index 100%
rename from Cosmos/source/Cosmos.HAL2/TextScreenHelpers.cs
rename to source/Cosmos.HAL2/TextScreenHelpers.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/.editorconfig b/source/Cosmos.IL2CPU.API/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/.editorconfig
rename to source/Cosmos.IL2CPU.API/.editorconfig
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/AsmLabel.cs b/source/Cosmos.IL2CPU.API/Attribs/AsmLabel.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/AsmLabel.cs
rename to source/Cosmos.IL2CPU.API/Attribs/AsmLabel.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/AsmMarker.cs b/source/Cosmos.IL2CPU.API/Attribs/AsmMarker.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/AsmMarker.cs
rename to source/Cosmos.IL2CPU.API/Attribs/AsmMarker.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/BootEntry.cs b/source/Cosmos.IL2CPU.API/Attribs/BootEntry.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/BootEntry.cs
rename to source/Cosmos.IL2CPU.API/Attribs/BootEntry.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/DebugStub.cs b/source/Cosmos.IL2CPU.API/Attribs/DebugStub.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/DebugStub.cs
rename to source/Cosmos.IL2CPU.API/Attribs/DebugStub.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/FieldAccess.cs b/source/Cosmos.IL2CPU.API/Attribs/FieldAccess.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/FieldAccess.cs
rename to source/Cosmos.IL2CPU.API/Attribs/FieldAccess.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/FieldType.cs b/source/Cosmos.IL2CPU.API/Attribs/FieldType.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/FieldType.cs
rename to source/Cosmos.IL2CPU.API/Attribs/FieldType.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/ForceInclude.cs b/source/Cosmos.IL2CPU.API/Attribs/ForceInclude.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/ForceInclude.cs
rename to source/Cosmos.IL2CPU.API/Attribs/ForceInclude.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/InlineAttribute.cs b/source/Cosmos.IL2CPU.API/Attribs/InlineAttribute.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/InlineAttribute.cs
rename to source/Cosmos.IL2CPU.API/Attribs/InlineAttribute.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/ObjectPointerAccess.cs b/source/Cosmos.IL2CPU.API/Attribs/ObjectPointerAccess.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/ObjectPointerAccess.cs
rename to source/Cosmos.IL2CPU.API/Attribs/ObjectPointerAccess.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/Plug.cs b/source/Cosmos.IL2CPU.API/Attribs/Plug.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/Plug.cs
rename to source/Cosmos.IL2CPU.API/Attribs/Plug.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/PlugAssembly.cs b/source/Cosmos.IL2CPU.API/Attribs/PlugAssembly.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/PlugAssembly.cs
rename to source/Cosmos.IL2CPU.API/Attribs/PlugAssembly.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/PlugField.cs b/source/Cosmos.IL2CPU.API/Attribs/PlugField.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/PlugField.cs
rename to source/Cosmos.IL2CPU.API/Attribs/PlugField.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Attribs/PlugMethod.cs b/source/Cosmos.IL2CPU.API/Attribs/PlugMethod.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Attribs/PlugMethod.cs
rename to source/Cosmos.IL2CPU.API/Attribs/PlugMethod.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/Cosmos.IL2CPU.API.csproj b/source/Cosmos.IL2CPU.API/Cosmos.IL2CPU.API.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/Cosmos.IL2CPU.API.csproj
rename to source/Cosmos.IL2CPU.API/Cosmos.IL2CPU.API.csproj
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/ObjectUtils.cs b/source/Cosmos.IL2CPU.API/ObjectUtils.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/ObjectUtils.cs
rename to source/Cosmos.IL2CPU.API/ObjectUtils.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU.API/ReadMe.html b/source/Cosmos.IL2CPU.API/ReadMe.html
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU.API/ReadMe.html
rename to source/Cosmos.IL2CPU.API/ReadMe.html
diff --git a/Cosmos/source/Cosmos.IL2CPU/.editorconfig b/source/Cosmos.IL2CPU/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/.editorconfig
rename to source/Cosmos.IL2CPU/.editorconfig
diff --git a/Cosmos/source/Cosmos.IL2CPU/AppAssembler.cs b/source/Cosmos.IL2CPU/AppAssembler.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/AppAssembler.cs
rename to source/Cosmos.IL2CPU/AppAssembler.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/AssemblyLoadContextExtensions.cs b/source/Cosmos.IL2CPU/AssemblyLoadContextExtensions.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/AssemblyLoadContextExtensions.cs
rename to source/Cosmos.IL2CPU/AssemblyLoadContextExtensions.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/CompilerEngine.cs b/source/Cosmos.IL2CPU/CompilerEngine.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/CompilerEngine.cs
rename to source/Cosmos.IL2CPU/CompilerEngine.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/CompilerHelpers.cs b/source/Cosmos.IL2CPU/CompilerHelpers.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/CompilerHelpers.cs
rename to source/Cosmos.IL2CPU/CompilerHelpers.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/Cosmos.IL2CPU.csproj b/source/Cosmos.IL2CPU/Cosmos.IL2CPU.csproj
similarity index 91%
rename from Cosmos/source/Cosmos.IL2CPU/Cosmos.IL2CPU.csproj
rename to source/Cosmos.IL2CPU/Cosmos.IL2CPU.csproj
index 5bb877e298..e56230ea87 100644
--- a/Cosmos/source/Cosmos.IL2CPU/Cosmos.IL2CPU.csproj
+++ b/source/Cosmos.IL2CPU/Cosmos.IL2CPU.csproj
@@ -19,7 +19,7 @@
-
+
\ No newline at end of file
diff --git a/Cosmos/source/Cosmos.IL2CPU/CosmosAssembler.cs b/source/Cosmos.IL2CPU/CosmosAssembler.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/CosmosAssembler.cs
rename to source/Cosmos.IL2CPU/CosmosAssembler.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ElfHash.cs b/source/Cosmos.IL2CPU/ElfHash.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ElfHash.cs
rename to source/Cosmos.IL2CPU/ElfHash.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ExceptionHelper.cs b/source/Cosmos.IL2CPU/ExceptionHelper.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ExceptionHelper.cs
rename to source/Cosmos.IL2CPU/ExceptionHelper.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/Extensions/ExceptionRegionExtensions.cs b/source/Cosmos.IL2CPU/Extensions/ExceptionRegionExtensions.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/Extensions/ExceptionRegionExtensions.cs
rename to source/Cosmos.IL2CPU/Extensions/ExceptionRegionExtensions.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/Extensions/FieldExtensions.cs b/source/Cosmos.IL2CPU/Extensions/FieldExtensions.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/Extensions/FieldExtensions.cs
rename to source/Cosmos.IL2CPU/Extensions/FieldExtensions.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/Extensions/MethodExtensions.cs b/source/Cosmos.IL2CPU/Extensions/MethodExtensions.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/Extensions/MethodExtensions.cs
rename to source/Cosmos.IL2CPU/Extensions/MethodExtensions.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/Extensions/TypeExtensions.cs b/source/Cosmos.IL2CPU/Extensions/TypeExtensions.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/Extensions/TypeExtensions.cs
rename to source/Cosmos.IL2CPU/Extensions/TypeExtensions.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/GCImplementationRefs.cs b/source/Cosmos.IL2CPU/GCImplementationRefs.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/GCImplementationRefs.cs
rename to source/Cosmos.IL2CPU/GCImplementationRefs.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/Heap.cs b/source/Cosmos.IL2CPU/Heap.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/Heap.cs
rename to source/Cosmos.IL2CPU/Heap.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Add.cs b/source/Cosmos.IL2CPU/IL/Add.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Add.cs
rename to source/Cosmos.IL2CPU/IL/Add.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Add_Ovf.cs b/source/Cosmos.IL2CPU/IL/Add_Ovf.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Add_Ovf.cs
rename to source/Cosmos.IL2CPU/IL/Add_Ovf.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Add_Ovf_Un.cs b/source/Cosmos.IL2CPU/IL/Add_Ovf_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Add_Ovf_Un.cs
rename to source/Cosmos.IL2CPU/IL/Add_Ovf_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/And.cs b/source/Cosmos.IL2CPU/IL/And.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/And.cs
rename to source/Cosmos.IL2CPU/IL/And.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Arglist.cs b/source/Cosmos.IL2CPU/IL/Arglist.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Arglist.cs
rename to source/Cosmos.IL2CPU/IL/Arglist.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Box.cs b/source/Cosmos.IL2CPU/IL/Box.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Box.cs
rename to source/Cosmos.IL2CPU/IL/Box.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Br.cs b/source/Cosmos.IL2CPU/IL/Br.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Br.cs
rename to source/Cosmos.IL2CPU/IL/Br.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Branch.cs b/source/Cosmos.IL2CPU/IL/Branch.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Branch.cs
rename to source/Cosmos.IL2CPU/IL/Branch.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Break.cs b/source/Cosmos.IL2CPU/IL/Break.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Break.cs
rename to source/Cosmos.IL2CPU/IL/Break.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Brfalse.cs b/source/Cosmos.IL2CPU/IL/Brfalse.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Brfalse.cs
rename to source/Cosmos.IL2CPU/IL/Brfalse.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Brtrue.cs b/source/Cosmos.IL2CPU/IL/Brtrue.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Brtrue.cs
rename to source/Cosmos.IL2CPU/IL/Brtrue.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Call.cs b/source/Cosmos.IL2CPU/IL/Call.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Call.cs
rename to source/Cosmos.IL2CPU/IL/Call.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Calli.cs b/source/Cosmos.IL2CPU/IL/Calli.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Calli.cs
rename to source/Cosmos.IL2CPU/IL/Calli.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Callvirt.cs b/source/Cosmos.IL2CPU/IL/Callvirt.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Callvirt.cs
rename to source/Cosmos.IL2CPU/IL/Callvirt.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Castclass.cs b/source/Cosmos.IL2CPU/IL/Castclass.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Castclass.cs
rename to source/Cosmos.IL2CPU/IL/Castclass.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ceq.cs b/source/Cosmos.IL2CPU/IL/Ceq.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ceq.cs
rename to source/Cosmos.IL2CPU/IL/Ceq.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Cgt.cs b/source/Cosmos.IL2CPU/IL/Cgt.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Cgt.cs
rename to source/Cosmos.IL2CPU/IL/Cgt.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Cgt_Un.cs b/source/Cosmos.IL2CPU/IL/Cgt_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Cgt_Un.cs
rename to source/Cosmos.IL2CPU/IL/Cgt_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ckfinite.cs b/source/Cosmos.IL2CPU/IL/Ckfinite.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ckfinite.cs
rename to source/Cosmos.IL2CPU/IL/Ckfinite.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Clt.cs b/source/Cosmos.IL2CPU/IL/Clt.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Clt.cs
rename to source/Cosmos.IL2CPU/IL/Clt.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Clt_Un.cs b/source/Cosmos.IL2CPU/IL/Clt_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Clt_Un.cs
rename to source/Cosmos.IL2CPU/IL/Clt_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Constrained.cs b/source/Cosmos.IL2CPU/IL/Constrained.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Constrained.cs
rename to source/Cosmos.IL2CPU/IL/Constrained.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_I.cs b/source/Cosmos.IL2CPU/IL/Conv_I.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_I.cs
rename to source/Cosmos.IL2CPU/IL/Conv_I.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_I1.cs b/source/Cosmos.IL2CPU/IL/Conv_I1.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_I1.cs
rename to source/Cosmos.IL2CPU/IL/Conv_I1.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_I2.cs b/source/Cosmos.IL2CPU/IL/Conv_I2.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_I2.cs
rename to source/Cosmos.IL2CPU/IL/Conv_I2.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_I4.cs b/source/Cosmos.IL2CPU/IL/Conv_I4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_I4.cs
rename to source/Cosmos.IL2CPU/IL/Conv_I4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_I8.cs b/source/Cosmos.IL2CPU/IL/Conv_I8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_I8.cs
rename to source/Cosmos.IL2CPU/IL/Conv_I8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_I.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_I.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I1.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_I1.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I1.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_I1.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I1_Un.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_I1_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I1_Un.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_I1_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I2.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_I2.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I2.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_I2.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I2_Un.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_I2_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I2_Un.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_I2_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I4.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_I4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I4.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_I4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I4_Un.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_I4_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I4_Un.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_I4_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I8.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_I8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I8.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_I8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I8_Un.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_I8_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I8_Un.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_I8_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I_Un.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_I_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_I_Un.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_I_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_U.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_U.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U1.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_U1.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U1.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_U1.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U1_Un.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_U1_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U1_Un.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_U1_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U2.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_U2.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U2.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_U2.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U2_Un.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_U2_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U2_Un.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_U2_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U4.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_U4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U4.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_U4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U4_Un.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_U4_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U4_Un.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_U4_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U8.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_U8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U8.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_U8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U8_Un.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_U8_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U8_Un.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_U8_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U_Un.cs b/source/Cosmos.IL2CPU/IL/Conv_Ovf_U_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_Ovf_U_Un.cs
rename to source/Cosmos.IL2CPU/IL/Conv_Ovf_U_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_R4.cs b/source/Cosmos.IL2CPU/IL/Conv_R4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_R4.cs
rename to source/Cosmos.IL2CPU/IL/Conv_R4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_R8.cs b/source/Cosmos.IL2CPU/IL/Conv_R8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_R8.cs
rename to source/Cosmos.IL2CPU/IL/Conv_R8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_R_Un.cs b/source/Cosmos.IL2CPU/IL/Conv_R_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_R_Un.cs
rename to source/Cosmos.IL2CPU/IL/Conv_R_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_U.cs b/source/Cosmos.IL2CPU/IL/Conv_U.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_U.cs
rename to source/Cosmos.IL2CPU/IL/Conv_U.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_U1.cs b/source/Cosmos.IL2CPU/IL/Conv_U1.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_U1.cs
rename to source/Cosmos.IL2CPU/IL/Conv_U1.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_U2.cs b/source/Cosmos.IL2CPU/IL/Conv_U2.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_U2.cs
rename to source/Cosmos.IL2CPU/IL/Conv_U2.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_U4.cs b/source/Cosmos.IL2CPU/IL/Conv_U4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_U4.cs
rename to source/Cosmos.IL2CPU/IL/Conv_U4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Conv_U8.cs b/source/Cosmos.IL2CPU/IL/Conv_U8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Conv_U8.cs
rename to source/Cosmos.IL2CPU/IL/Conv_U8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Cpblk.cs b/source/Cosmos.IL2CPU/IL/Cpblk.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Cpblk.cs
rename to source/Cosmos.IL2CPU/IL/Cpblk.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Cpobj.cs b/source/Cosmos.IL2CPU/IL/Cpobj.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Cpobj.cs
rename to source/Cosmos.IL2CPU/IL/Cpobj.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Div.cs b/source/Cosmos.IL2CPU/IL/Div.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Div.cs
rename to source/Cosmos.IL2CPU/IL/Div.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Div_Un.cs b/source/Cosmos.IL2CPU/IL/Div_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Div_Un.cs
rename to source/Cosmos.IL2CPU/IL/Div_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Dup.cs b/source/Cosmos.IL2CPU/IL/Dup.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Dup.cs
rename to source/Cosmos.IL2CPU/IL/Dup.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Endfilter.cs b/source/Cosmos.IL2CPU/IL/Endfilter.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Endfilter.cs
rename to source/Cosmos.IL2CPU/IL/Endfilter.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Endfinally.cs b/source/Cosmos.IL2CPU/IL/Endfinally.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Endfinally.cs
rename to source/Cosmos.IL2CPU/IL/Endfinally.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Initblk.cs b/source/Cosmos.IL2CPU/IL/Initblk.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Initblk.cs
rename to source/Cosmos.IL2CPU/IL/Initblk.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Initobj.cs b/source/Cosmos.IL2CPU/IL/Initobj.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Initobj.cs
rename to source/Cosmos.IL2CPU/IL/Initobj.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Isinst.cs b/source/Cosmos.IL2CPU/IL/Isinst.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Isinst.cs
rename to source/Cosmos.IL2CPU/IL/Isinst.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Jmp.cs b/source/Cosmos.IL2CPU/IL/Jmp.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Jmp.cs
rename to source/Cosmos.IL2CPU/IL/Jmp.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldarg.cs b/source/Cosmos.IL2CPU/IL/Ldarg.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldarg.cs
rename to source/Cosmos.IL2CPU/IL/Ldarg.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldarga.cs b/source/Cosmos.IL2CPU/IL/Ldarga.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldarga.cs
rename to source/Cosmos.IL2CPU/IL/Ldarga.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldc_I4.cs b/source/Cosmos.IL2CPU/IL/Ldc_I4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldc_I4.cs
rename to source/Cosmos.IL2CPU/IL/Ldc_I4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldc_I8.cs b/source/Cosmos.IL2CPU/IL/Ldc_I8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldc_I8.cs
rename to source/Cosmos.IL2CPU/IL/Ldc_I8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldc_R4.cs b/source/Cosmos.IL2CPU/IL/Ldc_R4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldc_R4.cs
rename to source/Cosmos.IL2CPU/IL/Ldc_R4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldc_R8.cs b/source/Cosmos.IL2CPU/IL/Ldc_R8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldc_R8.cs
rename to source/Cosmos.IL2CPU/IL/Ldc_R8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem.cs b/source/Cosmos.IL2CPU/IL/Ldelem.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_I.cs b/source/Cosmos.IL2CPU/IL/Ldelem_I.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_I.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem_I.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_I1.cs b/source/Cosmos.IL2CPU/IL/Ldelem_I1.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_I1.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem_I1.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_I2.cs b/source/Cosmos.IL2CPU/IL/Ldelem_I2.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_I2.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem_I2.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_I4.cs b/source/Cosmos.IL2CPU/IL/Ldelem_I4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_I4.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem_I4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_I8.cs b/source/Cosmos.IL2CPU/IL/Ldelem_I8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_I8.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem_I8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_R4.cs b/source/Cosmos.IL2CPU/IL/Ldelem_R4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_R4.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem_R4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_R8.cs b/source/Cosmos.IL2CPU/IL/Ldelem_R8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_R8.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem_R8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_Ref.cs b/source/Cosmos.IL2CPU/IL/Ldelem_Ref.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_Ref.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem_Ref.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_U1.cs b/source/Cosmos.IL2CPU/IL/Ldelem_U1.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_U1.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem_U1.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_U2.cs b/source/Cosmos.IL2CPU/IL/Ldelem_U2.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_U2.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem_U2.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_U4.cs b/source/Cosmos.IL2CPU/IL/Ldelem_U4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelem_U4.cs
rename to source/Cosmos.IL2CPU/IL/Ldelem_U4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldelema.cs b/source/Cosmos.IL2CPU/IL/Ldelema.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldelema.cs
rename to source/Cosmos.IL2CPU/IL/Ldelema.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldfld.cs b/source/Cosmos.IL2CPU/IL/Ldfld.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldfld.cs
rename to source/Cosmos.IL2CPU/IL/Ldfld.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldflda.cs b/source/Cosmos.IL2CPU/IL/Ldflda.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldflda.cs
rename to source/Cosmos.IL2CPU/IL/Ldflda.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldftn.cs b/source/Cosmos.IL2CPU/IL/Ldftn.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldftn.cs
rename to source/Cosmos.IL2CPU/IL/Ldftn.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldind_I.cs b/source/Cosmos.IL2CPU/IL/Ldind_I.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldind_I.cs
rename to source/Cosmos.IL2CPU/IL/Ldind_I.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldind_I1.cs b/source/Cosmos.IL2CPU/IL/Ldind_I1.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldind_I1.cs
rename to source/Cosmos.IL2CPU/IL/Ldind_I1.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldind_I2.cs b/source/Cosmos.IL2CPU/IL/Ldind_I2.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldind_I2.cs
rename to source/Cosmos.IL2CPU/IL/Ldind_I2.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldind_I4.cs b/source/Cosmos.IL2CPU/IL/Ldind_I4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldind_I4.cs
rename to source/Cosmos.IL2CPU/IL/Ldind_I4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldind_I8.cs b/source/Cosmos.IL2CPU/IL/Ldind_I8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldind_I8.cs
rename to source/Cosmos.IL2CPU/IL/Ldind_I8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldind_R4.cs b/source/Cosmos.IL2CPU/IL/Ldind_R4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldind_R4.cs
rename to source/Cosmos.IL2CPU/IL/Ldind_R4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldind_R8.cs b/source/Cosmos.IL2CPU/IL/Ldind_R8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldind_R8.cs
rename to source/Cosmos.IL2CPU/IL/Ldind_R8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldind_Ref.cs b/source/Cosmos.IL2CPU/IL/Ldind_Ref.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldind_Ref.cs
rename to source/Cosmos.IL2CPU/IL/Ldind_Ref.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldind_U1.cs b/source/Cosmos.IL2CPU/IL/Ldind_U1.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldind_U1.cs
rename to source/Cosmos.IL2CPU/IL/Ldind_U1.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldind_U2.cs b/source/Cosmos.IL2CPU/IL/Ldind_U2.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldind_U2.cs
rename to source/Cosmos.IL2CPU/IL/Ldind_U2.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldind_U4.cs b/source/Cosmos.IL2CPU/IL/Ldind_U4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldind_U4.cs
rename to source/Cosmos.IL2CPU/IL/Ldind_U4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldlen.cs b/source/Cosmos.IL2CPU/IL/Ldlen.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldlen.cs
rename to source/Cosmos.IL2CPU/IL/Ldlen.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldloc.cs b/source/Cosmos.IL2CPU/IL/Ldloc.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldloc.cs
rename to source/Cosmos.IL2CPU/IL/Ldloc.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldloca.cs b/source/Cosmos.IL2CPU/IL/Ldloca.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldloca.cs
rename to source/Cosmos.IL2CPU/IL/Ldloca.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldnull.cs b/source/Cosmos.IL2CPU/IL/Ldnull.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldnull.cs
rename to source/Cosmos.IL2CPU/IL/Ldnull.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldobj.cs b/source/Cosmos.IL2CPU/IL/Ldobj.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldobj.cs
rename to source/Cosmos.IL2CPU/IL/Ldobj.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldsfld.cs b/source/Cosmos.IL2CPU/IL/Ldsfld.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldsfld.cs
rename to source/Cosmos.IL2CPU/IL/Ldsfld.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldsflda.cs b/source/Cosmos.IL2CPU/IL/Ldsflda.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldsflda.cs
rename to source/Cosmos.IL2CPU/IL/Ldsflda.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldstr.cs b/source/Cosmos.IL2CPU/IL/Ldstr.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldstr.cs
rename to source/Cosmos.IL2CPU/IL/Ldstr.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldtoken.cs b/source/Cosmos.IL2CPU/IL/Ldtoken.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldtoken.cs
rename to source/Cosmos.IL2CPU/IL/Ldtoken.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ldvirtftn.cs b/source/Cosmos.IL2CPU/IL/Ldvirtftn.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ldvirtftn.cs
rename to source/Cosmos.IL2CPU/IL/Ldvirtftn.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Leave.cs b/source/Cosmos.IL2CPU/IL/Leave.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Leave.cs
rename to source/Cosmos.IL2CPU/IL/Leave.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Localloc.cs b/source/Cosmos.IL2CPU/IL/Localloc.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Localloc.cs
rename to source/Cosmos.IL2CPU/IL/Localloc.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Mkrefany.cs b/source/Cosmos.IL2CPU/IL/Mkrefany.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Mkrefany.cs
rename to source/Cosmos.IL2CPU/IL/Mkrefany.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Mul.cs b/source/Cosmos.IL2CPU/IL/Mul.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Mul.cs
rename to source/Cosmos.IL2CPU/IL/Mul.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Mul_Ovf.cs b/source/Cosmos.IL2CPU/IL/Mul_Ovf.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Mul_Ovf.cs
rename to source/Cosmos.IL2CPU/IL/Mul_Ovf.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Mul_Ovf_Un.cs b/source/Cosmos.IL2CPU/IL/Mul_Ovf_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Mul_Ovf_Un.cs
rename to source/Cosmos.IL2CPU/IL/Mul_Ovf_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Neg.cs b/source/Cosmos.IL2CPU/IL/Neg.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Neg.cs
rename to source/Cosmos.IL2CPU/IL/Neg.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Newarr.cs b/source/Cosmos.IL2CPU/IL/Newarr.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Newarr.cs
rename to source/Cosmos.IL2CPU/IL/Newarr.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Newobj.cs b/source/Cosmos.IL2CPU/IL/Newobj.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Newobj.cs
rename to source/Cosmos.IL2CPU/IL/Newobj.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Nop.cs b/source/Cosmos.IL2CPU/IL/Nop.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Nop.cs
rename to source/Cosmos.IL2CPU/IL/Nop.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Not.cs b/source/Cosmos.IL2CPU/IL/Not.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Not.cs
rename to source/Cosmos.IL2CPU/IL/Not.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Or.cs b/source/Cosmos.IL2CPU/IL/Or.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Or.cs
rename to source/Cosmos.IL2CPU/IL/Or.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Pop.cs b/source/Cosmos.IL2CPU/IL/Pop.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Pop.cs
rename to source/Cosmos.IL2CPU/IL/Pop.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Readonly.cs b/source/Cosmos.IL2CPU/IL/Readonly.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Readonly.cs
rename to source/Cosmos.IL2CPU/IL/Readonly.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Refanytype.cs b/source/Cosmos.IL2CPU/IL/Refanytype.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Refanytype.cs
rename to source/Cosmos.IL2CPU/IL/Refanytype.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Refanyval.cs b/source/Cosmos.IL2CPU/IL/Refanyval.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Refanyval.cs
rename to source/Cosmos.IL2CPU/IL/Refanyval.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Rem.cs b/source/Cosmos.IL2CPU/IL/Rem.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Rem.cs
rename to source/Cosmos.IL2CPU/IL/Rem.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Rem_Un.cs b/source/Cosmos.IL2CPU/IL/Rem_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Rem_Un.cs
rename to source/Cosmos.IL2CPU/IL/Rem_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Ret.cs b/source/Cosmos.IL2CPU/IL/Ret.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Ret.cs
rename to source/Cosmos.IL2CPU/IL/Ret.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Rethrow.cs b/source/Cosmos.IL2CPU/IL/Rethrow.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Rethrow.cs
rename to source/Cosmos.IL2CPU/IL/Rethrow.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Shl.cs b/source/Cosmos.IL2CPU/IL/Shl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Shl.cs
rename to source/Cosmos.IL2CPU/IL/Shl.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Shr.cs b/source/Cosmos.IL2CPU/IL/Shr.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Shr.cs
rename to source/Cosmos.IL2CPU/IL/Shr.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Shr_Un.cs b/source/Cosmos.IL2CPU/IL/Shr_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Shr_Un.cs
rename to source/Cosmos.IL2CPU/IL/Shr_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Sizeof.cs b/source/Cosmos.IL2CPU/IL/Sizeof.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Sizeof.cs
rename to source/Cosmos.IL2CPU/IL/Sizeof.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Starg.cs b/source/Cosmos.IL2CPU/IL/Starg.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Starg.cs
rename to source/Cosmos.IL2CPU/IL/Starg.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stelem.cs b/source/Cosmos.IL2CPU/IL/Stelem.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stelem.cs
rename to source/Cosmos.IL2CPU/IL/Stelem.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stelem_I.cs b/source/Cosmos.IL2CPU/IL/Stelem_I.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stelem_I.cs
rename to source/Cosmos.IL2CPU/IL/Stelem_I.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stelem_I1.cs b/source/Cosmos.IL2CPU/IL/Stelem_I1.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stelem_I1.cs
rename to source/Cosmos.IL2CPU/IL/Stelem_I1.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stelem_I2.cs b/source/Cosmos.IL2CPU/IL/Stelem_I2.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stelem_I2.cs
rename to source/Cosmos.IL2CPU/IL/Stelem_I2.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stelem_I4.cs b/source/Cosmos.IL2CPU/IL/Stelem_I4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stelem_I4.cs
rename to source/Cosmos.IL2CPU/IL/Stelem_I4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stelem_I8.cs b/source/Cosmos.IL2CPU/IL/Stelem_I8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stelem_I8.cs
rename to source/Cosmos.IL2CPU/IL/Stelem_I8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stelem_R4.cs b/source/Cosmos.IL2CPU/IL/Stelem_R4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stelem_R4.cs
rename to source/Cosmos.IL2CPU/IL/Stelem_R4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stelem_R8.cs b/source/Cosmos.IL2CPU/IL/Stelem_R8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stelem_R8.cs
rename to source/Cosmos.IL2CPU/IL/Stelem_R8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stelem_Ref.cs b/source/Cosmos.IL2CPU/IL/Stelem_Ref.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stelem_Ref.cs
rename to source/Cosmos.IL2CPU/IL/Stelem_Ref.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stfld.cs b/source/Cosmos.IL2CPU/IL/Stfld.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stfld.cs
rename to source/Cosmos.IL2CPU/IL/Stfld.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stind_I.cs b/source/Cosmos.IL2CPU/IL/Stind_I.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stind_I.cs
rename to source/Cosmos.IL2CPU/IL/Stind_I.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stind_I1.cs b/source/Cosmos.IL2CPU/IL/Stind_I1.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stind_I1.cs
rename to source/Cosmos.IL2CPU/IL/Stind_I1.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stind_I2.cs b/source/Cosmos.IL2CPU/IL/Stind_I2.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stind_I2.cs
rename to source/Cosmos.IL2CPU/IL/Stind_I2.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stind_I4.cs b/source/Cosmos.IL2CPU/IL/Stind_I4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stind_I4.cs
rename to source/Cosmos.IL2CPU/IL/Stind_I4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stind_I8.cs b/source/Cosmos.IL2CPU/IL/Stind_I8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stind_I8.cs
rename to source/Cosmos.IL2CPU/IL/Stind_I8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stind_R4.cs b/source/Cosmos.IL2CPU/IL/Stind_R4.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stind_R4.cs
rename to source/Cosmos.IL2CPU/IL/Stind_R4.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stind_R8.cs b/source/Cosmos.IL2CPU/IL/Stind_R8.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stind_R8.cs
rename to source/Cosmos.IL2CPU/IL/Stind_R8.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stind_Ref.cs b/source/Cosmos.IL2CPU/IL/Stind_Ref.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stind_Ref.cs
rename to source/Cosmos.IL2CPU/IL/Stind_Ref.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stloc.cs b/source/Cosmos.IL2CPU/IL/Stloc.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stloc.cs
rename to source/Cosmos.IL2CPU/IL/Stloc.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stobj.cs b/source/Cosmos.IL2CPU/IL/Stobj.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stobj.cs
rename to source/Cosmos.IL2CPU/IL/Stobj.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Stsfld.cs b/source/Cosmos.IL2CPU/IL/Stsfld.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Stsfld.cs
rename to source/Cosmos.IL2CPU/IL/Stsfld.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Sub.cs b/source/Cosmos.IL2CPU/IL/Sub.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Sub.cs
rename to source/Cosmos.IL2CPU/IL/Sub.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Sub_Ovf.cs b/source/Cosmos.IL2CPU/IL/Sub_Ovf.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Sub_Ovf.cs
rename to source/Cosmos.IL2CPU/IL/Sub_Ovf.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Sub_Ovf_Un.cs b/source/Cosmos.IL2CPU/IL/Sub_Ovf_Un.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Sub_Ovf_Un.cs
rename to source/Cosmos.IL2CPU/IL/Sub_Ovf_Un.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Switch.cs b/source/Cosmos.IL2CPU/IL/Switch.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Switch.cs
rename to source/Cosmos.IL2CPU/IL/Switch.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Throw.cs b/source/Cosmos.IL2CPU/IL/Throw.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Throw.cs
rename to source/Cosmos.IL2CPU/IL/Throw.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Unaligned.cs b/source/Cosmos.IL2CPU/IL/Unaligned.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Unaligned.cs
rename to source/Cosmos.IL2CPU/IL/Unaligned.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Unbox.cs b/source/Cosmos.IL2CPU/IL/Unbox.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Unbox.cs
rename to source/Cosmos.IL2CPU/IL/Unbox.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Unbox_Any.cs b/source/Cosmos.IL2CPU/IL/Unbox_Any.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Unbox_Any.cs
rename to source/Cosmos.IL2CPU/IL/Unbox_Any.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Volatile.cs b/source/Cosmos.IL2CPU/IL/Volatile.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Volatile.cs
rename to source/Cosmos.IL2CPU/IL/Volatile.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/IL/Xor.cs b/source/Cosmos.IL2CPU/IL/Xor.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/IL/Xor.cs
rename to source/Cosmos.IL2CPU/IL/Xor.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOp.cs b/source/Cosmos.IL2CPU/ILOp.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOp.cs
rename to source/Cosmos.IL2CPU/ILOp.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCode.cs b/source/Cosmos.IL2CPU/ILOpCode.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCode.cs
rename to source/Cosmos.IL2CPU/ILOpCode.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/.editorconfig b/source/Cosmos.IL2CPU/ILOpCodes/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/.editorconfig
rename to source/Cosmos.IL2CPU/ILOpCodes/.editorconfig
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/BoxOfT.cs b/source/Cosmos.IL2CPU/ILOpCodes/BoxOfT.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/BoxOfT.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/BoxOfT.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/NullRef.cs b/source/Cosmos.IL2CPU/ILOpCodes/NullRef.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/NullRef.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/NullRef.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpBranch.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpBranch.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpBranch.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpBranch.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpDouble.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpDouble.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpDouble.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpDouble.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpField.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpField.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpField.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpField.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpInt.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpInt.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpInt.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpInt.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpInt64.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpInt64.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpInt64.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpInt64.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpMethod.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpMethod.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpMethod.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpMethod.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpNone.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpNone.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpNone.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpNone.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpSig.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpSig.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpSig.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpSig.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpSingle.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpSingle.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpSingle.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpSingle.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpString.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpString.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpString.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpString.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpSwitch.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpSwitch.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpSwitch.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpSwitch.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpToken.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpToken.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpToken.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpToken.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpType.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpType.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpType.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpType.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpVar.cs b/source/Cosmos.IL2CPU/ILOpCodes/OpVar.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILOpCodes/OpVar.cs
rename to source/Cosmos.IL2CPU/ILOpCodes/OpVar.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILReader.cs b/source/Cosmos.IL2CPU/ILReader.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILReader.cs
rename to source/Cosmos.IL2CPU/ILReader.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ILScanner.cs b/source/Cosmos.IL2CPU/ILScanner.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ILScanner.cs
rename to source/Cosmos.IL2CPU/ILScanner.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/KernelPanics.cs b/source/Cosmos.IL2CPU/KernelPanics.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/KernelPanics.cs
rename to source/Cosmos.IL2CPU/KernelPanics.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/MethodBaseComparer.cs b/source/Cosmos.IL2CPU/MethodBaseComparer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/MethodBaseComparer.cs
rename to source/Cosmos.IL2CPU/MethodBaseComparer.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/OpCodeAttribute.cs b/source/Cosmos.IL2CPU/OpCodeAttribute.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/OpCodeAttribute.cs
rename to source/Cosmos.IL2CPU/OpCodeAttribute.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/Optimizer.cs b/source/Cosmos.IL2CPU/Optimizer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/Optimizer.cs
rename to source/Cosmos.IL2CPU/Optimizer.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/OurHashSet.cs b/source/Cosmos.IL2CPU/OurHashSet.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/OurHashSet.cs
rename to source/Cosmos.IL2CPU/OurHashSet.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/PlugInfo.cs b/source/Cosmos.IL2CPU/PlugInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/PlugInfo.cs
rename to source/Cosmos.IL2CPU/PlugInfo.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/PlugManager.cs b/source/Cosmos.IL2CPU/PlugManager.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/PlugManager.cs
rename to source/Cosmos.IL2CPU/PlugManager.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/Program.cs b/source/Cosmos.IL2CPU/Program.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/Program.cs
rename to source/Cosmos.IL2CPU/Program.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/ReadMe.txt b/source/Cosmos.IL2CPU/ReadMe.txt
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ReadMe.txt
rename to source/Cosmos.IL2CPU/ReadMe.txt
diff --git a/Cosmos/source/Cosmos.IL2CPU/ReflectionUtilities.cs b/source/Cosmos.IL2CPU/ReflectionUtilities.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/ReflectionUtilities.cs
rename to source/Cosmos.IL2CPU/ReflectionUtilities.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/RuntimeEngineImpl.cs b/source/Cosmos.IL2CPU/RuntimeEngineImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/RuntimeEngineImpl.cs
rename to source/Cosmos.IL2CPU/RuntimeEngineImpl.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/RuntimeEngineRefs.cs b/source/Cosmos.IL2CPU/RuntimeEngineRefs.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/RuntimeEngineRefs.cs
rename to source/Cosmos.IL2CPU/RuntimeEngineRefs.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/SkipList.cs b/source/Cosmos.IL2CPU/SkipList.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/SkipList.cs
rename to source/Cosmos.IL2CPU/SkipList.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/VTablesImpl.Debug.cs b/source/Cosmos.IL2CPU/VTablesImpl.Debug.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/VTablesImpl.Debug.cs
rename to source/Cosmos.IL2CPU/VTablesImpl.Debug.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/VTablesImpl.cs b/source/Cosmos.IL2CPU/VTablesImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/VTablesImpl.cs
rename to source/Cosmos.IL2CPU/VTablesImpl.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/VTablesImplRefs.cs b/source/Cosmos.IL2CPU/VTablesImplRefs.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/VTablesImplRefs.cs
rename to source/Cosmos.IL2CPU/VTablesImplRefs.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/_ExceptionRegionInfo.cs b/source/Cosmos.IL2CPU/_ExceptionRegionInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/_ExceptionRegionInfo.cs
rename to source/Cosmos.IL2CPU/_ExceptionRegionInfo.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/_FieldInfo.cs b/source/Cosmos.IL2CPU/_FieldInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/_FieldInfo.cs
rename to source/Cosmos.IL2CPU/_FieldInfo.cs
diff --git a/Cosmos/source/Cosmos.IL2CPU/_MethodInfo.cs b/source/Cosmos.IL2CPU/_MethodInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.IL2CPU/_MethodInfo.cs
rename to source/Cosmos.IL2CPU/_MethodInfo.cs
diff --git a/Cosmos/source/Cosmos.System2/.editorconfig b/source/Cosmos.System2/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.System2/.editorconfig
rename to source/Cosmos.System2/.editorconfig
diff --git a/Cosmos/source/Cosmos.System2/Console.cs b/source/Cosmos.System2/Console.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Console.cs
rename to source/Cosmos.System2/Console.cs
diff --git a/Cosmos/source/Cosmos.System2/Console.html b/source/Cosmos.System2/Console.html
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Console.html
rename to source/Cosmos.System2/Console.html
diff --git a/Cosmos/source/Cosmos.System2/Cosmos.System2.csproj b/source/Cosmos.System2/Cosmos.System2.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Cosmos.System2.csproj
rename to source/Cosmos.System2/Cosmos.System2.csproj
diff --git a/Cosmos/source/Cosmos.System2/FileSystem/CosmosVFS.cs b/source/Cosmos.System2/FileSystem/CosmosVFS.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/FileSystem/CosmosVFS.cs
rename to source/Cosmos.System2/FileSystem/CosmosVFS.cs
diff --git a/Cosmos/source/Cosmos.System2/FileSystem/FAT/FatFileSystem.cs b/source/Cosmos.System2/FileSystem/FAT/FatFileSystem.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/FileSystem/FAT/FatFileSystem.cs
rename to source/Cosmos.System2/FileSystem/FAT/FatFileSystem.cs
diff --git a/Cosmos/source/Cosmos.System2/FileSystem/FAT/FatStream.cs b/source/Cosmos.System2/FileSystem/FAT/FatStream.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/FileSystem/FAT/FatStream.cs
rename to source/Cosmos.System2/FileSystem/FAT/FatStream.cs
diff --git a/Cosmos/source/Cosmos.System2/FileSystem/FAT/Listing/FatDirectoryEntryAttributeConsts.cs b/source/Cosmos.System2/FileSystem/FAT/Listing/FatDirectoryEntryAttributeConsts.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/FileSystem/FAT/Listing/FatDirectoryEntryAttributeConsts.cs
rename to source/Cosmos.System2/FileSystem/FAT/Listing/FatDirectoryEntryAttributeConsts.cs
diff --git a/Cosmos/source/Cosmos.System2/FileSystem/FAT/Listing/FatDirectoryEntryMetadata.cs b/source/Cosmos.System2/FileSystem/FAT/Listing/FatDirectoryEntryMetadata.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/FileSystem/FAT/Listing/FatDirectoryEntryMetadata.cs
rename to source/Cosmos.System2/FileSystem/FAT/Listing/FatDirectoryEntryMetadata.cs
diff --git a/Cosmos/source/Cosmos.System2/FileSystem/FAT/Listing/FatDiretoryEntry.cs b/source/Cosmos.System2/FileSystem/FAT/Listing/FatDiretoryEntry.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/FileSystem/FAT/Listing/FatDiretoryEntry.cs
rename to source/Cosmos.System2/FileSystem/FAT/Listing/FatDiretoryEntry.cs
diff --git a/Cosmos/source/Cosmos.System2/FileSystem/FileSystem.cs b/source/Cosmos.System2/FileSystem/FileSystem.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/FileSystem/FileSystem.cs
rename to source/Cosmos.System2/FileSystem/FileSystem.cs
diff --git a/Cosmos/source/Cosmos.System2/FileSystem/FileSystemType.cs b/source/Cosmos.System2/FileSystem/FileSystemType.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/FileSystem/FileSystemType.cs
rename to source/Cosmos.System2/FileSystem/FileSystemType.cs
diff --git a/Cosmos/source/Cosmos.System2/FileSystem/Listing/DirectoryEntry.cs b/source/Cosmos.System2/FileSystem/Listing/DirectoryEntry.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/FileSystem/Listing/DirectoryEntry.cs
rename to source/Cosmos.System2/FileSystem/Listing/DirectoryEntry.cs
diff --git a/Cosmos/source/Cosmos.System2/FileSystem/VFS/VFSBase.cs b/source/Cosmos.System2/FileSystem/VFS/VFSBase.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/FileSystem/VFS/VFSBase.cs
rename to source/Cosmos.System2/FileSystem/VFS/VFSBase.cs
diff --git a/Cosmos/source/Cosmos.System2/FileSystem/VFS/VFSManager.cs b/source/Cosmos.System2/FileSystem/VFS/VFSManager.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/FileSystem/VFS/VFSManager.cs
rename to source/Cosmos.System2/FileSystem/VFS/VFSManager.cs
diff --git a/Cosmos/source/Cosmos.System2/Global.cs b/source/Cosmos.System2/Global.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Global.cs
rename to source/Cosmos.System2/Global.cs
diff --git a/Cosmos/source/Cosmos.System2/Graphics/Canvas.cs b/source/Cosmos.System2/Graphics/Canvas.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Graphics/Canvas.cs
rename to source/Cosmos.System2/Graphics/Canvas.cs
diff --git a/Cosmos/source/Cosmos.System2/Graphics/Color.cs b/source/Cosmos.System2/Graphics/Color.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Graphics/Color.cs
rename to source/Cosmos.System2/Graphics/Color.cs
diff --git a/Cosmos/source/Cosmos.System2/Graphics/ColorDepth.cs b/source/Cosmos.System2/Graphics/ColorDepth.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Graphics/ColorDepth.cs
rename to source/Cosmos.System2/Graphics/ColorDepth.cs
diff --git a/Cosmos/source/Cosmos.System2/Graphics/FullScreenCanvas.cs b/source/Cosmos.System2/Graphics/FullScreenCanvas.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Graphics/FullScreenCanvas.cs
rename to source/Cosmos.System2/Graphics/FullScreenCanvas.cs
diff --git a/Cosmos/source/Cosmos.System2/Graphics/KnownColor.cs b/source/Cosmos.System2/Graphics/KnownColor.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Graphics/KnownColor.cs
rename to source/Cosmos.System2/Graphics/KnownColor.cs
diff --git a/Cosmos/source/Cosmos.System2/Graphics/KnownColorTable.cs b/source/Cosmos.System2/Graphics/KnownColorTable.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Graphics/KnownColorTable.cs
rename to source/Cosmos.System2/Graphics/KnownColorTable.cs
diff --git a/Cosmos/source/Cosmos.System2/Graphics/Mode.cs b/source/Cosmos.System2/Graphics/Mode.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Graphics/Mode.cs
rename to source/Cosmos.System2/Graphics/Mode.cs
diff --git a/Cosmos/source/Cosmos.System2/Graphics/Pen.cs b/source/Cosmos.System2/Graphics/Pen.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Graphics/Pen.cs
rename to source/Cosmos.System2/Graphics/Pen.cs
diff --git a/Cosmos/source/Cosmos.System2/Graphics/VBEScreen.cs b/source/Cosmos.System2/Graphics/VBEScreen.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Graphics/VBEScreen.cs
rename to source/Cosmos.System2/Graphics/VBEScreen.cs
diff --git a/Cosmos/source/Cosmos.System2/Graphics/VGAScreen.cs b/source/Cosmos.System2/Graphics/VGAScreen.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Graphics/VGAScreen.cs
rename to source/Cosmos.System2/Graphics/VGAScreen.cs
diff --git a/Cosmos/source/Cosmos.System2/Kernel.cs b/source/Cosmos.System2/Kernel.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Kernel.cs
rename to source/Cosmos.System2/Kernel.cs
diff --git a/Cosmos/source/Cosmos.System2/Kernel.html b/source/Cosmos.System2/Kernel.html
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Kernel.html
rename to source/Cosmos.System2/Kernel.html
diff --git a/Cosmos/source/Cosmos.System2/Keyboard/ConsoleKeyEx.cs b/source/Cosmos.System2/Keyboard/ConsoleKeyEx.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Keyboard/ConsoleKeyEx.cs
rename to source/Cosmos.System2/Keyboard/ConsoleKeyEx.cs
diff --git a/Cosmos/source/Cosmos.System2/Keyboard/ConsoleKeyExExtensions.cs b/source/Cosmos.System2/Keyboard/ConsoleKeyExExtensions.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Keyboard/ConsoleKeyExExtensions.cs
rename to source/Cosmos.System2/Keyboard/ConsoleKeyExExtensions.cs
diff --git a/Cosmos/source/Cosmos.System2/Keyboard/KeyEvent.cs b/source/Cosmos.System2/Keyboard/KeyEvent.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Keyboard/KeyEvent.cs
rename to source/Cosmos.System2/Keyboard/KeyEvent.cs
diff --git a/Cosmos/source/Cosmos.System2/Keyboard/KeyMapping.cs b/source/Cosmos.System2/Keyboard/KeyMapping.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Keyboard/KeyMapping.cs
rename to source/Cosmos.System2/Keyboard/KeyMapping.cs
diff --git a/Cosmos/source/Cosmos.System2/Keyboard/KeyboardManager.cs b/source/Cosmos.System2/Keyboard/KeyboardManager.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Keyboard/KeyboardManager.cs
rename to source/Cosmos.System2/Keyboard/KeyboardManager.cs
diff --git a/Cosmos/source/Cosmos.System2/Keyboard/ScanMapBase.cs b/source/Cosmos.System2/Keyboard/ScanMapBase.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Keyboard/ScanMapBase.cs
rename to source/Cosmos.System2/Keyboard/ScanMapBase.cs
diff --git a/Cosmos/source/Cosmos.System2/Keyboard/ScanMaps/DE_Standard.cs b/source/Cosmos.System2/Keyboard/ScanMaps/DE_Standard.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Keyboard/ScanMaps/DE_Standard.cs
rename to source/Cosmos.System2/Keyboard/ScanMaps/DE_Standard.cs
diff --git a/Cosmos/source/Cosmos.System2/Keyboard/ScanMaps/FR_Standard.cs b/source/Cosmos.System2/Keyboard/ScanMaps/FR_Standard.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Keyboard/ScanMaps/FR_Standard.cs
rename to source/Cosmos.System2/Keyboard/ScanMaps/FR_Standard.cs
diff --git a/Cosmos/source/Cosmos.System2/Keyboard/ScanMaps/US_Standard.cs b/source/Cosmos.System2/Keyboard/ScanMaps/US_Standard.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Keyboard/ScanMaps/US_Standard.cs
rename to source/Cosmos.System2/Keyboard/ScanMaps/US_Standard.cs
diff --git a/Cosmos/source/Cosmos.System2/MathEx.cs b/source/Cosmos.System2/MathEx.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/MathEx.cs
rename to source/Cosmos.System2/MathEx.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/.editorconfig b/source/Cosmos.System2/Network/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/.editorconfig
rename to source/Cosmos.System2/Network/.editorconfig
diff --git a/Cosmos/source/Cosmos.System2/Network/ARP/ARPCache.cs b/source/Cosmos.System2/Network/ARP/ARPCache.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/ARP/ARPCache.cs
rename to source/Cosmos.System2/Network/ARP/ARPCache.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/ARP/ARPPacket.cs b/source/Cosmos.System2/Network/ARP/ARPPacket.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/ARP/ARPPacket.cs
rename to source/Cosmos.System2/Network/ARP/ARPPacket.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/EthernetPacket.cs b/source/Cosmos.System2/Network/EthernetPacket.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/EthernetPacket.cs
rename to source/Cosmos.System2/Network/EthernetPacket.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/IPv4/ARPPacket_Ethernet.cs b/source/Cosmos.System2/Network/IPv4/ARPPacket_Ethernet.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/IPv4/ARPPacket_Ethernet.cs
rename to source/Cosmos.System2/Network/IPv4/ARPPacket_Ethernet.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/IPv4/Address.cs b/source/Cosmos.System2/Network/IPv4/Address.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/IPv4/Address.cs
rename to source/Cosmos.System2/Network/IPv4/Address.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/IPv4/Config.cs b/source/Cosmos.System2/Network/IPv4/Config.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/IPv4/Config.cs
rename to source/Cosmos.System2/Network/IPv4/Config.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/IPv4/EndPoint.cs b/source/Cosmos.System2/Network/IPv4/EndPoint.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/IPv4/EndPoint.cs
rename to source/Cosmos.System2/Network/IPv4/EndPoint.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/IPv4/ICMPPacket.cs b/source/Cosmos.System2/Network/IPv4/ICMPPacket.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/IPv4/ICMPPacket.cs
rename to source/Cosmos.System2/Network/IPv4/ICMPPacket.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/IPv4/IPPacket.cs b/source/Cosmos.System2/Network/IPv4/IPPacket.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/IPv4/IPPacket.cs
rename to source/Cosmos.System2/Network/IPv4/IPPacket.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/IPv4/OutgoingBuffer.cs b/source/Cosmos.System2/Network/IPv4/OutgoingBuffer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/IPv4/OutgoingBuffer.cs
rename to source/Cosmos.System2/Network/IPv4/OutgoingBuffer.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/IPv4/UDPPacket.cs b/source/Cosmos.System2/Network/IPv4/UDPPacket.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/IPv4/UDPPacket.cs
rename to source/Cosmos.System2/Network/IPv4/UDPPacket.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/NetworkStack.cs b/source/Cosmos.System2/Network/NetworkStack.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/NetworkStack.cs
rename to source/Cosmos.System2/Network/NetworkStack.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/TempDictionary.cs b/source/Cosmos.System2/Network/TempDictionary.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/TempDictionary.cs
rename to source/Cosmos.System2/Network/TempDictionary.cs
diff --git a/Cosmos/source/Cosmos.System2/Network/UdpClient.cs b/source/Cosmos.System2/Network/UdpClient.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Network/UdpClient.cs
rename to source/Cosmos.System2/Network/UdpClient.cs
diff --git a/Cosmos/source/Cosmos.System2/Power.cs b/source/Cosmos.System2/Power.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Power.cs
rename to source/Cosmos.System2/Power.cs
diff --git a/Cosmos/source/Cosmos.System2/Properties/AssemblyInfo.cs b/source/Cosmos.System2/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/Properties/AssemblyInfo.cs
rename to source/Cosmos.System2/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.System2/TestingHelpers.cs b/source/Cosmos.System2/TestingHelpers.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2/TestingHelpers.cs
rename to source/Cosmos.System2/TestingHelpers.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/Cosmos.System2_Plugs.csproj b/source/Cosmos.System2_Plugs/Cosmos.System2_Plugs.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/Cosmos.System2_Plugs.csproj
rename to source/Cosmos.System2_Plugs/Cosmos.System2_Plugs.csproj
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/ByteImpl.cs b/source/Cosmos.System2_Plugs/System/ByteImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/ByteImpl.cs
rename to source/Cosmos.System2_Plugs/System/ByteImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/ConsoleImpl.cs b/source/Cosmos.System2_Plugs/System/ConsoleImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/ConsoleImpl.cs
rename to source/Cosmos.System2_Plugs/System/ConsoleImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/ConsolePalImpl.cs b/source/Cosmos.System2_Plugs/System/ConsolePalImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/ConsolePalImpl.cs
rename to source/Cosmos.System2_Plugs/System/ConsolePalImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/DoubleImpl.cs b/source/Cosmos.System2_Plugs/System/DoubleImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/DoubleImpl.cs
rename to source/Cosmos.System2_Plugs/System/DoubleImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/EnumImpl.cs b/source/Cosmos.System2_Plugs/System/EnumImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/EnumImpl.cs
rename to source/Cosmos.System2_Plugs/System/EnumImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/Globalization/CompareInfoImpl.cs b/source/Cosmos.System2_Plugs/System/Globalization/CompareInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/Globalization/CompareInfoImpl.cs
rename to source/Cosmos.System2_Plugs/System/Globalization/CompareInfoImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/GuidImpl.cs b/source/Cosmos.System2_Plugs/System/GuidImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/GuidImpl.cs
rename to source/Cosmos.System2_Plugs/System/GuidImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/IO/DirectoryImpl.cs b/source/Cosmos.System2_Plugs/System/IO/DirectoryImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/IO/DirectoryImpl.cs
rename to source/Cosmos.System2_Plugs/System/IO/DirectoryImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/IO/FileImpl.cs b/source/Cosmos.System2_Plugs/System/IO/FileImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/IO/FileImpl.cs
rename to source/Cosmos.System2_Plugs/System/IO/FileImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/IO/FileStreamImpl.cs b/source/Cosmos.System2_Plugs/System/IO/FileStreamImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/IO/FileStreamImpl.cs
rename to source/Cosmos.System2_Plugs/System/IO/FileStreamImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/IO/PathImpl.cs b/source/Cosmos.System2_Plugs/System/IO/PathImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/IO/PathImpl.cs
rename to source/Cosmos.System2_Plugs/System/IO/PathImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/Int16Impl.cs b/source/Cosmos.System2_Plugs/System/Int16Impl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/Int16Impl.cs
rename to source/Cosmos.System2_Plugs/System/Int16Impl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/Int32Impl.cs b/source/Cosmos.System2_Plugs/System/Int32Impl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/Int32Impl.cs
rename to source/Cosmos.System2_Plugs/System/Int32Impl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/Int64Impl.cs b/source/Cosmos.System2_Plugs/System/Int64Impl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/Int64Impl.cs
rename to source/Cosmos.System2_Plugs/System/Int64Impl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/IntPtrImpl.cs b/source/Cosmos.System2_Plugs/System/IntPtrImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/IntPtrImpl.cs
rename to source/Cosmos.System2_Plugs/System/IntPtrImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/MathImpl.cs b/source/Cosmos.System2_Plugs/System/MathImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/MathImpl.cs
rename to source/Cosmos.System2_Plugs/System/MathImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/RandomImpl.cs b/source/Cosmos.System2_Plugs/System/RandomImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/RandomImpl.cs
rename to source/Cosmos.System2_Plugs/System/RandomImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/SByteImpl.cs b/source/Cosmos.System2_Plugs/System/SByteImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/SByteImpl.cs
rename to source/Cosmos.System2_Plugs/System/SByteImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/SingleImpl.cs b/source/Cosmos.System2_Plugs/System/SingleImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/SingleImpl.cs
rename to source/Cosmos.System2_Plugs/System/SingleImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/TypeImpl.cs b/source/Cosmos.System2_Plugs/System/TypeImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/TypeImpl.cs
rename to source/Cosmos.System2_Plugs/System/TypeImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/UInt16Impl.cs b/source/Cosmos.System2_Plugs/System/UInt16Impl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/UInt16Impl.cs
rename to source/Cosmos.System2_Plugs/System/UInt16Impl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/UInt32Impl.cs b/source/Cosmos.System2_Plugs/System/UInt32Impl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/UInt32Impl.cs
rename to source/Cosmos.System2_Plugs/System/UInt32Impl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/UInt64Impl.cs b/source/Cosmos.System2_Plugs/System/UInt64Impl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/UInt64Impl.cs
rename to source/Cosmos.System2_Plugs/System/UInt64Impl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/UIntPtrImpl.cs b/source/Cosmos.System2_Plugs/System/UIntPtrImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/UIntPtrImpl.cs
rename to source/Cosmos.System2_Plugs/System/UIntPtrImpl.cs
diff --git a/Cosmos/source/Cosmos.System2_Plugs/System/ValueTypeImpl.cs b/source/Cosmos.System2_Plugs/System/ValueTypeImpl.cs
similarity index 100%
rename from Cosmos/source/Cosmos.System2_Plugs/System/ValueTypeImpl.cs
rename to source/Cosmos.System2_Plugs/System/ValueTypeImpl.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/.editorconfig b/source/Cosmos.VS.DebugEngine/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/.editorconfig
rename to source/Cosmos.VS.DebugEngine/.editorconfig
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Enums.cs b/source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Enums.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Enums.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Enums.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Guids.cs b/source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Guids.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Guids.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Guids.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Hresult.cs b/source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Hresult.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Hresult.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Definitions/AD7Hresult.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7BoundBreakpoint.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7BoundBreakpoint.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7BoundBreakpoint.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7BoundBreakpoint.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7BreakpointResolution.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7BreakpointResolution.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7BreakpointResolution.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7BreakpointResolution.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7DocumentContext.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7DocumentContext.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7DocumentContext.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7DocumentContext.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Engine.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Engine.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Engine.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Engine.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Enums.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Enums.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Enums.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Enums.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Events.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Events.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Events.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Events.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Expression.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Expression.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Expression.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Expression.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7MemoryAddress.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7MemoryAddress.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7MemoryAddress.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7MemoryAddress.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Module.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Module.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Module.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Module.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7PendingBreakpoint.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7PendingBreakpoint.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7PendingBreakpoint.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7PendingBreakpoint.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Port.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Port.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Port.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Port.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7PortSupplier.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7PortSupplier.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7PortSupplier.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7PortSupplier.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Process.Launcher.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Process.Launcher.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Process.Launcher.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Process.Launcher.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Process.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Process.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Process.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Process.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7ProgramNode.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7ProgramNode.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7ProgramNode.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7ProgramNode.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7ProgramProvider.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7ProgramProvider.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7ProgramProvider.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7ProgramProvider.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Property.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Property.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Property.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Property.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7StackFrame.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7StackFrame.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7StackFrame.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7StackFrame.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Thread.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Thread.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Thread.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/AD7Thread.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/DebugLocalInfo.cs b/source/Cosmos.VS.DebugEngine/AD7.Impl/DebugLocalInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7.Impl/DebugLocalInfo.cs
rename to source/Cosmos.VS.DebugEngine/AD7.Impl/DebugLocalInfo.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AD7Util.cs b/source/Cosmos.VS.DebugEngine/AD7Util.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AD7Util.cs
rename to source/Cosmos.VS.DebugEngine/AD7Util.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/AsmSource.cs b/source/Cosmos.VS.DebugEngine/AsmSource.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/AsmSource.cs
rename to source/Cosmos.VS.DebugEngine/AsmSource.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/CmdIDList.cs b/source/Cosmos.VS.DebugEngine/CmdIDList.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/CmdIDList.cs
rename to source/Cosmos.VS.DebugEngine/CmdIDList.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Commands/BaseDebugCommand.cs b/source/Cosmos.VS.DebugEngine/Commands/BaseDebugCommand.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Commands/BaseDebugCommand.cs
rename to source/Cosmos.VS.DebugEngine/Commands/BaseDebugCommand.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Commands/DebugCommandHandler.cs b/source/Cosmos.VS.DebugEngine/Commands/DebugCommandHandler.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Commands/DebugCommandHandler.cs
rename to source/Cosmos.VS.DebugEngine/Commands/DebugCommandHandler.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Commands/DebugExecCommand.cs b/source/Cosmos.VS.DebugEngine/Commands/DebugExecCommand.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Commands/DebugExecCommand.cs
rename to source/Cosmos.VS.DebugEngine/Commands/DebugExecCommand.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Commands/DebugLaunchCommand.cs b/source/Cosmos.VS.DebugEngine/Commands/DebugLaunchCommand.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Commands/DebugLaunchCommand.cs
rename to source/Cosmos.VS.DebugEngine/Commands/DebugLaunchCommand.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Commands/DebugLogCommand.cs b/source/Cosmos.VS.DebugEngine/Commands/DebugLogCommand.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Commands/DebugLogCommand.cs
rename to source/Cosmos.VS.DebugEngine/Commands/DebugLogCommand.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Cosmos.VS.DebugEngine.csproj b/source/Cosmos.VS.DebugEngine/Cosmos.VS.DebugEngine.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Cosmos.VS.DebugEngine.csproj
rename to source/Cosmos.VS.DebugEngine/Cosmos.VS.DebugEngine.csproj
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Cosmos.VS.DebugEngine.pkgdef b/source/Cosmos.VS.DebugEngine/Cosmos.VS.DebugEngine.pkgdef
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Cosmos.VS.DebugEngine.pkgdef
rename to source/Cosmos.VS.DebugEngine/Cosmos.VS.DebugEngine.pkgdef
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/CosmosDebugEnginePackage.cs b/source/Cosmos.VS.DebugEngine/CosmosDebugEnginePackage.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/CosmosDebugEnginePackage.cs
rename to source/Cosmos.VS.DebugEngine/CosmosDebugEnginePackage.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Engine.Impl/BreakpointManager.cs b/source/Cosmos.VS.DebugEngine/Engine.Impl/BreakpointManager.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Engine.Impl/BreakpointManager.cs
rename to source/Cosmos.VS.DebugEngine/Engine.Impl/BreakpointManager.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Engine.Impl/EngineCallback.cs b/source/Cosmos.VS.DebugEngine/Engine.Impl/EngineCallback.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Engine.Impl/EngineCallback.cs
rename to source/Cosmos.VS.DebugEngine/Engine.Impl/EngineCallback.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Engine.Impl/EngineUtils.cs b/source/Cosmos.VS.DebugEngine/Engine.Impl/EngineUtils.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Engine.Impl/EngineUtils.cs
rename to source/Cosmos.VS.DebugEngine/Engine.Impl/EngineUtils.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Engine.Impl/OperationThread.cs b/source/Cosmos.VS.DebugEngine/Engine.Impl/OperationThread.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Engine.Impl/OperationThread.cs
rename to source/Cosmos.VS.DebugEngine/Engine.Impl/OperationThread.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Guids.cs b/source/Cosmos.VS.DebugEngine/Guids.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Guids.cs
rename to source/Cosmos.VS.DebugEngine/Guids.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Properties/AssemblyInfo.cs b/source/Cosmos.VS.DebugEngine/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Properties/AssemblyInfo.cs
rename to source/Cosmos.VS.DebugEngine/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Properties/Resources.Designer.cs b/source/Cosmos.VS.DebugEngine/Properties/Resources.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Properties/Resources.Designer.cs
rename to source/Cosmos.VS.DebugEngine/Properties/Resources.Designer.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Properties/Resources.resx b/source/Cosmos.VS.DebugEngine/Properties/Resources.resx
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Properties/Resources.resx
rename to source/Cosmos.VS.DebugEngine/Properties/Resources.resx
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Resources/Cosmos.ico b/source/Cosmos.VS.DebugEngine/Resources/Cosmos.ico
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Resources/Cosmos.ico
rename to source/Cosmos.VS.DebugEngine/Resources/Cosmos.ico
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/Utilities/Extensions.cs b/source/Cosmos.VS.DebugEngine/Utilities/Extensions.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/Utilities/Extensions.cs
rename to source/Cosmos.VS.DebugEngine/Utilities/Extensions.cs
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/VSPackage.resx b/source/Cosmos.VS.DebugEngine/VSPackage.resx
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/VSPackage.resx
rename to source/Cosmos.VS.DebugEngine/VSPackage.resx
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/VSPackage.vsct b/source/Cosmos.VS.DebugEngine/VSPackage.vsct
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/VSPackage.vsct
rename to source/Cosmos.VS.DebugEngine/VSPackage.vsct
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/app.config b/source/Cosmos.VS.DebugEngine/app.config
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/app.config
rename to source/Cosmos.VS.DebugEngine/app.config
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/packages.config b/source/Cosmos.VS.DebugEngine/packages.config
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/packages.config
rename to source/Cosmos.VS.DebugEngine/packages.config
diff --git a/Cosmos/source/Cosmos.VS.DebugEngine/source.extension.vsixmanifest b/source/Cosmos.VS.DebugEngine/source.extension.vsixmanifest
similarity index 100%
rename from Cosmos/source/Cosmos.VS.DebugEngine/source.extension.vsixmanifest
rename to source/Cosmos.VS.DebugEngine/source.extension.vsixmanifest
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/Cosmos.VS.ProjectSystem.csproj b/source/Cosmos.VS.ProjectSystem/Cosmos.VS.ProjectSystem.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/Cosmos.VS.ProjectSystem.csproj
rename to source/Cosmos.VS.ProjectSystem/Cosmos.VS.ProjectSystem.csproj
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/CosmosConfigProvider.cs b/source/Cosmos.VS.ProjectSystem/CosmosConfigProvider.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/CosmosConfigProvider.cs
rename to source/Cosmos.VS.ProjectSystem/CosmosConfigProvider.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/CosmosProjectConfig.cs b/source/Cosmos.VS.ProjectSystem/CosmosProjectConfig.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/CosmosProjectConfig.cs
rename to source/Cosmos.VS.ProjectSystem/CosmosProjectConfig.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/CosmosProjectFactory.cs b/source/Cosmos.VS.ProjectSystem/CosmosProjectFactory.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/CosmosProjectFactory.cs
rename to source/Cosmos.VS.ProjectSystem/CosmosProjectFactory.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/CosmosProjectNode.cs b/source/Cosmos.VS.ProjectSystem/CosmosProjectNode.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/CosmosProjectNode.cs
rename to source/Cosmos.VS.ProjectSystem/CosmosProjectNode.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/CosmosProjectPackage.cs b/source/Cosmos.VS.ProjectSystem/CosmosProjectPackage.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/CosmosProjectPackage.cs
rename to source/Cosmos.VS.ProjectSystem/CosmosProjectPackage.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.Designer.cs b/source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.Designer.cs
rename to source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.Designer.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.cs b/source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.cs
rename to source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.resx b/source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.resx
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.resx
rename to source/Cosmos.VS.ProjectSystem/Dialogs/UnsavedConfigChangesDialog.resx
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/Global.cs b/source/Cosmos.VS.ProjectSystem/Global.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/Global.cs
rename to source/Cosmos.VS.ProjectSystem/Global.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/Guids.cs b/source/Cosmos.VS.ProjectSystem/Guids.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/Guids.cs
rename to source/Cosmos.VS.ProjectSystem/Guids.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/Logger.cs b/source/Cosmos.VS.ProjectSystem/Logger.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/Logger.cs
rename to source/Cosmos.VS.ProjectSystem/Logger.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProfilePresets.cs b/source/Cosmos.VS.ProjectSystem/ProfilePresets.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProfilePresets.cs
rename to source/Cosmos.VS.ProjectSystem/ProfilePresets.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/Cosmos.vstemplate b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/Cosmos.vstemplate
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/Cosmos.vstemplate
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/Cosmos.vstemplate
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/CosmosProject.Cosmos b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/CosmosProject.Cosmos
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/CosmosProject.Cosmos
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/CosmosProject.Cosmos
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/Kernel.ico b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/Kernel.ico
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/Kernel.ico
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/Cosmos/Kernel.ico
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/CSharpProj.vstemplate b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/CSharpProj.vstemplate
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/CSharpProj.vstemplate
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/CSharpProj.vstemplate
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/CSharpProject.csproj b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/CSharpProject.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/CSharpProject.csproj
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/CSharpProject.csproj
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Kernel.cs b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Kernel.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Kernel.cs
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Kernel.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Kernel.ico b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Kernel.ico
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Kernel.ico
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Kernel.ico
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Readme.txt b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Readme.txt
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Readme.txt
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (CSharp)/Readme.txt
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/Kernel.ico b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/Kernel.ico
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/Kernel.ico
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/Kernel.ico
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/Kernel.vb b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/Kernel.vb
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/Kernel.vb
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/Kernel.vb
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/VBProj.vstemplate b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/VBProj.vstemplate
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/VBProj.vstemplate
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/VBProj.vstemplate
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/VBProjKernel.vbproj b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/VBProjKernel.vbproj
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/VBProjKernel.vbproj
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosKernel (VB)/VBProjKernel.vbproj
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/CSharpProj.vstemplate b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/CSharpProj.vstemplate
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/CSharpProj.vstemplate
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/CSharpProj.vstemplate
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/CSharpProject.csproj b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/CSharpProject.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/CSharpProject.csproj
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/CSharpProject.csproj
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Kernel.cs b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Kernel.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Kernel.cs
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Kernel.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Kernel.ico b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Kernel.ico
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Kernel.ico
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Kernel.ico
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Readme.txt b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Readme.txt
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Readme.txt
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (CSharp)/Readme.txt
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/FSharpProj.vstemplate b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/FSharpProj.vstemplate
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/FSharpProj.vstemplate
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/FSharpProj.vstemplate
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/FSharpProject.fsproj b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/FSharpProject.fsproj
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/FSharpProject.fsproj
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/FSharpProject.fsproj
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/Kernel.fs b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/Kernel.fs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/Kernel.fs
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/Kernel.fs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/Kernel.ico b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/Kernel.ico
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/Kernel.ico
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (FSharp)/Kernel.ico
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/Kernel.ico b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/Kernel.ico
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/Kernel.ico
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/Kernel.ico
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/Kernel.vb b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/Kernel.vb
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/Kernel.vb
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/Kernel.vb
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/VBProj.vstemplate b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/VBProj.vstemplate
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/VBProj.vstemplate
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/VBProj.vstemplate
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/VBProjKernel.vbproj b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/VBProjKernel.vbproj
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/VBProjKernel.vbproj
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/CosmosProject (VB)/VBProjKernel.vbproj
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Readme.txt b/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Readme.txt
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/ProjectTemplates/Readme.txt
rename to source/Cosmos.VS.ProjectSystem/ProjectTemplates/Readme.txt
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/Properties/AssemblyInfo.cs b/source/Cosmos.VS.ProjectSystem/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/Properties/AssemblyInfo.cs
rename to source/Cosmos.VS.ProjectSystem/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.Designer.cs b/source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.Designer.cs
rename to source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.Designer.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.cs b/source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.cs
rename to source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.resx b/source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.resx
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.resx
rename to source/Cosmos.VS.ProjectSystem/PropertyPages/CosmosPage.resx
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.Designer.cs b/source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.Designer.cs
rename to source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.Designer.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.cs b/source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.cs
rename to source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.resx b/source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.resx
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.resx
rename to source/Cosmos.VS.ProjectSystem/PropertyPages/CustomPropertyPage.resx
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.Designer.cs b/source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.Designer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.Designer.cs
rename to source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.Designer.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.cs b/source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.cs
rename to source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.cs
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.resx b/source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.resx
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.resx
rename to source/Cosmos.VS.ProjectSystem/PropertyPages/TitleDivision.resx
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/Resources/Cosmos.ico b/source/Cosmos.VS.ProjectSystem/Resources/Cosmos.ico
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/Resources/Cosmos.ico
rename to source/Cosmos.VS.ProjectSystem/Resources/Cosmos.ico
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/Resources/CosmosProjectNode.bmp b/source/Cosmos.VS.ProjectSystem/Resources/CosmosProjectNode.bmp
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/Resources/CosmosProjectNode.bmp
rename to source/Cosmos.VS.ProjectSystem/Resources/CosmosProjectNode.bmp
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/Resources/Refresh_16x.png b/source/Cosmos.VS.ProjectSystem/Resources/Refresh_16x.png
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/Resources/Refresh_16x.png
rename to source/Cosmos.VS.ProjectSystem/Resources/Refresh_16x.png
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/VSPackage.resx b/source/Cosmos.VS.ProjectSystem/VSPackage.resx
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/VSPackage.resx
rename to source/Cosmos.VS.ProjectSystem/VSPackage.resx
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/app.config b/source/Cosmos.VS.ProjectSystem/app.config
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/app.config
rename to source/Cosmos.VS.ProjectSystem/app.config
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/packages.config b/source/Cosmos.VS.ProjectSystem/packages.config
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/packages.config
rename to source/Cosmos.VS.ProjectSystem/packages.config
diff --git a/Cosmos/source/Cosmos.VS.ProjectSystem/source.extension.vsixmanifest b/source/Cosmos.VS.ProjectSystem/source.extension.vsixmanifest
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ProjectSystem/source.extension.vsixmanifest
rename to source/Cosmos.VS.ProjectSystem/source.extension.vsixmanifest
diff --git a/Cosmos/source/Cosmos.VS.ReadMe.html b/source/Cosmos.VS.ReadMe.html
similarity index 100%
rename from Cosmos/source/Cosmos.VS.ReadMe.html
rename to source/Cosmos.VS.ReadMe.html
diff --git a/Cosmos/source/Cosmos.VS.Windows/.editorconfig b/source/Cosmos.VS.Windows/.editorconfig
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/.editorconfig
rename to source/Cosmos.VS.Windows/.editorconfig
diff --git a/Cosmos/source/Cosmos.VS.Windows/AsmLine.cs b/source/Cosmos.VS.Windows/AsmLine.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/AsmLine.cs
rename to source/Cosmos.VS.Windows/AsmLine.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ConsoleConsts.cs b/source/Cosmos.VS.Windows/ConsoleConsts.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ConsoleConsts.cs
rename to source/Cosmos.VS.Windows/ConsoleConsts.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ConsoleUC.xaml b/source/Cosmos.VS.Windows/ConsoleUC.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ConsoleUC.xaml
rename to source/Cosmos.VS.Windows/ConsoleUC.xaml
diff --git a/Cosmos/source/Cosmos.VS.Windows/ConsoleUC.xaml.cs b/source/Cosmos.VS.Windows/ConsoleUC.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ConsoleUC.xaml.cs
rename to source/Cosmos.VS.Windows/ConsoleUC.xaml.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/Cosmos.VS.Windows.csproj b/source/Cosmos.VS.Windows/Cosmos.VS.Windows.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Cosmos.VS.Windows.csproj
rename to source/Cosmos.VS.Windows/Cosmos.VS.Windows.csproj
diff --git a/Cosmos/source/Cosmos.VS.Windows/Cosmos.VS.Windows.html b/source/Cosmos.VS.Windows/Cosmos.VS.Windows.html
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Cosmos.VS.Windows.html
rename to source/Cosmos.VS.Windows/Cosmos.VS.Windows.html
diff --git a/Cosmos/source/Cosmos.VS.Windows/CosmosMenuCmdSet.cs b/source/Cosmos.VS.Windows/CosmosMenuCmdSet.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/CosmosMenuCmdSet.cs
rename to source/Cosmos.VS.Windows/CosmosMenuCmdSet.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/CosmosWindowsPackage.cs b/source/Cosmos.VS.Windows/CosmosWindowsPackage.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/CosmosWindowsPackage.cs
rename to source/Cosmos.VS.Windows/CosmosWindowsPackage.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/Global.cs b/source/Cosmos.VS.Windows/Global.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Global.cs
rename to source/Cosmos.VS.Windows/Global.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/Guids.cs b/source/Cosmos.VS.Windows/Guids.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Guids.cs
rename to source/Cosmos.VS.Windows/Guids.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/Images/Copy_Icon_2.jpg b/source/Cosmos.VS.Windows/Images/Copy_Icon_2.jpg
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Images/Copy_Icon_2.jpg
rename to source/Cosmos.VS.Windows/Images/Copy_Icon_2.jpg
diff --git a/Cosmos/source/Cosmos.VS.Windows/Images/StepInto.png b/source/Cosmos.VS.Windows/Images/StepInto.png
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Images/StepInto.png
rename to source/Cosmos.VS.Windows/Images/StepInto.png
diff --git a/Cosmos/source/Cosmos.VS.Windows/Images/StepMode.png b/source/Cosmos.VS.Windows/Images/StepMode.png
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Images/StepMode.png
rename to source/Cosmos.VS.Windows/Images/StepMode.png
diff --git a/Cosmos/source/Cosmos.VS.Windows/Images/StepOut.png b/source/Cosmos.VS.Windows/Images/StepOut.png
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Images/StepOut.png
rename to source/Cosmos.VS.Windows/Images/StepOut.png
diff --git a/Cosmos/source/Cosmos.VS.Windows/Images/StepOver.png b/source/Cosmos.VS.Windows/Images/StepOver.png
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Images/StepOver.png
rename to source/Cosmos.VS.Windows/Images/StepOver.png
diff --git a/Cosmos/source/Cosmos.VS.Windows/Images/filter-small.png b/source/Cosmos.VS.Windows/Images/filter-small.png
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Images/filter-small.png
rename to source/Cosmos.VS.Windows/Images/filter-small.png
diff --git a/Cosmos/source/Cosmos.VS.Windows/Properties/AssemblyInfo.cs b/source/Cosmos.VS.Windows/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Properties/AssemblyInfo.cs
rename to source/Cosmos.VS.Windows/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/Resources/Cosmos.ico b/source/Cosmos.VS.Windows/Resources/Cosmos.ico
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Resources/Cosmos.ico
rename to source/Cosmos.VS.Windows/Resources/Cosmos.ico
diff --git a/Cosmos/source/Cosmos.VS.Windows/Resources/Cosmos.png b/source/Cosmos.VS.Windows/Resources/Cosmos.png
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Resources/Cosmos.png
rename to source/Cosmos.VS.Windows/Resources/Cosmos.png
diff --git a/Cosmos/source/Cosmos.VS.Windows/Resources/Sprites.png b/source/Cosmos.VS.Windows/Resources/Sprites.png
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/Resources/Sprites.png
rename to source/Cosmos.VS.Windows/Resources/Sprites.png
diff --git a/Cosmos/source/Cosmos.VS.Windows/StateStorer.cs b/source/Cosmos.VS.Windows/StateStorer.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/StateStorer.cs
rename to source/Cosmos.VS.Windows/StateStorer.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindowPane2.cs b/source/Cosmos.VS.Windows/ToolWindowPane2.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindowPane2.cs
rename to source/Cosmos.VS.Windows/ToolWindowPane2.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindowPaneChannel.cs b/source/Cosmos.VS.Windows/ToolWindowPaneChannel.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindowPaneChannel.cs
rename to source/Cosmos.VS.Windows/ToolWindowPaneChannel.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/AssemblyUC.xaml b/source/Cosmos.VS.Windows/ToolWindows/AssemblyUC.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/AssemblyUC.xaml
rename to source/Cosmos.VS.Windows/ToolWindows/AssemblyUC.xaml
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/AssemblyUC.xaml.cs b/source/Cosmos.VS.Windows/ToolWindows/AssemblyUC.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/AssemblyUC.xaml.cs
rename to source/Cosmos.VS.Windows/ToolWindows/AssemblyUC.xaml.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/DataBytesUC.xaml b/source/Cosmos.VS.Windows/ToolWindows/DataBytesUC.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/DataBytesUC.xaml
rename to source/Cosmos.VS.Windows/ToolWindows/DataBytesUC.xaml
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/DataBytesUC.xaml.cs b/source/Cosmos.VS.Windows/ToolWindows/DataBytesUC.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/DataBytesUC.xaml.cs
rename to source/Cosmos.VS.Windows/ToolWindows/DataBytesUC.xaml.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/DebuggerChannelUC.cs b/source/Cosmos.VS.Windows/ToolWindows/DebuggerChannelUC.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/DebuggerChannelUC.cs
rename to source/Cosmos.VS.Windows/ToolWindows/DebuggerChannelUC.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/DebuggerUC.cs b/source/Cosmos.VS.Windows/ToolWindows/DebuggerUC.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/DebuggerUC.cs
rename to source/Cosmos.VS.Windows/ToolWindows/DebuggerUC.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/InternalUC.xaml b/source/Cosmos.VS.Windows/ToolWindows/InternalUC.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/InternalUC.xaml
rename to source/Cosmos.VS.Windows/ToolWindows/InternalUC.xaml
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/InternalUC.xaml.cs b/source/Cosmos.VS.Windows/ToolWindows/InternalUC.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/InternalUC.xaml.cs
rename to source/Cosmos.VS.Windows/ToolWindows/InternalUC.xaml.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/MemoryViewUC.xaml b/source/Cosmos.VS.Windows/ToolWindows/MemoryViewUC.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/MemoryViewUC.xaml
rename to source/Cosmos.VS.Windows/ToolWindows/MemoryViewUC.xaml
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/MemoryViewUC.xaml.cs b/source/Cosmos.VS.Windows/ToolWindows/MemoryViewUC.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/MemoryViewUC.xaml.cs
rename to source/Cosmos.VS.Windows/ToolWindows/MemoryViewUC.xaml.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/RegistersUC.xaml b/source/Cosmos.VS.Windows/ToolWindows/RegistersUC.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/RegistersUC.xaml
rename to source/Cosmos.VS.Windows/ToolWindows/RegistersUC.xaml
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/RegistersUC.xaml.cs b/source/Cosmos.VS.Windows/ToolWindows/RegistersUC.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/RegistersUC.xaml.cs
rename to source/Cosmos.VS.Windows/ToolWindows/RegistersUC.xaml.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/StackUC.xaml b/source/Cosmos.VS.Windows/ToolWindows/StackUC.xaml
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/StackUC.xaml
rename to source/Cosmos.VS.Windows/ToolWindows/StackUC.xaml
diff --git a/Cosmos/source/Cosmos.VS.Windows/ToolWindows/StackUC.xaml.cs b/source/Cosmos.VS.Windows/ToolWindows/StackUC.xaml.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/ToolWindows/StackUC.xaml.cs
rename to source/Cosmos.VS.Windows/ToolWindows/StackUC.xaml.cs
diff --git a/Cosmos/source/Cosmos.VS.Windows/VSPackage.resx b/source/Cosmos.VS.Windows/VSPackage.resx
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/VSPackage.resx
rename to source/Cosmos.VS.Windows/VSPackage.resx
diff --git a/Cosmos/source/Cosmos.VS.Windows/VSPackage.vsct b/source/Cosmos.VS.Windows/VSPackage.vsct
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/VSPackage.vsct
rename to source/Cosmos.VS.Windows/VSPackage.vsct
diff --git a/Cosmos/source/Cosmos.VS.Windows/app.config b/source/Cosmos.VS.Windows/app.config
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/app.config
rename to source/Cosmos.VS.Windows/app.config
diff --git a/Cosmos/source/Cosmos.VS.Windows/packages.config b/source/Cosmos.VS.Windows/packages.config
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/packages.config
rename to source/Cosmos.VS.Windows/packages.config
diff --git a/Cosmos/source/Cosmos.VS.Windows/source.extension.vsixmanifest b/source/Cosmos.VS.Windows/source.extension.vsixmanifest
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Windows/source.extension.vsixmanifest
rename to source/Cosmos.VS.Windows/source.extension.vsixmanifest
diff --git a/Cosmos/source/Cosmos.VS.Wizards/Cosmos.VS.Wizards.csproj b/source/Cosmos.VS.Wizards/Cosmos.VS.Wizards.csproj
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Wizards/Cosmos.VS.Wizards.csproj
rename to source/Cosmos.VS.Wizards/Cosmos.VS.Wizards.csproj
diff --git a/Cosmos/source/Cosmos.VS.Wizards/CosmosProject.Cosmos b/source/Cosmos.VS.Wizards/CosmosProject.Cosmos
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Wizards/CosmosProject.Cosmos
rename to source/Cosmos.VS.Wizards/CosmosProject.Cosmos
diff --git a/Cosmos/source/Cosmos.VS.Wizards/CosmosProjectWizard.cs b/source/Cosmos.VS.Wizards/CosmosProjectWizard.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Wizards/CosmosProjectWizard.cs
rename to source/Cosmos.VS.Wizards/CosmosProjectWizard.cs
diff --git a/Cosmos/source/Cosmos.VS.Wizards/Properties/AssemblyInfo.cs b/source/Cosmos.VS.Wizards/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Cosmos.VS.Wizards/Properties/AssemblyInfo.cs
rename to source/Cosmos.VS.Wizards/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Cosmos.snk b/source/Cosmos.snk
similarity index 100%
rename from Cosmos/source/Cosmos.snk
rename to source/Cosmos.snk
diff --git a/Cosmos/source/IL2CPU/IL2CPU.csproj b/source/IL2CPU/IL2CPU.csproj
similarity index 100%
rename from Cosmos/source/IL2CPU/IL2CPU.csproj
rename to source/IL2CPU/IL2CPU.csproj
diff --git a/Cosmos/source/IL2CPU/Program.cs b/source/IL2CPU/Program.cs
similarity index 100%
rename from Cosmos/source/IL2CPU/Program.cs
rename to source/IL2CPU/Program.cs
diff --git a/Cosmos/source/Kernel-TapRoot/Demo/Boot.cs b/source/Kernel-TapRoot/Demo/Boot.cs
similarity index 100%
rename from Cosmos/source/Kernel-TapRoot/Demo/Boot.cs
rename to source/Kernel-TapRoot/Demo/Boot.cs
diff --git a/Cosmos/source/Kernel-TapRoot/Demo/TRBoot.Cosmos b/source/Kernel-TapRoot/Demo/TRBoot.Cosmos
similarity index 100%
rename from Cosmos/source/Kernel-TapRoot/Demo/TRBoot.Cosmos
rename to source/Kernel-TapRoot/Demo/TRBoot.Cosmos
diff --git a/Cosmos/source/Kernel-TapRoot/Demo/TRKernel.csproj b/source/Kernel-TapRoot/Demo/TRKernel.csproj
similarity index 100%
rename from Cosmos/source/Kernel-TapRoot/Demo/TRKernel.csproj
rename to source/Kernel-TapRoot/Demo/TRKernel.csproj
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/BaseIOGroups.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/BaseIOGroups.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/BaseIOGroups.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/BaseIOGroups.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Boot.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Boot.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Boot.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Boot.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Cosmos.CPU.x86.csproj b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Cosmos.CPU.x86.csproj
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Cosmos.CPU.x86.csproj
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Cosmos.CPU.x86.csproj
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Cosmos.cfg b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Cosmos.cfg
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Cosmos.cfg
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Cosmos.cfg
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/GcHook.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/GcHook.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/GcHook.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/GcHook.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Global.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Global.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Global.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Global.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/GlobalSystemInfo.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/GlobalSystemInfo.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/GlobalSystemInfo.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/GlobalSystemInfo.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/INTs.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/INTs.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/INTs.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/INTs.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/INTs.html b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/INTs.html
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/INTs.html
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/INTs.html
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOGroup/IOGroup.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOGroup/IOGroup.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOGroup/IOGroup.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOGroup/IOGroup.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOGroup/PIC.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOGroup/PIC.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOGroup/PIC.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOGroup/PIC.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOPort.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOPort.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOPort.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/IOPort.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/DataLookupEntry.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/DataLookupEntry.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/DataLookupEntry.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/DataLookupEntry.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/DataLookupTable.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/DataLookupTable.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/DataLookupTable.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/DataLookupTable.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/GlobalInformationTable.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/GlobalInformationTable.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/GlobalInformationTable.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/GlobalInformationTable.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/GlobalSystemInfo.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/GlobalSystemInfo.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/GlobalSystemInfo.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/GlobalSystemInfo.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/Old_Heap.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/Old_Heap.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/Old_Heap.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory/Old/Old_Heap.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/PIC.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/PIC.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/PIC.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/PIC.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/PIC.html b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/PIC.html
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/PIC.html
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/PIC.html
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Processor.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Processor.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Processor.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Processor.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/TempDebug.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/TempDebug.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/TempDebug.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU.x86/TempDebug.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Array/ArrayGetLengthAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Array/ArrayGetLengthAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Array/ArrayGetLengthAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Array/ArrayGetLengthAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Array/ArrayInternalCopyAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Array/ArrayInternalCopyAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Array/ArrayInternalCopyAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Array/ArrayInternalCopyAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/ArrayImpl.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/ArrayImpl.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/ArrayImpl.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/ArrayImpl.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUDisableINTsAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUDisableINTsAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUDisableINTsAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUDisableINTsAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUEnableINTsAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUEnableINTsAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUEnableINTsAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUEnableINTsAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUGetAmountOfRAMAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUGetAmountOfRAMAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUGetAmountOfRAMAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUGetAmountOfRAMAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUGetEndOfKernelAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUGetEndOfKernelAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUGetEndOfKernelAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUGetEndOfKernelAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUHaltAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUHaltAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUHaltAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUHaltAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUInitFloatAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUInitFloatAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUInitFloatAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUInitFloatAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUInitSSEAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUInitSSEAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUInitSSEAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUInitSSEAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUUpdateIDTAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUUpdateIDTAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUUpdateIDTAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUUpdateIDTAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUZeroFillAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUZeroFillAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUZeroFillAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUZeroFillAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPUImpl.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPUImpl.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPUImpl.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPUImpl.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Cosmos.CPU_Asm.csproj b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Cosmos.CPU_Asm.csproj
similarity index 95%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Cosmos.CPU_Asm.csproj
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Cosmos.CPU_Asm.csproj
index 52ba4120a9..412d4fa014 100644
--- a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Cosmos.CPU_Asm.csproj
+++ b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Cosmos.CPU_Asm.csproj
@@ -22,7 +22,7 @@
-
+
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Cosmos.cfg b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Cosmos.cfg
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Cosmos.cfg
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Cosmos.cfg
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateCtorAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateCtorAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateCtorAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateCtorAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateGetMulticastInvokeAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateGetMulticastInvokeAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateGetMulticastInvokeAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateGetMulticastInvokeAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateInvokeAsm.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateInvokeAsm.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateInvokeAsm.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Delegate/DelegateInvokeAsm.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/DelegateImpl.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/DelegateImpl.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/DelegateImpl.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/DelegateImpl.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/IOPortImpl.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/IOPortImpl.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/IOPortImpl.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/IOPortImpl.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Properties/AssemblyInfo.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Properties/AssemblyInfo.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/RuntimeHelpers/RuntimeHelpersImpl.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/RuntimeHelpers/RuntimeHelpersImpl.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/RuntimeHelpers/RuntimeHelpersImpl.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/RuntimeHelpers/RuntimeHelpersImpl.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Cosmos.CPU_Plugs.csproj b/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Cosmos.CPU_Plugs.csproj
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Cosmos.CPU_Plugs.csproj
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Cosmos.CPU_Plugs.csproj
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Cosmos.cfg b/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Cosmos.cfg
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Cosmos.cfg
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Cosmos.cfg
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/GCImplementationImpl.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/GCImplementationImpl.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/GCImplementationImpl.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/GCImplementationImpl.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Properties/AssemblyInfo.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Properties/AssemblyInfo.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/ArrayImpl.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/ArrayImpl.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/ArrayImpl.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/ArrayImpl.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/CharUnicodeInfoImpl.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/CharUnicodeInfoImpl.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/CharUnicodeInfoImpl.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/CharUnicodeInfoImpl.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/DelegateImpl.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/DelegateImpl.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/DelegateImpl.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/DelegateImpl.cs
diff --git a/Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/StringImpl.cs b/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/StringImpl.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/StringImpl.cs
rename to source/Kernel-X86/10-CPU/Cosmos.CPU_Plugs/System/StringImpl.cs
diff --git a/Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Boot.cs b/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Boot.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Boot.cs
rename to source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Boot.cs
diff --git a/Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Cosmos.Platform.PC.csproj b/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Cosmos.Platform.PC.csproj
similarity index 100%
rename from Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Cosmos.Platform.PC.csproj
rename to source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Cosmos.Platform.PC.csproj
diff --git a/Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Cosmos.cfg b/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Cosmos.cfg
similarity index 100%
rename from Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Cosmos.cfg
rename to source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Cosmos.cfg
diff --git a/Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/DeviceMgr.cs b/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/DeviceMgr.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/DeviceMgr.cs
rename to source/Kernel-X86/20-Platform/Cosmos.Platform.PC/DeviceMgr.cs
diff --git a/Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Devices/Processor.cs b/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Devices/Processor.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Devices/Processor.cs
rename to source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Devices/Processor.cs
diff --git a/Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Boot.cs b/source/Kernel-X86/30-HAL/Cosmos.HAL/Boot.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Boot.cs
rename to source/Kernel-X86/30-HAL/Cosmos.HAL/Boot.cs
diff --git a/Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Cosmos.HAL.csproj b/source/Kernel-X86/30-HAL/Cosmos.HAL/Cosmos.HAL.csproj
similarity index 100%
rename from Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Cosmos.HAL.csproj
rename to source/Kernel-X86/30-HAL/Cosmos.HAL/Cosmos.HAL.csproj
diff --git a/Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Cosmos.cfg b/source/Kernel-X86/30-HAL/Cosmos.HAL/Cosmos.cfg
similarity index 100%
rename from Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Cosmos.cfg
rename to source/Kernel-X86/30-HAL/Cosmos.HAL/Cosmos.cfg
diff --git a/Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/DeviceMgr.cs b/source/Kernel-X86/30-HAL/Cosmos.HAL/DeviceMgr.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/DeviceMgr.cs
rename to source/Kernel-X86/30-HAL/Cosmos.HAL/DeviceMgr.cs
diff --git a/Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Devices/Device.cs b/source/Kernel-X86/30-HAL/Cosmos.HAL/Devices/Device.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Devices/Device.cs
rename to source/Kernel-X86/30-HAL/Cosmos.HAL/Devices/Device.cs
diff --git a/Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Devices/Processor.cs b/source/Kernel-X86/30-HAL/Cosmos.HAL/Devices/Processor.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Devices/Processor.cs
rename to source/Kernel-X86/30-HAL/Cosmos.HAL/Devices/Processor.cs
diff --git a/Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Globals.cs b/source/Kernel-X86/30-HAL/Cosmos.HAL/Globals.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/Globals.cs
rename to source/Kernel-X86/30-HAL/Cosmos.HAL/Globals.cs
diff --git a/Cosmos/source/Kernel-X86/40-System/Cosmos.System/Boot.cs b/source/Kernel-X86/40-System/Cosmos.System/Boot.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/40-System/Cosmos.System/Boot.cs
rename to source/Kernel-X86/40-System/Cosmos.System/Boot.cs
diff --git a/Cosmos/source/Kernel-X86/40-System/Cosmos.System/Cosmos.System.csproj b/source/Kernel-X86/40-System/Cosmos.System/Cosmos.System.csproj
similarity index 100%
rename from Cosmos/source/Kernel-X86/40-System/Cosmos.System/Cosmos.System.csproj
rename to source/Kernel-X86/40-System/Cosmos.System/Cosmos.System.csproj
diff --git a/Cosmos/source/Kernel-X86/40-System/Cosmos.System/Cosmos.cfg b/source/Kernel-X86/40-System/Cosmos.System/Cosmos.cfg
similarity index 100%
rename from Cosmos/source/Kernel-X86/40-System/Cosmos.System/Cosmos.cfg
rename to source/Kernel-X86/40-System/Cosmos.System/Cosmos.cfg
diff --git a/Cosmos/source/Kernel-X86/50-Application/Boot.cs b/source/Kernel-X86/50-Application/Boot.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/50-Application/Boot.cs
rename to source/Kernel-X86/50-Application/Boot.cs
diff --git a/Cosmos/source/Kernel-X86/50-Application/Cosmos.cfg b/source/Kernel-X86/50-Application/Cosmos.cfg
similarity index 100%
rename from Cosmos/source/Kernel-X86/50-Application/Cosmos.cfg
rename to source/Kernel-X86/50-Application/Cosmos.cfg
diff --git a/Cosmos/source/Kernel-X86/50-Application/GuessBootGen3.Cosmos b/source/Kernel-X86/50-Application/GuessBootGen3.Cosmos
similarity index 100%
rename from Cosmos/source/Kernel-X86/50-Application/GuessBootGen3.Cosmos
rename to source/Kernel-X86/50-Application/GuessBootGen3.Cosmos
diff --git a/Cosmos/source/Kernel-X86/50-Application/GuessKernelGen3.csproj b/source/Kernel-X86/50-Application/GuessKernelGen3.csproj
similarity index 100%
rename from Cosmos/source/Kernel-X86/50-Application/GuessKernelGen3.csproj
rename to source/Kernel-X86/50-Application/GuessKernelGen3.csproj
diff --git a/Cosmos/source/Kernel-X86/90-Shared/Cosmos.Shared/Cosmos.Shared.csproj b/source/Kernel-X86/90-Shared/Cosmos.Shared/Cosmos.Shared.csproj
similarity index 100%
rename from Cosmos/source/Kernel-X86/90-Shared/Cosmos.Shared/Cosmos.Shared.csproj
rename to source/Kernel-X86/90-Shared/Cosmos.Shared/Cosmos.Shared.csproj
diff --git a/Cosmos/source/Kernel-X86/90-Shared/Cosmos.Shared/SharedSomething.cs b/source/Kernel-X86/90-Shared/Cosmos.Shared/SharedSomething.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/90-Shared/Cosmos.Shared/SharedSomething.cs
rename to source/Kernel-X86/90-Shared/Cosmos.Shared/SharedSomething.cs
diff --git a/Cosmos/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/Cosmos.Plugs.TapRoot.csproj b/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/Cosmos.Plugs.TapRoot.csproj
similarity index 100%
rename from Cosmos/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/Cosmos.Plugs.TapRoot.csproj
rename to source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/Cosmos.Plugs.TapRoot.csproj
diff --git a/Cosmos/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/Cosmos.cfg b/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/Cosmos.cfg
similarity index 100%
rename from Cosmos/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/Cosmos.cfg
rename to source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/Cosmos.cfg
diff --git a/Cosmos/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/System/Console.cs b/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/System/Console.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/System/Console.cs
rename to source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/System/Console.cs
diff --git a/Cosmos/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/System/Environment.cs b/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/System/Environment.cs
similarity index 100%
rename from Cosmos/source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/System/Environment.cs
rename to source/Kernel-X86/91-Plugs/Cosmos.Plugs.TapRoot/System/Environment.cs
diff --git a/Cosmos/source/MPF/12.0/AssemblyReferenceNode.cs b/source/MPF/12.0/AssemblyReferenceNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/AssemblyReferenceNode.cs
rename to source/MPF/12.0/AssemblyReferenceNode.cs
diff --git a/Cosmos/source/MPF/12.0/Attributes.cs b/source/MPF/12.0/Attributes.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Attributes.cs
rename to source/MPF/12.0/Attributes.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/AutomationScope.cs b/source/MPF/12.0/Automation/AutomationScope.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/AutomationScope.cs
rename to source/MPF/12.0/Automation/AutomationScope.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OAFileItem.cs b/source/MPF/12.0/Automation/OAFileItem.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OAFileItem.cs
rename to source/MPF/12.0/Automation/OAFileItem.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OAFolderItem.cs b/source/MPF/12.0/Automation/OAFolderItem.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OAFolderItem.cs
rename to source/MPF/12.0/Automation/OAFolderItem.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OANavigableProjectItems.cs b/source/MPF/12.0/Automation/OANavigableProjectItems.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OANavigableProjectItems.cs
rename to source/MPF/12.0/Automation/OANavigableProjectItems.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OANestedProjectItem.cs b/source/MPF/12.0/Automation/OANestedProjectItem.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OANestedProjectItem.cs
rename to source/MPF/12.0/Automation/OANestedProjectItem.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OANullProperty.cs b/source/MPF/12.0/Automation/OANullProperty.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OANullProperty.cs
rename to source/MPF/12.0/Automation/OANullProperty.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OAProject.cs b/source/MPF/12.0/Automation/OAProject.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OAProject.cs
rename to source/MPF/12.0/Automation/OAProject.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OAProjectItem.cs b/source/MPF/12.0/Automation/OAProjectItem.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OAProjectItem.cs
rename to source/MPF/12.0/Automation/OAProjectItem.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OAProjectItems.cs b/source/MPF/12.0/Automation/OAProjectItems.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OAProjectItems.cs
rename to source/MPF/12.0/Automation/OAProjectItems.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OAProperties.cs b/source/MPF/12.0/Automation/OAProperties.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OAProperties.cs
rename to source/MPF/12.0/Automation/OAProperties.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OAProperty.cs b/source/MPF/12.0/Automation/OAProperty.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OAProperty.cs
rename to source/MPF/12.0/Automation/OAProperty.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OAReferenceFolderItem.cs b/source/MPF/12.0/Automation/OAReferenceFolderItem.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OAReferenceFolderItem.cs
rename to source/MPF/12.0/Automation/OAReferenceFolderItem.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OAReferenceItem.cs b/source/MPF/12.0/Automation/OAReferenceItem.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OAReferenceItem.cs
rename to source/MPF/12.0/Automation/OAReferenceItem.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/OASolutionFolder.cs b/source/MPF/12.0/Automation/OASolutionFolder.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/OASolutionFolder.cs
rename to source/MPF/12.0/Automation/OASolutionFolder.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/VSProject/OAAssemblyReference.cs b/source/MPF/12.0/Automation/VSProject/OAAssemblyReference.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/VSProject/OAAssemblyReference.cs
rename to source/MPF/12.0/Automation/VSProject/OAAssemblyReference.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/VSProject/OABuildManager.cs b/source/MPF/12.0/Automation/VSProject/OABuildManager.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/VSProject/OABuildManager.cs
rename to source/MPF/12.0/Automation/VSProject/OABuildManager.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/VSProject/OAComReference.cs b/source/MPF/12.0/Automation/VSProject/OAComReference.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/VSProject/OAComReference.cs
rename to source/MPF/12.0/Automation/VSProject/OAComReference.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/VSProject/OAProjectReference.cs b/source/MPF/12.0/Automation/VSProject/OAProjectReference.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/VSProject/OAProjectReference.cs
rename to source/MPF/12.0/Automation/VSProject/OAProjectReference.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/VSProject/OAReferenceBase.cs b/source/MPF/12.0/Automation/VSProject/OAReferenceBase.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/VSProject/OAReferenceBase.cs
rename to source/MPF/12.0/Automation/VSProject/OAReferenceBase.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/VSProject/OAReferences.cs b/source/MPF/12.0/Automation/VSProject/OAReferences.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/VSProject/OAReferences.cs
rename to source/MPF/12.0/Automation/VSProject/OAReferences.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/VSProject/OAVSProject.cs b/source/MPF/12.0/Automation/VSProject/OAVSProject.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/VSProject/OAVSProject.cs
rename to source/MPF/12.0/Automation/VSProject/OAVSProject.cs
diff --git a/Cosmos/source/MPF/12.0/Automation/VSProject/OAVSProjectItem.cs b/source/MPF/12.0/Automation/VSProject/OAVSProjectItem.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Automation/VSProject/OAVSProjectItem.cs
rename to source/MPF/12.0/Automation/VSProject/OAVSProjectItem.cs
diff --git a/Cosmos/source/MPF/12.0/BuildDependency.cs b/source/MPF/12.0/BuildDependency.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/BuildDependency.cs
rename to source/MPF/12.0/BuildDependency.cs
diff --git a/Cosmos/source/MPF/12.0/BuildPropertyPage.cs b/source/MPF/12.0/BuildPropertyPage.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/BuildPropertyPage.cs
rename to source/MPF/12.0/BuildPropertyPage.cs
diff --git a/Cosmos/source/MPF/12.0/ComReferenceNode.cs b/source/MPF/12.0/ComReferenceNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ComReferenceNode.cs
rename to source/MPF/12.0/ComReferenceNode.cs
diff --git a/Cosmos/source/MPF/12.0/ConfigProvider.cs b/source/MPF/12.0/ConfigProvider.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ConfigProvider.cs
rename to source/MPF/12.0/ConfigProvider.cs
diff --git a/Cosmos/source/MPF/12.0/ConfigurationProperties.cs b/source/MPF/12.0/ConfigurationProperties.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ConfigurationProperties.cs
rename to source/MPF/12.0/ConfigurationProperties.cs
diff --git a/Cosmos/source/MPF/12.0/DataObject.cs b/source/MPF/12.0/DataObject.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/DataObject.cs
rename to source/MPF/12.0/DataObject.cs
diff --git a/Cosmos/source/MPF/12.0/DependentFileNode.cs b/source/MPF/12.0/DependentFileNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/DependentFileNode.cs
rename to source/MPF/12.0/DependentFileNode.cs
diff --git a/Cosmos/source/MPF/12.0/DesignPropertyDescriptor.cs b/source/MPF/12.0/DesignPropertyDescriptor.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/DesignPropertyDescriptor.cs
rename to source/MPF/12.0/DesignPropertyDescriptor.cs
diff --git a/Cosmos/source/MPF/12.0/DesignTimeAssemblyResolution.cs b/source/MPF/12.0/DesignTimeAssemblyResolution.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/DesignTimeAssemblyResolution.cs
rename to source/MPF/12.0/DesignTimeAssemblyResolution.cs
diff --git a/Cosmos/source/MPF/12.0/Diagrams/AutomationClasses.cd b/source/MPF/12.0/Diagrams/AutomationClasses.cd
similarity index 100%
rename from Cosmos/source/MPF/12.0/Diagrams/AutomationClasses.cd
rename to source/MPF/12.0/Diagrams/AutomationClasses.cd
diff --git a/Cosmos/source/MPF/12.0/Diagrams/ConfigurationClasses.cd b/source/MPF/12.0/Diagrams/ConfigurationClasses.cd
similarity index 100%
rename from Cosmos/source/MPF/12.0/Diagrams/ConfigurationClasses.cd
rename to source/MPF/12.0/Diagrams/ConfigurationClasses.cd
diff --git a/Cosmos/source/MPF/12.0/Diagrams/DocumentManagerClasses.cd b/source/MPF/12.0/Diagrams/DocumentManagerClasses.cd
similarity index 100%
rename from Cosmos/source/MPF/12.0/Diagrams/DocumentManagerClasses.cd
rename to source/MPF/12.0/Diagrams/DocumentManagerClasses.cd
diff --git a/Cosmos/source/MPF/12.0/Diagrams/HierarchyClasses.cd b/source/MPF/12.0/Diagrams/HierarchyClasses.cd
similarity index 100%
rename from Cosmos/source/MPF/12.0/Diagrams/HierarchyClasses.cd
rename to source/MPF/12.0/Diagrams/HierarchyClasses.cd
diff --git a/Cosmos/source/MPF/12.0/Diagrams/PropertiesClasses.cd b/source/MPF/12.0/Diagrams/PropertiesClasses.cd
similarity index 100%
rename from Cosmos/source/MPF/12.0/Diagrams/PropertiesClasses.cd
rename to source/MPF/12.0/Diagrams/PropertiesClasses.cd
diff --git a/Cosmos/source/MPF/12.0/Diagrams/ReferenceClasses.cd b/source/MPF/12.0/Diagrams/ReferenceClasses.cd
similarity index 100%
rename from Cosmos/source/MPF/12.0/Diagrams/ReferenceClasses.cd
rename to source/MPF/12.0/Diagrams/ReferenceClasses.cd
diff --git a/Cosmos/source/MPF/12.0/DocumentManager.cs b/source/MPF/12.0/DocumentManager.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/DocumentManager.cs
rename to source/MPF/12.0/DocumentManager.cs
diff --git a/Cosmos/source/MPF/12.0/EnumDependencies.cs b/source/MPF/12.0/EnumDependencies.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/EnumDependencies.cs
rename to source/MPF/12.0/EnumDependencies.cs
diff --git a/Cosmos/source/MPF/12.0/FileChangeManager.cs b/source/MPF/12.0/FileChangeManager.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/FileChangeManager.cs
rename to source/MPF/12.0/FileChangeManager.cs
diff --git a/Cosmos/source/MPF/12.0/FileDocumentManager.cs b/source/MPF/12.0/FileDocumentManager.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/FileDocumentManager.cs
rename to source/MPF/12.0/FileDocumentManager.cs
diff --git a/Cosmos/source/MPF/12.0/FileNode.cs b/source/MPF/12.0/FileNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/FileNode.cs
rename to source/MPF/12.0/FileNode.cs
diff --git a/Cosmos/source/MPF/12.0/FolderNode.cs b/source/MPF/12.0/FolderNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/FolderNode.cs
rename to source/MPF/12.0/FolderNode.cs
diff --git a/Cosmos/source/MPF/12.0/GlobalSuppressions.cs b/source/MPF/12.0/GlobalSuppressions.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/GlobalSuppressions.cs
rename to source/MPF/12.0/GlobalSuppressions.cs
diff --git a/Cosmos/source/MPF/12.0/HierarchyNode.cs b/source/MPF/12.0/HierarchyNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/HierarchyNode.cs
rename to source/MPF/12.0/HierarchyNode.cs
diff --git a/Cosmos/source/MPF/12.0/IDEBuildLogger.cs b/source/MPF/12.0/IDEBuildLogger.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/IDEBuildLogger.cs
rename to source/MPF/12.0/IDEBuildLogger.cs
diff --git a/Cosmos/source/MPF/12.0/ImageHandler.cs b/source/MPF/12.0/ImageHandler.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ImageHandler.cs
rename to source/MPF/12.0/ImageHandler.cs
diff --git a/Cosmos/source/MPF/12.0/Interfaces.cs b/source/MPF/12.0/Interfaces.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Interfaces.cs
rename to source/MPF/12.0/Interfaces.cs
diff --git a/Cosmos/source/MPF/12.0/Key.snk b/source/MPF/12.0/Key.snk
similarity index 100%
rename from Cosmos/source/MPF/12.0/Key.snk
rename to source/MPF/12.0/Key.snk
diff --git a/Cosmos/source/MPF/12.0/LocalizableProperties.cs b/source/MPF/12.0/LocalizableProperties.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/LocalizableProperties.cs
rename to source/MPF/12.0/LocalizableProperties.cs
diff --git a/Cosmos/source/MPF/12.0/MPFProjectAll.files b/source/MPF/12.0/MPFProjectAll.files
similarity index 100%
rename from Cosmos/source/MPF/12.0/MPFProjectAll.files
rename to source/MPF/12.0/MPFProjectAll.files
diff --git a/Cosmos/source/MPF/12.0/Microsoft.VisualStudio.Project.csproj b/source/MPF/12.0/Microsoft.VisualStudio.Project.csproj
similarity index 100%
rename from Cosmos/source/MPF/12.0/Microsoft.VisualStudio.Project.csproj
rename to source/MPF/12.0/Microsoft.VisualStudio.Project.csproj
diff --git a/Cosmos/source/MPF/12.0/Microsoft.VisualStudio.Project.sln b/source/MPF/12.0/Microsoft.VisualStudio.Project.sln
similarity index 100%
rename from Cosmos/source/MPF/12.0/Microsoft.VisualStudio.Project.sln
rename to source/MPF/12.0/Microsoft.VisualStudio.Project.sln
diff --git a/Cosmos/source/MPF/12.0/Misc/ConnectionPointContainer.cs b/source/MPF/12.0/Misc/ConnectionPointContainer.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Misc/ConnectionPointContainer.cs
rename to source/MPF/12.0/Misc/ConnectionPointContainer.cs
diff --git a/Cosmos/source/MPF/12.0/Misc/ExternDll.cs b/source/MPF/12.0/Misc/ExternDll.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Misc/ExternDll.cs
rename to source/MPF/12.0/Misc/ExternDll.cs
diff --git a/Cosmos/source/MPF/12.0/Misc/NativeMethods.cs b/source/MPF/12.0/Misc/NativeMethods.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Misc/NativeMethods.cs
rename to source/MPF/12.0/Misc/NativeMethods.cs
diff --git a/Cosmos/source/MPF/12.0/Misc/UnsafeNativeMethods.cs b/source/MPF/12.0/Misc/UnsafeNativeMethods.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Misc/UnsafeNativeMethods.cs
rename to source/MPF/12.0/Misc/UnsafeNativeMethods.cs
diff --git a/Cosmos/source/MPF/12.0/NestedProjectBuildDependency.cs b/source/MPF/12.0/NestedProjectBuildDependency.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/NestedProjectBuildDependency.cs
rename to source/MPF/12.0/NestedProjectBuildDependency.cs
diff --git a/Cosmos/source/MPF/12.0/NestedProjectNode.cs b/source/MPF/12.0/NestedProjectNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/NestedProjectNode.cs
rename to source/MPF/12.0/NestedProjectNode.cs
diff --git a/Cosmos/source/MPF/12.0/NodeProperties.cs b/source/MPF/12.0/NodeProperties.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/NodeProperties.cs
rename to source/MPF/12.0/NodeProperties.cs
diff --git a/Cosmos/source/MPF/12.0/OleServiceProvider.cs b/source/MPF/12.0/OleServiceProvider.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/OleServiceProvider.cs
rename to source/MPF/12.0/OleServiceProvider.cs
diff --git a/Cosmos/source/MPF/12.0/Output.cs b/source/MPF/12.0/Output.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Output.cs
rename to source/MPF/12.0/Output.cs
diff --git a/Cosmos/source/MPF/12.0/OutputGroup.cs b/source/MPF/12.0/OutputGroup.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/OutputGroup.cs
rename to source/MPF/12.0/OutputGroup.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectBase.files b/source/MPF/12.0/ProjectBase.files
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectBase.files
rename to source/MPF/12.0/ProjectBase.files
diff --git a/Cosmos/source/MPF/12.0/ProjectConfig.cs b/source/MPF/12.0/ProjectConfig.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectConfig.cs
rename to source/MPF/12.0/ProjectConfig.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectContainerNode.cs b/source/MPF/12.0/ProjectContainerNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectContainerNode.cs
rename to source/MPF/12.0/ProjectContainerNode.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectDesignerDocumentManager.cs b/source/MPF/12.0/ProjectDesignerDocumentManager.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectDesignerDocumentManager.cs
rename to source/MPF/12.0/ProjectDesignerDocumentManager.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectDocumentsListener.cs b/source/MPF/12.0/ProjectDocumentsListener.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectDocumentsListener.cs
rename to source/MPF/12.0/ProjectDocumentsListener.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectElement.cs b/source/MPF/12.0/ProjectElement.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectElement.cs
rename to source/MPF/12.0/ProjectElement.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectFactory.cs b/source/MPF/12.0/ProjectFactory.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectFactory.cs
rename to source/MPF/12.0/ProjectFactory.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectFileConstants.cs b/source/MPF/12.0/ProjectFileConstants.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectFileConstants.cs
rename to source/MPF/12.0/ProjectFileConstants.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectNode.CopyPaste.cs b/source/MPF/12.0/ProjectNode.CopyPaste.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectNode.CopyPaste.cs
rename to source/MPF/12.0/ProjectNode.CopyPaste.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectNode.Events.cs b/source/MPF/12.0/ProjectNode.Events.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectNode.Events.cs
rename to source/MPF/12.0/ProjectNode.Events.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectNode.cs b/source/MPF/12.0/ProjectNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectNode.cs
rename to source/MPF/12.0/ProjectNode.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectOptions.cs b/source/MPF/12.0/ProjectOptions.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectOptions.cs
rename to source/MPF/12.0/ProjectOptions.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectPackage.cs b/source/MPF/12.0/ProjectPackage.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectPackage.cs
rename to source/MPF/12.0/ProjectPackage.cs
diff --git a/Cosmos/source/MPF/12.0/ProjectReferenceNode.cs b/source/MPF/12.0/ProjectReferenceNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ProjectReferenceNode.cs
rename to source/MPF/12.0/ProjectReferenceNode.cs
diff --git a/Cosmos/source/MPF/12.0/Properties/AssemblyInfo.cs b/source/MPF/12.0/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Properties/AssemblyInfo.cs
rename to source/MPF/12.0/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/MPF/12.0/PropertiesEditorLauncher.cs b/source/MPF/12.0/PropertiesEditorLauncher.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/PropertiesEditorLauncher.cs
rename to source/MPF/12.0/PropertiesEditorLauncher.cs
diff --git a/Cosmos/source/MPF/12.0/ReferenceContainerNode.cs b/source/MPF/12.0/ReferenceContainerNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ReferenceContainerNode.cs
rename to source/MPF/12.0/ReferenceContainerNode.cs
diff --git a/Cosmos/source/MPF/12.0/ReferenceNode.cs b/source/MPF/12.0/ReferenceNode.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/ReferenceNode.cs
rename to source/MPF/12.0/ReferenceNode.cs
diff --git a/Cosmos/source/MPF/12.0/RegisteredProjectType.cs b/source/MPF/12.0/RegisteredProjectType.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/RegisteredProjectType.cs
rename to source/MPF/12.0/RegisteredProjectType.cs
diff --git a/Cosmos/source/MPF/12.0/Resources/imagelis.bmp b/source/MPF/12.0/Resources/imagelis.bmp
similarity index 100%
rename from Cosmos/source/MPF/12.0/Resources/imagelis.bmp
rename to source/MPF/12.0/Resources/imagelis.bmp
diff --git a/Cosmos/source/MPF/12.0/SelectionListener.cs b/source/MPF/12.0/SelectionListener.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/SelectionListener.cs
rename to source/MPF/12.0/SelectionListener.cs
diff --git a/Cosmos/source/MPF/12.0/SettingsPage.cs b/source/MPF/12.0/SettingsPage.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/SettingsPage.cs
rename to source/MPF/12.0/SettingsPage.cs
diff --git a/Cosmos/source/MPF/12.0/SingleFileGenerator.cs b/source/MPF/12.0/SingleFileGenerator.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/SingleFileGenerator.cs
rename to source/MPF/12.0/SingleFileGenerator.cs
diff --git a/Cosmos/source/MPF/12.0/SingleFileGeneratorFactory.cs b/source/MPF/12.0/SingleFileGeneratorFactory.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/SingleFileGeneratorFactory.cs
rename to source/MPF/12.0/SingleFileGeneratorFactory.cs
diff --git a/Cosmos/source/MPF/12.0/SolutionListener.cs b/source/MPF/12.0/SolutionListener.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/SolutionListener.cs
rename to source/MPF/12.0/SolutionListener.cs
diff --git a/Cosmos/source/MPF/12.0/SolutionListenerForBuildDependencyUpdate.cs b/source/MPF/12.0/SolutionListenerForBuildDependencyUpdate.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/SolutionListenerForBuildDependencyUpdate.cs
rename to source/MPF/12.0/SolutionListenerForBuildDependencyUpdate.cs
diff --git a/Cosmos/source/MPF/12.0/SolutionListenerForProjectEvents.cs b/source/MPF/12.0/SolutionListenerForProjectEvents.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/SolutionListenerForProjectEvents.cs
rename to source/MPF/12.0/SolutionListenerForProjectEvents.cs
diff --git a/Cosmos/source/MPF/12.0/SolutionListenerForProjectOpen.cs b/source/MPF/12.0/SolutionListenerForProjectOpen.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/SolutionListenerForProjectOpen.cs
rename to source/MPF/12.0/SolutionListenerForProjectOpen.cs
diff --git a/Cosmos/source/MPF/12.0/SolutionListenerForProjectReferenceUpdate.cs b/source/MPF/12.0/SolutionListenerForProjectReferenceUpdate.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/SolutionListenerForProjectReferenceUpdate.cs
rename to source/MPF/12.0/SolutionListenerForProjectReferenceUpdate.cs
diff --git a/Cosmos/source/MPF/12.0/StructuresEnums.cs b/source/MPF/12.0/StructuresEnums.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/StructuresEnums.cs
rename to source/MPF/12.0/StructuresEnums.cs
diff --git a/Cosmos/source/MPF/12.0/SuspendFileChanges.cs b/source/MPF/12.0/SuspendFileChanges.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/SuspendFileChanges.cs
rename to source/MPF/12.0/SuspendFileChanges.cs
diff --git a/Cosmos/source/MPF/12.0/TokenProcessor.cs b/source/MPF/12.0/TokenProcessor.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/TokenProcessor.cs
rename to source/MPF/12.0/TokenProcessor.cs
diff --git a/Cosmos/source/MPF/12.0/Tracing.cs b/source/MPF/12.0/Tracing.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Tracing.cs
rename to source/MPF/12.0/Tracing.cs
diff --git a/Cosmos/source/MPF/12.0/TrackDocumentsHelper.cs b/source/MPF/12.0/TrackDocumentsHelper.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/TrackDocumentsHelper.cs
rename to source/MPF/12.0/TrackDocumentsHelper.cs
diff --git a/Cosmos/source/MPF/12.0/TypeConverters.cs b/source/MPF/12.0/TypeConverters.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/TypeConverters.cs
rename to source/MPF/12.0/TypeConverters.cs
diff --git a/Cosmos/source/MPF/12.0/UIThread.cs b/source/MPF/12.0/UIThread.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/UIThread.cs
rename to source/MPF/12.0/UIThread.cs
diff --git a/Cosmos/source/MPF/12.0/UpdateSolutionEventsListener.cs b/source/MPF/12.0/UpdateSolutionEventsListener.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/UpdateSolutionEventsListener.cs
rename to source/MPF/12.0/UpdateSolutionEventsListener.cs
diff --git a/Cosmos/source/MPF/12.0/Url.cs b/source/MPF/12.0/Url.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Url.cs
rename to source/MPF/12.0/Url.cs
diff --git a/Cosmos/source/MPF/12.0/Utilities.cs b/source/MPF/12.0/Utilities.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/Utilities.cs
rename to source/MPF/12.0/Utilities.cs
diff --git a/Cosmos/source/MPF/12.0/VSShellUtilities.cs b/source/MPF/12.0/VSShellUtilities.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/VSShellUtilities.cs
rename to source/MPF/12.0/VSShellUtilities.cs
diff --git a/Cosmos/source/MPF/12.0/VisualStudio.Project.cs b/source/MPF/12.0/VisualStudio.Project.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/VisualStudio.Project.cs
rename to source/MPF/12.0/VisualStudio.Project.cs
diff --git a/Cosmos/source/MPF/12.0/VisualStudio.Project.resx b/source/MPF/12.0/VisualStudio.Project.resx
similarity index 100%
rename from Cosmos/source/MPF/12.0/VisualStudio.Project.resx
rename to source/MPF/12.0/VisualStudio.Project.resx
diff --git a/Cosmos/source/MPF/12.0/VsCommands.cs b/source/MPF/12.0/VsCommands.cs
similarity index 100%
rename from Cosmos/source/MPF/12.0/VsCommands.cs
rename to source/MPF/12.0/VsCommands.cs
diff --git a/Cosmos/source/MPF/12.0/WebProjectBase.Files b/source/MPF/12.0/WebProjectBase.Files
similarity index 100%
rename from Cosmos/source/MPF/12.0/WebProjectBase.Files
rename to source/MPF/12.0/WebProjectBase.Files
diff --git a/Cosmos/source/TheRingMaster/Program.cs b/source/TheRingMaster/Program.cs
similarity index 100%
rename from Cosmos/source/TheRingMaster/Program.cs
rename to source/TheRingMaster/Program.cs
diff --git a/Cosmos/source/TheRingMaster/TheRingMaster.csproj b/source/TheRingMaster/TheRingMaster.csproj
similarity index 100%
rename from Cosmos/source/TheRingMaster/TheRingMaster.csproj
rename to source/TheRingMaster/TheRingMaster.csproj
diff --git a/Cosmos/source/Tools/ProjectRenamer/App.config b/source/Tools/ProjectRenamer/App.config
similarity index 100%
rename from Cosmos/source/Tools/ProjectRenamer/App.config
rename to source/Tools/ProjectRenamer/App.config
diff --git a/Cosmos/source/Tools/ProjectRenamer/App.xaml b/source/Tools/ProjectRenamer/App.xaml
similarity index 100%
rename from Cosmos/source/Tools/ProjectRenamer/App.xaml
rename to source/Tools/ProjectRenamer/App.xaml
diff --git a/Cosmos/source/Tools/ProjectRenamer/App.xaml.cs b/source/Tools/ProjectRenamer/App.xaml.cs
similarity index 100%
rename from Cosmos/source/Tools/ProjectRenamer/App.xaml.cs
rename to source/Tools/ProjectRenamer/App.xaml.cs
diff --git a/Cosmos/source/Tools/ProjectRenamer/MainWindow.xaml b/source/Tools/ProjectRenamer/MainWindow.xaml
similarity index 100%
rename from Cosmos/source/Tools/ProjectRenamer/MainWindow.xaml
rename to source/Tools/ProjectRenamer/MainWindow.xaml
diff --git a/Cosmos/source/Tools/ProjectRenamer/MainWindow.xaml.cs b/source/Tools/ProjectRenamer/MainWindow.xaml.cs
similarity index 100%
rename from Cosmos/source/Tools/ProjectRenamer/MainWindow.xaml.cs
rename to source/Tools/ProjectRenamer/MainWindow.xaml.cs
diff --git a/Cosmos/source/Tools/ProjectRenamer/ProjectRenamer.csproj b/source/Tools/ProjectRenamer/ProjectRenamer.csproj
similarity index 100%
rename from Cosmos/source/Tools/ProjectRenamer/ProjectRenamer.csproj
rename to source/Tools/ProjectRenamer/ProjectRenamer.csproj
diff --git a/Cosmos/source/Tools/ProjectRenamer/Properties/AssemblyInfo.cs b/source/Tools/ProjectRenamer/Properties/AssemblyInfo.cs
similarity index 100%
rename from Cosmos/source/Tools/ProjectRenamer/Properties/AssemblyInfo.cs
rename to source/Tools/ProjectRenamer/Properties/AssemblyInfo.cs
diff --git a/Cosmos/source/Tools/ProjectRenamer/Properties/Resources.Designer.cs b/source/Tools/ProjectRenamer/Properties/Resources.Designer.cs
similarity index 100%
rename from Cosmos/source/Tools/ProjectRenamer/Properties/Resources.Designer.cs
rename to source/Tools/ProjectRenamer/Properties/Resources.Designer.cs
diff --git a/Cosmos/source/Archive/Cosmos.Kernel.LogTail/Properties/Resources.resx b/source/Tools/ProjectRenamer/Properties/Resources.resx
similarity index 100%
rename from Cosmos/source/Archive/Cosmos.Kernel.LogTail/Properties/Resources.resx
rename to source/Tools/ProjectRenamer/Properties/Resources.resx
diff --git a/Cosmos/source/Tools/ProjectRenamer/Properties/Settings.Designer.cs b/source/Tools/ProjectRenamer/Properties/Settings.Designer.cs
similarity index 100%
rename from Cosmos/source/Tools/ProjectRenamer/Properties/Settings.Designer.cs
rename to source/Tools/ProjectRenamer/Properties/Settings.Designer.cs
diff --git a/Cosmos/source/Tools/ProjectRenamer/Properties/Settings.settings b/source/Tools/ProjectRenamer/Properties/Settings.settings
similarity index 100%
rename from Cosmos/source/Tools/ProjectRenamer/Properties/Settings.settings
rename to source/Tools/ProjectRenamer/Properties/Settings.settings
diff --git a/Cosmos/source/Tools/Tools.sln b/source/Tools/Tools.sln
similarity index 100%
rename from Cosmos/source/Tools/Tools.sln
rename to source/Tools/Tools.sln
diff --git a/Cosmos/source/XSharp Projects.txt b/source/XSharp Projects.txt
similarity index 100%
rename from Cosmos/source/XSharp Projects.txt
rename to source/XSharp Projects.txt
diff --git a/Cosmos/userkit install.bat b/userkit install.bat
similarity index 100%
rename from Cosmos/userkit install.bat
rename to userkit install.bat