diff --git a/BSIPA-ModList/BSIPA-ModList.csproj b/BSIPA-ModList/BSIPA-ModList.csproj
index 569c6229..cd96fcd9 100644
--- a/BSIPA-ModList/BSIPA-ModList.csproj
+++ b/BSIPA-ModList/BSIPA-ModList.csproj
@@ -80,7 +80,7 @@
-
+
@@ -122,7 +122,7 @@
-
+
Bundles\consolas.font
diff --git a/BSIPA-ModList/Plugin.cs b/BSIPA-ModList/Plugin.cs
index d9e7c24e..08a555ab 100644
--- a/BSIPA-ModList/Plugin.cs
+++ b/BSIPA-ModList/Plugin.cs
@@ -4,6 +4,9 @@ using IPALogger = IPA.Logging.Logger;
using BSIPA_ModList.UI;
using UnityEngine;
using IPA.Logging;
+using BSIPA_ModList.UI.ViewControllers;
+using System.Collections;
+using IPA.Loader;
namespace BSIPA_ModList
{
@@ -21,6 +24,8 @@ namespace BSIPA_ModList
Logger.log = logger;
IPA.Updating.BeatMods.Updater.ModListPresent = true;
+
+
}
public void OnActiveSceneChanged(Scene prevScene, Scene nextScene)
@@ -33,7 +38,20 @@ namespace BSIPA_ModList
public void OnApplicationStart()
{
+ // Load resources ahead of time
+ MarkdownView.StartLoadResourcesAsync();
+
+ SharedCoroutineStarter.instance.StartCoroutine(LoadPluginIcons());
+ }
+ private static IEnumerator LoadPluginIcons()
+ {
+ foreach (var p in PluginManager.AllPlugins)
+ {
+ yield return null;
+ Logger.log.Debug($"Loading icon for {p.Metadata.Name}");
+ var _ = p.Metadata.GetIcon();
+ }
}
public void OnFixedUpdate()
diff --git a/BSIPA-ModList/UI/ButtonUI.cs b/BSIPA-ModList/UI/ButtonUI.cs
index 566e5646..ed6d0572 100644
--- a/BSIPA-ModList/UI/ButtonUI.cs
+++ b/BSIPA-ModList/UI/ButtonUI.cs
@@ -14,7 +14,7 @@ namespace BSIPA_ModList.UI
internal class ButtonUI : MonoBehaviour
{
private const string ControllerPanel = "MainMenuViewController/SmallButtons";
- private const string CopyButton = "CreditsButton";
+ private const string CopyButton = "BeatmapEditorButton";
internal static ButtonUI Instance;
diff --git a/BSIPA-ModList/UI/DownloadProgressCell.cs b/BSIPA-ModList/UI/DownloadProgressCell.cs
index dcbf607f..92afb9e3 100644
--- a/BSIPA-ModList/UI/DownloadProgressCell.cs
+++ b/BSIPA-ModList/UI/DownloadProgressCell.cs
@@ -34,7 +34,7 @@ namespace BSIPA_ModList.UI
_songNameText = GetComponentsInChildren().First(x => x.name == "SongName");
_songNameText.enableWordWrapping = false;
_songNameText.overflowMode = TextOverflowModes.Overflow;
- _coverImage = GetComponentsInChildren().First(x => x.name == "CoverImage");
+ _coverRawImage = GetComponentsInChildren().First(x => x.name == "CoverImage");
_bgImage = GetComponentsInChildren().First(x => x.name == "BG");
_highlightImage = GetComponentsInChildren().First(x => x.name == "Highlight");
_beatmapCharacteristicAlphas = new float[0];
@@ -46,7 +46,7 @@ namespace BSIPA_ModList.UI
_songNameText.text = $"{mod.Mod.Name} v{mod.Mod.ResolvedVersion}";
_authorText.text = "";
- _coverImage.sprite = mod.Icon;
+ _coverRawImage.texture = mod.Icon.texture;
_bgImage.enabled = true;
_bgImage.sprite = Sprite.Create(new Texture2D(1, 1), new Rect(0, 0, 1, 1), Vector2.one / 2f);
diff --git a/BSIPA-ModList/UI/FloatingNotification.cs b/BSIPA-ModList/UI/FloatingNotification.cs
index b331b63e..4bd78d72 100644
--- a/BSIPA-ModList/UI/FloatingNotification.cs
+++ b/BSIPA-ModList/UI/FloatingNotification.cs
@@ -16,7 +16,7 @@ namespace BSIPA_ModList.UI
private Image _loadingBackg;
private Image _loadingBar;
- private static readonly Vector3 Position = new Vector3(2.3f, 2.3f, 1.35f);
+ private static readonly Vector3 Position = new Vector3(2.25f, 2.3f, 1.55f);
private static readonly Vector3 Rotation = new Vector3(0, 60, 0);
private static readonly Vector3 Scale = new Vector3(0.01f, 0.01f, 0.01f);
diff --git a/BSIPA-ModList/UI/ViewControllers/DownloadProgressViewController.cs b/BSIPA-ModList/UI/ViewControllers/DownloadProgressViewController.cs
index c5fe5416..e7c35e12 100644
--- a/BSIPA-ModList/UI/ViewControllers/DownloadProgressViewController.cs
+++ b/BSIPA-ModList/UI/ViewControllers/DownloadProgressViewController.cs
@@ -152,7 +152,7 @@ namespace BSIPA_ModList.UI.ViewControllers
public float CellSize()
{
- return 10f;
+ return 8.5f;
}
public int NumberOfCells()
diff --git a/BSIPA-ModList/UI/ViewControllers/MarkdownView.cs b/BSIPA-ModList/UI/ViewControllers/MarkdownView.cs
index d7607c25..9a8d4222 100644
--- a/BSIPA-ModList/UI/ViewControllers/MarkdownView.cs
+++ b/BSIPA-ModList/UI/ViewControllers/MarkdownView.cs
@@ -12,6 +12,7 @@ using System.Reflection;
using UnityEngine.EventSystems;
using System.Diagnostics;
using System.Collections;
+using System.IO;
namespace BSIPA_ModList.UI.ViewControllers
{
@@ -86,39 +87,73 @@ namespace BSIPA_ModList.UI.ViewControllers
return uri.Substring(3);
}
+ private static Stream ConsolasAssetBundleFontStream => Assembly.GetExecutingAssembly().GetManifestResourceStream("BSIPA_ModList.Bundles.consolas.font");
+
+ private static AssetBundleCreateRequest _bundleRequest;
private static AssetBundle _bundle;
private static AssetBundle Bundle
{
get
{
+ if (_bundle == null && _bundleRequest != null)
+ throw new InvalidOperationException("Asset bundle is being loaded asynchronously; please wait for that to complete");
if (_bundle == null)
- _bundle = AssetBundle.LoadFromStream(Assembly.GetExecutingAssembly().GetManifestResourceStream("BSIPA_ModList.Bundles.consolas.font"));
+ _bundle = AssetBundle.LoadFromStream(ConsolasAssetBundleFontStream);
return _bundle;
}
}
+
+ private static AssetBundleRequest _consolasRequest;
+ private static TMP_FontAsset _unsetConsolas;
private static TMP_FontAsset _consolas;
private static TMP_FontAsset Consolas
{
get
{
- if (_consolas == null)
- {
- _consolas = Bundle?.LoadAsset("CONSOLAS");
- if (_consolas != null)
- {
- var originalFont = Resources.FindObjectsOfTypeAll().Last(f => f.name == "Teko-Medium SDF No Glow");
- var matCopy = Instantiate(originalFont.material);
- matCopy.mainTexture = _consolas.material.mainTexture;
- matCopy.mainTextureOffset = _consolas.material.mainTextureOffset;
- matCopy.mainTextureScale = _consolas.material.mainTextureScale;
- _consolas.material = matCopy;
- MaterialReferenceManager.AddFontAsset(_consolas);
- }
- }
+ if (_unsetConsolas == null && _consolasRequest != null)
+ throw new InvalidOperationException("Asset is being loaded asynchronously; please wait for that to complete");
+ if (_unsetConsolas == null)
+ _unsetConsolas = Bundle?.LoadAsset("CONSOLAS");
+ if (_consolas == null && _unsetConsolas != null)
+ _consolas = SetupFont(_unsetConsolas);
return _consolas;
}
}
+ private static TMP_FontAsset SetupFont(TMP_FontAsset f)
+ {
+ var originalFont = Resources.FindObjectsOfTypeAll().Last(f2 => f2.name == "Teko-Medium SDF No Glow");
+ var matCopy = Instantiate(originalFont.material);
+ matCopy.mainTexture = f.material.mainTexture;
+ matCopy.mainTextureOffset = f.material.mainTextureOffset;
+ matCopy.mainTextureScale = f.material.mainTextureScale;
+ f.material = matCopy;
+ f = Instantiate(f);
+ MaterialReferenceManager.AddFontAsset(f);
+ return f;
+ }
+
+ internal static void StartLoadResourcesAsync()
+ {
+ SharedCoroutineStarter.instance.StartCoroutine(LoadResourcesAsync());
+ }
+ private static IEnumerator LoadResourcesAsync()
+ {
+ Logger.md.Debug("Starting to load resources");
+
+ _bundleRequest = AssetBundle.LoadFromStreamAsync(ConsolasAssetBundleFontStream);
+ yield return _bundleRequest;
+ _bundle = _bundleRequest.assetBundle;
+
+ Logger.md.Debug("Bundle loaded");
+
+ _consolasRequest = _bundle.LoadAssetAsync("CONSOLAS");
+ yield return _consolasRequest;
+ _unsetConsolas = _consolasRequest.asset as TMP_FontAsset;
+
+ Logger.md.Debug("Font loaded");
+ }
+
protected void Awake()
{
if (Consolas == null)
diff --git a/BSIPA-ModList/UI/ViewControllers/ModCells.cs b/BSIPA-ModList/UI/ViewControllers/ModCells.cs
index 509b2b1f..8b5fe195 100644
--- a/BSIPA-ModList/UI/ViewControllers/ModCells.cs
+++ b/BSIPA-ModList/UI/ViewControllers/ModCells.cs
@@ -44,7 +44,7 @@ namespace BSIPA_ModList.UI.ViewControllers
{
var desc = Plugin.Manifest.Description;
if (string.IsNullOrWhiteSpace(desc))
- desc = "No description";
+ desc = "*No description*";
infoView = BeatSaberUI.CreateViewController();
infoView.Init(icon, Plugin.Name, "v" + Plugin.Version.ToString(), subtext,
@@ -87,7 +87,7 @@ namespace BSIPA_ModList.UI.ViewControllers
{
var desc = Plugin.Manifest.Description;
if (string.IsNullOrWhiteSpace(desc))
- desc = "No description";
+ desc = "*No description*";
infoView = BeatSaberUI.CreateViewController();
infoView.Init(icon, Plugin.Name, "v" + Plugin.Version.ToString(), authorText,
@@ -109,7 +109,7 @@ namespace BSIPA_ModList.UI.ViewControllers
this.list = list;
if (string.IsNullOrWhiteSpace(subtext))
- subtext = "Unspecified Author";
+ subtext = "Unspecified Author";
icon = Utilities.DefaultLibraryIcon;
}
@@ -124,7 +124,7 @@ namespace BSIPA_ModList.UI.ViewControllers
{
var desc = Plugin.Manifest.Description;
if (string.IsNullOrWhiteSpace(desc))
- desc = "No description";
+ desc = "*No description*";
infoView = BeatSaberUI.CreateViewController();
infoView.Init(icon, Plugin.Name, "v" + Plugin.Version.ToString(), subtext,
diff --git a/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs b/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs
index 696c1a66..79010a0d 100644
--- a/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs
+++ b/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs
@@ -76,7 +76,9 @@ namespace BSIPA_ModList.UI
rowTransform = Instantiate(rowTransformOriginal, rectTransform);
rowTransform.anchorMin = new Vector2(0f, 0f);
rowTransform.anchorMax = new Vector2(1f, .15f);
- rowTransform.anchoredPosition = new Vector2(-3.5f, -2f);
+ rowTransform.anchoredPosition = new Vector2(-3.5f, 4f);
+ rowTransform.sizeDelta = Vector2.zero;
+ Destroy(rowTransform.GetComponent());
foreach (Transform child in rowTransform)
{
@@ -86,32 +88,35 @@ namespace BSIPA_ModList.UI
if (links?.ProjectHome != null)
{
- linkHomeButton = BeatSaberUI.CreateUIButton(rowTransform, "QuitButton", buttonText: "Home",
+ linkHomeButton = BeatSaberUI.CreateUIButton(rowTransform, "QuitButton", buttonText: "Home", anchoredPosition: Vector2.zero, sizeDelta: new Vector2(20, 10),
onClick: () => Process.Start(links.ProjectHome.ToString()));
linkHomeButton.GetComponentInChildren().padding = new RectOffset(6, 6, 0, 0);
addedLink = true;
}
if (links?.ProjectSource != null)
{
- linkSourceButton = BeatSaberUI.CreateUIButton(rowTransform, "QuitButton", buttonText: "Source",
+ linkSourceButton = BeatSaberUI.CreateUIButton(rowTransform, "QuitButton", buttonText: "Source", anchoredPosition: Vector2.zero, sizeDelta: new Vector2(20, 10),
onClick: () => Process.Start(links.ProjectSource.ToString()));
linkSourceButton.GetComponentInChildren().padding = new RectOffset(6, 6, 0, 0);
addedLink = true;
}
if (links?.Donate != null)
{
- linkDonateButton = BeatSaberUI.CreateUIButton(rowTransform, "QuitButton", buttonText: "Donate",
+ linkDonateButton = BeatSaberUI.CreateUIButton(rowTransform, "QuitButton", buttonText: "Donate", anchoredPosition: Vector2.zero, sizeDelta: new Vector2(20, 10),
onClick: () => Process.Start(links.Donate.ToString()));
linkDonateButton.GetComponentInChildren().padding = new RectOffset(6, 6, 0, 0);
addedLink = true;
}
if (moreInfoLink != null)
{
- linkDonateButton = BeatSaberUI.CreateUIButton(rowTransform, "QuitButton", buttonText: "More Info",
+ linkDonateButton = BeatSaberUI.CreateUIButton(rowTransform, "QuitButton", buttonText: "More Info", anchoredPosition: Vector2.zero, sizeDelta: new Vector2(20, 10),
onClick: () => Process.Start(moreInfoLink.ToString()));
linkDonateButton.GetComponentInChildren().padding = new RectOffset(6, 6, 0, 0);
addedLink = true;
}
+
+ foreach (var cmp in rowTransform.GetComponentsInChildren())
+ cmp.SetMiddleSprite();
}
if (UpdateInfo != null && !addedLink)
StartCoroutine(GetMoreInfoLink());
diff --git a/BSIPA-ModList/UI/ViewControllers/ModListController.cs b/BSIPA-ModList/UI/ViewControllers/ModListController.cs
index 015c895a..3323b28a 100644
--- a/BSIPA-ModList/UI/ViewControllers/ModListController.cs
+++ b/BSIPA-ModList/UI/ViewControllers/ModListController.cs
@@ -22,6 +22,8 @@ namespace BSIPA_ModList.UI
var cell = base.CellForIdx(idx) as LevelListTableCell;
var nameText = cell.GetPrivateField("_songNameText");
nameText.overflowMode = TextOverflowModes.Overflow;
+ var authorText = cell.GetPrivateField("_authorText");
+ authorText.overflowMode = TextOverflowModes.Overflow;
return cell;
}
diff --git a/BSIPA-ModList/UI/SettingsViewController.cs b/BSIPA-ModList/UI/ViewControllers/SettingsViewController.cs
similarity index 95%
rename from BSIPA-ModList/UI/SettingsViewController.cs
rename to BSIPA-ModList/UI/ViewControllers/SettingsViewController.cs
index b48be680..b8ec60f1 100644
--- a/BSIPA-ModList/UI/SettingsViewController.cs
+++ b/BSIPA-ModList/UI/ViewControllers/SettingsViewController.cs
@@ -33,6 +33,9 @@ namespace BSIPA_ModList.UI
SelfConfig.LoaderConfig.Store(SelfConfig.SelfConfigRef.Value);
};
+ autoCheck.Init();
+ autoUpdate.Init();
+
return menu.viewController;
}
}
diff --git a/BSIPA-ModList/manifest.json b/BSIPA-ModList/manifest.json
index 9cfa2d67..960e64a9 100644
--- a/BSIPA-ModList/manifest.json
+++ b/BSIPA-ModList/manifest.json
@@ -8,13 +8,13 @@
"",
"## An in-game interface client for BSIPA.",
],
- "gameVersion": "0.13.2",
+ "gameVersion": "1.0.0",
"id": "BSIPA Mod List",
"name": "BSIPA Mod List",
- "version": "1.2.1",
+ "version": "1.2.2",
"icon": "BSIPA_ModList.Icons.self.png",
"dependsOn": {
- "BSIPA": "^3.12.18",
+ "BSIPA": "^3.12.19",
"CustomUI": "^1.5.4"
},
"features": [],
diff --git a/IPA.Loader/Config/SelfConfig.cs b/IPA.Loader/Config/SelfConfig.cs
index c63770a3..408c2920 100644
--- a/IPA.Loader/Config/SelfConfig.cs
+++ b/IPA.Loader/Config/SelfConfig.cs
@@ -37,7 +37,7 @@ namespace IPA.Config
}
internal const string IPAName = "Beat Saber IPA";
- internal const string IPAVersion = "3.12.18";
+ internal const string IPAVersion = "3.12.19";
public bool Regenerate = true;
diff --git a/IPA.Loader/Loader/manifest.json b/IPA.Loader/Loader/manifest.json
index b6e0d985..774ab41b 100644
--- a/IPA.Loader/Loader/manifest.json
+++ b/IPA.Loader/Loader/manifest.json
@@ -5,10 +5,10 @@
"#![IPA.Loader.description.md]",
"A mod loader specifically for Beat Saber."
],
- "gameVersion": "0.13.2",
+ "gameVersion": "1.0.0",
"id": "BSIPA",
"name": "Beat Saber IPA",
- "version": "3.12.18",
+ "version": "3.12.19",
"icon": "IPA.icon.png",
"features": [
"define-feature(print, IPA.Loader.Features.PrintFeature)",
diff --git a/IPA/Program.cs b/IPA/Program.cs
index 7a1e20b5..ce6acb19 100644
--- a/IPA/Program.cs
+++ b/IPA/Program.cs
@@ -23,7 +23,7 @@ namespace IPA
Unknown
}
- public const string FileVersion = "3.12.18";
+ public const string FileVersion = "3.12.19";
public static Version Version => Assembly.GetEntryAssembly().GetName().Version;
diff --git a/Refs/Assembly-CSharp.dll b/Refs/Assembly-CSharp.dll
index aacda7f8..898fc5b3 100644
Binary files a/Refs/Assembly-CSharp.dll and b/Refs/Assembly-CSharp.dll differ
diff --git a/Refs/BeatSaberCustomUI.dll b/Refs/BeatSaberCustomUI.dll
index f1ee3f67..41662300 100644
Binary files a/Refs/BeatSaberCustomUI.dll and b/Refs/BeatSaberCustomUI.dll differ
diff --git a/Refs/BeatSaberCustomUI.xml b/Refs/BeatSaberCustomUI.xml
index 5fbaa627..9ad1b55a 100644
--- a/Refs/BeatSaberCustomUI.xml
+++ b/Refs/BeatSaberCustomUI.xml
@@ -129,6 +129,28 @@
The size of the color picker's RectTransform.
+
+
+ Creates a custom TextSegmentedControl component.
+
+ Thet transform to parent the new TextSegmentedControl component to.
+ The position the TextSegmentedControl component should be anchored to.
+ The size of the TextSegmentedControl component RectTransform.
+ Callback when the user clicks on one of the segments.
+ Size of text in segments.
+ Size of padding in segments.
+ The newly created TextSegmentedControl component.
+
+
+
+ Creates a custom IconSegmentedControl component.
+
+ Thet transform to parent the new IconSegmentedControl component to.
+ The position the IconSegmentedControl component should be anchored to.
+ The size of the IconSegmentedControl component RectTransform.
+ Callback when the user clicks on one of the segments.
+ The newly created IconSegmentedControl component.
+
The FlowCoordinator that presented this FlowCoordinator
diff --git a/Refs/Unity.TextMeshPro.dll b/Refs/Unity.TextMeshPro.dll
index 56123d46..244bc8fd 100644
Binary files a/Refs/Unity.TextMeshPro.dll and b/Refs/Unity.TextMeshPro.dll differ
diff --git a/Refs/UnityEngine.CoreModule.dll b/Refs/UnityEngine.CoreModule.dll
index 18fac61d..35f576f7 100644
Binary files a/Refs/UnityEngine.CoreModule.dll and b/Refs/UnityEngine.CoreModule.dll differ
diff --git a/BSIPA-ModList/TMP Exporter/Assembly-CSharp-Editor.csproj b/TMP Exporter/Assembly-CSharp-Editor.csproj
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assembly-CSharp-Editor.csproj
rename to TMP Exporter/Assembly-CSharp-Editor.csproj
diff --git a/BSIPA-ModList/TMP Exporter/Assets/AssetBundles/AssetBundles b/TMP Exporter/Assets/AssetBundles/AssetBundles
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/AssetBundles/AssetBundles
rename to TMP Exporter/Assets/AssetBundles/AssetBundles
diff --git a/BSIPA-ModList/TMP Exporter/Assets/AssetBundles/AssetBundles.manifest b/TMP Exporter/Assets/AssetBundles/AssetBundles.manifest
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/AssetBundles/AssetBundles.manifest
rename to TMP Exporter/Assets/AssetBundles/AssetBundles.manifest
diff --git a/BSIPA-ModList/TMP Exporter/Assets/AssetBundles/fonts/consolas.font b/TMP Exporter/Assets/AssetBundles/fonts/consolas.font
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/AssetBundles/fonts/consolas.font
rename to TMP Exporter/Assets/AssetBundles/fonts/consolas.font
diff --git a/BSIPA-ModList/TMP Exporter/Assets/AssetBundles/fonts/consolas.font.manifest b/TMP Exporter/Assets/AssetBundles/fonts/consolas.font.manifest
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/AssetBundles/fonts/consolas.font.manifest
rename to TMP Exporter/Assets/AssetBundles/fonts/consolas.font.manifest
diff --git a/BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLA.TTF b/TMP Exporter/Assets/Consolas/CONSOLA.TTF
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLA.TTF
rename to TMP Exporter/Assets/Consolas/CONSOLA.TTF
diff --git a/BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAB.TTF b/TMP Exporter/Assets/Consolas/CONSOLAB.TTF
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAB.TTF
rename to TMP Exporter/Assets/Consolas/CONSOLAB.TTF
diff --git a/BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAI.TTF b/TMP Exporter/Assets/Consolas/CONSOLAI.TTF
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAI.TTF
rename to TMP Exporter/Assets/Consolas/CONSOLAI.TTF
diff --git a/BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAS.asset b/TMP Exporter/Assets/Consolas/CONSOLAS.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAS.asset
rename to TMP Exporter/Assets/Consolas/CONSOLAS.asset
diff --git a/BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAS_BOLD.asset b/TMP Exporter/Assets/Consolas/CONSOLAS_BOLD.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAS_BOLD.asset
rename to TMP Exporter/Assets/Consolas/CONSOLAS_BOLD.asset
diff --git a/BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAS_BOLD_ITALIC.asset b/TMP Exporter/Assets/Consolas/CONSOLAS_BOLD_ITALIC.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAS_BOLD_ITALIC.asset
rename to TMP Exporter/Assets/Consolas/CONSOLAS_BOLD_ITALIC.asset
diff --git a/BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAS_ITALIC.asset b/TMP Exporter/Assets/Consolas/CONSOLAS_ITALIC.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAS_ITALIC.asset
rename to TMP Exporter/Assets/Consolas/CONSOLAS_ITALIC.asset
diff --git a/BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAZ.TTF b/TMP Exporter/Assets/Consolas/CONSOLAZ.TTF
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/Consolas/CONSOLAZ.TTF
rename to TMP Exporter/Assets/Consolas/CONSOLAZ.TTF
diff --git a/BSIPA-ModList/TMP Exporter/Assets/Editor/AssetBundle.cs b/TMP Exporter/Assets/Editor/AssetBundle.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/Editor/AssetBundle.cs
rename to TMP Exporter/Assets/Editor/AssetBundle.cs
diff --git a/BSIPA-ModList/TMP Exporter/Assets/Scenes/SampleScene.unity b/TMP Exporter/Assets/Scenes/SampleScene.unity
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/Scenes/SampleScene.unity
rename to TMP Exporter/Assets/Scenes/SampleScene.unity
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf b/TMP Exporter/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf
rename to TMP Exporter/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat b/TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat b/TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset b/TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt b/TMP Exporter/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt
rename to TMP Exporter/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt b/TMP Exporter/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt
rename to TMP Exporter/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc b/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset b/TMP Exporter/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset b/TMP Exporter/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset
rename to TMP Exporter/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/TMP Settings.asset b/TMP Exporter/Assets/TextMesh Pro/Resources/TMP Settings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Resources/TMP Settings.asset
rename to TMP Exporter/Assets/TextMesh Pro/Resources/TMP Settings.asset
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt b/TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt
rename to TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne.json b/TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne.json
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne.json
rename to TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne.json
diff --git a/BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne.png b/TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne.png
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne.png
rename to TMP Exporter/Assets/TextMesh Pro/Sprites/EmojiOne.png
diff --git a/BSIPA-ModList/TMP Exporter/BS TMP Exporter.sln b/TMP Exporter/BS TMP Exporter.sln
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/BS TMP Exporter.sln
rename to TMP Exporter/BS TMP Exporter.sln
diff --git a/BSIPA-ModList/TMP Exporter/Library/AnnotationManager b/TMP Exporter/Library/AnnotationManager
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/AnnotationManager
rename to TMP Exporter/Library/AnnotationManager
diff --git a/BSIPA-ModList/TMP Exporter/Library/AssetImportState b/TMP Exporter/Library/AssetImportState
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/AssetImportState
rename to TMP Exporter/Library/AssetImportState
diff --git a/BSIPA-ModList/TMP Exporter/Library/BuildPlayer.prefs b/TMP Exporter/Library/BuildPlayer.prefs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/BuildPlayer.prefs
rename to TMP Exporter/Library/BuildPlayer.prefs
diff --git a/BSIPA-ModList/TMP Exporter/Library/BuildSettings.asset b/TMP Exporter/Library/BuildSettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/BuildSettings.asset
rename to TMP Exporter/Library/BuildSettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/Library/CurrentLayout.dwlt b/TMP Exporter/Library/CurrentLayout.dwlt
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/CurrentLayout.dwlt
rename to TMP Exporter/Library/CurrentLayout.dwlt
diff --git a/BSIPA-ModList/TMP Exporter/Library/EditorUserBuildSettings.asset b/TMP Exporter/Library/EditorUserBuildSettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/EditorUserBuildSettings.asset
rename to TMP Exporter/Library/EditorUserBuildSettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/Library/EditorUserSettings.asset b/TMP Exporter/Library/EditorUserSettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/EditorUserSettings.asset
rename to TMP Exporter/Library/EditorUserSettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/Library/InspectorExpandedItems.asset b/TMP Exporter/Library/InspectorExpandedItems.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/InspectorExpandedItems.asset
rename to TMP Exporter/Library/InspectorExpandedItems.asset
diff --git a/BSIPA-ModList/TMP Exporter/Library/LastBuild.buildreport b/TMP Exporter/Library/LastBuild.buildreport
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/LastBuild.buildreport
rename to TMP Exporter/Library/LastBuild.buildreport
diff --git a/BSIPA-ModList/TMP Exporter/Library/LastSceneManagerSetup.txt b/TMP Exporter/Library/LastSceneManagerSetup.txt
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/LastSceneManagerSetup.txt
rename to TMP Exporter/Library/LastSceneManagerSetup.txt
diff --git a/BSIPA-ModList/TMP Exporter/Library/LibraryFormatVersion.txt b/TMP Exporter/Library/LibraryFormatVersion.txt
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/LibraryFormatVersion.txt
rename to TMP Exporter/Library/LibraryFormatVersion.txt
diff --git a/BSIPA-ModList/TMP Exporter/Library/MonoManager.asset b/TMP Exporter/Library/MonoManager.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/MonoManager.asset
rename to TMP Exporter/Library/MonoManager.asset
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/CHANGELOG.md b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/CHANGELOG.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/CHANGELOG.md
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/CHANGELOG.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Android/builds/unity-ads.aar b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Android/builds/unity-ads.aar
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Android/builds/unity-ads.aar
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Android/builds/unity-ads.aar
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Editor/landscape.jpg b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Editor/landscape.jpg
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Editor/landscape.jpg
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Editor/landscape.jpg
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Editor/portrait.jpg b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Editor/portrait.jpg
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Editor/portrait.jpg
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/Editor/portrait.jpg
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSInAppPurchaseMetaData.h b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSInAppPurchaseMetaData.h
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSInAppPurchaseMetaData.h
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSInAppPurchaseMetaData.h
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSJsonStorage.h b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSJsonStorage.h
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSJsonStorage.h
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSJsonStorage.h
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSMediationMetaData.h b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSMediationMetaData.h
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSMediationMetaData.h
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSMediationMetaData.h
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSMetaData.h b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSMetaData.h
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSMetaData.h
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSMetaData.h
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSPlayerMetaData.h b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSPlayerMetaData.h
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSPlayerMetaData.h
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UADSPlayerMetaData.h
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAds.h b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAds.h
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAds.h
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAds.h
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAdsExtended.h b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAdsExtended.h
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAdsExtended.h
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAdsExtended.h
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAdsUnityDelegate.h b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAdsUnityDelegate.h
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAdsUnityDelegate.h
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Headers/UnityAdsUnityDelegate.h
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Info.plist b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Info.plist
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Info.plist
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Info.plist
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Modules/module.modulemap b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Modules/module.modulemap
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Modules/module.modulemap
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/Modules/module.modulemap
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/UnityAds b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/UnityAds
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/UnityAds
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/Resources/iOS/builds/UnityAds.framework/UnityAds
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/UnityEditor.Advertisements.dll b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/UnityEditor.Advertisements.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/UnityEditor.Advertisements.dll
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/UnityEditor.Advertisements.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/UnityEditor.Advertisements.dll.mdb b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/UnityEditor.Advertisements.dll.mdb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/UnityEditor.Advertisements.dll.mdb
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/Editor/UnityEditor.Advertisements.dll.mdb
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/License.md b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/License.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/License.md
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/License.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/README.md b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/README.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/README.md
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/README.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/UnityEngine.Advertisements.dll b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/UnityEngine.Advertisements.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/UnityEngine.Advertisements.dll
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/UnityEngine.Advertisements.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/UnityEngine.Advertisements.dll.mdb b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/UnityEngine.Advertisements.dll.mdb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/UnityEngine.Advertisements.dll.mdb
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/UnityEngine.Advertisements.dll.mdb
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/package.json b/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/package.json
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/package.json
rename to TMP Exporter/Library/PackageCache/com.unity.ads@2.0.8/package.json
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/CHANGELOG.md b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/CHANGELOG.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/CHANGELOG.md
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/CHANGELOG.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/AssemblyInfo.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/AssemblyInfo.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/AssemblyInfo.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/AssemblyInfo.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacy.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacy.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacy.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacy.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyButton.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyButton.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyButton.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyButton.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyButton.prefab b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyButton.prefab
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyButton.prefab
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyButton.prefab
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyIcon.png b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyIcon.png
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyIcon.png
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/DataPrivacyIcon.png
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/Unity.Analytics.DataPrivacy.asmdef b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/Unity.Analytics.DataPrivacy.asmdef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/Unity.Analytics.DataPrivacy.asmdef
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/DataPrivacy/Unity.Analytics.DataPrivacy.asmdef
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Editor/AnalyticsEventTracker icon.png b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Editor/AnalyticsEventTracker icon.png
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Editor/AnalyticsEventTracker icon.png
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Editor/AnalyticsEventTracker icon.png
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/License.md b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/License.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/License.md
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/License.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/README.md b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/README.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/README.md
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/README.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/.tests.json b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/.tests.json
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/.tests.json
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/.tests.json
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AchievementStepTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AchievementStepTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AchievementStepTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AchievementStepTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AchievementUnlockedTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AchievementUnlockedTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AchievementUnlockedTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AchievementUnlockedTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdCompleteTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdCompleteTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdCompleteTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdCompleteTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdOfferTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdOfferTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdOfferTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdOfferTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdSkipTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdSkipTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdSkipTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdSkipTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdStartTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdStartTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdStartTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AdStartTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AnalyticsEventTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AnalyticsEventTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AnalyticsEventTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/AnalyticsEventTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ChatMessageSentTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ChatMessageSentTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ChatMessageSentTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ChatMessageSentTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/CutsceneSkipTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/CutsceneSkipTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/CutsceneSkipTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/CutsceneSkipTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/CutsceneStartTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/CutsceneStartTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/CutsceneStartTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/CutsceneStartTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/FirstInteractionTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/FirstInteractionTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/FirstInteractionTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/FirstInteractionTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/GameOverTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/GameOverTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/GameOverTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/GameOverTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/GameStartTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/GameStartTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/GameStartTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/GameStartTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/IAPTransactionTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/IAPTransactionTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/IAPTransactionTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/IAPTransactionTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ItemAcquiredTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ItemAcquiredTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ItemAcquiredTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ItemAcquiredTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ItemSpentTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ItemSpentTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ItemSpentTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ItemSpentTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelCompleteTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelCompleteTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelCompleteTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelCompleteTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelFailTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelFailTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelFailTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelFailTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelQuitTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelQuitTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelQuitTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelQuitTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelSkipTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelSkipTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelSkipTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelSkipTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelStartTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelStartTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelStartTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelStartTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelUpTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelUpTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelUpTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/LevelUpTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PostAdActionTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PostAdActionTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PostAdActionTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PostAdActionTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PushNotificationClickTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PushNotificationClickTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PushNotificationClickTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PushNotificationClickTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PushNotificationEnableTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PushNotificationEnableTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PushNotificationEnableTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/PushNotificationEnableTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ScreenVisitTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ScreenVisitTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ScreenVisitTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/ScreenVisitTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/SocialShareAcceptTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/SocialShareAcceptTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/SocialShareAcceptTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/SocialShareAcceptTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/SocialShareTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/SocialShareTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/SocialShareTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/SocialShareTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/StoreItemClickTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/StoreItemClickTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/StoreItemClickTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/StoreItemClickTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/StoreOpenedTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/StoreOpenedTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/StoreOpenedTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/StoreOpenedTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialCompleteTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialCompleteTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialCompleteTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialCompleteTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialSkipTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialSkipTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialSkipTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialSkipTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialStartTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialStartTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialStartTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialStartTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialStepTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialStepTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialStepTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/TutorialStepTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/Unity.Analytics.StandardEvents.EditorTests.asmdef b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/Unity.Analytics.StandardEvents.EditorTests.asmdef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/Unity.Analytics.StandardEvents.EditorTests.asmdef
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/Unity.Analytics.StandardEvents.EditorTests.asmdef
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/UserSignupTests.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/UserSignupTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/UserSignupTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Editor/Unity.Analytics.StandardEvents/UserSignupTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Runtime/DataPrivacy/JsonSerialization.cs b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Runtime/DataPrivacy/JsonSerialization.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Runtime/DataPrivacy/JsonSerialization.cs
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Runtime/DataPrivacy/JsonSerialization.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Runtime/DataPrivacy/Unity.Analytics.DataPrivacy.Tests.asmdef b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Runtime/DataPrivacy/Unity.Analytics.DataPrivacy.Tests.asmdef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Runtime/DataPrivacy/Unity.Analytics.DataPrivacy.Tests.asmdef
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Tests/Runtime/DataPrivacy/Unity.Analytics.DataPrivacy.Tests.asmdef
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Editor.dll b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Editor.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Editor.dll
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Editor.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Editor.dll.mdb b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Editor.dll.mdb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Editor.dll.mdb
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Editor.dll.mdb
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.StandardEvents.dll b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.StandardEvents.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.StandardEvents.dll
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.StandardEvents.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.StandardEvents.dll.mdb b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.StandardEvents.dll.mdb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.StandardEvents.dll.mdb
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.StandardEvents.dll.mdb
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Tracker.dll b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Tracker.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Tracker.dll
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Tracker.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Tracker.dll.mdb b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Tracker.dll.mdb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Tracker.dll.mdb
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/Unity.Analytics.Tracker.dll.mdb
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/package.json b/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/package.json
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/package.json
rename to TMP Exporter/Library/PackageCache/com.unity.analytics@3.2.2/package.json
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/CHANGELOG.md b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/CHANGELOG.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/CHANGELOG.md
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/CHANGELOG.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/DEPENDENCIES.md b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/DEPENDENCIES.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/DEPENDENCIES.md
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/DEPENDENCIES.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/AssemblyInfo.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/AssemblyInfo.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/AssemblyInfo.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/AssemblyInfo.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Bootstrap.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Bootstrap.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Bootstrap.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Bootstrap.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabAnalytics.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabAnalytics.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabAnalytics.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabAnalytics.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabHistoryWindow.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabHistoryWindow.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabHistoryWindow.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabHistoryWindow.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabToolbarButton.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabToolbarButton.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabToolbarButton.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabToolbarButton.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabToolbarWindow.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabToolbarWindow.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabToolbarWindow.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/CollabToolbarWindow.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Presenters/CollabHistoryPresenter.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Presenters/CollabHistoryPresenter.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Presenters/CollabHistoryPresenter.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Presenters/CollabHistoryPresenter.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/BuildStatusButton.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/BuildStatusButton.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/BuildStatusButton.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/BuildStatusButton.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryDropDown.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryDropDown.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryDropDown.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryDropDown.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryDropDownItem.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryDropDownItem.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryDropDownItem.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryDropDownItem.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryItem.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryItem.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryItem.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryItem.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryItemFactory.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryItemFactory.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryItemFactory.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryItemFactory.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryRevisionLine.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryRevisionLine.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryRevisionLine.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/CollabHistoryRevisionLine.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/HistoryProgressSpinner.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/HistoryProgressSpinner.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/HistoryProgressSpinner.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/HistoryProgressSpinner.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/ICollabHistoryItemFactory.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/ICollabHistoryItemFactory.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/ICollabHistoryItemFactory.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/ICollabHistoryItemFactory.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/PagedListView.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/PagedListView.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/PagedListView.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/PagedListView.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/StatusView.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/StatusView.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/StatusView.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Collab/Views/StatusView.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryCommon.uss b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryCommon.uss
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryCommon.uss
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryCommon.uss
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryDark.uss b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryDark.uss
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryDark.uss
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryDark.uss
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryLight.uss b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryLight.uss
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryLight.uss
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Resources/Styles/CollabHistoryLight.uss
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Unity.CollabProxy.Editor.asmdef b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Unity.CollabProxy.Editor.asmdef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Unity.CollabProxy.Editor.asmdef
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Editor/Unity.CollabProxy.Editor.asmdef
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/LICENSE.md b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/LICENSE.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/LICENSE.md
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/LICENSE.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/README.md b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/README.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/README.md
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/README.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Tests/Editor/HistoryTests.cs b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Tests/Editor/HistoryTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Tests/Editor/HistoryTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Tests/Editor/HistoryTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Tests/Editor/Unity.CollabProxy.EditorTests.asmdef b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Tests/Editor/Unity.CollabProxy.EditorTests.asmdef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Tests/Editor/Unity.CollabProxy.EditorTests.asmdef
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/Tests/Editor/Unity.CollabProxy.EditorTests.asmdef
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/package.json b/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/package.json
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/package.json
rename to TMP Exporter/Library/PackageCache/com.unity.collab-proxy@1.2.15/package.json
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/CHANGELOG.md b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/CHANGELOG.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/CHANGELOG.md
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/CHANGELOG.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/AssemblyInfo.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/AssemblyInfo.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/AssemblyInfo.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/AssemblyInfo.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/download.png b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/download.png
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/download.png
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/download.png
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/error.png b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/error.png
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/error.png
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/error.png
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/loading.png b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/loading.png
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/loading.png
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Dark/loading.png
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/download.png b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/download.png
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/download.png
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/download.png
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/error.png b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/error.png
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/error.png
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/error.png
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/loading.png b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/loading.png
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/loading.png
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Images/Light/loading.png
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Dark.scss b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Dark.scss
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Dark.scss
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Dark.scss
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Dark.uss b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Dark.uss
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Dark.uss
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Dark.uss
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Light.scss b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Light.scss
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Light.scss
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Light.scss
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Light.uss b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Light.uss
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Light.uss
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/Main_Light.uss
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/_common.scss b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/_common.scss
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/_common.scss
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Styles/_common.scss
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/Alert.uxml b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/Alert.uxml
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/Alert.uxml
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/Alert.uxml
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageAddFromUrlField.uxml b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageAddFromUrlField.uxml
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageAddFromUrlField.uxml
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageAddFromUrlField.uxml
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageDetails.uxml b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageDetails.uxml
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageDetails.uxml
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageDetails.uxml
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageGroup.uxml b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageGroup.uxml
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageGroup.uxml
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageGroup.uxml
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageItem.uxml b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageItem.uxml
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageItem.uxml
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageItem.uxml
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageList.uxml b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageList.uxml
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageList.uxml
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageList.uxml
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageManagerToolbar.uxml b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageManagerToolbar.uxml
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageManagerToolbar.uxml
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageManagerToolbar.uxml
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageManagerWindow.uxml b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageManagerWindow.uxml
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageManagerWindow.uxml
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageManagerWindow.uxml
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageSearchToolbar.uxml b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageSearchToolbar.uxml
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageSearchToolbar.uxml
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageSearchToolbar.uxml
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageStatusBar.uxml b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageStatusBar.uxml
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageStatusBar.uxml
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/PackageStatusBar.uxml
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UIElements.xsd b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UIElements.xsd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UIElements.xsd
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UIElements.xsd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEditor.Experimental.UIElements.xsd b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEditor.Experimental.UIElements.xsd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEditor.Experimental.UIElements.xsd
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEditor.Experimental.UIElements.xsd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEditor.PackageManager.UI.xsd b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEditor.PackageManager.UI.xsd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEditor.PackageManager.UI.xsd
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEditor.PackageManager.UI.xsd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEngine.Experimental.UIElements.xsd b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEngine.Experimental.UIElements.xsd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEngine.Experimental.UIElements.xsd
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Resources/Templates/UIElementsSchema/UnityEngine.Experimental.UIElements.xsd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/External/SemVersion.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/External/SemVersion.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/External/SemVersion.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/External/SemVersion.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/External/SemVersionExtension.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/External/SemVersionExtension.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/External/SemVersionExtension.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/External/SemVersionExtension.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/ApplicationUtil.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/ApplicationUtil.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/ApplicationUtil.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/ApplicationUtil.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/OperationSignal.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/OperationSignal.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/OperationSignal.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/OperationSignal.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/Resources.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/Resources.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/Resources.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/Resources.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/ThreadedDelay.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/ThreadedDelay.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/ThreadedDelay.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Common/ThreadedDelay.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IAddOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IAddOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IAddOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IAddOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IBaseOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IBaseOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IBaseOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IBaseOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IListOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IListOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IListOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IListOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IOperationFactory.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IOperationFactory.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IOperationFactory.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IOperationFactory.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IRemoveOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IRemoveOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IRemoveOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/IRemoveOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/ISearchOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/ISearchOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/ISearchOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Interfaces/ISearchOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/OperationFactory.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/OperationFactory.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/OperationFactory.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/OperationFactory.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmAddOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmAddOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmAddOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmAddOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmBaseOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmBaseOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmBaseOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmBaseOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmListOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmListOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmListOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmListOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmOperationFactory.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmOperationFactory.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmOperationFactory.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmOperationFactory.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmRemoveOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmRemoveOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmRemoveOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmRemoveOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmSearchOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmSearchOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmSearchOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/Services/Upm/UpmSearchOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/Alert.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/Alert.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/Alert.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/Alert.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/LoadingSpinner.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/LoadingSpinner.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/LoadingSpinner.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/LoadingSpinner.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/PopupField.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/PopupField.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/PopupField.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/PopupField.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/UIUtils.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/UIUtils.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/UIUtils.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/UIUtils.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/VersionItem.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/VersionItem.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/VersionItem.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Common/VersionItem.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Interfaces/IPackageManagerExtension.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Interfaces/IPackageManagerExtension.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Interfaces/IPackageManagerExtension.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/Interfaces/IPackageManagerExtension.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageAddFromUrlField.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageAddFromUrlField.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageAddFromUrlField.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageAddFromUrlField.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageDetails.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageDetails.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageDetails.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageDetails.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageFiltering.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageFiltering.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageFiltering.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageFiltering.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageGroup.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageGroup.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageGroup.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageGroup.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageItem.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageItem.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageItem.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageItem.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageList.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageList.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageList.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageList.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerExtensions.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerExtensions.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerExtensions.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerExtensions.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerPrefs.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerPrefs.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerPrefs.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerPrefs.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerToolbar.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerToolbar.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerToolbar.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerToolbar.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerWindow.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerWindow.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerWindow.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageManagerWindow.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageSearchToolbar.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageSearchToolbar.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageSearchToolbar.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageSearchToolbar.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageStatusBar.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageStatusBar.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageStatusBar.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Sources/UI/PackageStatusBar.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Unity.PackageManagerUI.Editor.asmdef b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Unity.PackageManagerUI.Editor.asmdef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Unity.PackageManagerUI.Editor.asmdef
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Editor/Unity.PackageManagerUI.Editor.asmdef
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/LICENSE.md b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/LICENSE.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/LICENSE.md
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/LICENSE.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/README.md b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/README.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/README.md
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/README.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/AssemblyInfo.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/AssemblyInfo.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/AssemblyInfo.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/AssemblyInfo.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Common/PackageSets.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Common/PackageSets.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Common/PackageSets.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Common/PackageSets.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Common/UITests.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Common/UITests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Common/UITests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Common/UITests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockAddOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockAddOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockAddOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockAddOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockListOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockListOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockListOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockListOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockRemoveOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockRemoveOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockRemoveOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockRemoveOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockSearchOperation.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockSearchOperation.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockSearchOperation.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/Mock/MockSearchOperation.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/MockOperationFactory.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/MockOperationFactory.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/MockOperationFactory.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Services/MockOperationFactory.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/UI/PackageDetailsTests.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/UI/PackageDetailsTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/UI/PackageDetailsTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/UI/PackageDetailsTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/UI/PackageManagerWindowTests.cs b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/UI/PackageManagerWindowTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/UI/PackageManagerWindowTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/UI/PackageManagerWindowTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Unity.PackageManagerUI.EditorTests.asmdef b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Unity.PackageManagerUI.EditorTests.asmdef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Unity.PackageManagerUI.EditorTests.asmdef
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Tests/Editor/Unity.PackageManagerUI.EditorTests.asmdef
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Third Party Notices.md b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Third Party Notices.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Third Party Notices.md
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/Third Party Notices.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/package.json b/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/package.json
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/package.json
rename to TMP Exporter/Library/PackageCache/com.unity.package-manager-ui@2.0.7/package.json
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/CHANGELOG.md b/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/CHANGELOG.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/CHANGELOG.md
rename to TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/CHANGELOG.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Documentation/IAP.md b/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Documentation/IAP.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Documentation/IAP.md
rename to TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Documentation/IAP.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Editor/UnityEditor.Purchasing.dll b/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Editor/UnityEditor.Purchasing.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Editor/UnityEditor.Purchasing.dll
rename to TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Editor/UnityEditor.Purchasing.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Editor/UnityEditor.Purchasing.dll.mdb b/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Editor/UnityEditor.Purchasing.dll.mdb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Editor/UnityEditor.Purchasing.dll.mdb
rename to TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/Editor/UnityEditor.Purchasing.dll.mdb
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/License.md b/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/License.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/License.md
rename to TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/License.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/README.md b/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/README.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/README.md
rename to TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/README.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/UnityEngine.Purchasing.dll b/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/UnityEngine.Purchasing.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/UnityEngine.Purchasing.dll
rename to TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/UnityEngine.Purchasing.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/UnityEngine.Purchasing.dll.mdb b/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/UnityEngine.Purchasing.dll.mdb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/UnityEngine.Purchasing.dll.mdb
rename to TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/UnityEngine.Purchasing.dll.mdb
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/package.json b/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/package.json
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/package.json
rename to TMP Exporter/Library/PackageCache/com.unity.purchasing@2.0.3/package.json
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/.gitlab-ci.yml b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/.gitlab-ci.yml
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/.gitlab-ci.yml
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/.gitlab-ci.yml
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/CHANGELOG.md b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/CHANGELOG.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/CHANGELOG.md
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/CHANGELOG.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Documentation/TextMeshPro.md b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Documentation/TextMeshPro.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Documentation/TextMeshPro.md
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Documentation/TextMeshPro.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Dropdown Icon.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Dropdown Icon.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Dropdown Icon.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Dropdown Icon.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Font Asset Icon.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Font Asset Icon.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Font Asset Icon.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Font Asset Icon.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Input Field Icon.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Input Field Icon.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Input Field Icon.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Input Field Icon.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Text Component Icon.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Text Component Icon.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Text Component Icon.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TMP - Text Component Icon.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TextMeshPro Inline Graphics icon.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TextMeshPro Inline Graphics icon.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TextMeshPro Inline Graphics icon.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Gizmos/TextMeshPro Inline Graphics icon.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBaseLine.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBaseLine.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBaseLine.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBaseLine.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBaseLine_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBaseLine_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBaseLine_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBaseLine_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBottom.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBottom.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBottom.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBottom.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBottom_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBottom_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBottom_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignBottom_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCapLine.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCapLine.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCapLine.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCapLine.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCapLine_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCapLine_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCapLine_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCapLine_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenter.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenter.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenter.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenter.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenterGeo.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenterGeo.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenterGeo.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenterGeo.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenterGeo_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenterGeo_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenterGeo_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenterGeo_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenter_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenter_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenter_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignCenter_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignFlush.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignFlush.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignFlush.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignFlush.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignFlush_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignFlush_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignFlush_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignFlush_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignJustified.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignJustified.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignJustified.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignJustified.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignJustified_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignJustified_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignJustified_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignJustified_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignLeft.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignLeft.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignLeft.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignLeft.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignLeft_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignLeft_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignLeft_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignLeft_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMidLine.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMidLine.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMidLine.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMidLine.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMiddle.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMiddle.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMiddle.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMiddle.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMiddle_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMiddle_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMiddle_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMiddle_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMidline_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMidline_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMidline_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignMidline_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignRight.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignRight.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignRight.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignRight.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignRight_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignRight_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignRight_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignRight_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignTop.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignTop.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignTop.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignTop.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignTop_Light.psd b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignTop_Light.psd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignTop_Light.psd
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Editor Resources/Textures/btn_AlignTop_Light.psd
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/LICENSE.md b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/LICENSE.md
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/LICENSE.md
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/LICENSE.md
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Package Resources/TMP Essential Resources.unitypackage b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Package Resources/TMP Essential Resources.unitypackage
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Package Resources/TMP Essential Resources.unitypackage
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Package Resources/TMP Essential Resources.unitypackage
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Package Resources/TMP Examples & Extras.unitypackage b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Package Resources/TMP Examples & Extras.unitypackage
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Package Resources/TMP Examples & Extras.unitypackage
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Package Resources/TMP Examples & Extras.unitypackage
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/PackageConversionData.json b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/PackageConversionData.json
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/PackageConversionData.json
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/PackageConversionData.json
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/PackageConversionData_Assets.json b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/PackageConversionData_Assets.json
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/PackageConversionData_Assets.json
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/PackageConversionData_Assets.json
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/64 Bit Plugins/TMPro_Plugin.bundle b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/64 Bit Plugins/TMPro_Plugin.bundle
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/64 Bit Plugins/TMPro_Plugin.bundle
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/64 Bit Plugins/TMPro_Plugin.bundle
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/64 Bit Plugins/TMPro_Plugin.dll b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/64 Bit Plugins/TMPro_Plugin.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/64 Bit Plugins/TMPro_Plugin.dll
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/64 Bit Plugins/TMPro_Plugin.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/vcomp120.dll b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/vcomp120.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/vcomp120.dll
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Plugins/vcomp120.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/DropdownOptionListDrawer.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/DropdownOptionListDrawer.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/DropdownOptionListDrawer.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/DropdownOptionListDrawer.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/EditorCoroutine.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/EditorCoroutine.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/EditorCoroutine.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/EditorCoroutine.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/GlyphInfoDrawer.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/GlyphInfoDrawer.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/GlyphInfoDrawer.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/GlyphInfoDrawer.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/KerningPairDrawer.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/KerningPairDrawer.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/KerningPairDrawer.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/KerningPairDrawer.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/SpriteInfoDrawer.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/SpriteInfoDrawer.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/SpriteInfoDrawer.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/SpriteInfoDrawer.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BaseEditorPanel.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BaseEditorPanel.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BaseEditorPanel.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BaseEditorPanel.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BaseShaderGUI.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BaseShaderGUI.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BaseShaderGUI.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BaseShaderGUI.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BitmapShaderGUI.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BitmapShaderGUI.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BitmapShaderGUI.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_BitmapShaderGUI.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ColorGradientAssetMenu.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ColorGradientAssetMenu.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ColorGradientAssetMenu.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ColorGradientAssetMenu.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ColorGradientEditor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ColorGradientEditor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ColorGradientEditor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ColorGradientEditor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_DropdownEditor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_DropdownEditor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_DropdownEditor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_DropdownEditor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_EditorPanel.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_EditorPanel.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_EditorPanel.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_EditorPanel.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_EditorUtility.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_EditorUtility.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_EditorUtility.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_EditorUtility.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_FontAssetEditor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_FontAssetEditor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_FontAssetEditor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_FontAssetEditor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_InputFieldEditor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_InputFieldEditor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_InputFieldEditor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_InputFieldEditor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_MeshRendererEditor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_MeshRendererEditor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_MeshRendererEditor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_MeshRendererEditor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_PackageUtilities.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_PackageUtilities.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_PackageUtilities.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_PackageUtilities.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_PostBuildProcessHandler.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_PostBuildProcessHandler.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_PostBuildProcessHandler.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_PostBuildProcessHandler.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ProjectTextSettings.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ProjectTextSettings.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ProjectTextSettings.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ProjectTextSettings.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ResourcesLoader.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ResourcesLoader.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ResourcesLoader.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_ResourcesLoader.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SDFShaderGUI.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SDFShaderGUI.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SDFShaderGUI.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SDFShaderGUI.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SettingsEditor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SettingsEditor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SettingsEditor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SettingsEditor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetEditor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetEditor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetEditor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetEditor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetImporter.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetImporter.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetImporter.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetImporter.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetMenu.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetMenu.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetMenu.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SpriteAssetMenu.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_StyleAssetMenu.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_StyleAssetMenu.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_StyleAssetMenu.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_StyleAssetMenu.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_StyleSheetEditor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_StyleSheetEditor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_StyleSheetEditor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_StyleSheetEditor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SubMeshUI_Editor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SubMeshUI_Editor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SubMeshUI_Editor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SubMeshUI_Editor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SubMesh_Editor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SubMesh_Editor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SubMesh_Editor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_SubMesh_Editor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_UIStyleManager.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_UIStyleManager.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_UIStyleManager.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_UIStyleManager.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_UiEditorPanel.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_UiEditorPanel.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_UiEditorPanel.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMP_UiEditorPanel.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_ContextMenus.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_ContextMenus.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_ContextMenus.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_ContextMenus.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_CreateObjectMenu.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_CreateObjectMenu.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_CreateObjectMenu.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_CreateObjectMenu.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_EditorShaderUtilities.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_EditorShaderUtilities.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_EditorShaderUtilities.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_EditorShaderUtilities.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_FontAssetCreatorWindow.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_FontAssetCreatorWindow.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_FontAssetCreatorWindow.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_FontAssetCreatorWindow.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_FontPlugin.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_FontPlugin.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_FontPlugin.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_FontPlugin.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_SortingLayerHelper.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_SortingLayerHelper.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_SortingLayerHelper.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_SortingLayerHelper.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_TextContainerEditor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_TextContainerEditor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_TextContainerEditor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_TextContainerEditor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_TexturePostProcessor.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_TexturePostProcessor.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_TexturePostProcessor.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TMPro_TexturePostProcessor.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TextAlignmentDrawer.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TextAlignmentDrawer.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TextAlignmentDrawer.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/TextAlignmentDrawer.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/Unity.TextMeshPro.Editor.asmdef b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/Unity.TextMeshPro.Editor.asmdef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/Unity.TextMeshPro.Editor.asmdef
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Editor/Unity.TextMeshPro.Editor.asmdef
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/FastAction.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/FastAction.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/FastAction.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/FastAction.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/MaterialReferenceManager.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/MaterialReferenceManager.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/MaterialReferenceManager.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/MaterialReferenceManager.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/PackageResourceImporterWindow.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/PackageResourceImporterWindow.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/PackageResourceImporterWindow.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/PackageResourceImporterWindow.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Asset.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Asset.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Asset.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Asset.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ColorGradient.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ColorGradient.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ColorGradient.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ColorGradient.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Compatibility.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Compatibility.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Compatibility.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Compatibility.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_CoroutineTween.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_CoroutineTween.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_CoroutineTween.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_CoroutineTween.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_DefaultControls.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_DefaultControls.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_DefaultControls.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_DefaultControls.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Dropdown.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Dropdown.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Dropdown.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Dropdown.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_FontAsset.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_FontAsset.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_FontAsset.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_FontAsset.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_InputField.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_InputField.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_InputField.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_InputField.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_InputValidator.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_InputValidator.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_InputValidator.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_InputValidator.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_LineInfo.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_LineInfo.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_LineInfo.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_LineInfo.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ListPool.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ListPool.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ListPool.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ListPool.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_MaterialManager.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_MaterialManager.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_MaterialManager.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_MaterialManager.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_MeshInfo.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_MeshInfo.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_MeshInfo.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_MeshInfo.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ObjectPool.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ObjectPool.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ObjectPool.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ObjectPool.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ScrollbarEventHandler.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ScrollbarEventHandler.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ScrollbarEventHandler.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_ScrollbarEventHandler.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SelectionCaret.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SelectionCaret.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SelectionCaret.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SelectionCaret.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Settings.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Settings.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Settings.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Settings.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Sprite.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Sprite.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Sprite.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Sprite.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAnimator.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAnimator.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAnimator.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAnimator.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAsset.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAsset.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAsset.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAsset.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Style.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Style.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Style.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Style.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_StyleSheet.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_StyleSheet.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_StyleSheet.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_StyleSheet.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SubMesh.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SubMesh.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SubMesh.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SubMesh.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SubMeshUI.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SubMeshUI.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SubMeshUI.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_SubMeshUI.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Text.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Text.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Text.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_Text.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextElement.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextElement.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextElement.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextElement.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextInfo.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextInfo.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextInfo.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextInfo.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextUtilities.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextUtilities.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextUtilities.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_TextUtilities.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_UpdateManager.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_UpdateManager.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_UpdateManager.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_UpdateManager.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_UpdateRegistery.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_UpdateRegistery.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_UpdateRegistery.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_UpdateRegistery.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_XmlTagStack.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_XmlTagStack.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_XmlTagStack.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMP_XmlTagStack.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_EventManager.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_EventManager.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_EventManager.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_EventManager.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_ExtensionMethods.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_ExtensionMethods.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_ExtensionMethods.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_ExtensionMethods.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_FontUtilities.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_FontUtilities.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_FontUtilities.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_FontUtilities.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_MeshUtilities.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_MeshUtilities.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_MeshUtilities.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_MeshUtilities.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_Private.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_Private.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_Private.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_Private.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_ShaderUtilities.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_ShaderUtilities.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_ShaderUtilities.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_ShaderUtilities.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_UGUI_Private.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_UGUI_Private.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_UGUI_Private.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TMPro_UGUI_Private.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextContainer.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextContainer.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextContainer.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextContainer.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextMeshPro.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextMeshPro.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextMeshPro.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextMeshPro.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextMeshProUGUI.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextMeshProUGUI.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextMeshProUGUI.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/TextMeshProUGUI.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/Unity.TextMeshPro.asmdef b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/Unity.TextMeshPro.asmdef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/Unity.TextMeshPro.asmdef
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Scripts/Runtime/Unity.TextMeshPro.asmdef
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Editor/TMP_EditorTests.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Editor/TMP_EditorTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Editor/TMP_EditorTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Editor/TMP_EditorTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Editor/Unity.TextMeshPro.Editor.Tests.asmdef b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Editor/Unity.TextMeshPro.Editor.Tests.asmdef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Editor/Unity.TextMeshPro.Editor.Tests.asmdef
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Editor/Unity.TextMeshPro.Editor.Tests.asmdef
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Runtime/TMP_RuntimeTests.cs b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Runtime/TMP_RuntimeTests.cs
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Runtime/TMP_RuntimeTests.cs
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Runtime/TMP_RuntimeTests.cs
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Runtime/Unity.TextMeshPro.Tests.asmdef b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Runtime/Unity.TextMeshPro.Tests.asmdef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Runtime/Unity.TextMeshPro.Tests.asmdef
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/Tests/Runtime/Unity.TextMeshPro.Tests.asmdef
diff --git a/BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/package.json b/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/package.json
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/package.json
rename to TMP Exporter/Library/PackageCache/com.unity.textmeshpro@1.3.0/package.json
diff --git a/BSIPA-ModList/TMP Exporter/Library/ProjectSettings.asset b/TMP Exporter/Library/ProjectSettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ProjectSettings.asset
rename to TMP Exporter/Library/ProjectSettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll b/TMP Exporter/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll
rename to TMP Exporter/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Unity.Analytics.DataPrivacy.dll b/TMP Exporter/Library/ScriptAssemblies/Unity.Analytics.DataPrivacy.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Unity.Analytics.DataPrivacy.dll
rename to TMP Exporter/Library/ScriptAssemblies/Unity.Analytics.DataPrivacy.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll b/TMP Exporter/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll
rename to TMP Exporter/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll b/TMP Exporter/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll
rename to TMP Exporter/Library/ScriptAssemblies/Unity.PackageManagerUI.Editor.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll b/TMP Exporter/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll
rename to TMP Exporter/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Unity.TextMeshPro.dll b/TMP Exporter/Library/ScriptAssemblies/Unity.TextMeshPro.dll
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ScriptAssemblies/Unity.TextMeshPro.dll
rename to TMP Exporter/Library/ScriptAssemblies/Unity.TextMeshPro.dll
diff --git a/BSIPA-ModList/TMP Exporter/Library/ScriptMapper b/TMP Exporter/Library/ScriptMapper
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ScriptMapper
rename to TMP Exporter/Library/ScriptMapper
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache.db b/TMP Exporter/Library/ShaderCache.db
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache.db
rename to TMP Exporter/Library/ShaderCache.db
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/0014e58f897cbca2c1edbdf7a1885758.bin b/TMP Exporter/Library/ShaderCache/0/0014e58f897cbca2c1edbdf7a1885758.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/0014e58f897cbca2c1edbdf7a1885758.bin
rename to TMP Exporter/Library/ShaderCache/0/0014e58f897cbca2c1edbdf7a1885758.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/01c0c65e592298f7d22ef03550d1dad4.bin b/TMP Exporter/Library/ShaderCache/0/01c0c65e592298f7d22ef03550d1dad4.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/01c0c65e592298f7d22ef03550d1dad4.bin
rename to TMP Exporter/Library/ShaderCache/0/01c0c65e592298f7d22ef03550d1dad4.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/01d65dd25a9a94c57ad4523fca829892.bin b/TMP Exporter/Library/ShaderCache/0/01d65dd25a9a94c57ad4523fca829892.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/01d65dd25a9a94c57ad4523fca829892.bin
rename to TMP Exporter/Library/ShaderCache/0/01d65dd25a9a94c57ad4523fca829892.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/02da552e37d7617d3af44ff6b1a07a77.bin b/TMP Exporter/Library/ShaderCache/0/02da552e37d7617d3af44ff6b1a07a77.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/02da552e37d7617d3af44ff6b1a07a77.bin
rename to TMP Exporter/Library/ShaderCache/0/02da552e37d7617d3af44ff6b1a07a77.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/056928051e9534f0256fc3595c9cc71f.bin b/TMP Exporter/Library/ShaderCache/0/056928051e9534f0256fc3595c9cc71f.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/056928051e9534f0256fc3595c9cc71f.bin
rename to TMP Exporter/Library/ShaderCache/0/056928051e9534f0256fc3595c9cc71f.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/07faf554dc3781419a30951977d5966f.bin b/TMP Exporter/Library/ShaderCache/0/07faf554dc3781419a30951977d5966f.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/07faf554dc3781419a30951977d5966f.bin
rename to TMP Exporter/Library/ShaderCache/0/07faf554dc3781419a30951977d5966f.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/082b512319cf7e12d3cfa556cf594241.bin b/TMP Exporter/Library/ShaderCache/0/082b512319cf7e12d3cfa556cf594241.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/082b512319cf7e12d3cfa556cf594241.bin
rename to TMP Exporter/Library/ShaderCache/0/082b512319cf7e12d3cfa556cf594241.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/084c0804470e5fe0db4f70fece0b9d01.bin b/TMP Exporter/Library/ShaderCache/0/084c0804470e5fe0db4f70fece0b9d01.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/084c0804470e5fe0db4f70fece0b9d01.bin
rename to TMP Exporter/Library/ShaderCache/0/084c0804470e5fe0db4f70fece0b9d01.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/099b9d0cb405be5f3dae05d5c7e127b2.bin b/TMP Exporter/Library/ShaderCache/0/099b9d0cb405be5f3dae05d5c7e127b2.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/099b9d0cb405be5f3dae05d5c7e127b2.bin
rename to TMP Exporter/Library/ShaderCache/0/099b9d0cb405be5f3dae05d5c7e127b2.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/09a3397958f12ae471bf39febbd1a83f.bin b/TMP Exporter/Library/ShaderCache/0/09a3397958f12ae471bf39febbd1a83f.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/09a3397958f12ae471bf39febbd1a83f.bin
rename to TMP Exporter/Library/ShaderCache/0/09a3397958f12ae471bf39febbd1a83f.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/09e90c0ce308801b9022742662495434.bin b/TMP Exporter/Library/ShaderCache/0/09e90c0ce308801b9022742662495434.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/09e90c0ce308801b9022742662495434.bin
rename to TMP Exporter/Library/ShaderCache/0/09e90c0ce308801b9022742662495434.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/0aac743de2735d2cbf45575188115b1c.bin b/TMP Exporter/Library/ShaderCache/0/0aac743de2735d2cbf45575188115b1c.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/0aac743de2735d2cbf45575188115b1c.bin
rename to TMP Exporter/Library/ShaderCache/0/0aac743de2735d2cbf45575188115b1c.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/0dbb27725398b55ee2d0339730c8d336.bin b/TMP Exporter/Library/ShaderCache/0/0dbb27725398b55ee2d0339730c8d336.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/0dbb27725398b55ee2d0339730c8d336.bin
rename to TMP Exporter/Library/ShaderCache/0/0dbb27725398b55ee2d0339730c8d336.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/0e10027ca8e7f11d371d1e9290b50b83.bin b/TMP Exporter/Library/ShaderCache/0/0e10027ca8e7f11d371d1e9290b50b83.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/0/0e10027ca8e7f11d371d1e9290b50b83.bin
rename to TMP Exporter/Library/ShaderCache/0/0e10027ca8e7f11d371d1e9290b50b83.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/13123e178acca818ac77dadefb493251.bin b/TMP Exporter/Library/ShaderCache/1/13123e178acca818ac77dadefb493251.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/13123e178acca818ac77dadefb493251.bin
rename to TMP Exporter/Library/ShaderCache/1/13123e178acca818ac77dadefb493251.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/1445b8b07454c390b8e4fee2d5a737d3.bin b/TMP Exporter/Library/ShaderCache/1/1445b8b07454c390b8e4fee2d5a737d3.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/1445b8b07454c390b8e4fee2d5a737d3.bin
rename to TMP Exporter/Library/ShaderCache/1/1445b8b07454c390b8e4fee2d5a737d3.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/1807f327158e8d6a24b80c5747f09576.bin b/TMP Exporter/Library/ShaderCache/1/1807f327158e8d6a24b80c5747f09576.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/1807f327158e8d6a24b80c5747f09576.bin
rename to TMP Exporter/Library/ShaderCache/1/1807f327158e8d6a24b80c5747f09576.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/18d317f96c933248d4d137b7b2cd3781.bin b/TMP Exporter/Library/ShaderCache/1/18d317f96c933248d4d137b7b2cd3781.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/18d317f96c933248d4d137b7b2cd3781.bin
rename to TMP Exporter/Library/ShaderCache/1/18d317f96c933248d4d137b7b2cd3781.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/19235dd3820af96bf6cfe7c3ab1d09fc.bin b/TMP Exporter/Library/ShaderCache/1/19235dd3820af96bf6cfe7c3ab1d09fc.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/19235dd3820af96bf6cfe7c3ab1d09fc.bin
rename to TMP Exporter/Library/ShaderCache/1/19235dd3820af96bf6cfe7c3ab1d09fc.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/1ecc5cea5a101fa01338e99508d25fe1.bin b/TMP Exporter/Library/ShaderCache/1/1ecc5cea5a101fa01338e99508d25fe1.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/1ecc5cea5a101fa01338e99508d25fe1.bin
rename to TMP Exporter/Library/ShaderCache/1/1ecc5cea5a101fa01338e99508d25fe1.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/1f68e00f503e79e46ec9f00744065395.bin b/TMP Exporter/Library/ShaderCache/1/1f68e00f503e79e46ec9f00744065395.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/1/1f68e00f503e79e46ec9f00744065395.bin
rename to TMP Exporter/Library/ShaderCache/1/1f68e00f503e79e46ec9f00744065395.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/20e7e9f2dd14145bf01ae36a94c6fc94.bin b/TMP Exporter/Library/ShaderCache/2/20e7e9f2dd14145bf01ae36a94c6fc94.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/20e7e9f2dd14145bf01ae36a94c6fc94.bin
rename to TMP Exporter/Library/ShaderCache/2/20e7e9f2dd14145bf01ae36a94c6fc94.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/2110ce4f45e93a2d5db27865134ed6d7.bin b/TMP Exporter/Library/ShaderCache/2/2110ce4f45e93a2d5db27865134ed6d7.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/2110ce4f45e93a2d5db27865134ed6d7.bin
rename to TMP Exporter/Library/ShaderCache/2/2110ce4f45e93a2d5db27865134ed6d7.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/21acc82311a08738cadee2f91bbc2ea1.bin b/TMP Exporter/Library/ShaderCache/2/21acc82311a08738cadee2f91bbc2ea1.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/21acc82311a08738cadee2f91bbc2ea1.bin
rename to TMP Exporter/Library/ShaderCache/2/21acc82311a08738cadee2f91bbc2ea1.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/21f44718dc961e35663be11bb9dfea4d.bin b/TMP Exporter/Library/ShaderCache/2/21f44718dc961e35663be11bb9dfea4d.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/21f44718dc961e35663be11bb9dfea4d.bin
rename to TMP Exporter/Library/ShaderCache/2/21f44718dc961e35663be11bb9dfea4d.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/25608c8df2da4d76721c3e3a4d340e57.bin b/TMP Exporter/Library/ShaderCache/2/25608c8df2da4d76721c3e3a4d340e57.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/25608c8df2da4d76721c3e3a4d340e57.bin
rename to TMP Exporter/Library/ShaderCache/2/25608c8df2da4d76721c3e3a4d340e57.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/257d1535c2645ff382aab331e3b78ed5.bin b/TMP Exporter/Library/ShaderCache/2/257d1535c2645ff382aab331e3b78ed5.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/257d1535c2645ff382aab331e3b78ed5.bin
rename to TMP Exporter/Library/ShaderCache/2/257d1535c2645ff382aab331e3b78ed5.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/27b4cd62dd6fa562f8b3c543d164977a.bin b/TMP Exporter/Library/ShaderCache/2/27b4cd62dd6fa562f8b3c543d164977a.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/27b4cd62dd6fa562f8b3c543d164977a.bin
rename to TMP Exporter/Library/ShaderCache/2/27b4cd62dd6fa562f8b3c543d164977a.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/27f1ff1c96672ae9659ad0e8d80fcaab.bin b/TMP Exporter/Library/ShaderCache/2/27f1ff1c96672ae9659ad0e8d80fcaab.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/27f1ff1c96672ae9659ad0e8d80fcaab.bin
rename to TMP Exporter/Library/ShaderCache/2/27f1ff1c96672ae9659ad0e8d80fcaab.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/2cfa0f348b9b72ff3db85dba67a866d0.bin b/TMP Exporter/Library/ShaderCache/2/2cfa0f348b9b72ff3db85dba67a866d0.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/2cfa0f348b9b72ff3db85dba67a866d0.bin
rename to TMP Exporter/Library/ShaderCache/2/2cfa0f348b9b72ff3db85dba67a866d0.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/2d18ff36b3b17564ba3472192155e3e1.bin b/TMP Exporter/Library/ShaderCache/2/2d18ff36b3b17564ba3472192155e3e1.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/2d18ff36b3b17564ba3472192155e3e1.bin
rename to TMP Exporter/Library/ShaderCache/2/2d18ff36b3b17564ba3472192155e3e1.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/2e0fa3d0f99d9b312cd1583d3e419544.bin b/TMP Exporter/Library/ShaderCache/2/2e0fa3d0f99d9b312cd1583d3e419544.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/2e0fa3d0f99d9b312cd1583d3e419544.bin
rename to TMP Exporter/Library/ShaderCache/2/2e0fa3d0f99d9b312cd1583d3e419544.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/2e915747ffbed6da08e0f3882d3bcce2.bin b/TMP Exporter/Library/ShaderCache/2/2e915747ffbed6da08e0f3882d3bcce2.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/2/2e915747ffbed6da08e0f3882d3bcce2.bin
rename to TMP Exporter/Library/ShaderCache/2/2e915747ffbed6da08e0f3882d3bcce2.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/323cd129e05691610aa466d97bf2a423.bin b/TMP Exporter/Library/ShaderCache/3/323cd129e05691610aa466d97bf2a423.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/323cd129e05691610aa466d97bf2a423.bin
rename to TMP Exporter/Library/ShaderCache/3/323cd129e05691610aa466d97bf2a423.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/32bd9d469e309719520b0e5efcbd5b00.bin b/TMP Exporter/Library/ShaderCache/3/32bd9d469e309719520b0e5efcbd5b00.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/32bd9d469e309719520b0e5efcbd5b00.bin
rename to TMP Exporter/Library/ShaderCache/3/32bd9d469e309719520b0e5efcbd5b00.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/34aa979d78307882f9f44d3c52a6feb3.bin b/TMP Exporter/Library/ShaderCache/3/34aa979d78307882f9f44d3c52a6feb3.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/34aa979d78307882f9f44d3c52a6feb3.bin
rename to TMP Exporter/Library/ShaderCache/3/34aa979d78307882f9f44d3c52a6feb3.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/352c168e1660b21b0fd98ac6ac776a82.bin b/TMP Exporter/Library/ShaderCache/3/352c168e1660b21b0fd98ac6ac776a82.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/352c168e1660b21b0fd98ac6ac776a82.bin
rename to TMP Exporter/Library/ShaderCache/3/352c168e1660b21b0fd98ac6ac776a82.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/35530e6758b14434fb7f60de9e982a62.bin b/TMP Exporter/Library/ShaderCache/3/35530e6758b14434fb7f60de9e982a62.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/35530e6758b14434fb7f60de9e982a62.bin
rename to TMP Exporter/Library/ShaderCache/3/35530e6758b14434fb7f60de9e982a62.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/36a7dad4be76f3f09b3ee9e5b78faa24.bin b/TMP Exporter/Library/ShaderCache/3/36a7dad4be76f3f09b3ee9e5b78faa24.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/36a7dad4be76f3f09b3ee9e5b78faa24.bin
rename to TMP Exporter/Library/ShaderCache/3/36a7dad4be76f3f09b3ee9e5b78faa24.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/38561b7213849043c5ec9a2e11d4f136.bin b/TMP Exporter/Library/ShaderCache/3/38561b7213849043c5ec9a2e11d4f136.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/38561b7213849043c5ec9a2e11d4f136.bin
rename to TMP Exporter/Library/ShaderCache/3/38561b7213849043c5ec9a2e11d4f136.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/3afad4a7739eaeec8c79dee29ddc2c03.bin b/TMP Exporter/Library/ShaderCache/3/3afad4a7739eaeec8c79dee29ddc2c03.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/3afad4a7739eaeec8c79dee29ddc2c03.bin
rename to TMP Exporter/Library/ShaderCache/3/3afad4a7739eaeec8c79dee29ddc2c03.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/3b193510f88daae68bfc86675f830d8d.bin b/TMP Exporter/Library/ShaderCache/3/3b193510f88daae68bfc86675f830d8d.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/3b193510f88daae68bfc86675f830d8d.bin
rename to TMP Exporter/Library/ShaderCache/3/3b193510f88daae68bfc86675f830d8d.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/3c08aab716768b9a8f2a59fa9d21f6de.bin b/TMP Exporter/Library/ShaderCache/3/3c08aab716768b9a8f2a59fa9d21f6de.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/3c08aab716768b9a8f2a59fa9d21f6de.bin
rename to TMP Exporter/Library/ShaderCache/3/3c08aab716768b9a8f2a59fa9d21f6de.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/3e10c82ce49ef9e8020ccc9f3b2d2297.bin b/TMP Exporter/Library/ShaderCache/3/3e10c82ce49ef9e8020ccc9f3b2d2297.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/3e10c82ce49ef9e8020ccc9f3b2d2297.bin
rename to TMP Exporter/Library/ShaderCache/3/3e10c82ce49ef9e8020ccc9f3b2d2297.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/3efbeb24f5df64e69c9782a8bf065f9e.bin b/TMP Exporter/Library/ShaderCache/3/3efbeb24f5df64e69c9782a8bf065f9e.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/3/3efbeb24f5df64e69c9782a8bf065f9e.bin
rename to TMP Exporter/Library/ShaderCache/3/3efbeb24f5df64e69c9782a8bf065f9e.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/4/41aa43d999ec981066c62b1952169179.bin b/TMP Exporter/Library/ShaderCache/4/41aa43d999ec981066c62b1952169179.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/4/41aa43d999ec981066c62b1952169179.bin
rename to TMP Exporter/Library/ShaderCache/4/41aa43d999ec981066c62b1952169179.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/4/46c021f9fdd14ab547e444d55c4862ac.bin b/TMP Exporter/Library/ShaderCache/4/46c021f9fdd14ab547e444d55c4862ac.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/4/46c021f9fdd14ab547e444d55c4862ac.bin
rename to TMP Exporter/Library/ShaderCache/4/46c021f9fdd14ab547e444d55c4862ac.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/4/4c6ee99e4bba1de4a18257c5309f4554.bin b/TMP Exporter/Library/ShaderCache/4/4c6ee99e4bba1de4a18257c5309f4554.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/4/4c6ee99e4bba1de4a18257c5309f4554.bin
rename to TMP Exporter/Library/ShaderCache/4/4c6ee99e4bba1de4a18257c5309f4554.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/50d216785e9206fb98c6711140a1f64d.bin b/TMP Exporter/Library/ShaderCache/5/50d216785e9206fb98c6711140a1f64d.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/50d216785e9206fb98c6711140a1f64d.bin
rename to TMP Exporter/Library/ShaderCache/5/50d216785e9206fb98c6711140a1f64d.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/585d44912e09f8e5f5cb6e61e759f4f6.bin b/TMP Exporter/Library/ShaderCache/5/585d44912e09f8e5f5cb6e61e759f4f6.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/585d44912e09f8e5f5cb6e61e759f4f6.bin
rename to TMP Exporter/Library/ShaderCache/5/585d44912e09f8e5f5cb6e61e759f4f6.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/58e840385c97c7e859d876f6c2deab67.bin b/TMP Exporter/Library/ShaderCache/5/58e840385c97c7e859d876f6c2deab67.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/58e840385c97c7e859d876f6c2deab67.bin
rename to TMP Exporter/Library/ShaderCache/5/58e840385c97c7e859d876f6c2deab67.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/5c22b7e4b72f129a03b14429a74d6a9e.bin b/TMP Exporter/Library/ShaderCache/5/5c22b7e4b72f129a03b14429a74d6a9e.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/5c22b7e4b72f129a03b14429a74d6a9e.bin
rename to TMP Exporter/Library/ShaderCache/5/5c22b7e4b72f129a03b14429a74d6a9e.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/5ce687599a040b7206d0ad683c81347b.bin b/TMP Exporter/Library/ShaderCache/5/5ce687599a040b7206d0ad683c81347b.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/5ce687599a040b7206d0ad683c81347b.bin
rename to TMP Exporter/Library/ShaderCache/5/5ce687599a040b7206d0ad683c81347b.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/5d70c7042eaf1b0ab9ba1351ad40a67d.bin b/TMP Exporter/Library/ShaderCache/5/5d70c7042eaf1b0ab9ba1351ad40a67d.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/5/5d70c7042eaf1b0ab9ba1351ad40a67d.bin
rename to TMP Exporter/Library/ShaderCache/5/5d70c7042eaf1b0ab9ba1351ad40a67d.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/6/6268818dfbe0ddb87895c32df01ddc4a.bin b/TMP Exporter/Library/ShaderCache/6/6268818dfbe0ddb87895c32df01ddc4a.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/6/6268818dfbe0ddb87895c32df01ddc4a.bin
rename to TMP Exporter/Library/ShaderCache/6/6268818dfbe0ddb87895c32df01ddc4a.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/6/6651dfb40d01b25a619ef93f6baafa8f.bin b/TMP Exporter/Library/ShaderCache/6/6651dfb40d01b25a619ef93f6baafa8f.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/6/6651dfb40d01b25a619ef93f6baafa8f.bin
rename to TMP Exporter/Library/ShaderCache/6/6651dfb40d01b25a619ef93f6baafa8f.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/6/6ac1a4b90f4277072ac1d7eaef8be842.bin b/TMP Exporter/Library/ShaderCache/6/6ac1a4b90f4277072ac1d7eaef8be842.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/6/6ac1a4b90f4277072ac1d7eaef8be842.bin
rename to TMP Exporter/Library/ShaderCache/6/6ac1a4b90f4277072ac1d7eaef8be842.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/6/6ca7e80eb69ad1bca03c184b8eff3af8.bin b/TMP Exporter/Library/ShaderCache/6/6ca7e80eb69ad1bca03c184b8eff3af8.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/6/6ca7e80eb69ad1bca03c184b8eff3af8.bin
rename to TMP Exporter/Library/ShaderCache/6/6ca7e80eb69ad1bca03c184b8eff3af8.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/76ced8e97a0a9909df5e23f5f0e37caa.bin b/TMP Exporter/Library/ShaderCache/7/76ced8e97a0a9909df5e23f5f0e37caa.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/76ced8e97a0a9909df5e23f5f0e37caa.bin
rename to TMP Exporter/Library/ShaderCache/7/76ced8e97a0a9909df5e23f5f0e37caa.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/77782b8f26f6ae89f4ccd93fe20de386.bin b/TMP Exporter/Library/ShaderCache/7/77782b8f26f6ae89f4ccd93fe20de386.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/77782b8f26f6ae89f4ccd93fe20de386.bin
rename to TMP Exporter/Library/ShaderCache/7/77782b8f26f6ae89f4ccd93fe20de386.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/77cd012bd68d9e6d70186769b5010822.bin b/TMP Exporter/Library/ShaderCache/7/77cd012bd68d9e6d70186769b5010822.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/77cd012bd68d9e6d70186769b5010822.bin
rename to TMP Exporter/Library/ShaderCache/7/77cd012bd68d9e6d70186769b5010822.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/7845d0b549d4fae46f2c6827e7e94371.bin b/TMP Exporter/Library/ShaderCache/7/7845d0b549d4fae46f2c6827e7e94371.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/7845d0b549d4fae46f2c6827e7e94371.bin
rename to TMP Exporter/Library/ShaderCache/7/7845d0b549d4fae46f2c6827e7e94371.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/78628ea3fb9425532264139d97d059cb.bin b/TMP Exporter/Library/ShaderCache/7/78628ea3fb9425532264139d97d059cb.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/78628ea3fb9425532264139d97d059cb.bin
rename to TMP Exporter/Library/ShaderCache/7/78628ea3fb9425532264139d97d059cb.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/78717cce9a067486908b44691bd15cb1.bin b/TMP Exporter/Library/ShaderCache/7/78717cce9a067486908b44691bd15cb1.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/78717cce9a067486908b44691bd15cb1.bin
rename to TMP Exporter/Library/ShaderCache/7/78717cce9a067486908b44691bd15cb1.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/7884a67cc7324595497ef25a91b9bc65.bin b/TMP Exporter/Library/ShaderCache/7/7884a67cc7324595497ef25a91b9bc65.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/7884a67cc7324595497ef25a91b9bc65.bin
rename to TMP Exporter/Library/ShaderCache/7/7884a67cc7324595497ef25a91b9bc65.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/794a4581ec7e02c28a8fcafa474d6147.bin b/TMP Exporter/Library/ShaderCache/7/794a4581ec7e02c28a8fcafa474d6147.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/794a4581ec7e02c28a8fcafa474d6147.bin
rename to TMP Exporter/Library/ShaderCache/7/794a4581ec7e02c28a8fcafa474d6147.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/7a6a43606cf13a7f58b5b80c39e35b30.bin b/TMP Exporter/Library/ShaderCache/7/7a6a43606cf13a7f58b5b80c39e35b30.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/7a6a43606cf13a7f58b5b80c39e35b30.bin
rename to TMP Exporter/Library/ShaderCache/7/7a6a43606cf13a7f58b5b80c39e35b30.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/7ca59ab9fbc673379e6cbba55f19a8e2.bin b/TMP Exporter/Library/ShaderCache/7/7ca59ab9fbc673379e6cbba55f19a8e2.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/7/7ca59ab9fbc673379e6cbba55f19a8e2.bin
rename to TMP Exporter/Library/ShaderCache/7/7ca59ab9fbc673379e6cbba55f19a8e2.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/83fe18f49f4bcd1ef892cd2c18b46c8b.bin b/TMP Exporter/Library/ShaderCache/8/83fe18f49f4bcd1ef892cd2c18b46c8b.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/83fe18f49f4bcd1ef892cd2c18b46c8b.bin
rename to TMP Exporter/Library/ShaderCache/8/83fe18f49f4bcd1ef892cd2c18b46c8b.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/85882fdeb3d0fdc706af48f9f9e055fc.bin b/TMP Exporter/Library/ShaderCache/8/85882fdeb3d0fdc706af48f9f9e055fc.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/85882fdeb3d0fdc706af48f9f9e055fc.bin
rename to TMP Exporter/Library/ShaderCache/8/85882fdeb3d0fdc706af48f9f9e055fc.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/871341c0d4feaceb76a47bf986170d15.bin b/TMP Exporter/Library/ShaderCache/8/871341c0d4feaceb76a47bf986170d15.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/871341c0d4feaceb76a47bf986170d15.bin
rename to TMP Exporter/Library/ShaderCache/8/871341c0d4feaceb76a47bf986170d15.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/896f67a5d24dcb666598874560587acd.bin b/TMP Exporter/Library/ShaderCache/8/896f67a5d24dcb666598874560587acd.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/896f67a5d24dcb666598874560587acd.bin
rename to TMP Exporter/Library/ShaderCache/8/896f67a5d24dcb666598874560587acd.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/8de0742f62b031c37ef944a76666788f.bin b/TMP Exporter/Library/ShaderCache/8/8de0742f62b031c37ef944a76666788f.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/8de0742f62b031c37ef944a76666788f.bin
rename to TMP Exporter/Library/ShaderCache/8/8de0742f62b031c37ef944a76666788f.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/8edeb9988d07b0ed034125d27d627d9f.bin b/TMP Exporter/Library/ShaderCache/8/8edeb9988d07b0ed034125d27d627d9f.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/8/8edeb9988d07b0ed034125d27d627d9f.bin
rename to TMP Exporter/Library/ShaderCache/8/8edeb9988d07b0ed034125d27d627d9f.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/904d5bffc8d7c9276754f182fbd96469.bin b/TMP Exporter/Library/ShaderCache/9/904d5bffc8d7c9276754f182fbd96469.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/904d5bffc8d7c9276754f182fbd96469.bin
rename to TMP Exporter/Library/ShaderCache/9/904d5bffc8d7c9276754f182fbd96469.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/93896210939e7e89db4e736dd7f5d583.bin b/TMP Exporter/Library/ShaderCache/9/93896210939e7e89db4e736dd7f5d583.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/93896210939e7e89db4e736dd7f5d583.bin
rename to TMP Exporter/Library/ShaderCache/9/93896210939e7e89db4e736dd7f5d583.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/93fb1af1acaa530f1ad4a321d92e355d.bin b/TMP Exporter/Library/ShaderCache/9/93fb1af1acaa530f1ad4a321d92e355d.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/93fb1af1acaa530f1ad4a321d92e355d.bin
rename to TMP Exporter/Library/ShaderCache/9/93fb1af1acaa530f1ad4a321d92e355d.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/96f5021f7ed771ccb7af9b1fc853f8f5.bin b/TMP Exporter/Library/ShaderCache/9/96f5021f7ed771ccb7af9b1fc853f8f5.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/96f5021f7ed771ccb7af9b1fc853f8f5.bin
rename to TMP Exporter/Library/ShaderCache/9/96f5021f7ed771ccb7af9b1fc853f8f5.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/985bf4e49ca93c8c46e8d19cfed1e5cf.bin b/TMP Exporter/Library/ShaderCache/9/985bf4e49ca93c8c46e8d19cfed1e5cf.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/985bf4e49ca93c8c46e8d19cfed1e5cf.bin
rename to TMP Exporter/Library/ShaderCache/9/985bf4e49ca93c8c46e8d19cfed1e5cf.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/98ffdb87f127a84071bfda324747b8fe.bin b/TMP Exporter/Library/ShaderCache/9/98ffdb87f127a84071bfda324747b8fe.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/98ffdb87f127a84071bfda324747b8fe.bin
rename to TMP Exporter/Library/ShaderCache/9/98ffdb87f127a84071bfda324747b8fe.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/99eccb477498838fd5d22f937353d36c.bin b/TMP Exporter/Library/ShaderCache/9/99eccb477498838fd5d22f937353d36c.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/99eccb477498838fd5d22f937353d36c.bin
rename to TMP Exporter/Library/ShaderCache/9/99eccb477498838fd5d22f937353d36c.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/9e6215c3b2da39e0803120151ad33515.bin b/TMP Exporter/Library/ShaderCache/9/9e6215c3b2da39e0803120151ad33515.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/9/9e6215c3b2da39e0803120151ad33515.bin
rename to TMP Exporter/Library/ShaderCache/9/9e6215c3b2da39e0803120151ad33515.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/a068f1ff6e004a89b4f0e39c7ab0f9eb.bin b/TMP Exporter/Library/ShaderCache/a/a068f1ff6e004a89b4f0e39c7ab0f9eb.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/a068f1ff6e004a89b4f0e39c7ab0f9eb.bin
rename to TMP Exporter/Library/ShaderCache/a/a068f1ff6e004a89b4f0e39c7ab0f9eb.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/a070540e2d2d6aa7e0ec0311344c95ad.bin b/TMP Exporter/Library/ShaderCache/a/a070540e2d2d6aa7e0ec0311344c95ad.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/a070540e2d2d6aa7e0ec0311344c95ad.bin
rename to TMP Exporter/Library/ShaderCache/a/a070540e2d2d6aa7e0ec0311344c95ad.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/a172fa6d2bb2766cc03f25cb416df865.bin b/TMP Exporter/Library/ShaderCache/a/a172fa6d2bb2766cc03f25cb416df865.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/a172fa6d2bb2766cc03f25cb416df865.bin
rename to TMP Exporter/Library/ShaderCache/a/a172fa6d2bb2766cc03f25cb416df865.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/a21024ec1445241f1e651a8c4603f07f.bin b/TMP Exporter/Library/ShaderCache/a/a21024ec1445241f1e651a8c4603f07f.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/a21024ec1445241f1e651a8c4603f07f.bin
rename to TMP Exporter/Library/ShaderCache/a/a21024ec1445241f1e651a8c4603f07f.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/ad578e4c8664b90c47e5b860ef4d9810.bin b/TMP Exporter/Library/ShaderCache/a/ad578e4c8664b90c47e5b860ef4d9810.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/ad578e4c8664b90c47e5b860ef4d9810.bin
rename to TMP Exporter/Library/ShaderCache/a/ad578e4c8664b90c47e5b860ef4d9810.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/aeadcea582921300af619fcf5bc98658.bin b/TMP Exporter/Library/ShaderCache/a/aeadcea582921300af619fcf5bc98658.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/aeadcea582921300af619fcf5bc98658.bin
rename to TMP Exporter/Library/ShaderCache/a/aeadcea582921300af619fcf5bc98658.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/aef9d04b5a062e87ad955ca1daf7a84f.bin b/TMP Exporter/Library/ShaderCache/a/aef9d04b5a062e87ad955ca1daf7a84f.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/a/aef9d04b5a062e87ad955ca1daf7a84f.bin
rename to TMP Exporter/Library/ShaderCache/a/aef9d04b5a062e87ad955ca1daf7a84f.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b0bcea00a1fa6ace48e6645fa844281a.bin b/TMP Exporter/Library/ShaderCache/b/b0bcea00a1fa6ace48e6645fa844281a.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b0bcea00a1fa6ace48e6645fa844281a.bin
rename to TMP Exporter/Library/ShaderCache/b/b0bcea00a1fa6ace48e6645fa844281a.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b1102699746870e4a06ccce4a4d062a8.bin b/TMP Exporter/Library/ShaderCache/b/b1102699746870e4a06ccce4a4d062a8.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b1102699746870e4a06ccce4a4d062a8.bin
rename to TMP Exporter/Library/ShaderCache/b/b1102699746870e4a06ccce4a4d062a8.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b13dee4519964b1784a07fa6a3f35bbc.bin b/TMP Exporter/Library/ShaderCache/b/b13dee4519964b1784a07fa6a3f35bbc.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b13dee4519964b1784a07fa6a3f35bbc.bin
rename to TMP Exporter/Library/ShaderCache/b/b13dee4519964b1784a07fa6a3f35bbc.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b2428ff2e7a8ea4c18b9c90903239284.bin b/TMP Exporter/Library/ShaderCache/b/b2428ff2e7a8ea4c18b9c90903239284.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b2428ff2e7a8ea4c18b9c90903239284.bin
rename to TMP Exporter/Library/ShaderCache/b/b2428ff2e7a8ea4c18b9c90903239284.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b36d3bcc536ab4fc8518478f8151226f.bin b/TMP Exporter/Library/ShaderCache/b/b36d3bcc536ab4fc8518478f8151226f.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b36d3bcc536ab4fc8518478f8151226f.bin
rename to TMP Exporter/Library/ShaderCache/b/b36d3bcc536ab4fc8518478f8151226f.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b3968f1cf024f4e6269d89244e05878c.bin b/TMP Exporter/Library/ShaderCache/b/b3968f1cf024f4e6269d89244e05878c.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b3968f1cf024f4e6269d89244e05878c.bin
rename to TMP Exporter/Library/ShaderCache/b/b3968f1cf024f4e6269d89244e05878c.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b4c45cd2ac928f76ff7190a4df30c9bc.bin b/TMP Exporter/Library/ShaderCache/b/b4c45cd2ac928f76ff7190a4df30c9bc.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/b4c45cd2ac928f76ff7190a4df30c9bc.bin
rename to TMP Exporter/Library/ShaderCache/b/b4c45cd2ac928f76ff7190a4df30c9bc.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/bc64de911870d1ac06eb94b77e7f9163.bin b/TMP Exporter/Library/ShaderCache/b/bc64de911870d1ac06eb94b77e7f9163.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/bc64de911870d1ac06eb94b77e7f9163.bin
rename to TMP Exporter/Library/ShaderCache/b/bc64de911870d1ac06eb94b77e7f9163.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/bd07d04a01b210c7b661bd60c3cf1e08.bin b/TMP Exporter/Library/ShaderCache/b/bd07d04a01b210c7b661bd60c3cf1e08.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/bd07d04a01b210c7b661bd60c3cf1e08.bin
rename to TMP Exporter/Library/ShaderCache/b/bd07d04a01b210c7b661bd60c3cf1e08.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/be6c7c3704b94055dcaae3fd92e57bf5.bin b/TMP Exporter/Library/ShaderCache/b/be6c7c3704b94055dcaae3fd92e57bf5.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/be6c7c3704b94055dcaae3fd92e57bf5.bin
rename to TMP Exporter/Library/ShaderCache/b/be6c7c3704b94055dcaae3fd92e57bf5.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/be939e6084829d91709d541ce97b8893.bin b/TMP Exporter/Library/ShaderCache/b/be939e6084829d91709d541ce97b8893.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/be939e6084829d91709d541ce97b8893.bin
rename to TMP Exporter/Library/ShaderCache/b/be939e6084829d91709d541ce97b8893.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/beb7cdc817fe23c1b19404ee28d2a68c.bin b/TMP Exporter/Library/ShaderCache/b/beb7cdc817fe23c1b19404ee28d2a68c.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/b/beb7cdc817fe23c1b19404ee28d2a68c.bin
rename to TMP Exporter/Library/ShaderCache/b/beb7cdc817fe23c1b19404ee28d2a68c.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c01142cd02576cdec202348db51cbe0a.bin b/TMP Exporter/Library/ShaderCache/c/c01142cd02576cdec202348db51cbe0a.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c01142cd02576cdec202348db51cbe0a.bin
rename to TMP Exporter/Library/ShaderCache/c/c01142cd02576cdec202348db51cbe0a.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c04823f13abb26416c2ad308bd69be53.bin b/TMP Exporter/Library/ShaderCache/c/c04823f13abb26416c2ad308bd69be53.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c04823f13abb26416c2ad308bd69be53.bin
rename to TMP Exporter/Library/ShaderCache/c/c04823f13abb26416c2ad308bd69be53.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c21f1ce9d2926bfa4cb8aa540e639b10.bin b/TMP Exporter/Library/ShaderCache/c/c21f1ce9d2926bfa4cb8aa540e639b10.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c21f1ce9d2926bfa4cb8aa540e639b10.bin
rename to TMP Exporter/Library/ShaderCache/c/c21f1ce9d2926bfa4cb8aa540e639b10.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c3c19f7e8f28d163795e6d7335102f0a.bin b/TMP Exporter/Library/ShaderCache/c/c3c19f7e8f28d163795e6d7335102f0a.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c3c19f7e8f28d163795e6d7335102f0a.bin
rename to TMP Exporter/Library/ShaderCache/c/c3c19f7e8f28d163795e6d7335102f0a.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c4fd2fc952e4f1c965ec5b5a1d1bbada.bin b/TMP Exporter/Library/ShaderCache/c/c4fd2fc952e4f1c965ec5b5a1d1bbada.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c4fd2fc952e4f1c965ec5b5a1d1bbada.bin
rename to TMP Exporter/Library/ShaderCache/c/c4fd2fc952e4f1c965ec5b5a1d1bbada.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c58db547e054fca9b5d0eba9a9f9b617.bin b/TMP Exporter/Library/ShaderCache/c/c58db547e054fca9b5d0eba9a9f9b617.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c58db547e054fca9b5d0eba9a9f9b617.bin
rename to TMP Exporter/Library/ShaderCache/c/c58db547e054fca9b5d0eba9a9f9b617.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c5dc91626ed724876aa6a9c1bec1c9d8.bin b/TMP Exporter/Library/ShaderCache/c/c5dc91626ed724876aa6a9c1bec1c9d8.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c5dc91626ed724876aa6a9c1bec1c9d8.bin
rename to TMP Exporter/Library/ShaderCache/c/c5dc91626ed724876aa6a9c1bec1c9d8.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c6f9c34dd8f36934131604f6f02164ad.bin b/TMP Exporter/Library/ShaderCache/c/c6f9c34dd8f36934131604f6f02164ad.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c6f9c34dd8f36934131604f6f02164ad.bin
rename to TMP Exporter/Library/ShaderCache/c/c6f9c34dd8f36934131604f6f02164ad.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c7a9300af946e64acfdb9666e769a141.bin b/TMP Exporter/Library/ShaderCache/c/c7a9300af946e64acfdb9666e769a141.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c7a9300af946e64acfdb9666e769a141.bin
rename to TMP Exporter/Library/ShaderCache/c/c7a9300af946e64acfdb9666e769a141.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c97ce8579e60bbe02591c9aaf285414e.bin b/TMP Exporter/Library/ShaderCache/c/c97ce8579e60bbe02591c9aaf285414e.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c97ce8579e60bbe02591c9aaf285414e.bin
rename to TMP Exporter/Library/ShaderCache/c/c97ce8579e60bbe02591c9aaf285414e.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c9aa9f102125ac3b7146873c71f49f60.bin b/TMP Exporter/Library/ShaderCache/c/c9aa9f102125ac3b7146873c71f49f60.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/c9aa9f102125ac3b7146873c71f49f60.bin
rename to TMP Exporter/Library/ShaderCache/c/c9aa9f102125ac3b7146873c71f49f60.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/ca53455542c04c07c38c830b0ee4417e.bin b/TMP Exporter/Library/ShaderCache/c/ca53455542c04c07c38c830b0ee4417e.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/ca53455542c04c07c38c830b0ee4417e.bin
rename to TMP Exporter/Library/ShaderCache/c/ca53455542c04c07c38c830b0ee4417e.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/ce1cf9d3a9cd2bca685ecb1c73d5f015.bin b/TMP Exporter/Library/ShaderCache/c/ce1cf9d3a9cd2bca685ecb1c73d5f015.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/c/ce1cf9d3a9cd2bca685ecb1c73d5f015.bin
rename to TMP Exporter/Library/ShaderCache/c/ce1cf9d3a9cd2bca685ecb1c73d5f015.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d032fbdf0c7c973a168335acc0df9c76.bin b/TMP Exporter/Library/ShaderCache/d/d032fbdf0c7c973a168335acc0df9c76.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d032fbdf0c7c973a168335acc0df9c76.bin
rename to TMP Exporter/Library/ShaderCache/d/d032fbdf0c7c973a168335acc0df9c76.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d1c851e026739ba8f0439f65b1a2f040.bin b/TMP Exporter/Library/ShaderCache/d/d1c851e026739ba8f0439f65b1a2f040.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d1c851e026739ba8f0439f65b1a2f040.bin
rename to TMP Exporter/Library/ShaderCache/d/d1c851e026739ba8f0439f65b1a2f040.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d1d5dc1b87cd855a44fd978fea7dff48.bin b/TMP Exporter/Library/ShaderCache/d/d1d5dc1b87cd855a44fd978fea7dff48.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d1d5dc1b87cd855a44fd978fea7dff48.bin
rename to TMP Exporter/Library/ShaderCache/d/d1d5dc1b87cd855a44fd978fea7dff48.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d1dd185e853a77b1f42a19a3f9034ef6.bin b/TMP Exporter/Library/ShaderCache/d/d1dd185e853a77b1f42a19a3f9034ef6.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d1dd185e853a77b1f42a19a3f9034ef6.bin
rename to TMP Exporter/Library/ShaderCache/d/d1dd185e853a77b1f42a19a3f9034ef6.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d2b28d43e399d2e0cbc75a6bf0051b4b.bin b/TMP Exporter/Library/ShaderCache/d/d2b28d43e399d2e0cbc75a6bf0051b4b.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d2b28d43e399d2e0cbc75a6bf0051b4b.bin
rename to TMP Exporter/Library/ShaderCache/d/d2b28d43e399d2e0cbc75a6bf0051b4b.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d46337711eca498d010fed3b03e90d88.bin b/TMP Exporter/Library/ShaderCache/d/d46337711eca498d010fed3b03e90d88.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/d46337711eca498d010fed3b03e90d88.bin
rename to TMP Exporter/Library/ShaderCache/d/d46337711eca498d010fed3b03e90d88.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/daf84cbce793b1e80a97ab890e36a8c5.bin b/TMP Exporter/Library/ShaderCache/d/daf84cbce793b1e80a97ab890e36a8c5.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/daf84cbce793b1e80a97ab890e36a8c5.bin
rename to TMP Exporter/Library/ShaderCache/d/daf84cbce793b1e80a97ab890e36a8c5.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/db4efec5f05d1aefa0ff94ee3296d4e2.bin b/TMP Exporter/Library/ShaderCache/d/db4efec5f05d1aefa0ff94ee3296d4e2.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/db4efec5f05d1aefa0ff94ee3296d4e2.bin
rename to TMP Exporter/Library/ShaderCache/d/db4efec5f05d1aefa0ff94ee3296d4e2.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/dca15a50b49952f1dd5b4393cba5ee0a.bin b/TMP Exporter/Library/ShaderCache/d/dca15a50b49952f1dd5b4393cba5ee0a.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/dca15a50b49952f1dd5b4393cba5ee0a.bin
rename to TMP Exporter/Library/ShaderCache/d/dca15a50b49952f1dd5b4393cba5ee0a.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/ddecea244a6bc3d732366eb8ef7e0c1c.bin b/TMP Exporter/Library/ShaderCache/d/ddecea244a6bc3d732366eb8ef7e0c1c.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/ddecea244a6bc3d732366eb8ef7e0c1c.bin
rename to TMP Exporter/Library/ShaderCache/d/ddecea244a6bc3d732366eb8ef7e0c1c.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/de5be95a0bad568ba7cb3438f15e100e.bin b/TMP Exporter/Library/ShaderCache/d/de5be95a0bad568ba7cb3438f15e100e.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/de5be95a0bad568ba7cb3438f15e100e.bin
rename to TMP Exporter/Library/ShaderCache/d/de5be95a0bad568ba7cb3438f15e100e.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/de755bdcc985e6aae9950ed36dbb9ba9.bin b/TMP Exporter/Library/ShaderCache/d/de755bdcc985e6aae9950ed36dbb9ba9.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/d/de755bdcc985e6aae9950ed36dbb9ba9.bin
rename to TMP Exporter/Library/ShaderCache/d/de755bdcc985e6aae9950ed36dbb9ba9.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e04f75ccbf89261959efd8024af860c2.bin b/TMP Exporter/Library/ShaderCache/e/e04f75ccbf89261959efd8024af860c2.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e04f75ccbf89261959efd8024af860c2.bin
rename to TMP Exporter/Library/ShaderCache/e/e04f75ccbf89261959efd8024af860c2.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e18bc5e8418d95ab411eacd20b80e458.bin b/TMP Exporter/Library/ShaderCache/e/e18bc5e8418d95ab411eacd20b80e458.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e18bc5e8418d95ab411eacd20b80e458.bin
rename to TMP Exporter/Library/ShaderCache/e/e18bc5e8418d95ab411eacd20b80e458.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e193feb25983bd06537e4974c3bd2b11.bin b/TMP Exporter/Library/ShaderCache/e/e193feb25983bd06537e4974c3bd2b11.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e193feb25983bd06537e4974c3bd2b11.bin
rename to TMP Exporter/Library/ShaderCache/e/e193feb25983bd06537e4974c3bd2b11.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e6b28dd231d3aa24acae4958f5a0f85c.bin b/TMP Exporter/Library/ShaderCache/e/e6b28dd231d3aa24acae4958f5a0f85c.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e6b28dd231d3aa24acae4958f5a0f85c.bin
rename to TMP Exporter/Library/ShaderCache/e/e6b28dd231d3aa24acae4958f5a0f85c.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e71e49fc440567fa88fedc640649787b.bin b/TMP Exporter/Library/ShaderCache/e/e71e49fc440567fa88fedc640649787b.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e71e49fc440567fa88fedc640649787b.bin
rename to TMP Exporter/Library/ShaderCache/e/e71e49fc440567fa88fedc640649787b.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e914a00987cb37ee2dda0e1f7a1ebc1c.bin b/TMP Exporter/Library/ShaderCache/e/e914a00987cb37ee2dda0e1f7a1ebc1c.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e914a00987cb37ee2dda0e1f7a1ebc1c.bin
rename to TMP Exporter/Library/ShaderCache/e/e914a00987cb37ee2dda0e1f7a1ebc1c.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e97e0fe5e9def036fa656d21aa9cea20.bin b/TMP Exporter/Library/ShaderCache/e/e97e0fe5e9def036fa656d21aa9cea20.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/e97e0fe5e9def036fa656d21aa9cea20.bin
rename to TMP Exporter/Library/ShaderCache/e/e97e0fe5e9def036fa656d21aa9cea20.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/ee57a20ad05d29f56fac1b81437389a8.bin b/TMP Exporter/Library/ShaderCache/e/ee57a20ad05d29f56fac1b81437389a8.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/ee57a20ad05d29f56fac1b81437389a8.bin
rename to TMP Exporter/Library/ShaderCache/e/ee57a20ad05d29f56fac1b81437389a8.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/ee760adab10b94a9949a58a47a949c28.bin b/TMP Exporter/Library/ShaderCache/e/ee760adab10b94a9949a58a47a949c28.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/e/ee760adab10b94a9949a58a47a949c28.bin
rename to TMP Exporter/Library/ShaderCache/e/ee760adab10b94a9949a58a47a949c28.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f043bbf634ed26d4b399d9159a5b5287.bin b/TMP Exporter/Library/ShaderCache/f/f043bbf634ed26d4b399d9159a5b5287.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f043bbf634ed26d4b399d9159a5b5287.bin
rename to TMP Exporter/Library/ShaderCache/f/f043bbf634ed26d4b399d9159a5b5287.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f2581a8659c836177bbf99b74df9d475.bin b/TMP Exporter/Library/ShaderCache/f/f2581a8659c836177bbf99b74df9d475.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f2581a8659c836177bbf99b74df9d475.bin
rename to TMP Exporter/Library/ShaderCache/f/f2581a8659c836177bbf99b74df9d475.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f2c221824c0e7703d5704ab8354c7c73.bin b/TMP Exporter/Library/ShaderCache/f/f2c221824c0e7703d5704ab8354c7c73.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f2c221824c0e7703d5704ab8354c7c73.bin
rename to TMP Exporter/Library/ShaderCache/f/f2c221824c0e7703d5704ab8354c7c73.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f2f25f6bcc482d00cbe9bba8c63af1f2.bin b/TMP Exporter/Library/ShaderCache/f/f2f25f6bcc482d00cbe9bba8c63af1f2.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f2f25f6bcc482d00cbe9bba8c63af1f2.bin
rename to TMP Exporter/Library/ShaderCache/f/f2f25f6bcc482d00cbe9bba8c63af1f2.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f5453cb7924a7ed8252243739a983648.bin b/TMP Exporter/Library/ShaderCache/f/f5453cb7924a7ed8252243739a983648.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f5453cb7924a7ed8252243739a983648.bin
rename to TMP Exporter/Library/ShaderCache/f/f5453cb7924a7ed8252243739a983648.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f5641dafc7434f244772227f010a4d3a.bin b/TMP Exporter/Library/ShaderCache/f/f5641dafc7434f244772227f010a4d3a.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f5641dafc7434f244772227f010a4d3a.bin
rename to TMP Exporter/Library/ShaderCache/f/f5641dafc7434f244772227f010a4d3a.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f8bb31e8b6b8055e1d76dbd4cdde19b8.bin b/TMP Exporter/Library/ShaderCache/f/f8bb31e8b6b8055e1d76dbd4cdde19b8.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f8bb31e8b6b8055e1d76dbd4cdde19b8.bin
rename to TMP Exporter/Library/ShaderCache/f/f8bb31e8b6b8055e1d76dbd4cdde19b8.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f8e7a657b0db824d3a1485ae15051268.bin b/TMP Exporter/Library/ShaderCache/f/f8e7a657b0db824d3a1485ae15051268.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/f8e7a657b0db824d3a1485ae15051268.bin
rename to TMP Exporter/Library/ShaderCache/f/f8e7a657b0db824d3a1485ae15051268.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/fd1fd5f802e5a3826d8a9db29aedc5a0.bin b/TMP Exporter/Library/ShaderCache/f/fd1fd5f802e5a3826d8a9db29aedc5a0.bin
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/ShaderCache/f/fd1fd5f802e5a3826d8a9db29aedc5a0.bin
rename to TMP Exporter/Library/ShaderCache/f/fd1fd5f802e5a3826d8a9db29aedc5a0.bin
diff --git a/BSIPA-ModList/TMP Exporter/Library/SpriteAtlasDatabase.asset b/TMP Exporter/Library/SpriteAtlasDatabase.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/SpriteAtlasDatabase.asset
rename to TMP Exporter/Library/SpriteAtlasDatabase.asset
diff --git a/BSIPA-ModList/TMP Exporter/Library/StateCache/Hierarchy/e647ed-mainStage.json b/TMP Exporter/Library/StateCache/Hierarchy/e647ed-mainStage.json
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/StateCache/Hierarchy/e647ed-mainStage.json
rename to TMP Exporter/Library/StateCache/Hierarchy/e647ed-mainStage.json
diff --git a/BSIPA-ModList/TMP Exporter/Library/TilemapEditorUserSettings.asset b/TMP Exporter/Library/TilemapEditorUserSettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/TilemapEditorUserSettings.asset
rename to TMP Exporter/Library/TilemapEditorUserSettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/Library/assetDatabase3 b/TMP Exporter/Library/assetDatabase3
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/assetDatabase3
rename to TMP Exporter/Library/assetDatabase3
diff --git a/BSIPA-ModList/TMP Exporter/Library/expandedItems b/TMP Exporter/Library/expandedItems
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/expandedItems
rename to TMP Exporter/Library/expandedItems
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000001000000000000000 b/TMP Exporter/Library/metadata/00/00000000000000001000000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000001000000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000001000000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000001000000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000001000000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000001000000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000001000000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000002000000000000000 b/TMP Exporter/Library/metadata/00/00000000000000002000000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000002000000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000002000000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000002000000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000002000000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000002000000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000002000000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000003000000000000000 b/TMP Exporter/Library/metadata/00/00000000000000003000000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000003000000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000003000000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000003000000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000003000000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000003000000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000003000000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000004000000000000000 b/TMP Exporter/Library/metadata/00/00000000000000004000000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000004000000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000004000000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000004000000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000004000000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000004000000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000004000000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000004100000000000000 b/TMP Exporter/Library/metadata/00/00000000000000004100000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000004100000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000004100000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000004100000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000004100000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000004100000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000004100000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000005000000000000000 b/TMP Exporter/Library/metadata/00/00000000000000005000000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000005000000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000005000000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000005000000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000005000000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000005000000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000005000000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000005100000000000000 b/TMP Exporter/Library/metadata/00/00000000000000005100000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000005100000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000005100000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000005100000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000005100000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000005100000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000005100000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000006000000000000000 b/TMP Exporter/Library/metadata/00/00000000000000006000000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000006000000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000006000000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000006000000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000006000000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000006000000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000006000000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000006100000000000000 b/TMP Exporter/Library/metadata/00/00000000000000006100000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000006100000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000006100000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000006100000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000006100000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000006100000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000006100000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000007000000000000000 b/TMP Exporter/Library/metadata/00/00000000000000007000000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000007000000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000007000000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000007000000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000007000000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000007000000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000007000000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000007100000000000000 b/TMP Exporter/Library/metadata/00/00000000000000007100000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000007100000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000007100000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000007100000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000007100000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000007100000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000007100000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000008000000000000000 b/TMP Exporter/Library/metadata/00/00000000000000008000000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000008000000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000008000000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000008000000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000008000000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000008000000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000008000000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000009000000000000000 b/TMP Exporter/Library/metadata/00/00000000000000009000000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000009000000000000000
rename to TMP Exporter/Library/metadata/00/00000000000000009000000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000009000000000000000.info b/TMP Exporter/Library/metadata/00/00000000000000009000000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00000000000000009000000000000000.info
rename to TMP Exporter/Library/metadata/00/00000000000000009000000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000a100000000000000 b/TMP Exporter/Library/metadata/00/0000000000000000a100000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000a100000000000000
rename to TMP Exporter/Library/metadata/00/0000000000000000a100000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000a100000000000000.info b/TMP Exporter/Library/metadata/00/0000000000000000a100000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000a100000000000000.info
rename to TMP Exporter/Library/metadata/00/0000000000000000a100000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000b000000000000000 b/TMP Exporter/Library/metadata/00/0000000000000000b000000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000b000000000000000
rename to TMP Exporter/Library/metadata/00/0000000000000000b000000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000b000000000000000.info b/TMP Exporter/Library/metadata/00/0000000000000000b000000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000b000000000000000.info
rename to TMP Exporter/Library/metadata/00/0000000000000000b000000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000b100000000000000 b/TMP Exporter/Library/metadata/00/0000000000000000b100000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000b100000000000000
rename to TMP Exporter/Library/metadata/00/0000000000000000b100000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000b100000000000000.info b/TMP Exporter/Library/metadata/00/0000000000000000b100000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000b100000000000000.info
rename to TMP Exporter/Library/metadata/00/0000000000000000b100000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000c000000000000000 b/TMP Exporter/Library/metadata/00/0000000000000000c000000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000c000000000000000
rename to TMP Exporter/Library/metadata/00/0000000000000000c000000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000c000000000000000.info b/TMP Exporter/Library/metadata/00/0000000000000000c000000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000c000000000000000.info
rename to TMP Exporter/Library/metadata/00/0000000000000000c000000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000c100000000000000 b/TMP Exporter/Library/metadata/00/0000000000000000c100000000000000
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000c100000000000000
rename to TMP Exporter/Library/metadata/00/0000000000000000c100000000000000
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000c100000000000000.info b/TMP Exporter/Library/metadata/00/0000000000000000c100000000000000.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/0000000000000000c100000000000000.info
rename to TMP Exporter/Library/metadata/00/0000000000000000c100000000000000.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb b/TMP Exporter/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb
rename to TMP Exporter/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb.info b/TMP Exporter/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb.info
rename to TMP Exporter/Library/metadata/00/005c4d80949154e5c87348bb9f5d15eb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00ed25e3298ac440eb327c706a964e3a b/TMP Exporter/Library/metadata/00/00ed25e3298ac440eb327c706a964e3a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00ed25e3298ac440eb327c706a964e3a
rename to TMP Exporter/Library/metadata/00/00ed25e3298ac440eb327c706a964e3a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/00/00ed25e3298ac440eb327c706a964e3a.info b/TMP Exporter/Library/metadata/00/00ed25e3298ac440eb327c706a964e3a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/00/00ed25e3298ac440eb327c706a964e3a.info
rename to TMP Exporter/Library/metadata/00/00ed25e3298ac440eb327c706a964e3a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/01/015812e983113a84b95773e55f3cec13 b/TMP Exporter/Library/metadata/01/015812e983113a84b95773e55f3cec13
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/01/015812e983113a84b95773e55f3cec13
rename to TMP Exporter/Library/metadata/01/015812e983113a84b95773e55f3cec13
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/01/015812e983113a84b95773e55f3cec13.info b/TMP Exporter/Library/metadata/01/015812e983113a84b95773e55f3cec13.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/01/015812e983113a84b95773e55f3cec13.info
rename to TMP Exporter/Library/metadata/01/015812e983113a84b95773e55f3cec13.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0 b/TMP Exporter/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0
rename to TMP Exporter/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0.info b/TMP Exporter/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0.info
rename to TMP Exporter/Library/metadata/01/01cd264c206ae482393dc9d04b26eca0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/01/01e02995805eb483690380a911a657e2 b/TMP Exporter/Library/metadata/01/01e02995805eb483690380a911a657e2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/01/01e02995805eb483690380a911a657e2
rename to TMP Exporter/Library/metadata/01/01e02995805eb483690380a911a657e2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/01/01e02995805eb483690380a911a657e2.info b/TMP Exporter/Library/metadata/01/01e02995805eb483690380a911a657e2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/01/01e02995805eb483690380a911a657e2.info
rename to TMP Exporter/Library/metadata/01/01e02995805eb483690380a911a657e2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/02/0217a80286f79419daa202f69409f19b b/TMP Exporter/Library/metadata/02/0217a80286f79419daa202f69409f19b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/02/0217a80286f79419daa202f69409f19b
rename to TMP Exporter/Library/metadata/02/0217a80286f79419daa202f69409f19b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/02/0217a80286f79419daa202f69409f19b.info b/TMP Exporter/Library/metadata/02/0217a80286f79419daa202f69409f19b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/02/0217a80286f79419daa202f69409f19b.info
rename to TMP Exporter/Library/metadata/02/0217a80286f79419daa202f69409f19b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/02/02893ffb522b490a9fa28eedd2584309 b/TMP Exporter/Library/metadata/02/02893ffb522b490a9fa28eedd2584309
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/02/02893ffb522b490a9fa28eedd2584309
rename to TMP Exporter/Library/metadata/02/02893ffb522b490a9fa28eedd2584309
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/02/02893ffb522b490a9fa28eedd2584309.info b/TMP Exporter/Library/metadata/02/02893ffb522b490a9fa28eedd2584309.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/02/02893ffb522b490a9fa28eedd2584309.info
rename to TMP Exporter/Library/metadata/02/02893ffb522b490a9fa28eedd2584309.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/03/036d03e26977243fa9a2d7af48e51e08 b/TMP Exporter/Library/metadata/03/036d03e26977243fa9a2d7af48e51e08
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/03/036d03e26977243fa9a2d7af48e51e08
rename to TMP Exporter/Library/metadata/03/036d03e26977243fa9a2d7af48e51e08
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/03/036d03e26977243fa9a2d7af48e51e08.info b/TMP Exporter/Library/metadata/03/036d03e26977243fa9a2d7af48e51e08.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/03/036d03e26977243fa9a2d7af48e51e08.info
rename to TMP Exporter/Library/metadata/03/036d03e26977243fa9a2d7af48e51e08.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35 b/TMP Exporter/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35
rename to TMP Exporter/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35.info b/TMP Exporter/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35.info
rename to TMP Exporter/Library/metadata/03/0386b6eb838c47138cd51d1c1b879a35.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb b/TMP Exporter/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb
rename to TMP Exporter/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb.info b/TMP Exporter/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb.info
rename to TMP Exporter/Library/metadata/03/03ffb9844f8d40e8a2f59dd2aff561eb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77 b/TMP Exporter/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77
rename to TMP Exporter/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77.info b/TMP Exporter/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77.info
rename to TMP Exporter/Library/metadata/05/058cba836c1846c3aa1c5fd2e28aea77.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/05/05f5bfd584002f948982a1498890f9a9 b/TMP Exporter/Library/metadata/05/05f5bfd584002f948982a1498890f9a9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/05/05f5bfd584002f948982a1498890f9a9
rename to TMP Exporter/Library/metadata/05/05f5bfd584002f948982a1498890f9a9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/05/05f5bfd584002f948982a1498890f9a9.info b/TMP Exporter/Library/metadata/05/05f5bfd584002f948982a1498890f9a9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/05/05f5bfd584002f948982a1498890f9a9.info
rename to TMP Exporter/Library/metadata/05/05f5bfd584002f948982a1498890f9a9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1 b/TMP Exporter/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1
rename to TMP Exporter/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1.info b/TMP Exporter/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1.info
rename to TMP Exporter/Library/metadata/05/05f7f519769978b79b31d063a7fc6fa1.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/06/063b1587caa4a47f396741f4e69d108c b/TMP Exporter/Library/metadata/06/063b1587caa4a47f396741f4e69d108c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/06/063b1587caa4a47f396741f4e69d108c
rename to TMP Exporter/Library/metadata/06/063b1587caa4a47f396741f4e69d108c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/06/063b1587caa4a47f396741f4e69d108c.info b/TMP Exporter/Library/metadata/06/063b1587caa4a47f396741f4e69d108c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/06/063b1587caa4a47f396741f4e69d108c.info
rename to TMP Exporter/Library/metadata/06/063b1587caa4a47f396741f4e69d108c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2 b/TMP Exporter/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2
rename to TMP Exporter/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2.info b/TMP Exporter/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2.info
rename to TMP Exporter/Library/metadata/06/066619c9c9c84f89acb1b48c11a7efe2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/06/06b575597b644fe8ba88495149d01b66 b/TMP Exporter/Library/metadata/06/06b575597b644fe8ba88495149d01b66
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/06/06b575597b644fe8ba88495149d01b66
rename to TMP Exporter/Library/metadata/06/06b575597b644fe8ba88495149d01b66
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/06/06b575597b644fe8ba88495149d01b66.info b/TMP Exporter/Library/metadata/06/06b575597b644fe8ba88495149d01b66.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/06/06b575597b644fe8ba88495149d01b66.info
rename to TMP Exporter/Library/metadata/06/06b575597b644fe8ba88495149d01b66.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77 b/TMP Exporter/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77
rename to TMP Exporter/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77.info b/TMP Exporter/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77.info
rename to TMP Exporter/Library/metadata/06/06f8e3404d534cab82fe852ff33dad77.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5 b/TMP Exporter/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5
rename to TMP Exporter/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5.info b/TMP Exporter/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5.info
rename to TMP Exporter/Library/metadata/07/07994bfe8b0e4adb97d706de5dea48d5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/08/08e9894bdf0834710b22d3c0aa245ac0 b/TMP Exporter/Library/metadata/08/08e9894bdf0834710b22d3c0aa245ac0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/08/08e9894bdf0834710b22d3c0aa245ac0
rename to TMP Exporter/Library/metadata/08/08e9894bdf0834710b22d3c0aa245ac0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/08/08e9894bdf0834710b22d3c0aa245ac0.info b/TMP Exporter/Library/metadata/08/08e9894bdf0834710b22d3c0aa245ac0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/08/08e9894bdf0834710b22d3c0aa245ac0.info
rename to TMP Exporter/Library/metadata/08/08e9894bdf0834710b22d3c0aa245ac0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/09/09e28640d754a611467eebfb261ed749 b/TMP Exporter/Library/metadata/09/09e28640d754a611467eebfb261ed749
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/09/09e28640d754a611467eebfb261ed749
rename to TMP Exporter/Library/metadata/09/09e28640d754a611467eebfb261ed749
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/09/09e28640d754a611467eebfb261ed749.info b/TMP Exporter/Library/metadata/09/09e28640d754a611467eebfb261ed749.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/09/09e28640d754a611467eebfb261ed749.info
rename to TMP Exporter/Library/metadata/09/09e28640d754a611467eebfb261ed749.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c b/TMP Exporter/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c
rename to TMP Exporter/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c.info b/TMP Exporter/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c.info
rename to TMP Exporter/Library/metadata/0a/0a1161a2ab6569948a0aa7899197218c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a15697c65dd48e47b861b29d92288e8 b/TMP Exporter/Library/metadata/0a/0a15697c65dd48e47b861b29d92288e8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a15697c65dd48e47b861b29d92288e8
rename to TMP Exporter/Library/metadata/0a/0a15697c65dd48e47b861b29d92288e8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a15697c65dd48e47b861b29d92288e8.info b/TMP Exporter/Library/metadata/0a/0a15697c65dd48e47b861b29d92288e8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a15697c65dd48e47b861b29d92288e8.info
rename to TMP Exporter/Library/metadata/0a/0a15697c65dd48e47b861b29d92288e8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4 b/TMP Exporter/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4
rename to TMP Exporter/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4.info b/TMP Exporter/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4.info
rename to TMP Exporter/Library/metadata/0a/0a2c7bcbdfe0a438999cb0653789cdf4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec b/TMP Exporter/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec
rename to TMP Exporter/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec.info b/TMP Exporter/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec.info
rename to TMP Exporter/Library/metadata/0a/0a822dba3d5c4c85b150866e5442a5ec.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d10b939bcc85f248addda6f33c2bf30 b/TMP Exporter/Library/metadata/0d/0d10b939bcc85f248addda6f33c2bf30
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d10b939bcc85f248addda6f33c2bf30
rename to TMP Exporter/Library/metadata/0d/0d10b939bcc85f248addda6f33c2bf30
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d10b939bcc85f248addda6f33c2bf30.info b/TMP Exporter/Library/metadata/0d/0d10b939bcc85f248addda6f33c2bf30.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d10b939bcc85f248addda6f33c2bf30.info
rename to TMP Exporter/Library/metadata/0d/0d10b939bcc85f248addda6f33c2bf30.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a b/TMP Exporter/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a
rename to TMP Exporter/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a.info b/TMP Exporter/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a.info
rename to TMP Exporter/Library/metadata/0d/0d2d0f36e67d4518a07df76235e91f9a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9 b/TMP Exporter/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9
rename to TMP Exporter/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9.info b/TMP Exporter/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9.info
rename to TMP Exporter/Library/metadata/0d/0d9a36012a224080966c7b55896aa0f9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e0afa652c0031c48896a97b424d027b b/TMP Exporter/Library/metadata/0e/0e0afa652c0031c48896a97b424d027b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e0afa652c0031c48896a97b424d027b
rename to TMP Exporter/Library/metadata/0e/0e0afa652c0031c48896a97b424d027b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e0afa652c0031c48896a97b424d027b.info b/TMP Exporter/Library/metadata/0e/0e0afa652c0031c48896a97b424d027b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e0afa652c0031c48896a97b424d027b.info
rename to TMP Exporter/Library/metadata/0e/0e0afa652c0031c48896a97b424d027b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84 b/TMP Exporter/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84
rename to TMP Exporter/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84.info b/TMP Exporter/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84.info
rename to TMP Exporter/Library/metadata/0e/0e372f1bbea04aa9bd68055d4105bd84.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf b/TMP Exporter/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf
rename to TMP Exporter/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf.info b/TMP Exporter/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf.info
rename to TMP Exporter/Library/metadata/0e/0e751e877ed14d71a6b8e63ac54949cf.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0e/0edd86f97b0648f685604a5582cff608 b/TMP Exporter/Library/metadata/0e/0edd86f97b0648f685604a5582cff608
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0e/0edd86f97b0648f685604a5582cff608
rename to TMP Exporter/Library/metadata/0e/0edd86f97b0648f685604a5582cff608
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0e/0edd86f97b0648f685604a5582cff608.info b/TMP Exporter/Library/metadata/0e/0edd86f97b0648f685604a5582cff608.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0e/0edd86f97b0648f685604a5582cff608.info
rename to TMP Exporter/Library/metadata/0e/0edd86f97b0648f685604a5582cff608.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0f/0fda7ebe61ab2164383d10e32efb9c6e b/TMP Exporter/Library/metadata/0f/0fda7ebe61ab2164383d10e32efb9c6e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0f/0fda7ebe61ab2164383d10e32efb9c6e
rename to TMP Exporter/Library/metadata/0f/0fda7ebe61ab2164383d10e32efb9c6e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0f/0fda7ebe61ab2164383d10e32efb9c6e.info b/TMP Exporter/Library/metadata/0f/0fda7ebe61ab2164383d10e32efb9c6e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0f/0fda7ebe61ab2164383d10e32efb9c6e.info
rename to TMP Exporter/Library/metadata/0f/0fda7ebe61ab2164383d10e32efb9c6e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0f/0fe4c527c3aa3eb42912a1caafbbc6a0 b/TMP Exporter/Library/metadata/0f/0fe4c527c3aa3eb42912a1caafbbc6a0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0f/0fe4c527c3aa3eb42912a1caafbbc6a0
rename to TMP Exporter/Library/metadata/0f/0fe4c527c3aa3eb42912a1caafbbc6a0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/0f/0fe4c527c3aa3eb42912a1caafbbc6a0.info b/TMP Exporter/Library/metadata/0f/0fe4c527c3aa3eb42912a1caafbbc6a0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/0f/0fe4c527c3aa3eb42912a1caafbbc6a0.info
rename to TMP Exporter/Library/metadata/0f/0fe4c527c3aa3eb42912a1caafbbc6a0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/10/10145f279f90346bbb61712ff585828b b/TMP Exporter/Library/metadata/10/10145f279f90346bbb61712ff585828b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/10/10145f279f90346bbb61712ff585828b
rename to TMP Exporter/Library/metadata/10/10145f279f90346bbb61712ff585828b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/10/10145f279f90346bbb61712ff585828b.info b/TMP Exporter/Library/metadata/10/10145f279f90346bbb61712ff585828b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/10/10145f279f90346bbb61712ff585828b.info
rename to TMP Exporter/Library/metadata/10/10145f279f90346bbb61712ff585828b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/10/1048a87135154606808bf2030da32d18 b/TMP Exporter/Library/metadata/10/1048a87135154606808bf2030da32d18
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/10/1048a87135154606808bf2030da32d18
rename to TMP Exporter/Library/metadata/10/1048a87135154606808bf2030da32d18
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/10/1048a87135154606808bf2030da32d18.info b/TMP Exporter/Library/metadata/10/1048a87135154606808bf2030da32d18.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/10/1048a87135154606808bf2030da32d18.info
rename to TMP Exporter/Library/metadata/10/1048a87135154606808bf2030da32d18.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/10/1067213df0c64b319bc81e73be809b1a b/TMP Exporter/Library/metadata/10/1067213df0c64b319bc81e73be809b1a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/10/1067213df0c64b319bc81e73be809b1a
rename to TMP Exporter/Library/metadata/10/1067213df0c64b319bc81e73be809b1a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/10/1067213df0c64b319bc81e73be809b1a.info b/TMP Exporter/Library/metadata/10/1067213df0c64b319bc81e73be809b1a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/10/1067213df0c64b319bc81e73be809b1a.info
rename to TMP Exporter/Library/metadata/10/1067213df0c64b319bc81e73be809b1a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/10/10bf81265ad87424d946598c575f45a0 b/TMP Exporter/Library/metadata/10/10bf81265ad87424d946598c575f45a0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/10/10bf81265ad87424d946598c575f45a0
rename to TMP Exporter/Library/metadata/10/10bf81265ad87424d946598c575f45a0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/10/10bf81265ad87424d946598c575f45a0.info b/TMP Exporter/Library/metadata/10/10bf81265ad87424d946598c575f45a0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/10/10bf81265ad87424d946598c575f45a0.info
rename to TMP Exporter/Library/metadata/10/10bf81265ad87424d946598c575f45a0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/11/1158e311a3101950348dcecb1bebc42d b/TMP Exporter/Library/metadata/11/1158e311a3101950348dcecb1bebc42d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/11/1158e311a3101950348dcecb1bebc42d
rename to TMP Exporter/Library/metadata/11/1158e311a3101950348dcecb1bebc42d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/11/1158e311a3101950348dcecb1bebc42d.info b/TMP Exporter/Library/metadata/11/1158e311a3101950348dcecb1bebc42d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/11/1158e311a3101950348dcecb1bebc42d.info
rename to TMP Exporter/Library/metadata/11/1158e311a3101950348dcecb1bebc42d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b b/TMP Exporter/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b
rename to TMP Exporter/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b.info b/TMP Exporter/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b.info
rename to TMP Exporter/Library/metadata/11/11a6a034ab84493cbed6af5ae7aae78b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/12/12736c98af174f91827a26b66d2b01b9 b/TMP Exporter/Library/metadata/12/12736c98af174f91827a26b66d2b01b9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/12/12736c98af174f91827a26b66d2b01b9
rename to TMP Exporter/Library/metadata/12/12736c98af174f91827a26b66d2b01b9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/12/12736c98af174f91827a26b66d2b01b9.info b/TMP Exporter/Library/metadata/12/12736c98af174f91827a26b66d2b01b9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/12/12736c98af174f91827a26b66d2b01b9.info
rename to TMP Exporter/Library/metadata/12/12736c98af174f91827a26b66d2b01b9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/12/128e987d567d4e2c824d754223b3f3b0 b/TMP Exporter/Library/metadata/12/128e987d567d4e2c824d754223b3f3b0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/12/128e987d567d4e2c824d754223b3f3b0
rename to TMP Exporter/Library/metadata/12/128e987d567d4e2c824d754223b3f3b0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/12/128e987d567d4e2c824d754223b3f3b0.info b/TMP Exporter/Library/metadata/12/128e987d567d4e2c824d754223b3f3b0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/12/128e987d567d4e2c824d754223b3f3b0.info
rename to TMP Exporter/Library/metadata/12/128e987d567d4e2c824d754223b3f3b0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62 b/TMP Exporter/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62
rename to TMP Exporter/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62.info b/TMP Exporter/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62.info
rename to TMP Exporter/Library/metadata/13/1322fd896bbb15bb6e335591b766ae62.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/13/1369382d2c5e64dc5b2ec0b6b0a94531 b/TMP Exporter/Library/metadata/13/1369382d2c5e64dc5b2ec0b6b0a94531
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/13/1369382d2c5e64dc5b2ec0b6b0a94531
rename to TMP Exporter/Library/metadata/13/1369382d2c5e64dc5b2ec0b6b0a94531
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/13/1369382d2c5e64dc5b2ec0b6b0a94531.info b/TMP Exporter/Library/metadata/13/1369382d2c5e64dc5b2ec0b6b0a94531.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/13/1369382d2c5e64dc5b2ec0b6b0a94531.info
rename to TMP Exporter/Library/metadata/13/1369382d2c5e64dc5b2ec0b6b0a94531.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/13/138961c4434d141a987d96df1f8d7342 b/TMP Exporter/Library/metadata/13/138961c4434d141a987d96df1f8d7342
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/13/138961c4434d141a987d96df1f8d7342
rename to TMP Exporter/Library/metadata/13/138961c4434d141a987d96df1f8d7342
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/13/138961c4434d141a987d96df1f8d7342.info b/TMP Exporter/Library/metadata/13/138961c4434d141a987d96df1f8d7342.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/13/138961c4434d141a987d96df1f8d7342.info
rename to TMP Exporter/Library/metadata/13/138961c4434d141a987d96df1f8d7342.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db b/TMP Exporter/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db
rename to TMP Exporter/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db.info b/TMP Exporter/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db.info
rename to TMP Exporter/Library/metadata/13/13eb80ce50ac9c43cdbaf2109c0ec7db.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/14/1402fa6d0f18ded4baf0bdd69f5a4613 b/TMP Exporter/Library/metadata/14/1402fa6d0f18ded4baf0bdd69f5a4613
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/14/1402fa6d0f18ded4baf0bdd69f5a4613
rename to TMP Exporter/Library/metadata/14/1402fa6d0f18ded4baf0bdd69f5a4613
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/14/1402fa6d0f18ded4baf0bdd69f5a4613.info b/TMP Exporter/Library/metadata/14/1402fa6d0f18ded4baf0bdd69f5a4613.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/14/1402fa6d0f18ded4baf0bdd69f5a4613.info
rename to TMP Exporter/Library/metadata/14/1402fa6d0f18ded4baf0bdd69f5a4613.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c b/TMP Exporter/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c
rename to TMP Exporter/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c.info b/TMP Exporter/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c.info
rename to TMP Exporter/Library/metadata/15/15a615c733aa240909fe0b28b0d5143c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b b/TMP Exporter/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b
rename to TMP Exporter/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b.info b/TMP Exporter/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b.info
rename to TMP Exporter/Library/metadata/15/15bf9c691b85b41a39c18bee2f87e21b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/17/178008567c08e6d84014fa87825d10bb b/TMP Exporter/Library/metadata/17/178008567c08e6d84014fa87825d10bb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/17/178008567c08e6d84014fa87825d10bb
rename to TMP Exporter/Library/metadata/17/178008567c08e6d84014fa87825d10bb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/17/178008567c08e6d84014fa87825d10bb.info b/TMP Exporter/Library/metadata/17/178008567c08e6d84014fa87825d10bb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/17/178008567c08e6d84014fa87825d10bb.info
rename to TMP Exporter/Library/metadata/17/178008567c08e6d84014fa87825d10bb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/17/17b632677410799367a53dc7ab96a8c2 b/TMP Exporter/Library/metadata/17/17b632677410799367a53dc7ab96a8c2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/17/17b632677410799367a53dc7ab96a8c2
rename to TMP Exporter/Library/metadata/17/17b632677410799367a53dc7ab96a8c2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/17/17b632677410799367a53dc7ab96a8c2.info b/TMP Exporter/Library/metadata/17/17b632677410799367a53dc7ab96a8c2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/17/17b632677410799367a53dc7ab96a8c2.info
rename to TMP Exporter/Library/metadata/17/17b632677410799367a53dc7ab96a8c2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f b/TMP Exporter/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f
rename to TMP Exporter/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f.info b/TMP Exporter/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f.info
rename to TMP Exporter/Library/metadata/18/18775b51e3bd42299fd30bd036ea982f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9 b/TMP Exporter/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9
rename to TMP Exporter/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9.info b/TMP Exporter/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9.info
rename to TMP Exporter/Library/metadata/18/18a4fadfef534684d5af39ca8dc48fe9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6 b/TMP Exporter/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6
rename to TMP Exporter/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6.info b/TMP Exporter/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6.info
rename to TMP Exporter/Library/metadata/1a/1a4266815e998967becf686f9c71f0a6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1a/1adad61bfb44214ee3e887b5febc4396 b/TMP Exporter/Library/metadata/1a/1adad61bfb44214ee3e887b5febc4396
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1a/1adad61bfb44214ee3e887b5febc4396
rename to TMP Exporter/Library/metadata/1a/1adad61bfb44214ee3e887b5febc4396
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1a/1adad61bfb44214ee3e887b5febc4396.info b/TMP Exporter/Library/metadata/1a/1adad61bfb44214ee3e887b5febc4396.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1a/1adad61bfb44214ee3e887b5febc4396.info
rename to TMP Exporter/Library/metadata/1a/1adad61bfb44214ee3e887b5febc4396.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1a/1ae19e8f4b4822c4ea8044672b68fc7c b/TMP Exporter/Library/metadata/1a/1ae19e8f4b4822c4ea8044672b68fc7c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1a/1ae19e8f4b4822c4ea8044672b68fc7c
rename to TMP Exporter/Library/metadata/1a/1ae19e8f4b4822c4ea8044672b68fc7c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1a/1ae19e8f4b4822c4ea8044672b68fc7c.info b/TMP Exporter/Library/metadata/1a/1ae19e8f4b4822c4ea8044672b68fc7c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1a/1ae19e8f4b4822c4ea8044672b68fc7c.info
rename to TMP Exporter/Library/metadata/1a/1ae19e8f4b4822c4ea8044672b68fc7c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5 b/TMP Exporter/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5
rename to TMP Exporter/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5.info b/TMP Exporter/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5.info
rename to TMP Exporter/Library/metadata/1b/1b32bcce201b4494ea8848326290c5d5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62 b/TMP Exporter/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62
rename to TMP Exporter/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62.info b/TMP Exporter/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62.info
rename to TMP Exporter/Library/metadata/1b/1b355da31ea043feba0c03e35dd4bc62.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b8d251f9af63b746bf2f7ffe00ebb9b b/TMP Exporter/Library/metadata/1b/1b8d251f9af63b746bf2f7ffe00ebb9b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b8d251f9af63b746bf2f7ffe00ebb9b
rename to TMP Exporter/Library/metadata/1b/1b8d251f9af63b746bf2f7ffe00ebb9b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b8d251f9af63b746bf2f7ffe00ebb9b.info b/TMP Exporter/Library/metadata/1b/1b8d251f9af63b746bf2f7ffe00ebb9b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1b/1b8d251f9af63b746bf2f7ffe00ebb9b.info
rename to TMP Exporter/Library/metadata/1b/1b8d251f9af63b746bf2f7ffe00ebb9b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8 b/TMP Exporter/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8
rename to TMP Exporter/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8.info b/TMP Exporter/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8.info
rename to TMP Exporter/Library/metadata/1c/1cf2469083ffa484da4d78dd70d708e8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f b/TMP Exporter/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f
rename to TMP Exporter/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f.info b/TMP Exporter/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f.info
rename to TMP Exporter/Library/metadata/1c/1cf679539c5e5499e8856aaacf1fc32f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1e/1e3b057af24249748ff873be7fafee47 b/TMP Exporter/Library/metadata/1e/1e3b057af24249748ff873be7fafee47
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1e/1e3b057af24249748ff873be7fafee47
rename to TMP Exporter/Library/metadata/1e/1e3b057af24249748ff873be7fafee47
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/1e/1e3b057af24249748ff873be7fafee47.info b/TMP Exporter/Library/metadata/1e/1e3b057af24249748ff873be7fafee47.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/1e/1e3b057af24249748ff873be7fafee47.info
rename to TMP Exporter/Library/metadata/1e/1e3b057af24249748ff873be7fafee47.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7 b/TMP Exporter/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7
rename to TMP Exporter/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7.info b/TMP Exporter/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7.info
rename to TMP Exporter/Library/metadata/20/20a8ca0a6d82545f6bfd6f2d898d61f7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa b/TMP Exporter/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa
rename to TMP Exporter/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa.info b/TMP Exporter/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa.info
rename to TMP Exporter/Library/metadata/20/20a9b557a46149dfbfa04a3a7080f5aa.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/21/21c0044a7f964773be90d197a78e4703 b/TMP Exporter/Library/metadata/21/21c0044a7f964773be90d197a78e4703
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/21/21c0044a7f964773be90d197a78e4703
rename to TMP Exporter/Library/metadata/21/21c0044a7f964773be90d197a78e4703
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/21/21c0044a7f964773be90d197a78e4703.info b/TMP Exporter/Library/metadata/21/21c0044a7f964773be90d197a78e4703.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/21/21c0044a7f964773be90d197a78e4703.info
rename to TMP Exporter/Library/metadata/21/21c0044a7f964773be90d197a78e4703.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432 b/TMP Exporter/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432
rename to TMP Exporter/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432.info b/TMP Exporter/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432.info
rename to TMP Exporter/Library/metadata/22/220224b43fc464c28bc0e8de8f54a432.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/22/220e9325710f4235a43492dd1ee4980d b/TMP Exporter/Library/metadata/22/220e9325710f4235a43492dd1ee4980d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/22/220e9325710f4235a43492dd1ee4980d
rename to TMP Exporter/Library/metadata/22/220e9325710f4235a43492dd1ee4980d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/22/220e9325710f4235a43492dd1ee4980d.info b/TMP Exporter/Library/metadata/22/220e9325710f4235a43492dd1ee4980d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/22/220e9325710f4235a43492dd1ee4980d.info
rename to TMP Exporter/Library/metadata/22/220e9325710f4235a43492dd1ee4980d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002 b/TMP Exporter/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002
rename to TMP Exporter/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002.info b/TMP Exporter/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002.info
rename to TMP Exporter/Library/metadata/22/22464cf7ab0243a6bf9c79851183b002.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05 b/TMP Exporter/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05
rename to TMP Exporter/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05.info b/TMP Exporter/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05.info
rename to TMP Exporter/Library/metadata/22/224ede67b4f3a4109bfec4d5cb161b05.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15 b/TMP Exporter/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15
rename to TMP Exporter/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15.info b/TMP Exporter/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15.info
rename to TMP Exporter/Library/metadata/23/2300e75732d74890b38a8ff257a3ae15.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/23/23805a7a1623842b0b7b21158066bd90 b/TMP Exporter/Library/metadata/23/23805a7a1623842b0b7b21158066bd90
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/23/23805a7a1623842b0b7b21158066bd90
rename to TMP Exporter/Library/metadata/23/23805a7a1623842b0b7b21158066bd90
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/23/23805a7a1623842b0b7b21158066bd90.info b/TMP Exporter/Library/metadata/23/23805a7a1623842b0b7b21158066bd90.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/23/23805a7a1623842b0b7b21158066bd90.info
rename to TMP Exporter/Library/metadata/23/23805a7a1623842b0b7b21158066bd90.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794 b/TMP Exporter/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794
rename to TMP Exporter/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794.info b/TMP Exporter/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794.info
rename to TMP Exporter/Library/metadata/23/23a562f2cac6401f9f91251c68a1a794.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/23/23a56a19774ed42b6b65646af08a003c b/TMP Exporter/Library/metadata/23/23a56a19774ed42b6b65646af08a003c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/23/23a56a19774ed42b6b65646af08a003c
rename to TMP Exporter/Library/metadata/23/23a56a19774ed42b6b65646af08a003c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/23/23a56a19774ed42b6b65646af08a003c.info b/TMP Exporter/Library/metadata/23/23a56a19774ed42b6b65646af08a003c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/23/23a56a19774ed42b6b65646af08a003c.info
rename to TMP Exporter/Library/metadata/23/23a56a19774ed42b6b65646af08a003c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/24/240551e3142f04b0ca801ce8eb645ba2 b/TMP Exporter/Library/metadata/24/240551e3142f04b0ca801ce8eb645ba2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/24/240551e3142f04b0ca801ce8eb645ba2
rename to TMP Exporter/Library/metadata/24/240551e3142f04b0ca801ce8eb645ba2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/24/240551e3142f04b0ca801ce8eb645ba2.info b/TMP Exporter/Library/metadata/24/240551e3142f04b0ca801ce8eb645ba2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/24/240551e3142f04b0ca801ce8eb645ba2.info
rename to TMP Exporter/Library/metadata/24/240551e3142f04b0ca801ce8eb645ba2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/24/243e06394e614e5d99fab26083b707fa b/TMP Exporter/Library/metadata/24/243e06394e614e5d99fab26083b707fa
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/24/243e06394e614e5d99fab26083b707fa
rename to TMP Exporter/Library/metadata/24/243e06394e614e5d99fab26083b707fa
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/24/243e06394e614e5d99fab26083b707fa.info b/TMP Exporter/Library/metadata/24/243e06394e614e5d99fab26083b707fa.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/24/243e06394e614e5d99fab26083b707fa.info
rename to TMP Exporter/Library/metadata/24/243e06394e614e5d99fab26083b707fa.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb b/TMP Exporter/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb
rename to TMP Exporter/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb.info b/TMP Exporter/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb.info
rename to TMP Exporter/Library/metadata/25/25ebe415cc14c4f4ea15c34a796b75bb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/26/2622838afa3284cc882c48ceea4c8220 b/TMP Exporter/Library/metadata/26/2622838afa3284cc882c48ceea4c8220
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/26/2622838afa3284cc882c48ceea4c8220
rename to TMP Exporter/Library/metadata/26/2622838afa3284cc882c48ceea4c8220
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/26/2622838afa3284cc882c48ceea4c8220.info b/TMP Exporter/Library/metadata/26/2622838afa3284cc882c48ceea4c8220.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/26/2622838afa3284cc882c48ceea4c8220.info
rename to TMP Exporter/Library/metadata/26/2622838afa3284cc882c48ceea4c8220.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/26/26a4f29db434fd79025c91f6126382cc b/TMP Exporter/Library/metadata/26/26a4f29db434fd79025c91f6126382cc
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/26/26a4f29db434fd79025c91f6126382cc
rename to TMP Exporter/Library/metadata/26/26a4f29db434fd79025c91f6126382cc
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/26/26a4f29db434fd79025c91f6126382cc.info b/TMP Exporter/Library/metadata/26/26a4f29db434fd79025c91f6126382cc.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/26/26a4f29db434fd79025c91f6126382cc.info
rename to TMP Exporter/Library/metadata/26/26a4f29db434fd79025c91f6126382cc.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/27/2705215ac5b84b70bacc50632be6e391 b/TMP Exporter/Library/metadata/27/2705215ac5b84b70bacc50632be6e391
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/27/2705215ac5b84b70bacc50632be6e391
rename to TMP Exporter/Library/metadata/27/2705215ac5b84b70bacc50632be6e391
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/27/2705215ac5b84b70bacc50632be6e391.info b/TMP Exporter/Library/metadata/27/2705215ac5b84b70bacc50632be6e391.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/27/2705215ac5b84b70bacc50632be6e391.info
rename to TMP Exporter/Library/metadata/27/2705215ac5b84b70bacc50632be6e391.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd b/TMP Exporter/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd
rename to TMP Exporter/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd.info b/TMP Exporter/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd.info
rename to TMP Exporter/Library/metadata/27/27a0335dab59ec542aadd6636a5b4ebd.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc b/TMP Exporter/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc
rename to TMP Exporter/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc.info b/TMP Exporter/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc.info
rename to TMP Exporter/Library/metadata/28/2808ba6bccb2478ec9c7209d8bf1f3cc.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7 b/TMP Exporter/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7
rename to TMP Exporter/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7.info b/TMP Exporter/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7.info
rename to TMP Exporter/Library/metadata/28/28375447bcea455c9b51a6650b10c9d7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6 b/TMP Exporter/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6
rename to TMP Exporter/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6.info b/TMP Exporter/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6.info
rename to TMP Exporter/Library/metadata/28/28542eca5f1b4c64813acfbd512524b6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/29/293182c4d29604c05b6724ae00fd121a b/TMP Exporter/Library/metadata/29/293182c4d29604c05b6724ae00fd121a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/29/293182c4d29604c05b6724ae00fd121a
rename to TMP Exporter/Library/metadata/29/293182c4d29604c05b6724ae00fd121a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/29/293182c4d29604c05b6724ae00fd121a.info b/TMP Exporter/Library/metadata/29/293182c4d29604c05b6724ae00fd121a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/29/293182c4d29604c05b6724ae00fd121a.info
rename to TMP Exporter/Library/metadata/29/293182c4d29604c05b6724ae00fd121a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694 b/TMP Exporter/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694
rename to TMP Exporter/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694.info b/TMP Exporter/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694.info
rename to TMP Exporter/Library/metadata/2a/2a3f4f8c4e2df41108f55825c24ff694.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2b/2b2be9ee9f41a4b2db6b502697ba31b1 b/TMP Exporter/Library/metadata/2b/2b2be9ee9f41a4b2db6b502697ba31b1
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2b/2b2be9ee9f41a4b2db6b502697ba31b1
rename to TMP Exporter/Library/metadata/2b/2b2be9ee9f41a4b2db6b502697ba31b1
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2b/2b2be9ee9f41a4b2db6b502697ba31b1.info b/TMP Exporter/Library/metadata/2b/2b2be9ee9f41a4b2db6b502697ba31b1.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2b/2b2be9ee9f41a4b2db6b502697ba31b1.info
rename to TMP Exporter/Library/metadata/2b/2b2be9ee9f41a4b2db6b502697ba31b1.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d b/TMP Exporter/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d
rename to TMP Exporter/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d.info b/TMP Exporter/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d.info
rename to TMP Exporter/Library/metadata/2b/2b3002c18d29d41b0898ab58bc6ee10d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb b/TMP Exporter/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb
rename to TMP Exporter/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb.info b/TMP Exporter/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb.info
rename to TMP Exporter/Library/metadata/2c/2c814623cb42764d304be0c5ddd03ceb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2c/2cb4896487bee904f9a3066134b4360c b/TMP Exporter/Library/metadata/2c/2cb4896487bee904f9a3066134b4360c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2c/2cb4896487bee904f9a3066134b4360c
rename to TMP Exporter/Library/metadata/2c/2cb4896487bee904f9a3066134b4360c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2c/2cb4896487bee904f9a3066134b4360c.info b/TMP Exporter/Library/metadata/2c/2cb4896487bee904f9a3066134b4360c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2c/2cb4896487bee904f9a3066134b4360c.info
rename to TMP Exporter/Library/metadata/2c/2cb4896487bee904f9a3066134b4360c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe b/TMP Exporter/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe
rename to TMP Exporter/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe.info b/TMP Exporter/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe.info
rename to TMP Exporter/Library/metadata/2c/2ce4bbcc4722440890a03312706037fe.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a b/TMP Exporter/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a
rename to TMP Exporter/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a.info b/TMP Exporter/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a.info
rename to TMP Exporter/Library/metadata/2d/2d142b475fbfb8cf12ba3a795194300a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540 b/TMP Exporter/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540
rename to TMP Exporter/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540.info b/TMP Exporter/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540.info
rename to TMP Exporter/Library/metadata/2d/2d4d46c70fdd242668a56e99799e8540.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0 b/TMP Exporter/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0
rename to TMP Exporter/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0.info b/TMP Exporter/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0.info
rename to TMP Exporter/Library/metadata/2d/2d6ba5cbe47e6ad3c87474c56174d4e0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f b/TMP Exporter/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f
rename to TMP Exporter/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f.info b/TMP Exporter/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f.info
rename to TMP Exporter/Library/metadata/2d/2d77b2d58287d46a6a61f12c861bfc2f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2d/2da0c512f12947e489f739169773d7ca b/TMP Exporter/Library/metadata/2d/2da0c512f12947e489f739169773d7ca
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2d/2da0c512f12947e489f739169773d7ca
rename to TMP Exporter/Library/metadata/2d/2da0c512f12947e489f739169773d7ca
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2d/2da0c512f12947e489f739169773d7ca.info b/TMP Exporter/Library/metadata/2d/2da0c512f12947e489f739169773d7ca.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2d/2da0c512f12947e489f739169773d7ca.info
rename to TMP Exporter/Library/metadata/2d/2da0c512f12947e489f739169773d7ca.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2f/2f1849b9179b464381598f68663790d3 b/TMP Exporter/Library/metadata/2f/2f1849b9179b464381598f68663790d3
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2f/2f1849b9179b464381598f68663790d3
rename to TMP Exporter/Library/metadata/2f/2f1849b9179b464381598f68663790d3
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2f/2f1849b9179b464381598f68663790d3.info b/TMP Exporter/Library/metadata/2f/2f1849b9179b464381598f68663790d3.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2f/2f1849b9179b464381598f68663790d3.info
rename to TMP Exporter/Library/metadata/2f/2f1849b9179b464381598f68663790d3.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e b/TMP Exporter/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e
rename to TMP Exporter/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e.info b/TMP Exporter/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e.info
rename to TMP Exporter/Library/metadata/2f/2f1d33abb004b44cb90ec83a2bfe872e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c b/TMP Exporter/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c
rename to TMP Exporter/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c.info b/TMP Exporter/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c.info
rename to TMP Exporter/Library/metadata/2f/2fd6421f253b4ef1a19526541f9ffc0c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898 b/TMP Exporter/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898
rename to TMP Exporter/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898.info b/TMP Exporter/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898.info
rename to TMP Exporter/Library/metadata/30/301fbaa0e62e44fd2a7383bd338a2898.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/303ab9f5517b7f14e922416d51bba5fd b/TMP Exporter/Library/metadata/30/303ab9f5517b7f14e922416d51bba5fd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/303ab9f5517b7f14e922416d51bba5fd
rename to TMP Exporter/Library/metadata/30/303ab9f5517b7f14e922416d51bba5fd
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/303ab9f5517b7f14e922416d51bba5fd.info b/TMP Exporter/Library/metadata/30/303ab9f5517b7f14e922416d51bba5fd.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/303ab9f5517b7f14e922416d51bba5fd.info
rename to TMP Exporter/Library/metadata/30/303ab9f5517b7f14e922416d51bba5fd.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/3069a00b8c364df395994d7d379e0a99 b/TMP Exporter/Library/metadata/30/3069a00b8c364df395994d7d379e0a99
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/3069a00b8c364df395994d7d379e0a99
rename to TMP Exporter/Library/metadata/30/3069a00b8c364df395994d7d379e0a99
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/3069a00b8c364df395994d7d379e0a99.info b/TMP Exporter/Library/metadata/30/3069a00b8c364df395994d7d379e0a99.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/3069a00b8c364df395994d7d379e0a99.info
rename to TMP Exporter/Library/metadata/30/3069a00b8c364df395994d7d379e0a99.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/30a939dce2fd4073955f2f20e659d506 b/TMP Exporter/Library/metadata/30/30a939dce2fd4073955f2f20e659d506
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/30a939dce2fd4073955f2f20e659d506
rename to TMP Exporter/Library/metadata/30/30a939dce2fd4073955f2f20e659d506
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/30a939dce2fd4073955f2f20e659d506.info b/TMP Exporter/Library/metadata/30/30a939dce2fd4073955f2f20e659d506.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/30a939dce2fd4073955f2f20e659d506.info
rename to TMP Exporter/Library/metadata/30/30a939dce2fd4073955f2f20e659d506.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a b/TMP Exporter/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a
rename to TMP Exporter/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a.info b/TMP Exporter/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a.info
rename to TMP Exporter/Library/metadata/30/30aa3194afbe44a72aa7ec76cb2bab8a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/30bed781e402439ab8ce4e3357708115 b/TMP Exporter/Library/metadata/30/30bed781e402439ab8ce4e3357708115
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/30bed781e402439ab8ce4e3357708115
rename to TMP Exporter/Library/metadata/30/30bed781e402439ab8ce4e3357708115
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/30/30bed781e402439ab8ce4e3357708115.info b/TMP Exporter/Library/metadata/30/30bed781e402439ab8ce4e3357708115.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/30/30bed781e402439ab8ce4e3357708115.info
rename to TMP Exporter/Library/metadata/30/30bed781e402439ab8ce4e3357708115.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/32/322392995be44d23a3c86cfd972f838f b/TMP Exporter/Library/metadata/32/322392995be44d23a3c86cfd972f838f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/32/322392995be44d23a3c86cfd972f838f
rename to TMP Exporter/Library/metadata/32/322392995be44d23a3c86cfd972f838f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/32/322392995be44d23a3c86cfd972f838f.info b/TMP Exporter/Library/metadata/32/322392995be44d23a3c86cfd972f838f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/32/322392995be44d23a3c86cfd972f838f.info
rename to TMP Exporter/Library/metadata/32/322392995be44d23a3c86cfd972f838f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/32/32d40088a6124c578ad6b428df586e2e b/TMP Exporter/Library/metadata/32/32d40088a6124c578ad6b428df586e2e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/32/32d40088a6124c578ad6b428df586e2e
rename to TMP Exporter/Library/metadata/32/32d40088a6124c578ad6b428df586e2e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/32/32d40088a6124c578ad6b428df586e2e.info b/TMP Exporter/Library/metadata/32/32d40088a6124c578ad6b428df586e2e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/32/32d40088a6124c578ad6b428df586e2e.info
rename to TMP Exporter/Library/metadata/32/32d40088a6124c578ad6b428df586e2e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8 b/TMP Exporter/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8
rename to TMP Exporter/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8.info b/TMP Exporter/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8.info
rename to TMP Exporter/Library/metadata/33/3385f7527e5be4c65b3a5294e8995ff8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/34/342a0f8aca7f4f0691338912faec0494 b/TMP Exporter/Library/metadata/34/342a0f8aca7f4f0691338912faec0494
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/34/342a0f8aca7f4f0691338912faec0494
rename to TMP Exporter/Library/metadata/34/342a0f8aca7f4f0691338912faec0494
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/34/342a0f8aca7f4f0691338912faec0494.info b/TMP Exporter/Library/metadata/34/342a0f8aca7f4f0691338912faec0494.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/34/342a0f8aca7f4f0691338912faec0494.info
rename to TMP Exporter/Library/metadata/34/342a0f8aca7f4f0691338912faec0494.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/34/34e150112c1c42ac83170b52d898e322 b/TMP Exporter/Library/metadata/34/34e150112c1c42ac83170b52d898e322
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/34/34e150112c1c42ac83170b52d898e322
rename to TMP Exporter/Library/metadata/34/34e150112c1c42ac83170b52d898e322
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/34/34e150112c1c42ac83170b52d898e322.info b/TMP Exporter/Library/metadata/34/34e150112c1c42ac83170b52d898e322.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/34/34e150112c1c42ac83170b52d898e322.info
rename to TMP Exporter/Library/metadata/34/34e150112c1c42ac83170b52d898e322.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6 b/TMP Exporter/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6
rename to TMP Exporter/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6.info b/TMP Exporter/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6.info
rename to TMP Exporter/Library/metadata/34/34e2c9b9d9e44953933afe37461f44e6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e b/TMP Exporter/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e
rename to TMP Exporter/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e.info b/TMP Exporter/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e.info
rename to TMP Exporter/Library/metadata/34/34f6695d37a94370a3697f6b068f5d5e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13 b/TMP Exporter/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13
rename to TMP Exporter/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13.info b/TMP Exporter/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13.info
rename to TMP Exporter/Library/metadata/35/35b4e72ca46f44581b85082c4dc21d13.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92 b/TMP Exporter/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92
rename to TMP Exporter/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92.info b/TMP Exporter/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92.info
rename to TMP Exporter/Library/metadata/35/35ff0937876540d3bd4b6a941df62a92.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d b/TMP Exporter/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d
rename to TMP Exporter/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d.info b/TMP Exporter/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d.info
rename to TMP Exporter/Library/metadata/36/36e8bb3feb5e6402185947b817a6ed8d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/37/376c84ea405e0f2b80562c23bb977216 b/TMP Exporter/Library/metadata/37/376c84ea405e0f2b80562c23bb977216
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/37/376c84ea405e0f2b80562c23bb977216
rename to TMP Exporter/Library/metadata/37/376c84ea405e0f2b80562c23bb977216
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/37/376c84ea405e0f2b80562c23bb977216.info b/TMP Exporter/Library/metadata/37/376c84ea405e0f2b80562c23bb977216.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/37/376c84ea405e0f2b80562c23bb977216.info
rename to TMP Exporter/Library/metadata/37/376c84ea405e0f2b80562c23bb977216.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/38/381dcb09d5029d14897e55f98031fca5 b/TMP Exporter/Library/metadata/38/381dcb09d5029d14897e55f98031fca5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/38/381dcb09d5029d14897e55f98031fca5
rename to TMP Exporter/Library/metadata/38/381dcb09d5029d14897e55f98031fca5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/38/381dcb09d5029d14897e55f98031fca5.info b/TMP Exporter/Library/metadata/38/381dcb09d5029d14897e55f98031fca5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/38/381dcb09d5029d14897e55f98031fca5.info
rename to TMP Exporter/Library/metadata/38/381dcb09d5029d14897e55f98031fca5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/38/383966e89d344865a36addd5d378ffd3 b/TMP Exporter/Library/metadata/38/383966e89d344865a36addd5d378ffd3
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/38/383966e89d344865a36addd5d378ffd3
rename to TMP Exporter/Library/metadata/38/383966e89d344865a36addd5d378ffd3
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/38/383966e89d344865a36addd5d378ffd3.info b/TMP Exporter/Library/metadata/38/383966e89d344865a36addd5d378ffd3.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/38/383966e89d344865a36addd5d378ffd3.info
rename to TMP Exporter/Library/metadata/38/383966e89d344865a36addd5d378ffd3.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2 b/TMP Exporter/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2
rename to TMP Exporter/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2.info b/TMP Exporter/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2.info
rename to TMP Exporter/Library/metadata/38/3877b2be7ee07495d8918dc8937e6de2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc b/TMP Exporter/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc
rename to TMP Exporter/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc.info b/TMP Exporter/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc.info
rename to TMP Exporter/Library/metadata/38/38c8faf1788024c02930a0c68a6e0edc.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c b/TMP Exporter/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c
rename to TMP Exporter/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c.info b/TMP Exporter/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c.info
rename to TMP Exporter/Library/metadata/38/38e3a8976f0b9c586b6dfbcef4e4066c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/39/39728903e57c60021f80449a8bbc0096 b/TMP Exporter/Library/metadata/39/39728903e57c60021f80449a8bbc0096
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/39/39728903e57c60021f80449a8bbc0096
rename to TMP Exporter/Library/metadata/39/39728903e57c60021f80449a8bbc0096
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/39/39728903e57c60021f80449a8bbc0096.info b/TMP Exporter/Library/metadata/39/39728903e57c60021f80449a8bbc0096.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/39/39728903e57c60021f80449a8bbc0096.info
rename to TMP Exporter/Library/metadata/39/39728903e57c60021f80449a8bbc0096.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/39/3997e2241185407d80309a82f9148466 b/TMP Exporter/Library/metadata/39/3997e2241185407d80309a82f9148466
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/39/3997e2241185407d80309a82f9148466
rename to TMP Exporter/Library/metadata/39/3997e2241185407d80309a82f9148466
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/39/3997e2241185407d80309a82f9148466.info b/TMP Exporter/Library/metadata/39/3997e2241185407d80309a82f9148466.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/39/3997e2241185407d80309a82f9148466.info
rename to TMP Exporter/Library/metadata/39/3997e2241185407d80309a82f9148466.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012 b/TMP Exporter/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012
rename to TMP Exporter/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012.info b/TMP Exporter/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012.info
rename to TMP Exporter/Library/metadata/3a/3a2bf0128e2dd664f91dfba49e36a012.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a2d94c8977984b67984caeff9fa666e b/TMP Exporter/Library/metadata/3a/3a2d94c8977984b67984caeff9fa666e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a2d94c8977984b67984caeff9fa666e
rename to TMP Exporter/Library/metadata/3a/3a2d94c8977984b67984caeff9fa666e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a2d94c8977984b67984caeff9fa666e.info b/TMP Exporter/Library/metadata/3a/3a2d94c8977984b67984caeff9fa666e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a2d94c8977984b67984caeff9fa666e.info
rename to TMP Exporter/Library/metadata/3a/3a2d94c8977984b67984caeff9fa666e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a b/TMP Exporter/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a
rename to TMP Exporter/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a.info b/TMP Exporter/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a.info
rename to TMP Exporter/Library/metadata/3a/3a84de5cd0624681b6b6dcd8921d912a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3ab6e6972ecb54e2cbd505692415a7ba b/TMP Exporter/Library/metadata/3a/3ab6e6972ecb54e2cbd505692415a7ba
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3ab6e6972ecb54e2cbd505692415a7ba
rename to TMP Exporter/Library/metadata/3a/3ab6e6972ecb54e2cbd505692415a7ba
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3ab6e6972ecb54e2cbd505692415a7ba.info b/TMP Exporter/Library/metadata/3a/3ab6e6972ecb54e2cbd505692415a7ba.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3ab6e6972ecb54e2cbd505692415a7ba.info
rename to TMP Exporter/Library/metadata/3a/3ab6e6972ecb54e2cbd505692415a7ba.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3aba9fe1ad29b42ffb0eea781318a626 b/TMP Exporter/Library/metadata/3a/3aba9fe1ad29b42ffb0eea781318a626
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3aba9fe1ad29b42ffb0eea781318a626
rename to TMP Exporter/Library/metadata/3a/3aba9fe1ad29b42ffb0eea781318a626
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3aba9fe1ad29b42ffb0eea781318a626.info b/TMP Exporter/Library/metadata/3a/3aba9fe1ad29b42ffb0eea781318a626.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3aba9fe1ad29b42ffb0eea781318a626.info
rename to TMP Exporter/Library/metadata/3a/3aba9fe1ad29b42ffb0eea781318a626.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca b/TMP Exporter/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca
rename to TMP Exporter/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca.info b/TMP Exporter/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca.info
rename to TMP Exporter/Library/metadata/3a/3abc8faab9f5cbe4db0336c99fef85ca.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8 b/TMP Exporter/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8
rename to TMP Exporter/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8.info b/TMP Exporter/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8.info
rename to TMP Exporter/Library/metadata/3b/3b07d432cba2a4c4f8a2fdea984620b8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237 b/TMP Exporter/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237
rename to TMP Exporter/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237.info b/TMP Exporter/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237.info
rename to TMP Exporter/Library/metadata/3b/3bb0254b9671413d9d08a855c5090237.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee b/TMP Exporter/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee
rename to TMP Exporter/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee.info b/TMP Exporter/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee.info
rename to TMP Exporter/Library/metadata/3b/3bda1886f58f4e0ab1139400b160c3ee.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3c/3c61c79a991f84470843243e9710743e b/TMP Exporter/Library/metadata/3c/3c61c79a991f84470843243e9710743e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3c/3c61c79a991f84470843243e9710743e
rename to TMP Exporter/Library/metadata/3c/3c61c79a991f84470843243e9710743e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3c/3c61c79a991f84470843243e9710743e.info b/TMP Exporter/Library/metadata/3c/3c61c79a991f84470843243e9710743e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3c/3c61c79a991f84470843243e9710743e.info
rename to TMP Exporter/Library/metadata/3c/3c61c79a991f84470843243e9710743e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3c/3c737f7a9d78541d1ab25f28f045dd32 b/TMP Exporter/Library/metadata/3c/3c737f7a9d78541d1ab25f28f045dd32
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3c/3c737f7a9d78541d1ab25f28f045dd32
rename to TMP Exporter/Library/metadata/3c/3c737f7a9d78541d1ab25f28f045dd32
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3c/3c737f7a9d78541d1ab25f28f045dd32.info b/TMP Exporter/Library/metadata/3c/3c737f7a9d78541d1ab25f28f045dd32.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3c/3c737f7a9d78541d1ab25f28f045dd32.info
rename to TMP Exporter/Library/metadata/3c/3c737f7a9d78541d1ab25f28f045dd32.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434 b/TMP Exporter/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434
rename to TMP Exporter/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434.info b/TMP Exporter/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434.info
rename to TMP Exporter/Library/metadata/3c/3cebe1a96232b44388b30b2f72dde434.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0 b/TMP Exporter/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0
rename to TMP Exporter/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0.info b/TMP Exporter/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0.info
rename to TMP Exporter/Library/metadata/3c/3cf132d4fa07f4f0cb2883499c5c7dd0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240 b/TMP Exporter/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240
rename to TMP Exporter/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240.info b/TMP Exporter/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240.info
rename to TMP Exporter/Library/metadata/3d/3dcbbc060dea46168ffc09a580836240.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0 b/TMP Exporter/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0
rename to TMP Exporter/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0.info b/TMP Exporter/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0.info
rename to TMP Exporter/Library/metadata/3e/3e9a2175e0404f7ea30b2b694850bae0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f b/TMP Exporter/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f
rename to TMP Exporter/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f.info b/TMP Exporter/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f.info
rename to TMP Exporter/Library/metadata/3e/3ee40aa79cd242a5b53b0b0ca4f13f0f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada b/TMP Exporter/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada
rename to TMP Exporter/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada.info b/TMP Exporter/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada.info
rename to TMP Exporter/Library/metadata/3f/3f0c4389c854bcaf848af1ea310dbada.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e b/TMP Exporter/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e
rename to TMP Exporter/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e.info b/TMP Exporter/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e.info
rename to TMP Exporter/Library/metadata/3f/3f3e22b18940a4e828a5170574a3617e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f5b5dff67a942289a9defa416b206f3 b/TMP Exporter/Library/metadata/3f/3f5b5dff67a942289a9defa416b206f3
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f5b5dff67a942289a9defa416b206f3
rename to TMP Exporter/Library/metadata/3f/3f5b5dff67a942289a9defa416b206f3
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f5b5dff67a942289a9defa416b206f3.info b/TMP Exporter/Library/metadata/3f/3f5b5dff67a942289a9defa416b206f3.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3f/3f5b5dff67a942289a9defa416b206f3.info
rename to TMP Exporter/Library/metadata/3f/3f5b5dff67a942289a9defa416b206f3.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04 b/TMP Exporter/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04
rename to TMP Exporter/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04.info b/TMP Exporter/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04.info
rename to TMP Exporter/Library/metadata/3f/3fdd83b151eb8d25c5e2f82fc39dcb04.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/40/405b9b51bb344a128608d968297df79c b/TMP Exporter/Library/metadata/40/405b9b51bb344a128608d968297df79c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/40/405b9b51bb344a128608d968297df79c
rename to TMP Exporter/Library/metadata/40/405b9b51bb344a128608d968297df79c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/40/405b9b51bb344a128608d968297df79c.info b/TMP Exporter/Library/metadata/40/405b9b51bb344a128608d968297df79c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/40/405b9b51bb344a128608d968297df79c.info
rename to TMP Exporter/Library/metadata/40/405b9b51bb344a128608d968297df79c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/40/407bc68d299748449bbf7f48ee690f8d b/TMP Exporter/Library/metadata/40/407bc68d299748449bbf7f48ee690f8d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/40/407bc68d299748449bbf7f48ee690f8d
rename to TMP Exporter/Library/metadata/40/407bc68d299748449bbf7f48ee690f8d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/40/407bc68d299748449bbf7f48ee690f8d.info b/TMP Exporter/Library/metadata/40/407bc68d299748449bbf7f48ee690f8d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/40/407bc68d299748449bbf7f48ee690f8d.info
rename to TMP Exporter/Library/metadata/40/407bc68d299748449bbf7f48ee690f8d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638 b/TMP Exporter/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638
rename to TMP Exporter/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638.info b/TMP Exporter/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638.info
rename to TMP Exporter/Library/metadata/40/40bf3cec17fa0b49fe04443c8332d638.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/40/40f980217d9196e4baa9ebd2ac1328af b/TMP Exporter/Library/metadata/40/40f980217d9196e4baa9ebd2ac1328af
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/40/40f980217d9196e4baa9ebd2ac1328af
rename to TMP Exporter/Library/metadata/40/40f980217d9196e4baa9ebd2ac1328af
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/40/40f980217d9196e4baa9ebd2ac1328af.info b/TMP Exporter/Library/metadata/40/40f980217d9196e4baa9ebd2ac1328af.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/40/40f980217d9196e4baa9ebd2ac1328af.info
rename to TMP Exporter/Library/metadata/40/40f980217d9196e4baa9ebd2ac1328af.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/41/4113173d5e95493ab8765d7b08371de4 b/TMP Exporter/Library/metadata/41/4113173d5e95493ab8765d7b08371de4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/41/4113173d5e95493ab8765d7b08371de4
rename to TMP Exporter/Library/metadata/41/4113173d5e95493ab8765d7b08371de4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/41/4113173d5e95493ab8765d7b08371de4.info b/TMP Exporter/Library/metadata/41/4113173d5e95493ab8765d7b08371de4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/41/4113173d5e95493ab8765d7b08371de4.info
rename to TMP Exporter/Library/metadata/41/4113173d5e95493ab8765d7b08371de4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae b/TMP Exporter/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae
rename to TMP Exporter/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae.info b/TMP Exporter/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae.info
rename to TMP Exporter/Library/metadata/41/41b96614b2e6494ba995ddcd252d11ae.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/42/42064bc130be4c44b288d249a44b356f b/TMP Exporter/Library/metadata/42/42064bc130be4c44b288d249a44b356f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/42/42064bc130be4c44b288d249a44b356f
rename to TMP Exporter/Library/metadata/42/42064bc130be4c44b288d249a44b356f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/42/42064bc130be4c44b288d249a44b356f.info b/TMP Exporter/Library/metadata/42/42064bc130be4c44b288d249a44b356f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/42/42064bc130be4c44b288d249a44b356f.info
rename to TMP Exporter/Library/metadata/42/42064bc130be4c44b288d249a44b356f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3 b/TMP Exporter/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3
rename to TMP Exporter/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3.info b/TMP Exporter/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3.info
rename to TMP Exporter/Library/metadata/42/42fe78c8fe682715a2cb531422e6ccb3.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/43/438efd46088d408d8a53f707fa68d976 b/TMP Exporter/Library/metadata/43/438efd46088d408d8a53f707fa68d976
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/43/438efd46088d408d8a53f707fa68d976
rename to TMP Exporter/Library/metadata/43/438efd46088d408d8a53f707fa68d976
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/43/438efd46088d408d8a53f707fa68d976.info b/TMP Exporter/Library/metadata/43/438efd46088d408d8a53f707fa68d976.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/43/438efd46088d408d8a53f707fa68d976.info
rename to TMP Exporter/Library/metadata/43/438efd46088d408d8a53f707fa68d976.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/44/448aaa781aea44811a5d66e3edac37e4 b/TMP Exporter/Library/metadata/44/448aaa781aea44811a5d66e3edac37e4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/44/448aaa781aea44811a5d66e3edac37e4
rename to TMP Exporter/Library/metadata/44/448aaa781aea44811a5d66e3edac37e4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/44/448aaa781aea44811a5d66e3edac37e4.info b/TMP Exporter/Library/metadata/44/448aaa781aea44811a5d66e3edac37e4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/44/448aaa781aea44811a5d66e3edac37e4.info
rename to TMP Exporter/Library/metadata/44/448aaa781aea44811a5d66e3edac37e4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/44/44e1d646473a40178712cb2150f54cec b/TMP Exporter/Library/metadata/44/44e1d646473a40178712cb2150f54cec
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/44/44e1d646473a40178712cb2150f54cec
rename to TMP Exporter/Library/metadata/44/44e1d646473a40178712cb2150f54cec
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/44/44e1d646473a40178712cb2150f54cec.info b/TMP Exporter/Library/metadata/44/44e1d646473a40178712cb2150f54cec.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/44/44e1d646473a40178712cb2150f54cec.info
rename to TMP Exporter/Library/metadata/44/44e1d646473a40178712cb2150f54cec.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c b/TMP Exporter/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c
rename to TMP Exporter/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c.info b/TMP Exporter/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c.info
rename to TMP Exporter/Library/metadata/44/44f39a74ca5ee4bf5936b17e901f251c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/45/4506ac79f5b274cb1b249ed7f4abfb9a b/TMP Exporter/Library/metadata/45/4506ac79f5b274cb1b249ed7f4abfb9a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/45/4506ac79f5b274cb1b249ed7f4abfb9a
rename to TMP Exporter/Library/metadata/45/4506ac79f5b274cb1b249ed7f4abfb9a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/45/4506ac79f5b274cb1b249ed7f4abfb9a.info b/TMP Exporter/Library/metadata/45/4506ac79f5b274cb1b249ed7f4abfb9a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/45/4506ac79f5b274cb1b249ed7f4abfb9a.info
rename to TMP Exporter/Library/metadata/45/4506ac79f5b274cb1b249ed7f4abfb9a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85 b/TMP Exporter/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85
rename to TMP Exporter/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85.info b/TMP Exporter/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85.info
rename to TMP Exporter/Library/metadata/45/453f100e6bdae4dfd9e655927819dc85.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/46/46098a81a64a45c5b756320e10a22f13 b/TMP Exporter/Library/metadata/46/46098a81a64a45c5b756320e10a22f13
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/46/46098a81a64a45c5b756320e10a22f13
rename to TMP Exporter/Library/metadata/46/46098a81a64a45c5b756320e10a22f13
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/46/46098a81a64a45c5b756320e10a22f13.info b/TMP Exporter/Library/metadata/46/46098a81a64a45c5b756320e10a22f13.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/46/46098a81a64a45c5b756320e10a22f13.info
rename to TMP Exporter/Library/metadata/46/46098a81a64a45c5b756320e10a22f13.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585 b/TMP Exporter/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585
rename to TMP Exporter/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585.info b/TMP Exporter/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585.info
rename to TMP Exporter/Library/metadata/46/46c02d8d6499b4309ac1ec5d0b818585.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/47/470530e667ad4475786b28fa3187ce95 b/TMP Exporter/Library/metadata/47/470530e667ad4475786b28fa3187ce95
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/47/470530e667ad4475786b28fa3187ce95
rename to TMP Exporter/Library/metadata/47/470530e667ad4475786b28fa3187ce95
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/47/470530e667ad4475786b28fa3187ce95.info b/TMP Exporter/Library/metadata/47/470530e667ad4475786b28fa3187ce95.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/47/470530e667ad4475786b28fa3187ce95.info
rename to TMP Exporter/Library/metadata/47/470530e667ad4475786b28fa3187ce95.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/48/4878b89fe7c89ba45ae63781dfb2c1c7 b/TMP Exporter/Library/metadata/48/4878b89fe7c89ba45ae63781dfb2c1c7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/48/4878b89fe7c89ba45ae63781dfb2c1c7
rename to TMP Exporter/Library/metadata/48/4878b89fe7c89ba45ae63781dfb2c1c7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/48/4878b89fe7c89ba45ae63781dfb2c1c7.info b/TMP Exporter/Library/metadata/48/4878b89fe7c89ba45ae63781dfb2c1c7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/48/4878b89fe7c89ba45ae63781dfb2c1c7.info
rename to TMP Exporter/Library/metadata/48/4878b89fe7c89ba45ae63781dfb2c1c7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6 b/TMP Exporter/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6
rename to TMP Exporter/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6.info b/TMP Exporter/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6.info
rename to TMP Exporter/Library/metadata/48/48986928cc2a449dbaecdd1654bc9bf6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8 b/TMP Exporter/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8
rename to TMP Exporter/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8.info b/TMP Exporter/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8.info
rename to TMP Exporter/Library/metadata/48/48b10b41f58d5b49717f376cda59eeb8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/48/48bb5f55d8670e349b6e614913f9d910 b/TMP Exporter/Library/metadata/48/48bb5f55d8670e349b6e614913f9d910
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/48/48bb5f55d8670e349b6e614913f9d910
rename to TMP Exporter/Library/metadata/48/48bb5f55d8670e349b6e614913f9d910
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/48/48bb5f55d8670e349b6e614913f9d910.info b/TMP Exporter/Library/metadata/48/48bb5f55d8670e349b6e614913f9d910.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/48/48bb5f55d8670e349b6e614913f9d910.info
rename to TMP Exporter/Library/metadata/48/48bb5f55d8670e349b6e614913f9d910.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/48/48d034c499ee4697af9dd6e327110249 b/TMP Exporter/Library/metadata/48/48d034c499ee4697af9dd6e327110249
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/48/48d034c499ee4697af9dd6e327110249
rename to TMP Exporter/Library/metadata/48/48d034c499ee4697af9dd6e327110249
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/48/48d034c499ee4697af9dd6e327110249.info b/TMP Exporter/Library/metadata/48/48d034c499ee4697af9dd6e327110249.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/48/48d034c499ee4697af9dd6e327110249.info
rename to TMP Exporter/Library/metadata/48/48d034c499ee4697af9dd6e327110249.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70 b/TMP Exporter/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70
rename to TMP Exporter/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70.info b/TMP Exporter/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70.info
rename to TMP Exporter/Library/metadata/49/490fe93dbc954e3ba3651b7f55eaba70.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/49/49679f302ac6408697f6b9314a38985c b/TMP Exporter/Library/metadata/49/49679f302ac6408697f6b9314a38985c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/49/49679f302ac6408697f6b9314a38985c
rename to TMP Exporter/Library/metadata/49/49679f302ac6408697f6b9314a38985c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/49/49679f302ac6408697f6b9314a38985c.info b/TMP Exporter/Library/metadata/49/49679f302ac6408697f6b9314a38985c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/49/49679f302ac6408697f6b9314a38985c.info
rename to TMP Exporter/Library/metadata/49/49679f302ac6408697f6b9314a38985c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70 b/TMP Exporter/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70
rename to TMP Exporter/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70.info b/TMP Exporter/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70.info
rename to TMP Exporter/Library/metadata/4a/4a3ecb1425d14502837abea459cf2b70.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db b/TMP Exporter/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db
rename to TMP Exporter/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db.info b/TMP Exporter/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db.info
rename to TMP Exporter/Library/metadata/4a/4ae64f3f72004807a9f919f9c27af0db.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4a/4aecb92fff08436c8303b10eab8da368 b/TMP Exporter/Library/metadata/4a/4aecb92fff08436c8303b10eab8da368
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4a/4aecb92fff08436c8303b10eab8da368
rename to TMP Exporter/Library/metadata/4a/4aecb92fff08436c8303b10eab8da368
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4a/4aecb92fff08436c8303b10eab8da368.info b/TMP Exporter/Library/metadata/4a/4aecb92fff08436c8303b10eab8da368.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4a/4aecb92fff08436c8303b10eab8da368.info
rename to TMP Exporter/Library/metadata/4a/4aecb92fff08436c8303b10eab8da368.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8 b/TMP Exporter/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8
rename to TMP Exporter/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8.info b/TMP Exporter/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8.info
rename to TMP Exporter/Library/metadata/4b/4b3fa4bde7f1451a8218c03ee6a8ded8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4b/4b518b37798c97b0f860962cbf615533 b/TMP Exporter/Library/metadata/4b/4b518b37798c97b0f860962cbf615533
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4b/4b518b37798c97b0f860962cbf615533
rename to TMP Exporter/Library/metadata/4b/4b518b37798c97b0f860962cbf615533
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4b/4b518b37798c97b0f860962cbf615533.info b/TMP Exporter/Library/metadata/4b/4b518b37798c97b0f860962cbf615533.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4b/4b518b37798c97b0f860962cbf615533.info
rename to TMP Exporter/Library/metadata/4b/4b518b37798c97b0f860962cbf615533.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f b/TMP Exporter/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f
rename to TMP Exporter/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f.info b/TMP Exporter/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f.info
rename to TMP Exporter/Library/metadata/4b/4ba2329b63d54f0187bcaa12486b1b0f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4c/4c433abcdb28444ebb7bd395ba5c76fc b/TMP Exporter/Library/metadata/4c/4c433abcdb28444ebb7bd395ba5c76fc
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4c/4c433abcdb28444ebb7bd395ba5c76fc
rename to TMP Exporter/Library/metadata/4c/4c433abcdb28444ebb7bd395ba5c76fc
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4c/4c433abcdb28444ebb7bd395ba5c76fc.info b/TMP Exporter/Library/metadata/4c/4c433abcdb28444ebb7bd395ba5c76fc.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4c/4c433abcdb28444ebb7bd395ba5c76fc.info
rename to TMP Exporter/Library/metadata/4c/4c433abcdb28444ebb7bd395ba5c76fc.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209 b/TMP Exporter/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209
rename to TMP Exporter/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209.info b/TMP Exporter/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209.info
rename to TMP Exporter/Library/metadata/4c/4c6fe94acbb24417c988bab18cbd5209.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6 b/TMP Exporter/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6
rename to TMP Exporter/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6.info b/TMP Exporter/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6.info
rename to TMP Exporter/Library/metadata/4d/4dfd3f5da88944ec6ac5977d676c30c6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe b/TMP Exporter/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe
rename to TMP Exporter/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe.info b/TMP Exporter/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe.info
rename to TMP Exporter/Library/metadata/4e/4e830e2dbc3315b4b97cd5311a54e4fe.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc b/TMP Exporter/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc
rename to TMP Exporter/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc.info b/TMP Exporter/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc.info
rename to TMP Exporter/Library/metadata/4f/4f0ca6874aa74540bb3d4fe5a0f86bcc.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2 b/TMP Exporter/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2
rename to TMP Exporter/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2.info b/TMP Exporter/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2.info
rename to TMP Exporter/Library/metadata/4f/4f0f9b9f3ed97ad2b9ba8f1a8e4666c2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2 b/TMP Exporter/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2
rename to TMP Exporter/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2.info b/TMP Exporter/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2.info
rename to TMP Exporter/Library/metadata/4f/4f234578336894dc081edf696f2ff5f2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f5362359d4548b44a34a45f19efb4bf b/TMP Exporter/Library/metadata/4f/4f5362359d4548b44a34a45f19efb4bf
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f5362359d4548b44a34a45f19efb4bf
rename to TMP Exporter/Library/metadata/4f/4f5362359d4548b44a34a45f19efb4bf
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f5362359d4548b44a34a45f19efb4bf.info b/TMP Exporter/Library/metadata/4f/4f5362359d4548b44a34a45f19efb4bf.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f5362359d4548b44a34a45f19efb4bf.info
rename to TMP Exporter/Library/metadata/4f/4f5362359d4548b44a34a45f19efb4bf.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379 b/TMP Exporter/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379
rename to TMP Exporter/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379.info b/TMP Exporter/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379.info
rename to TMP Exporter/Library/metadata/4f/4f768b64e6c37495699fffe3007e4379.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5 b/TMP Exporter/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5
rename to TMP Exporter/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5.info b/TMP Exporter/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5.info
rename to TMP Exporter/Library/metadata/4f/4fc12201ddc4b4d45b9bdecdf7f00ea5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e b/TMP Exporter/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e
rename to TMP Exporter/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e.info b/TMP Exporter/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e.info
rename to TMP Exporter/Library/metadata/50/5075cb5aa3254b099b11b2840d7cd46e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/50/50de529b6a28f4a7093045e08810a5df b/TMP Exporter/Library/metadata/50/50de529b6a28f4a7093045e08810a5df
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/50/50de529b6a28f4a7093045e08810a5df
rename to TMP Exporter/Library/metadata/50/50de529b6a28f4a7093045e08810a5df
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/50/50de529b6a28f4a7093045e08810a5df.info b/TMP Exporter/Library/metadata/50/50de529b6a28f4a7093045e08810a5df.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/50/50de529b6a28f4a7093045e08810a5df.info
rename to TMP Exporter/Library/metadata/50/50de529b6a28f4a7093045e08810a5df.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0 b/TMP Exporter/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0
rename to TMP Exporter/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0.info b/TMP Exporter/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0.info
rename to TMP Exporter/Library/metadata/51/510d1d319d2754ea4a47c6dd8c421ea0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/51/512a49d95c0c4332bdd98131869c23c9 b/TMP Exporter/Library/metadata/51/512a49d95c0c4332bdd98131869c23c9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/51/512a49d95c0c4332bdd98131869c23c9
rename to TMP Exporter/Library/metadata/51/512a49d95c0c4332bdd98131869c23c9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/51/512a49d95c0c4332bdd98131869c23c9.info b/TMP Exporter/Library/metadata/51/512a49d95c0c4332bdd98131869c23c9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/51/512a49d95c0c4332bdd98131869c23c9.info
rename to TMP Exporter/Library/metadata/51/512a49d95c0c4332bdd98131869c23c9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd b/TMP Exporter/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd
rename to TMP Exporter/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd.info b/TMP Exporter/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd.info
rename to TMP Exporter/Library/metadata/51/5143f58107604835ab1a5efa2d8818fd.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e b/TMP Exporter/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e
rename to TMP Exporter/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e.info b/TMP Exporter/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e.info
rename to TMP Exporter/Library/metadata/51/515638b803bef8599dbd6d5c8bdaa53e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/53/536c0048c80e8407084e29942e15685b b/TMP Exporter/Library/metadata/53/536c0048c80e8407084e29942e15685b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/53/536c0048c80e8407084e29942e15685b
rename to TMP Exporter/Library/metadata/53/536c0048c80e8407084e29942e15685b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/53/536c0048c80e8407084e29942e15685b.info b/TMP Exporter/Library/metadata/53/536c0048c80e8407084e29942e15685b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/53/536c0048c80e8407084e29942e15685b.info
rename to TMP Exporter/Library/metadata/53/536c0048c80e8407084e29942e15685b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1 b/TMP Exporter/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1
rename to TMP Exporter/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1.info b/TMP Exporter/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1.info
rename to TMP Exporter/Library/metadata/53/53ebcfaa2e1e4e2dbc85882cd5a73fa1.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4 b/TMP Exporter/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4
rename to TMP Exporter/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4.info b/TMP Exporter/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4.info
rename to TMP Exporter/Library/metadata/54/5469ef0820152a4ae45d400fdc4626e4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0 b/TMP Exporter/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0
rename to TMP Exporter/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0.info b/TMP Exporter/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0.info
rename to TMP Exporter/Library/metadata/54/54d21f6ece3b46479f0c328f8c6007e0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5 b/TMP Exporter/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5
rename to TMP Exporter/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5.info b/TMP Exporter/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5.info
rename to TMP Exporter/Library/metadata/54/54e5fc61925bc4ca3b2c1e82dfb35eb5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/56/566f8bae715954c65a2a7a4b5818fc7a b/TMP Exporter/Library/metadata/56/566f8bae715954c65a2a7a4b5818fc7a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/56/566f8bae715954c65a2a7a4b5818fc7a
rename to TMP Exporter/Library/metadata/56/566f8bae715954c65a2a7a4b5818fc7a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/56/566f8bae715954c65a2a7a4b5818fc7a.info b/TMP Exporter/Library/metadata/56/566f8bae715954c65a2a7a4b5818fc7a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/56/566f8bae715954c65a2a7a4b5818fc7a.info
rename to TMP Exporter/Library/metadata/56/566f8bae715954c65a2a7a4b5818fc7a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/57/57b0c806ba25b48aa8a6ecb3345a4a9b b/TMP Exporter/Library/metadata/57/57b0c806ba25b48aa8a6ecb3345a4a9b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/57/57b0c806ba25b48aa8a6ecb3345a4a9b
rename to TMP Exporter/Library/metadata/57/57b0c806ba25b48aa8a6ecb3345a4a9b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/57/57b0c806ba25b48aa8a6ecb3345a4a9b.info b/TMP Exporter/Library/metadata/57/57b0c806ba25b48aa8a6ecb3345a4a9b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/57/57b0c806ba25b48aa8a6ecb3345a4a9b.info
rename to TMP Exporter/Library/metadata/57/57b0c806ba25b48aa8a6ecb3345a4a9b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/58/585b70cb75dd43efbfead809c30a1731 b/TMP Exporter/Library/metadata/58/585b70cb75dd43efbfead809c30a1731
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/58/585b70cb75dd43efbfead809c30a1731
rename to TMP Exporter/Library/metadata/58/585b70cb75dd43efbfead809c30a1731
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/58/585b70cb75dd43efbfead809c30a1731.info b/TMP Exporter/Library/metadata/58/585b70cb75dd43efbfead809c30a1731.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/58/585b70cb75dd43efbfead809c30a1731.info
rename to TMP Exporter/Library/metadata/58/585b70cb75dd43efbfead809c30a1731.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/58/589b3ddef1e4d44cea68e0144bd95434 b/TMP Exporter/Library/metadata/58/589b3ddef1e4d44cea68e0144bd95434
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/58/589b3ddef1e4d44cea68e0144bd95434
rename to TMP Exporter/Library/metadata/58/589b3ddef1e4d44cea68e0144bd95434
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/58/589b3ddef1e4d44cea68e0144bd95434.info b/TMP Exporter/Library/metadata/58/589b3ddef1e4d44cea68e0144bd95434.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/58/589b3ddef1e4d44cea68e0144bd95434.info
rename to TMP Exporter/Library/metadata/58/589b3ddef1e4d44cea68e0144bd95434.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023 b/TMP Exporter/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023
rename to TMP Exporter/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023.info b/TMP Exporter/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023.info
rename to TMP Exporter/Library/metadata/59/592f7288ed0df2c4b884e2cd9baac023.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15 b/TMP Exporter/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15
rename to TMP Exporter/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15.info b/TMP Exporter/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15.info
rename to TMP Exporter/Library/metadata/59/5941c79cb78c34a0d9c677ece9784f15.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/59/599a5fd92bab81a4ab02e52d0b1b1c60 b/TMP Exporter/Library/metadata/59/599a5fd92bab81a4ab02e52d0b1b1c60
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/59/599a5fd92bab81a4ab02e52d0b1b1c60
rename to TMP Exporter/Library/metadata/59/599a5fd92bab81a4ab02e52d0b1b1c60
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/59/599a5fd92bab81a4ab02e52d0b1b1c60.info b/TMP Exporter/Library/metadata/59/599a5fd92bab81a4ab02e52d0b1b1c60.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/59/599a5fd92bab81a4ab02e52d0b1b1c60.info
rename to TMP Exporter/Library/metadata/59/599a5fd92bab81a4ab02e52d0b1b1c60.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5a/5afb9687033af4bca957216add3fe854 b/TMP Exporter/Library/metadata/5a/5afb9687033af4bca957216add3fe854
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5a/5afb9687033af4bca957216add3fe854
rename to TMP Exporter/Library/metadata/5a/5afb9687033af4bca957216add3fe854
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5a/5afb9687033af4bca957216add3fe854.info b/TMP Exporter/Library/metadata/5a/5afb9687033af4bca957216add3fe854.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5a/5afb9687033af4bca957216add3fe854.info
rename to TMP Exporter/Library/metadata/5a/5afb9687033af4bca957216add3fe854.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e b/TMP Exporter/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e
rename to TMP Exporter/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e.info b/TMP Exporter/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e.info
rename to TMP Exporter/Library/metadata/5c/5c38c5679d98faa4ae7df9fae0a8226e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e2f19162b0217a48b20c0a1a3b5af4f b/TMP Exporter/Library/metadata/5e/5e2f19162b0217a48b20c0a1a3b5af4f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e2f19162b0217a48b20c0a1a3b5af4f
rename to TMP Exporter/Library/metadata/5e/5e2f19162b0217a48b20c0a1a3b5af4f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e2f19162b0217a48b20c0a1a3b5af4f.info b/TMP Exporter/Library/metadata/5e/5e2f19162b0217a48b20c0a1a3b5af4f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e2f19162b0217a48b20c0a1a3b5af4f.info
rename to TMP Exporter/Library/metadata/5e/5e2f19162b0217a48b20c0a1a3b5af4f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164 b/TMP Exporter/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164
rename to TMP Exporter/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164.info b/TMP Exporter/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164.info
rename to TMP Exporter/Library/metadata/5e/5e57a6c62c1ec47d0bceb70495845164.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e7a49a6952af4d4ab2c3b038be68141 b/TMP Exporter/Library/metadata/5e/5e7a49a6952af4d4ab2c3b038be68141
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e7a49a6952af4d4ab2c3b038be68141
rename to TMP Exporter/Library/metadata/5e/5e7a49a6952af4d4ab2c3b038be68141
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e7a49a6952af4d4ab2c3b038be68141.info b/TMP Exporter/Library/metadata/5e/5e7a49a6952af4d4ab2c3b038be68141.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e7a49a6952af4d4ab2c3b038be68141.info
rename to TMP Exporter/Library/metadata/5e/5e7a49a6952af4d4ab2c3b038be68141.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d b/TMP Exporter/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d
rename to TMP Exporter/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d.info b/TMP Exporter/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d.info
rename to TMP Exporter/Library/metadata/5e/5e7c9ab97e5884e4eaa5967e9024f39d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9 b/TMP Exporter/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9
rename to TMP Exporter/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9.info b/TMP Exporter/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9.info
rename to TMP Exporter/Library/metadata/5e/5ec95f4d5b2d1f14e9ff8682562553f9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7 b/TMP Exporter/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7
rename to TMP Exporter/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7.info b/TMP Exporter/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7.info
rename to TMP Exporter/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45 b/TMP Exporter/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45
rename to TMP Exporter/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45.info b/TMP Exporter/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45.info
rename to TMP Exporter/Library/metadata/5f/5fc988a1d5b04aee9a5222502b201a45.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5f/5ffd2adf615994485991e37bacbf735c b/TMP Exporter/Library/metadata/5f/5ffd2adf615994485991e37bacbf735c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5f/5ffd2adf615994485991e37bacbf735c
rename to TMP Exporter/Library/metadata/5f/5ffd2adf615994485991e37bacbf735c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/5f/5ffd2adf615994485991e37bacbf735c.info b/TMP Exporter/Library/metadata/5f/5ffd2adf615994485991e37bacbf735c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/5f/5ffd2adf615994485991e37bacbf735c.info
rename to TMP Exporter/Library/metadata/5f/5ffd2adf615994485991e37bacbf735c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f b/TMP Exporter/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f
rename to TMP Exporter/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f.info b/TMP Exporter/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f.info
rename to TMP Exporter/Library/metadata/60/6055be8ebefd69e48b49212b09b47b2f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/61/6103dc4b11aaa1e4381c9308ba9b2439 b/TMP Exporter/Library/metadata/61/6103dc4b11aaa1e4381c9308ba9b2439
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/61/6103dc4b11aaa1e4381c9308ba9b2439
rename to TMP Exporter/Library/metadata/61/6103dc4b11aaa1e4381c9308ba9b2439
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/61/6103dc4b11aaa1e4381c9308ba9b2439.info b/TMP Exporter/Library/metadata/61/6103dc4b11aaa1e4381c9308ba9b2439.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/61/6103dc4b11aaa1e4381c9308ba9b2439.info
rename to TMP Exporter/Library/metadata/61/6103dc4b11aaa1e4381c9308ba9b2439.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/61/617202f4e2bed4ef8acccfd6c1ecd6fa b/TMP Exporter/Library/metadata/61/617202f4e2bed4ef8acccfd6c1ecd6fa
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/61/617202f4e2bed4ef8acccfd6c1ecd6fa
rename to TMP Exporter/Library/metadata/61/617202f4e2bed4ef8acccfd6c1ecd6fa
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/61/617202f4e2bed4ef8acccfd6c1ecd6fa.info b/TMP Exporter/Library/metadata/61/617202f4e2bed4ef8acccfd6c1ecd6fa.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/61/617202f4e2bed4ef8acccfd6c1ecd6fa.info
rename to TMP Exporter/Library/metadata/61/617202f4e2bed4ef8acccfd6c1ecd6fa.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1 b/TMP Exporter/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1
rename to TMP Exporter/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1.info b/TMP Exporter/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1.info
rename to TMP Exporter/Library/metadata/61/61d72cb49da3040d5ade3edfd6eccfc1.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f b/TMP Exporter/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f
rename to TMP Exporter/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f.info b/TMP Exporter/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f.info
rename to TMP Exporter/Library/metadata/62/62772aad98ed04f0d955b7d20de61f7f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0 b/TMP Exporter/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0
rename to TMP Exporter/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0.info b/TMP Exporter/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0.info
rename to TMP Exporter/Library/metadata/62/6277a751c6c9f46359fc7004b3ee12f0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c b/TMP Exporter/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c
rename to TMP Exporter/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c.info b/TMP Exporter/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c.info
rename to TMP Exporter/Library/metadata/62/62a7573e463b4f68b578fcba3a94110c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/63/6366ee97f6b541449155028b9487355a b/TMP Exporter/Library/metadata/63/6366ee97f6b541449155028b9487355a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/63/6366ee97f6b541449155028b9487355a
rename to TMP Exporter/Library/metadata/63/6366ee97f6b541449155028b9487355a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/63/6366ee97f6b541449155028b9487355a.info b/TMP Exporter/Library/metadata/63/6366ee97f6b541449155028b9487355a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/63/6366ee97f6b541449155028b9487355a.info
rename to TMP Exporter/Library/metadata/63/6366ee97f6b541449155028b9487355a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/63/63e8a6023745e4347bb661e87a9be1d9 b/TMP Exporter/Library/metadata/63/63e8a6023745e4347bb661e87a9be1d9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/63/63e8a6023745e4347bb661e87a9be1d9
rename to TMP Exporter/Library/metadata/63/63e8a6023745e4347bb661e87a9be1d9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/63/63e8a6023745e4347bb661e87a9be1d9.info b/TMP Exporter/Library/metadata/63/63e8a6023745e4347bb661e87a9be1d9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/63/63e8a6023745e4347bb661e87a9be1d9.info
rename to TMP Exporter/Library/metadata/63/63e8a6023745e4347bb661e87a9be1d9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/64/645165c8169474bfbbeb8fb0bcfd26f5 b/TMP Exporter/Library/metadata/64/645165c8169474bfbbeb8fb0bcfd26f5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/64/645165c8169474bfbbeb8fb0bcfd26f5
rename to TMP Exporter/Library/metadata/64/645165c8169474bfbbeb8fb0bcfd26f5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/64/645165c8169474bfbbeb8fb0bcfd26f5.info b/TMP Exporter/Library/metadata/64/645165c8169474bfbbeb8fb0bcfd26f5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/64/645165c8169474bfbbeb8fb0bcfd26f5.info
rename to TMP Exporter/Library/metadata/64/645165c8169474bfbbeb8fb0bcfd26f5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c b/TMP Exporter/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c
rename to TMP Exporter/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c.info b/TMP Exporter/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c.info
rename to TMP Exporter/Library/metadata/64/64b9fad609434c489c32b1cdf2004a1c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f b/TMP Exporter/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f
rename to TMP Exporter/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f.info b/TMP Exporter/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f.info
rename to TMP Exporter/Library/metadata/65/650ea1d167b834d0f86d94e1e8c3b80f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/6546d7765b4165b40850b3667f981c26 b/TMP Exporter/Library/metadata/65/6546d7765b4165b40850b3667f981c26
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/6546d7765b4165b40850b3667f981c26
rename to TMP Exporter/Library/metadata/65/6546d7765b4165b40850b3667f981c26
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/6546d7765b4165b40850b3667f981c26.info b/TMP Exporter/Library/metadata/65/6546d7765b4165b40850b3667f981c26.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/6546d7765b4165b40850b3667f981c26.info
rename to TMP Exporter/Library/metadata/65/6546d7765b4165b40850b3667f981c26.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/656e461844099ae43a609ff6109b0877 b/TMP Exporter/Library/metadata/65/656e461844099ae43a609ff6109b0877
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/656e461844099ae43a609ff6109b0877
rename to TMP Exporter/Library/metadata/65/656e461844099ae43a609ff6109b0877
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/656e461844099ae43a609ff6109b0877.info b/TMP Exporter/Library/metadata/65/656e461844099ae43a609ff6109b0877.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/656e461844099ae43a609ff6109b0877.info
rename to TMP Exporter/Library/metadata/65/656e461844099ae43a609ff6109b0877.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0 b/TMP Exporter/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0
rename to TMP Exporter/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0.info b/TMP Exporter/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0.info
rename to TMP Exporter/Library/metadata/65/658c1fb149e7498aa072b0c0f3bf13f0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/6597c6ea86d36477081342001145d8d9 b/TMP Exporter/Library/metadata/65/6597c6ea86d36477081342001145d8d9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/6597c6ea86d36477081342001145d8d9
rename to TMP Exporter/Library/metadata/65/6597c6ea86d36477081342001145d8d9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/6597c6ea86d36477081342001145d8d9.info b/TMP Exporter/Library/metadata/65/6597c6ea86d36477081342001145d8d9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/6597c6ea86d36477081342001145d8d9.info
rename to TMP Exporter/Library/metadata/65/6597c6ea86d36477081342001145d8d9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b b/TMP Exporter/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b
rename to TMP Exporter/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b.info b/TMP Exporter/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b.info
rename to TMP Exporter/Library/metadata/65/65d58d50c3db54f979b1ffae3777d74b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88 b/TMP Exporter/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88
rename to TMP Exporter/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88.info b/TMP Exporter/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88.info
rename to TMP Exporter/Library/metadata/66/66083b7f6dc2e433eae33f3244b2ce88.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/66/669717f3193a457b9bad9665ebcae836 b/TMP Exporter/Library/metadata/66/669717f3193a457b9bad9665ebcae836
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/66/669717f3193a457b9bad9665ebcae836
rename to TMP Exporter/Library/metadata/66/669717f3193a457b9bad9665ebcae836
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/66/669717f3193a457b9bad9665ebcae836.info b/TMP Exporter/Library/metadata/66/669717f3193a457b9bad9665ebcae836.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/66/669717f3193a457b9bad9665ebcae836.info
rename to TMP Exporter/Library/metadata/66/669717f3193a457b9bad9665ebcae836.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/68/68e6db2ebdc24f95958faec2be5558d6 b/TMP Exporter/Library/metadata/68/68e6db2ebdc24f95958faec2be5558d6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/68/68e6db2ebdc24f95958faec2be5558d6
rename to TMP Exporter/Library/metadata/68/68e6db2ebdc24f95958faec2be5558d6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/68/68e6db2ebdc24f95958faec2be5558d6.info b/TMP Exporter/Library/metadata/68/68e6db2ebdc24f95958faec2be5558d6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/68/68e6db2ebdc24f95958faec2be5558d6.info
rename to TMP Exporter/Library/metadata/68/68e6db2ebdc24f95958faec2be5558d6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe b/TMP Exporter/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe
rename to TMP Exporter/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe.info b/TMP Exporter/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe.info
rename to TMP Exporter/Library/metadata/68/68eedd4e5b33b37429c02c4add0036fe.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/69/691475c57a824010be0c6f474caeb7e1 b/TMP Exporter/Library/metadata/69/691475c57a824010be0c6f474caeb7e1
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/69/691475c57a824010be0c6f474caeb7e1
rename to TMP Exporter/Library/metadata/69/691475c57a824010be0c6f474caeb7e1
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/69/691475c57a824010be0c6f474caeb7e1.info b/TMP Exporter/Library/metadata/69/691475c57a824010be0c6f474caeb7e1.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/69/691475c57a824010be0c6f474caeb7e1.info
rename to TMP Exporter/Library/metadata/69/691475c57a824010be0c6f474caeb7e1.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/69/691db8cb70c4426a8ae718465c21345f b/TMP Exporter/Library/metadata/69/691db8cb70c4426a8ae718465c21345f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/69/691db8cb70c4426a8ae718465c21345f
rename to TMP Exporter/Library/metadata/69/691db8cb70c4426a8ae718465c21345f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/69/691db8cb70c4426a8ae718465c21345f.info b/TMP Exporter/Library/metadata/69/691db8cb70c4426a8ae718465c21345f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/69/691db8cb70c4426a8ae718465c21345f.info
rename to TMP Exporter/Library/metadata/69/691db8cb70c4426a8ae718465c21345f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5 b/TMP Exporter/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5
rename to TMP Exporter/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5.info b/TMP Exporter/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5.info
rename to TMP Exporter/Library/metadata/6a/6a10b2909283487f913b00d94cd3faf5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d b/TMP Exporter/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d
rename to TMP Exporter/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d.info b/TMP Exporter/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d.info
rename to TMP Exporter/Library/metadata/6a/6ace62d30f494c948b71d5594afce11d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832 b/TMP Exporter/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832
rename to TMP Exporter/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832.info b/TMP Exporter/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832.info
rename to TMP Exporter/Library/metadata/6a/6afb166a156df2d20433d981f4bb2832.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040 b/TMP Exporter/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040
rename to TMP Exporter/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040.info b/TMP Exporter/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040.info
rename to TMP Exporter/Library/metadata/6b/6b01141ed8f74d198965c86f25eb7040.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6b/6b1ae1e78552c459d9ce27048ff51c7f b/TMP Exporter/Library/metadata/6b/6b1ae1e78552c459d9ce27048ff51c7f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6b/6b1ae1e78552c459d9ce27048ff51c7f
rename to TMP Exporter/Library/metadata/6b/6b1ae1e78552c459d9ce27048ff51c7f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6b/6b1ae1e78552c459d9ce27048ff51c7f.info b/TMP Exporter/Library/metadata/6b/6b1ae1e78552c459d9ce27048ff51c7f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6b/6b1ae1e78552c459d9ce27048ff51c7f.info
rename to TMP Exporter/Library/metadata/6b/6b1ae1e78552c459d9ce27048ff51c7f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b b/TMP Exporter/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b
rename to TMP Exporter/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b.info b/TMP Exporter/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b.info
rename to TMP Exporter/Library/metadata/6d/6d437b997e074079b4b2f6e395394f4b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f b/TMP Exporter/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f
rename to TMP Exporter/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f.info b/TMP Exporter/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f.info
rename to TMP Exporter/Library/metadata/6d/6d56244f8c39a851975d3c0bd432c66f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9 b/TMP Exporter/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9
rename to TMP Exporter/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9.info b/TMP Exporter/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9.info
rename to TMP Exporter/Library/metadata/6d/6d6f82a762acb4417b895d3babc790f9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d9df2bc198c417db00037803568139c b/TMP Exporter/Library/metadata/6d/6d9df2bc198c417db00037803568139c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d9df2bc198c417db00037803568139c
rename to TMP Exporter/Library/metadata/6d/6d9df2bc198c417db00037803568139c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d9df2bc198c417db00037803568139c.info b/TMP Exporter/Library/metadata/6d/6d9df2bc198c417db00037803568139c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6d9df2bc198c417db00037803568139c.info
rename to TMP Exporter/Library/metadata/6d/6d9df2bc198c417db00037803568139c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6dbcf248c987476181a37f01a1814975 b/TMP Exporter/Library/metadata/6d/6dbcf248c987476181a37f01a1814975
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6dbcf248c987476181a37f01a1814975
rename to TMP Exporter/Library/metadata/6d/6dbcf248c987476181a37f01a1814975
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6dbcf248c987476181a37f01a1814975.info b/TMP Exporter/Library/metadata/6d/6dbcf248c987476181a37f01a1814975.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6dbcf248c987476181a37f01a1814975.info
rename to TMP Exporter/Library/metadata/6d/6dbcf248c987476181a37f01a1814975.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6df24e558a93dae469edc38400e14d0b b/TMP Exporter/Library/metadata/6d/6df24e558a93dae469edc38400e14d0b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6df24e558a93dae469edc38400e14d0b
rename to TMP Exporter/Library/metadata/6d/6df24e558a93dae469edc38400e14d0b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6d/6df24e558a93dae469edc38400e14d0b.info b/TMP Exporter/Library/metadata/6d/6df24e558a93dae469edc38400e14d0b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6d/6df24e558a93dae469edc38400e14d0b.info
rename to TMP Exporter/Library/metadata/6d/6df24e558a93dae469edc38400e14d0b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558 b/TMP Exporter/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558
rename to TMP Exporter/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558.info b/TMP Exporter/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558.info
rename to TMP Exporter/Library/metadata/6e/6e1c8b97ec8aa0464e92506ffe099558.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442 b/TMP Exporter/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442
rename to TMP Exporter/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442.info b/TMP Exporter/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442.info
rename to TMP Exporter/Library/metadata/6e/6e2d432c5ea14e75aa3a79f90f704442.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441 b/TMP Exporter/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441
rename to TMP Exporter/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441.info b/TMP Exporter/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441.info
rename to TMP Exporter/Library/metadata/6e/6e7c8cfeedae74eb3a562055e069e441.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba b/TMP Exporter/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba
rename to TMP Exporter/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba.info b/TMP Exporter/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba.info
rename to TMP Exporter/Library/metadata/6f/6f1c7ebc8ac78cb951be24c238cbd3ba.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6f/6f516f1ec21a54a59a92bf99db2d9535 b/TMP Exporter/Library/metadata/6f/6f516f1ec21a54a59a92bf99db2d9535
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6f/6f516f1ec21a54a59a92bf99db2d9535
rename to TMP Exporter/Library/metadata/6f/6f516f1ec21a54a59a92bf99db2d9535
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6f/6f516f1ec21a54a59a92bf99db2d9535.info b/TMP Exporter/Library/metadata/6f/6f516f1ec21a54a59a92bf99db2d9535.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6f/6f516f1ec21a54a59a92bf99db2d9535.info
rename to TMP Exporter/Library/metadata/6f/6f516f1ec21a54a59a92bf99db2d9535.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb b/TMP Exporter/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb
rename to TMP Exporter/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb.info b/TMP Exporter/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb.info
rename to TMP Exporter/Library/metadata/6f/6fdea2af3daa40fe8f88e5e9cfc17abb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fe47cb67655cdc488777351f11616a7 b/TMP Exporter/Library/metadata/6f/6fe47cb67655cdc488777351f11616a7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fe47cb67655cdc488777351f11616a7
rename to TMP Exporter/Library/metadata/6f/6fe47cb67655cdc488777351f11616a7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fe47cb67655cdc488777351f11616a7.info b/TMP Exporter/Library/metadata/6f/6fe47cb67655cdc488777351f11616a7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fe47cb67655cdc488777351f11616a7.info
rename to TMP Exporter/Library/metadata/6f/6fe47cb67655cdc488777351f11616a7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9 b/TMP Exporter/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9
rename to TMP Exporter/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9.info b/TMP Exporter/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9.info
rename to TMP Exporter/Library/metadata/6f/6fe576b47d8b47688ec5d02bccd15cf9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/70/7065397ff8184621aa3ca4f854491259 b/TMP Exporter/Library/metadata/70/7065397ff8184621aa3ca4f854491259
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/70/7065397ff8184621aa3ca4f854491259
rename to TMP Exporter/Library/metadata/70/7065397ff8184621aa3ca4f854491259
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/70/7065397ff8184621aa3ca4f854491259.info b/TMP Exporter/Library/metadata/70/7065397ff8184621aa3ca4f854491259.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/70/7065397ff8184621aa3ca4f854491259.info
rename to TMP Exporter/Library/metadata/70/7065397ff8184621aa3ca4f854491259.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/70/70d4d75a2877243758b0750cbc75b6eb b/TMP Exporter/Library/metadata/70/70d4d75a2877243758b0750cbc75b6eb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/70/70d4d75a2877243758b0750cbc75b6eb
rename to TMP Exporter/Library/metadata/70/70d4d75a2877243758b0750cbc75b6eb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/70/70d4d75a2877243758b0750cbc75b6eb.info b/TMP Exporter/Library/metadata/70/70d4d75a2877243758b0750cbc75b6eb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/70/70d4d75a2877243758b0750cbc75b6eb.info
rename to TMP Exporter/Library/metadata/70/70d4d75a2877243758b0750cbc75b6eb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/71/71b11355001648444b41d17fd36c150d b/TMP Exporter/Library/metadata/71/71b11355001648444b41d17fd36c150d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/71/71b11355001648444b41d17fd36c150d
rename to TMP Exporter/Library/metadata/71/71b11355001648444b41d17fd36c150d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/71/71b11355001648444b41d17fd36c150d.info b/TMP Exporter/Library/metadata/71/71b11355001648444b41d17fd36c150d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/71/71b11355001648444b41d17fd36c150d.info
rename to TMP Exporter/Library/metadata/71/71b11355001648444b41d17fd36c150d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04 b/TMP Exporter/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04
rename to TMP Exporter/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04.info b/TMP Exporter/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04.info
rename to TMP Exporter/Library/metadata/71/71c1514a6bd24e1e882cebbe1904ce04.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363 b/TMP Exporter/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363
rename to TMP Exporter/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363.info b/TMP Exporter/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363.info
rename to TMP Exporter/Library/metadata/72/7241c7dc25374fc1a6ab3ef9da79c363.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/73/731f1baa9d144a9897cb1d341c2092b8 b/TMP Exporter/Library/metadata/73/731f1baa9d144a9897cb1d341c2092b8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/73/731f1baa9d144a9897cb1d341c2092b8
rename to TMP Exporter/Library/metadata/73/731f1baa9d144a9897cb1d341c2092b8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/73/731f1baa9d144a9897cb1d341c2092b8.info b/TMP Exporter/Library/metadata/73/731f1baa9d144a9897cb1d341c2092b8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/73/731f1baa9d144a9897cb1d341c2092b8.info
rename to TMP Exporter/Library/metadata/73/731f1baa9d144a9897cb1d341c2092b8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/75/75938f72739584ed9925bf4ae8989079 b/TMP Exporter/Library/metadata/75/75938f72739584ed9925bf4ae8989079
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/75/75938f72739584ed9925bf4ae8989079
rename to TMP Exporter/Library/metadata/75/75938f72739584ed9925bf4ae8989079
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/75/75938f72739584ed9925bf4ae8989079.info b/TMP Exporter/Library/metadata/75/75938f72739584ed9925bf4ae8989079.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/75/75938f72739584ed9925bf4ae8989079.info
rename to TMP Exporter/Library/metadata/75/75938f72739584ed9925bf4ae8989079.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/76/76078ddafb924ce19edc6034201cb15b b/TMP Exporter/Library/metadata/76/76078ddafb924ce19edc6034201cb15b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/76/76078ddafb924ce19edc6034201cb15b
rename to TMP Exporter/Library/metadata/76/76078ddafb924ce19edc6034201cb15b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/76/76078ddafb924ce19edc6034201cb15b.info b/TMP Exporter/Library/metadata/76/76078ddafb924ce19edc6034201cb15b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/76/76078ddafb924ce19edc6034201cb15b.info
rename to TMP Exporter/Library/metadata/76/76078ddafb924ce19edc6034201cb15b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4 b/TMP Exporter/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4
rename to TMP Exporter/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4.info b/TMP Exporter/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4.info
rename to TMP Exporter/Library/metadata/76/760934a36e5f490db3c9fcaf497625a4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/76/76234ac439e43f6428e5b11c63d04466 b/TMP Exporter/Library/metadata/76/76234ac439e43f6428e5b11c63d04466
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/76/76234ac439e43f6428e5b11c63d04466
rename to TMP Exporter/Library/metadata/76/76234ac439e43f6428e5b11c63d04466
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/76/76234ac439e43f6428e5b11c63d04466.info b/TMP Exporter/Library/metadata/76/76234ac439e43f6428e5b11c63d04466.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/76/76234ac439e43f6428e5b11c63d04466.info
rename to TMP Exporter/Library/metadata/76/76234ac439e43f6428e5b11c63d04466.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/76/7668179ede524d6396c8b7d84461ea29 b/TMP Exporter/Library/metadata/76/7668179ede524d6396c8b7d84461ea29
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/76/7668179ede524d6396c8b7d84461ea29
rename to TMP Exporter/Library/metadata/76/7668179ede524d6396c8b7d84461ea29
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/76/7668179ede524d6396c8b7d84461ea29.info b/TMP Exporter/Library/metadata/76/7668179ede524d6396c8b7d84461ea29.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/76/7668179ede524d6396c8b7d84461ea29.info
rename to TMP Exporter/Library/metadata/76/7668179ede524d6396c8b7d84461ea29.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/76/768d77435df35443bad74aedc993c0cf b/TMP Exporter/Library/metadata/76/768d77435df35443bad74aedc993c0cf
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/76/768d77435df35443bad74aedc993c0cf
rename to TMP Exporter/Library/metadata/76/768d77435df35443bad74aedc993c0cf
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/76/768d77435df35443bad74aedc993c0cf.info b/TMP Exporter/Library/metadata/76/768d77435df35443bad74aedc993c0cf.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/76/768d77435df35443bad74aedc993c0cf.info
rename to TMP Exporter/Library/metadata/76/768d77435df35443bad74aedc993c0cf.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/77/77476292f9fa4905a787e6417853846b b/TMP Exporter/Library/metadata/77/77476292f9fa4905a787e6417853846b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/77/77476292f9fa4905a787e6417853846b
rename to TMP Exporter/Library/metadata/77/77476292f9fa4905a787e6417853846b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/77/77476292f9fa4905a787e6417853846b.info b/TMP Exporter/Library/metadata/77/77476292f9fa4905a787e6417853846b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/77/77476292f9fa4905a787e6417853846b.info
rename to TMP Exporter/Library/metadata/77/77476292f9fa4905a787e6417853846b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/78/782c49e6e68074dc7ba12c95537825ce b/TMP Exporter/Library/metadata/78/782c49e6e68074dc7ba12c95537825ce
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/78/782c49e6e68074dc7ba12c95537825ce
rename to TMP Exporter/Library/metadata/78/782c49e6e68074dc7ba12c95537825ce
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/78/782c49e6e68074dc7ba12c95537825ce.info b/TMP Exporter/Library/metadata/78/782c49e6e68074dc7ba12c95537825ce.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/78/782c49e6e68074dc7ba12c95537825ce.info
rename to TMP Exporter/Library/metadata/78/782c49e6e68074dc7ba12c95537825ce.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/78/782de34c17796430ba8d0ceddb60944e b/TMP Exporter/Library/metadata/78/782de34c17796430ba8d0ceddb60944e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/78/782de34c17796430ba8d0ceddb60944e
rename to TMP Exporter/Library/metadata/78/782de34c17796430ba8d0ceddb60944e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/78/782de34c17796430ba8d0ceddb60944e.info b/TMP Exporter/Library/metadata/78/782de34c17796430ba8d0ceddb60944e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/78/782de34c17796430ba8d0ceddb60944e.info
rename to TMP Exporter/Library/metadata/78/782de34c17796430ba8d0ceddb60944e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/78/78759e25237a7430587982cd92a2a0d8 b/TMP Exporter/Library/metadata/78/78759e25237a7430587982cd92a2a0d8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/78/78759e25237a7430587982cd92a2a0d8
rename to TMP Exporter/Library/metadata/78/78759e25237a7430587982cd92a2a0d8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/78/78759e25237a7430587982cd92a2a0d8.info b/TMP Exporter/Library/metadata/78/78759e25237a7430587982cd92a2a0d8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/78/78759e25237a7430587982cd92a2a0d8.info
rename to TMP Exporter/Library/metadata/78/78759e25237a7430587982cd92a2a0d8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0 b/TMP Exporter/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0
rename to TMP Exporter/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0.info b/TMP Exporter/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0.info
rename to TMP Exporter/Library/metadata/78/78b9ad527fe44d7cb05bbb77fbf351c0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e b/TMP Exporter/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e
rename to TMP Exporter/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e.info b/TMP Exporter/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e.info
rename to TMP Exporter/Library/metadata/78/78e267bad6d564d49803ba3e9c13ff2e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec b/TMP Exporter/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec
rename to TMP Exporter/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec.info b/TMP Exporter/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec.info
rename to TMP Exporter/Library/metadata/79/7927683d1fc5848b5abfb54ebb1028ec.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/79/79459efec17a4d00a321bdcc27bbc385 b/TMP Exporter/Library/metadata/79/79459efec17a4d00a321bdcc27bbc385
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/79/79459efec17a4d00a321bdcc27bbc385
rename to TMP Exporter/Library/metadata/79/79459efec17a4d00a321bdcc27bbc385
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/79/79459efec17a4d00a321bdcc27bbc385.info b/TMP Exporter/Library/metadata/79/79459efec17a4d00a321bdcc27bbc385.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/79/79459efec17a4d00a321bdcc27bbc385.info
rename to TMP Exporter/Library/metadata/79/79459efec17a4d00a321bdcc27bbc385.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb b/TMP Exporter/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb
rename to TMP Exporter/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb.info b/TMP Exporter/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb.info
rename to TMP Exporter/Library/metadata/79/797cf0c5f1b7e4e1ab17481bd9b698eb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d b/TMP Exporter/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d
rename to TMP Exporter/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d.info b/TMP Exporter/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d.info
rename to TMP Exporter/Library/metadata/79/79ff392d1bde4ad78a3836a4a480392d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7a/7a573b834e2608c4f982daf527bdb47a b/TMP Exporter/Library/metadata/7a/7a573b834e2608c4f982daf527bdb47a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7a/7a573b834e2608c4f982daf527bdb47a
rename to TMP Exporter/Library/metadata/7a/7a573b834e2608c4f982daf527bdb47a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7a/7a573b834e2608c4f982daf527bdb47a.info b/TMP Exporter/Library/metadata/7a/7a573b834e2608c4f982daf527bdb47a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7a/7a573b834e2608c4f982daf527bdb47a.info
rename to TMP Exporter/Library/metadata/7a/7a573b834e2608c4f982daf527bdb47a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea b/TMP Exporter/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea
rename to TMP Exporter/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea.info b/TMP Exporter/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea.info
rename to TMP Exporter/Library/metadata/7a/7a74094b34f74992a5121c0586ccf6ea.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7a/7aad9e80c95b4991a1f4d017c8caf386 b/TMP Exporter/Library/metadata/7a/7aad9e80c95b4991a1f4d017c8caf386
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7a/7aad9e80c95b4991a1f4d017c8caf386
rename to TMP Exporter/Library/metadata/7a/7aad9e80c95b4991a1f4d017c8caf386
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7a/7aad9e80c95b4991a1f4d017c8caf386.info b/TMP Exporter/Library/metadata/7a/7aad9e80c95b4991a1f4d017c8caf386.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7a/7aad9e80c95b4991a1f4d017c8caf386.info
rename to TMP Exporter/Library/metadata/7a/7aad9e80c95b4991a1f4d017c8caf386.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b186a0d29a784d81809e8a5471d155e b/TMP Exporter/Library/metadata/7b/7b186a0d29a784d81809e8a5471d155e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b186a0d29a784d81809e8a5471d155e
rename to TMP Exporter/Library/metadata/7b/7b186a0d29a784d81809e8a5471d155e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b186a0d29a784d81809e8a5471d155e.info b/TMP Exporter/Library/metadata/7b/7b186a0d29a784d81809e8a5471d155e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b186a0d29a784d81809e8a5471d155e.info
rename to TMP Exporter/Library/metadata/7b/7b186a0d29a784d81809e8a5471d155e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a b/TMP Exporter/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a
rename to TMP Exporter/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a.info b/TMP Exporter/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a.info
rename to TMP Exporter/Library/metadata/7b/7b743370ac3e4ec2a1668f5455a8ef8a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89 b/TMP Exporter/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89
rename to TMP Exporter/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89.info b/TMP Exporter/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89.info
rename to TMP Exporter/Library/metadata/7b/7b87dac66d6e74d5f848d26f169bbe89.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7c/7c20856617c24cf99a5212838cacc239 b/TMP Exporter/Library/metadata/7c/7c20856617c24cf99a5212838cacc239
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7c/7c20856617c24cf99a5212838cacc239
rename to TMP Exporter/Library/metadata/7c/7c20856617c24cf99a5212838cacc239
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7c/7c20856617c24cf99a5212838cacc239.info b/TMP Exporter/Library/metadata/7c/7c20856617c24cf99a5212838cacc239.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7c/7c20856617c24cf99a5212838cacc239.info
rename to TMP Exporter/Library/metadata/7c/7c20856617c24cf99a5212838cacc239.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513 b/TMP Exporter/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513
rename to TMP Exporter/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513.info b/TMP Exporter/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513.info
rename to TMP Exporter/Library/metadata/7c/7c3a5d6e39b874f468b2691537168513.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e b/TMP Exporter/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e
rename to TMP Exporter/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e.info b/TMP Exporter/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e.info
rename to TMP Exporter/Library/metadata/7d/7d22934bf84ccd14082fd2d5a9f5951e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7d/7da0c11c52b4044de81c175887699282 b/TMP Exporter/Library/metadata/7d/7da0c11c52b4044de81c175887699282
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7d/7da0c11c52b4044de81c175887699282
rename to TMP Exporter/Library/metadata/7d/7da0c11c52b4044de81c175887699282
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7d/7da0c11c52b4044de81c175887699282.info b/TMP Exporter/Library/metadata/7d/7da0c11c52b4044de81c175887699282.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7d/7da0c11c52b4044de81c175887699282.info
rename to TMP Exporter/Library/metadata/7d/7da0c11c52b4044de81c175887699282.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75 b/TMP Exporter/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75
rename to TMP Exporter/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75.info b/TMP Exporter/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75.info
rename to TMP Exporter/Library/metadata/7e/7e59c7317e51470a833219e69cdeec75.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7e/7ed48dcc992234c659018e00590315b7 b/TMP Exporter/Library/metadata/7e/7ed48dcc992234c659018e00590315b7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7e/7ed48dcc992234c659018e00590315b7
rename to TMP Exporter/Library/metadata/7e/7ed48dcc992234c659018e00590315b7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7e/7ed48dcc992234c659018e00590315b7.info b/TMP Exporter/Library/metadata/7e/7ed48dcc992234c659018e00590315b7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7e/7ed48dcc992234c659018e00590315b7.info
rename to TMP Exporter/Library/metadata/7e/7ed48dcc992234c659018e00590315b7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87 b/TMP Exporter/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87
rename to TMP Exporter/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87.info b/TMP Exporter/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87.info
rename to TMP Exporter/Library/metadata/7e/7ef8348b8ea834d7e1bc214b07f7fb87.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814 b/TMP Exporter/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814
rename to TMP Exporter/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814.info b/TMP Exporter/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814.info
rename to TMP Exporter/Library/metadata/7f/7fd5e77e7e7ea4eea8198138cd9cc814.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4 b/TMP Exporter/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4
rename to TMP Exporter/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4.info b/TMP Exporter/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4.info
rename to TMP Exporter/Library/metadata/80/806de5a9211448c8b65c8435ebb48dd4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f b/TMP Exporter/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f
rename to TMP Exporter/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f.info b/TMP Exporter/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f.info
rename to TMP Exporter/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485 b/TMP Exporter/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485
rename to TMP Exporter/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485.info b/TMP Exporter/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485.info
rename to TMP Exporter/Library/metadata/80/80beef77cb19e713c7c2d481b65ed485.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/81/811f7f1f5920641c0a9233503492c9ba b/TMP Exporter/Library/metadata/81/811f7f1f5920641c0a9233503492c9ba
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/81/811f7f1f5920641c0a9233503492c9ba
rename to TMP Exporter/Library/metadata/81/811f7f1f5920641c0a9233503492c9ba
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/81/811f7f1f5920641c0a9233503492c9ba.info b/TMP Exporter/Library/metadata/81/811f7f1f5920641c0a9233503492c9ba.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/81/811f7f1f5920641c0a9233503492c9ba.info
rename to TMP Exporter/Library/metadata/81/811f7f1f5920641c0a9233503492c9ba.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f b/TMP Exporter/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f
rename to TMP Exporter/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f.info b/TMP Exporter/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f.info
rename to TMP Exporter/Library/metadata/81/81ed8c76d2bc4a4c95d092c98af4e58f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/82/821f5482c5a3f4389885f4432433f56f b/TMP Exporter/Library/metadata/82/821f5482c5a3f4389885f4432433f56f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/82/821f5482c5a3f4389885f4432433f56f
rename to TMP Exporter/Library/metadata/82/821f5482c5a3f4389885f4432433f56f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/82/821f5482c5a3f4389885f4432433f56f.info b/TMP Exporter/Library/metadata/82/821f5482c5a3f4389885f4432433f56f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/82/821f5482c5a3f4389885f4432433f56f.info
rename to TMP Exporter/Library/metadata/82/821f5482c5a3f4389885f4432433f56f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16 b/TMP Exporter/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16
rename to TMP Exporter/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16.info b/TMP Exporter/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16.info
rename to TMP Exporter/Library/metadata/84/8413ca0e506d42a1a4bd9769f204ad16.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/84/844f815391db42d49455cbf1a7bfc434 b/TMP Exporter/Library/metadata/84/844f815391db42d49455cbf1a7bfc434
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/84/844f815391db42d49455cbf1a7bfc434
rename to TMP Exporter/Library/metadata/84/844f815391db42d49455cbf1a7bfc434
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/84/844f815391db42d49455cbf1a7bfc434.info b/TMP Exporter/Library/metadata/84/844f815391db42d49455cbf1a7bfc434.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/84/844f815391db42d49455cbf1a7bfc434.info
rename to TMP Exporter/Library/metadata/84/844f815391db42d49455cbf1a7bfc434.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/84/84a92b25f83d49b9bc132d206b370281 b/TMP Exporter/Library/metadata/84/84a92b25f83d49b9bc132d206b370281
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/84/84a92b25f83d49b9bc132d206b370281
rename to TMP Exporter/Library/metadata/84/84a92b25f83d49b9bc132d206b370281
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/84/84a92b25f83d49b9bc132d206b370281.info b/TMP Exporter/Library/metadata/84/84a92b25f83d49b9bc132d206b370281.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/84/84a92b25f83d49b9bc132d206b370281.info
rename to TMP Exporter/Library/metadata/84/84a92b25f83d49b9bc132d206b370281.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26 b/TMP Exporter/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26
rename to TMP Exporter/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26.info b/TMP Exporter/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26.info
rename to TMP Exporter/Library/metadata/85/850c54ee0b9e1aa740b1c67792eb1f26.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/85/85187c2149c549c5b33f0cdb02836b17 b/TMP Exporter/Library/metadata/85/85187c2149c549c5b33f0cdb02836b17
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/85/85187c2149c549c5b33f0cdb02836b17
rename to TMP Exporter/Library/metadata/85/85187c2149c549c5b33f0cdb02836b17
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/85/85187c2149c549c5b33f0cdb02836b17.info b/TMP Exporter/Library/metadata/85/85187c2149c549c5b33f0cdb02836b17.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/85/85187c2149c549c5b33f0cdb02836b17.info
rename to TMP Exporter/Library/metadata/85/85187c2149c549c5b33f0cdb02836b17.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2 b/TMP Exporter/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2
rename to TMP Exporter/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2.info b/TMP Exporter/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2.info
rename to TMP Exporter/Library/metadata/85/85dba6b2d7204a7f9a1f976eb0a6b4d2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/86/86c008322e7c647149878156c5b81940 b/TMP Exporter/Library/metadata/86/86c008322e7c647149878156c5b81940
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/86/86c008322e7c647149878156c5b81940
rename to TMP Exporter/Library/metadata/86/86c008322e7c647149878156c5b81940
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/86/86c008322e7c647149878156c5b81940.info b/TMP Exporter/Library/metadata/86/86c008322e7c647149878156c5b81940.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/86/86c008322e7c647149878156c5b81940.info
rename to TMP Exporter/Library/metadata/86/86c008322e7c647149878156c5b81940.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/86/86c18994495874297b469aaa57ef9b44 b/TMP Exporter/Library/metadata/86/86c18994495874297b469aaa57ef9b44
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/86/86c18994495874297b469aaa57ef9b44
rename to TMP Exporter/Library/metadata/86/86c18994495874297b469aaa57ef9b44
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/86/86c18994495874297b469aaa57ef9b44.info b/TMP Exporter/Library/metadata/86/86c18994495874297b469aaa57ef9b44.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/86/86c18994495874297b469aaa57ef9b44.info
rename to TMP Exporter/Library/metadata/86/86c18994495874297b469aaa57ef9b44.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61 b/TMP Exporter/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61
rename to TMP Exporter/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61.info b/TMP Exporter/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61.info
rename to TMP Exporter/Library/metadata/86/86d0242b70e6ab24aaf5a0e67edf2a61.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba b/TMP Exporter/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba
rename to TMP Exporter/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba.info b/TMP Exporter/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba.info
rename to TMP Exporter/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36 b/TMP Exporter/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36
rename to TMP Exporter/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36.info b/TMP Exporter/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36.info
rename to TMP Exporter/Library/metadata/87/871f8edd56e84b8fb295b10cc3c78f36.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/876d47a520ae34f81a97792e1afed14b b/TMP Exporter/Library/metadata/87/876d47a520ae34f81a97792e1afed14b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/876d47a520ae34f81a97792e1afed14b
rename to TMP Exporter/Library/metadata/87/876d47a520ae34f81a97792e1afed14b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/876d47a520ae34f81a97792e1afed14b.info b/TMP Exporter/Library/metadata/87/876d47a520ae34f81a97792e1afed14b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/876d47a520ae34f81a97792e1afed14b.info
rename to TMP Exporter/Library/metadata/87/876d47a520ae34f81a97792e1afed14b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594 b/TMP Exporter/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594
rename to TMP Exporter/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594.info b/TMP Exporter/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594.info
rename to TMP Exporter/Library/metadata/87/87738e82a4f047cc947cff8a2ccea594.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58 b/TMP Exporter/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58
rename to TMP Exporter/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58.info b/TMP Exporter/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58.info
rename to TMP Exporter/Library/metadata/87/87ab1bebe13f41f89d5427e7d2c34d58.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/87d720faa37005c08600090e04d8c739 b/TMP Exporter/Library/metadata/87/87d720faa37005c08600090e04d8c739
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/87d720faa37005c08600090e04d8c739
rename to TMP Exporter/Library/metadata/87/87d720faa37005c08600090e04d8c739
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/87/87d720faa37005c08600090e04d8c739.info b/TMP Exporter/Library/metadata/87/87d720faa37005c08600090e04d8c739.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/87/87d720faa37005c08600090e04d8c739.info
rename to TMP Exporter/Library/metadata/87/87d720faa37005c08600090e04d8c739.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c b/TMP Exporter/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c
rename to TMP Exporter/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c.info b/TMP Exporter/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c.info
rename to TMP Exporter/Library/metadata/88/880f2fc52037c4fe09edb80cfe84ac7c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/88/882f1a4147a284f028899b9c018e63eb b/TMP Exporter/Library/metadata/88/882f1a4147a284f028899b9c018e63eb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/88/882f1a4147a284f028899b9c018e63eb
rename to TMP Exporter/Library/metadata/88/882f1a4147a284f028899b9c018e63eb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/88/882f1a4147a284f028899b9c018e63eb.info b/TMP Exporter/Library/metadata/88/882f1a4147a284f028899b9c018e63eb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/88/882f1a4147a284f028899b9c018e63eb.info
rename to TMP Exporter/Library/metadata/88/882f1a4147a284f028899b9c018e63eb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1 b/TMP Exporter/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1
rename to TMP Exporter/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1.info b/TMP Exporter/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1.info
rename to TMP Exporter/Library/metadata/88/884f8f0e4025a420893d3a8d1d3063e1.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e b/TMP Exporter/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e
rename to TMP Exporter/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e.info b/TMP Exporter/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e.info
rename to TMP Exporter/Library/metadata/88/88ed537c17c34f339121fe9a7d6d7a0e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8a/8aa8171e088f94069bbd1978a053f7dd b/TMP Exporter/Library/metadata/8a/8aa8171e088f94069bbd1978a053f7dd
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8a/8aa8171e088f94069bbd1978a053f7dd
rename to TMP Exporter/Library/metadata/8a/8aa8171e088f94069bbd1978a053f7dd
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8a/8aa8171e088f94069bbd1978a053f7dd.info b/TMP Exporter/Library/metadata/8a/8aa8171e088f94069bbd1978a053f7dd.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8a/8aa8171e088f94069bbd1978a053f7dd.info
rename to TMP Exporter/Library/metadata/8a/8aa8171e088f94069bbd1978a053f7dd.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8a/8aafd27f78c12564281bac0d0067df8d b/TMP Exporter/Library/metadata/8a/8aafd27f78c12564281bac0d0067df8d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8a/8aafd27f78c12564281bac0d0067df8d
rename to TMP Exporter/Library/metadata/8a/8aafd27f78c12564281bac0d0067df8d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8a/8aafd27f78c12564281bac0d0067df8d.info b/TMP Exporter/Library/metadata/8a/8aafd27f78c12564281bac0d0067df8d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8a/8aafd27f78c12564281bac0d0067df8d.info
rename to TMP Exporter/Library/metadata/8a/8aafd27f78c12564281bac0d0067df8d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8b/8b0f0c8689876421c90e7b60f096325a b/TMP Exporter/Library/metadata/8b/8b0f0c8689876421c90e7b60f096325a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8b/8b0f0c8689876421c90e7b60f096325a
rename to TMP Exporter/Library/metadata/8b/8b0f0c8689876421c90e7b60f096325a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8b/8b0f0c8689876421c90e7b60f096325a.info b/TMP Exporter/Library/metadata/8b/8b0f0c8689876421c90e7b60f096325a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8b/8b0f0c8689876421c90e7b60f096325a.info
rename to TMP Exporter/Library/metadata/8b/8b0f0c8689876421c90e7b60f096325a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8b/8b4a8234f532f4b34aba0ab70400d90d b/TMP Exporter/Library/metadata/8b/8b4a8234f532f4b34aba0ab70400d90d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8b/8b4a8234f532f4b34aba0ab70400d90d
rename to TMP Exporter/Library/metadata/8b/8b4a8234f532f4b34aba0ab70400d90d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8b/8b4a8234f532f4b34aba0ab70400d90d.info b/TMP Exporter/Library/metadata/8b/8b4a8234f532f4b34aba0ab70400d90d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8b/8b4a8234f532f4b34aba0ab70400d90d.info
rename to TMP Exporter/Library/metadata/8b/8b4a8234f532f4b34aba0ab70400d90d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92 b/TMP Exporter/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92
rename to TMP Exporter/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92.info b/TMP Exporter/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92.info
rename to TMP Exporter/Library/metadata/8b/8bc445bb79654bf496c92d0407840a92.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d b/TMP Exporter/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d
rename to TMP Exporter/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d.info b/TMP Exporter/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d.info
rename to TMP Exporter/Library/metadata/8c/8c25f8b5c9da143328c516248414b95d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8d/8d65a43500ec84d9186cb6d9ab681277 b/TMP Exporter/Library/metadata/8d/8d65a43500ec84d9186cb6d9ab681277
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8d/8d65a43500ec84d9186cb6d9ab681277
rename to TMP Exporter/Library/metadata/8d/8d65a43500ec84d9186cb6d9ab681277
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8d/8d65a43500ec84d9186cb6d9ab681277.info b/TMP Exporter/Library/metadata/8d/8d65a43500ec84d9186cb6d9ab681277.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8d/8d65a43500ec84d9186cb6d9ab681277.info
rename to TMP Exporter/Library/metadata/8d/8d65a43500ec84d9186cb6d9ab681277.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8e/8e7e8f5a82a3a134e91c54efd2274ea9 b/TMP Exporter/Library/metadata/8e/8e7e8f5a82a3a134e91c54efd2274ea9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8e/8e7e8f5a82a3a134e91c54efd2274ea9
rename to TMP Exporter/Library/metadata/8e/8e7e8f5a82a3a134e91c54efd2274ea9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8e/8e7e8f5a82a3a134e91c54efd2274ea9.info b/TMP Exporter/Library/metadata/8e/8e7e8f5a82a3a134e91c54efd2274ea9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8e/8e7e8f5a82a3a134e91c54efd2274ea9.info
rename to TMP Exporter/Library/metadata/8e/8e7e8f5a82a3a134e91c54efd2274ea9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f05276190cf498a8153f6cbe761d4e6 b/TMP Exporter/Library/metadata/8f/8f05276190cf498a8153f6cbe761d4e6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f05276190cf498a8153f6cbe761d4e6
rename to TMP Exporter/Library/metadata/8f/8f05276190cf498a8153f6cbe761d4e6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f05276190cf498a8153f6cbe761d4e6.info b/TMP Exporter/Library/metadata/8f/8f05276190cf498a8153f6cbe761d4e6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f05276190cf498a8153f6cbe761d4e6.info
rename to TMP Exporter/Library/metadata/8f/8f05276190cf498a8153f6cbe761d4e6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f586378b4e144a9851e7b34d9b748ee b/TMP Exporter/Library/metadata/8f/8f586378b4e144a9851e7b34d9b748ee
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f586378b4e144a9851e7b34d9b748ee
rename to TMP Exporter/Library/metadata/8f/8f586378b4e144a9851e7b34d9b748ee
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f586378b4e144a9851e7b34d9b748ee.info b/TMP Exporter/Library/metadata/8f/8f586378b4e144a9851e7b34d9b748ee.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f586378b4e144a9851e7b34d9b748ee.info
rename to TMP Exporter/Library/metadata/8f/8f586378b4e144a9851e7b34d9b748ee.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4 b/TMP Exporter/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4
rename to TMP Exporter/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4.info b/TMP Exporter/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4.info
rename to TMP Exporter/Library/metadata/8f/8f8b248abe6b4dcebd6cdd0d754717f4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935 b/TMP Exporter/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935
rename to TMP Exporter/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935.info b/TMP Exporter/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935.info
rename to TMP Exporter/Library/metadata/90/900f1a451c764dc3bdcc0de815a15935.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78 b/TMP Exporter/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78
rename to TMP Exporter/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78.info b/TMP Exporter/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78.info
rename to TMP Exporter/Library/metadata/90/906c12bc9cd95d3963c6d58f62522c78.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/90/907731821455c4fa989ac14278e02251 b/TMP Exporter/Library/metadata/90/907731821455c4fa989ac14278e02251
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/90/907731821455c4fa989ac14278e02251
rename to TMP Exporter/Library/metadata/90/907731821455c4fa989ac14278e02251
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/90/907731821455c4fa989ac14278e02251.info b/TMP Exporter/Library/metadata/90/907731821455c4fa989ac14278e02251.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/90/907731821455c4fa989ac14278e02251.info
rename to TMP Exporter/Library/metadata/90/907731821455c4fa989ac14278e02251.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c b/TMP Exporter/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c
rename to TMP Exporter/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c.info b/TMP Exporter/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c.info
rename to TMP Exporter/Library/metadata/90/90791303b72ec4ae198f99d637dfdf6c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/91/91950f78729ab144aa36e94690b28fad b/TMP Exporter/Library/metadata/91/91950f78729ab144aa36e94690b28fad
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/91/91950f78729ab144aa36e94690b28fad
rename to TMP Exporter/Library/metadata/91/91950f78729ab144aa36e94690b28fad
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/91/91950f78729ab144aa36e94690b28fad.info b/TMP Exporter/Library/metadata/91/91950f78729ab144aa36e94690b28fad.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/91/91950f78729ab144aa36e94690b28fad.info
rename to TMP Exporter/Library/metadata/91/91950f78729ab144aa36e94690b28fad.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46 b/TMP Exporter/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46
rename to TMP Exporter/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46.info b/TMP Exporter/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46.info
rename to TMP Exporter/Library/metadata/92/92027f7f8cfc4feaa477da0dc38d3d46.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0 b/TMP Exporter/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0
rename to TMP Exporter/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0.info b/TMP Exporter/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0.info
rename to TMP Exporter/Library/metadata/92/9288066c33474b94b6ee5465f4df1cc0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/92/92a378669877c05c6071d0fed687bb95 b/TMP Exporter/Library/metadata/92/92a378669877c05c6071d0fed687bb95
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/92/92a378669877c05c6071d0fed687bb95
rename to TMP Exporter/Library/metadata/92/92a378669877c05c6071d0fed687bb95
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/92/92a378669877c05c6071d0fed687bb95.info b/TMP Exporter/Library/metadata/92/92a378669877c05c6071d0fed687bb95.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/92/92a378669877c05c6071d0fed687bb95.info
rename to TMP Exporter/Library/metadata/92/92a378669877c05c6071d0fed687bb95.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/93/931f3395378214a6c94333853bd0659b b/TMP Exporter/Library/metadata/93/931f3395378214a6c94333853bd0659b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/93/931f3395378214a6c94333853bd0659b
rename to TMP Exporter/Library/metadata/93/931f3395378214a6c94333853bd0659b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/93/931f3395378214a6c94333853bd0659b.info b/TMP Exporter/Library/metadata/93/931f3395378214a6c94333853bd0659b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/93/931f3395378214a6c94333853bd0659b.info
rename to TMP Exporter/Library/metadata/93/931f3395378214a6c94333853bd0659b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/93/93c1370867fcb45079592da39e0994c5 b/TMP Exporter/Library/metadata/93/93c1370867fcb45079592da39e0994c5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/93/93c1370867fcb45079592da39e0994c5
rename to TMP Exporter/Library/metadata/93/93c1370867fcb45079592da39e0994c5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/93/93c1370867fcb45079592da39e0994c5.info b/TMP Exporter/Library/metadata/93/93c1370867fcb45079592da39e0994c5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/93/93c1370867fcb45079592da39e0994c5.info
rename to TMP Exporter/Library/metadata/93/93c1370867fcb45079592da39e0994c5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/93/93f7ca1a9c5c945a89e884f9611c70f0 b/TMP Exporter/Library/metadata/93/93f7ca1a9c5c945a89e884f9611c70f0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/93/93f7ca1a9c5c945a89e884f9611c70f0
rename to TMP Exporter/Library/metadata/93/93f7ca1a9c5c945a89e884f9611c70f0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/93/93f7ca1a9c5c945a89e884f9611c70f0.info b/TMP Exporter/Library/metadata/93/93f7ca1a9c5c945a89e884f9611c70f0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/93/93f7ca1a9c5c945a89e884f9611c70f0.info
rename to TMP Exporter/Library/metadata/93/93f7ca1a9c5c945a89e884f9611c70f0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/94/9405b416c158444b19157040fd664533 b/TMP Exporter/Library/metadata/94/9405b416c158444b19157040fd664533
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/94/9405b416c158444b19157040fd664533
rename to TMP Exporter/Library/metadata/94/9405b416c158444b19157040fd664533
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/94/9405b416c158444b19157040fd664533.info b/TMP Exporter/Library/metadata/94/9405b416c158444b19157040fd664533.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/94/9405b416c158444b19157040fd664533.info
rename to TMP Exporter/Library/metadata/94/9405b416c158444b19157040fd664533.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad b/TMP Exporter/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad
rename to TMP Exporter/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad.info b/TMP Exporter/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad.info
rename to TMP Exporter/Library/metadata/95/953fab16d15d5885b3600fcd6388b2ad.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab b/TMP Exporter/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab
rename to TMP Exporter/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab.info b/TMP Exporter/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab.info
rename to TMP Exporter/Library/metadata/95/9541d86e2fd84c1d9990edf0852d74ab.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/95/9545c9eb3bf94265810463794fec8334 b/TMP Exporter/Library/metadata/95/9545c9eb3bf94265810463794fec8334
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/95/9545c9eb3bf94265810463794fec8334
rename to TMP Exporter/Library/metadata/95/9545c9eb3bf94265810463794fec8334
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/95/9545c9eb3bf94265810463794fec8334.info b/TMP Exporter/Library/metadata/95/9545c9eb3bf94265810463794fec8334.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/95/9545c9eb3bf94265810463794fec8334.info
rename to TMP Exporter/Library/metadata/95/9545c9eb3bf94265810463794fec8334.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9 b/TMP Exporter/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9
rename to TMP Exporter/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9.info b/TMP Exporter/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9.info
rename to TMP Exporter/Library/metadata/95/95f85adeda79e994f011eb2152cf4fc9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/96/96626a3e271e94e76a848c68828fbbac b/TMP Exporter/Library/metadata/96/96626a3e271e94e76a848c68828fbbac
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/96/96626a3e271e94e76a848c68828fbbac
rename to TMP Exporter/Library/metadata/96/96626a3e271e94e76a848c68828fbbac
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/96/96626a3e271e94e76a848c68828fbbac.info b/TMP Exporter/Library/metadata/96/96626a3e271e94e76a848c68828fbbac.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/96/96626a3e271e94e76a848c68828fbbac.info
rename to TMP Exporter/Library/metadata/96/96626a3e271e94e76a848c68828fbbac.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/96/968a09f153574430a6e15ae975145768 b/TMP Exporter/Library/metadata/96/968a09f153574430a6e15ae975145768
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/96/968a09f153574430a6e15ae975145768
rename to TMP Exporter/Library/metadata/96/968a09f153574430a6e15ae975145768
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/96/968a09f153574430a6e15ae975145768.info b/TMP Exporter/Library/metadata/96/968a09f153574430a6e15ae975145768.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/96/968a09f153574430a6e15ae975145768.info
rename to TMP Exporter/Library/metadata/96/968a09f153574430a6e15ae975145768.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/96/96b44f7d98314b139324a8a87eb66067 b/TMP Exporter/Library/metadata/96/96b44f7d98314b139324a8a87eb66067
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/96/96b44f7d98314b139324a8a87eb66067
rename to TMP Exporter/Library/metadata/96/96b44f7d98314b139324a8a87eb66067
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/96/96b44f7d98314b139324a8a87eb66067.info b/TMP Exporter/Library/metadata/96/96b44f7d98314b139324a8a87eb66067.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/96/96b44f7d98314b139324a8a87eb66067.info
rename to TMP Exporter/Library/metadata/96/96b44f7d98314b139324a8a87eb66067.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/96/96d14b71b907bb52333b2886e665aba6 b/TMP Exporter/Library/metadata/96/96d14b71b907bb52333b2886e665aba6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/96/96d14b71b907bb52333b2886e665aba6
rename to TMP Exporter/Library/metadata/96/96d14b71b907bb52333b2886e665aba6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/96/96d14b71b907bb52333b2886e665aba6.info b/TMP Exporter/Library/metadata/96/96d14b71b907bb52333b2886e665aba6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/96/96d14b71b907bb52333b2886e665aba6.info
rename to TMP Exporter/Library/metadata/96/96d14b71b907bb52333b2886e665aba6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/96/96e9072453a441618754c478755b3028 b/TMP Exporter/Library/metadata/96/96e9072453a441618754c478755b3028
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/96/96e9072453a441618754c478755b3028
rename to TMP Exporter/Library/metadata/96/96e9072453a441618754c478755b3028
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/96/96e9072453a441618754c478755b3028.info b/TMP Exporter/Library/metadata/96/96e9072453a441618754c478755b3028.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/96/96e9072453a441618754c478755b3028.info
rename to TMP Exporter/Library/metadata/96/96e9072453a441618754c478755b3028.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/97/97dff1b5ae41ee84886ae7a80ae21499 b/TMP Exporter/Library/metadata/97/97dff1b5ae41ee84886ae7a80ae21499
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/97/97dff1b5ae41ee84886ae7a80ae21499
rename to TMP Exporter/Library/metadata/97/97dff1b5ae41ee84886ae7a80ae21499
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/97/97dff1b5ae41ee84886ae7a80ae21499.info b/TMP Exporter/Library/metadata/97/97dff1b5ae41ee84886ae7a80ae21499.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/97/97dff1b5ae41ee84886ae7a80ae21499.info
rename to TMP Exporter/Library/metadata/97/97dff1b5ae41ee84886ae7a80ae21499.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/98/983d491088dbb4db8b83c926939a08c5 b/TMP Exporter/Library/metadata/98/983d491088dbb4db8b83c926939a08c5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/98/983d491088dbb4db8b83c926939a08c5
rename to TMP Exporter/Library/metadata/98/983d491088dbb4db8b83c926939a08c5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/98/983d491088dbb4db8b83c926939a08c5.info b/TMP Exporter/Library/metadata/98/983d491088dbb4db8b83c926939a08c5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/98/983d491088dbb4db8b83c926939a08c5.info
rename to TMP Exporter/Library/metadata/98/983d491088dbb4db8b83c926939a08c5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/99/99ddb49592ff84811804420a1910cb89 b/TMP Exporter/Library/metadata/99/99ddb49592ff84811804420a1910cb89
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/99/99ddb49592ff84811804420a1910cb89
rename to TMP Exporter/Library/metadata/99/99ddb49592ff84811804420a1910cb89
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/99/99ddb49592ff84811804420a1910cb89.info b/TMP Exporter/Library/metadata/99/99ddb49592ff84811804420a1910cb89.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/99/99ddb49592ff84811804420a1910cb89.info
rename to TMP Exporter/Library/metadata/99/99ddb49592ff84811804420a1910cb89.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/99/99f836c9cb9345dba2e72c4a1f2d0695 b/TMP Exporter/Library/metadata/99/99f836c9cb9345dba2e72c4a1f2d0695
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/99/99f836c9cb9345dba2e72c4a1f2d0695
rename to TMP Exporter/Library/metadata/99/99f836c9cb9345dba2e72c4a1f2d0695
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/99/99f836c9cb9345dba2e72c4a1f2d0695.info b/TMP Exporter/Library/metadata/99/99f836c9cb9345dba2e72c4a1f2d0695.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/99/99f836c9cb9345dba2e72c4a1f2d0695.info
rename to TMP Exporter/Library/metadata/99/99f836c9cb9345dba2e72c4a1f2d0695.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9a/9a2c874c382e2419184b302497279dd9 b/TMP Exporter/Library/metadata/9a/9a2c874c382e2419184b302497279dd9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9a/9a2c874c382e2419184b302497279dd9
rename to TMP Exporter/Library/metadata/9a/9a2c874c382e2419184b302497279dd9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9a/9a2c874c382e2419184b302497279dd9.info b/TMP Exporter/Library/metadata/9a/9a2c874c382e2419184b302497279dd9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9a/9a2c874c382e2419184b302497279dd9.info
rename to TMP Exporter/Library/metadata/9a/9a2c874c382e2419184b302497279dd9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9a/9ae50080555067d4cb331837ce591d9a b/TMP Exporter/Library/metadata/9a/9ae50080555067d4cb331837ce591d9a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9a/9ae50080555067d4cb331837ce591d9a
rename to TMP Exporter/Library/metadata/9a/9ae50080555067d4cb331837ce591d9a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9a/9ae50080555067d4cb331837ce591d9a.info b/TMP Exporter/Library/metadata/9a/9ae50080555067d4cb331837ce591d9a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9a/9ae50080555067d4cb331837ce591d9a.info
rename to TMP Exporter/Library/metadata/9a/9ae50080555067d4cb331837ce591d9a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4 b/TMP Exporter/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4
rename to TMP Exporter/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4.info b/TMP Exporter/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4.info
rename to TMP Exporter/Library/metadata/9c/9c7c268fa6492449654839df69f2a2f4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9d/9da568db70dafa345a908282554b3672 b/TMP Exporter/Library/metadata/9d/9da568db70dafa345a908282554b3672
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9d/9da568db70dafa345a908282554b3672
rename to TMP Exporter/Library/metadata/9d/9da568db70dafa345a908282554b3672
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9d/9da568db70dafa345a908282554b3672.info b/TMP Exporter/Library/metadata/9d/9da568db70dafa345a908282554b3672.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9d/9da568db70dafa345a908282554b3672.info
rename to TMP Exporter/Library/metadata/9d/9da568db70dafa345a908282554b3672.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804 b/TMP Exporter/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804
rename to TMP Exporter/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804.info b/TMP Exporter/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804.info
rename to TMP Exporter/Library/metadata/9d/9de24983a2c6cbe4f925c3e98a79b804.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9 b/TMP Exporter/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9
rename to TMP Exporter/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9.info b/TMP Exporter/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9.info
rename to TMP Exporter/Library/metadata/9d/9de9e8523c82543c5b3e40a4b51aa2c9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863 b/TMP Exporter/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863
rename to TMP Exporter/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863.info b/TMP Exporter/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863.info
rename to TMP Exporter/Library/metadata/9e/9e69df8ff024a4dc1a9e5c22725e4863.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8 b/TMP Exporter/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8
rename to TMP Exporter/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8.info b/TMP Exporter/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8.info
rename to TMP Exporter/Library/metadata/9e/9ec5dc72125424af38a9bfaca532acc8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c b/TMP Exporter/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c
rename to TMP Exporter/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c.info b/TMP Exporter/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c.info
rename to TMP Exporter/Library/metadata/9e/9edc9283e7d6409fab242fe8fb6a822c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5 b/TMP Exporter/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5
rename to TMP Exporter/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5.info b/TMP Exporter/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5.info
rename to TMP Exporter/Library/metadata/9f/9f091dea68a1452cb6c04a6dfa73d5f5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992 b/TMP Exporter/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992
rename to TMP Exporter/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992.info b/TMP Exporter/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992.info
rename to TMP Exporter/Library/metadata/9f/9f17a0688211d476f8d8c9742bb9f992.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a0/a02a7d8c237544f1962732b55a9aebf1 b/TMP Exporter/Library/metadata/a0/a02a7d8c237544f1962732b55a9aebf1
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a0/a02a7d8c237544f1962732b55a9aebf1
rename to TMP Exporter/Library/metadata/a0/a02a7d8c237544f1962732b55a9aebf1
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a0/a02a7d8c237544f1962732b55a9aebf1.info b/TMP Exporter/Library/metadata/a0/a02a7d8c237544f1962732b55a9aebf1.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a0/a02a7d8c237544f1962732b55a9aebf1.info
rename to TMP Exporter/Library/metadata/a0/a02a7d8c237544f1962732b55a9aebf1.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a1/a10564aae782c458cbf1de024f4870f7 b/TMP Exporter/Library/metadata/a1/a10564aae782c458cbf1de024f4870f7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a1/a10564aae782c458cbf1de024f4870f7
rename to TMP Exporter/Library/metadata/a1/a10564aae782c458cbf1de024f4870f7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a1/a10564aae782c458cbf1de024f4870f7.info b/TMP Exporter/Library/metadata/a1/a10564aae782c458cbf1de024f4870f7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a1/a10564aae782c458cbf1de024f4870f7.info
rename to TMP Exporter/Library/metadata/a1/a10564aae782c458cbf1de024f4870f7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a3/a30e59ca9f68d46db88323ac18f49e31 b/TMP Exporter/Library/metadata/a3/a30e59ca9f68d46db88323ac18f49e31
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a3/a30e59ca9f68d46db88323ac18f49e31
rename to TMP Exporter/Library/metadata/a3/a30e59ca9f68d46db88323ac18f49e31
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a3/a30e59ca9f68d46db88323ac18f49e31.info b/TMP Exporter/Library/metadata/a3/a30e59ca9f68d46db88323ac18f49e31.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a3/a30e59ca9f68d46db88323ac18f49e31.info
rename to TMP Exporter/Library/metadata/a3/a30e59ca9f68d46db88323ac18f49e31.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a3/a342381d77833427fa10621e38fbae10 b/TMP Exporter/Library/metadata/a3/a342381d77833427fa10621e38fbae10
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a3/a342381d77833427fa10621e38fbae10
rename to TMP Exporter/Library/metadata/a3/a342381d77833427fa10621e38fbae10
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a3/a342381d77833427fa10621e38fbae10.info b/TMP Exporter/Library/metadata/a3/a342381d77833427fa10621e38fbae10.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a3/a342381d77833427fa10621e38fbae10.info
rename to TMP Exporter/Library/metadata/a3/a342381d77833427fa10621e38fbae10.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879 b/TMP Exporter/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879
rename to TMP Exporter/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879.info b/TMP Exporter/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879.info
rename to TMP Exporter/Library/metadata/a3/a37e18887fa954edf92bc36bc353b879.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a4/a483595b0257945278dc75c5ff7d82ee b/TMP Exporter/Library/metadata/a4/a483595b0257945278dc75c5ff7d82ee
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a4/a483595b0257945278dc75c5ff7d82ee
rename to TMP Exporter/Library/metadata/a4/a483595b0257945278dc75c5ff7d82ee
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a4/a483595b0257945278dc75c5ff7d82ee.info b/TMP Exporter/Library/metadata/a4/a483595b0257945278dc75c5ff7d82ee.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a4/a483595b0257945278dc75c5ff7d82ee.info
rename to TMP Exporter/Library/metadata/a4/a483595b0257945278dc75c5ff7d82ee.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a54eac0e085a44468963fa57f209470d b/TMP Exporter/Library/metadata/a5/a54eac0e085a44468963fa57f209470d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a54eac0e085a44468963fa57f209470d
rename to TMP Exporter/Library/metadata/a5/a54eac0e085a44468963fa57f209470d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a54eac0e085a44468963fa57f209470d.info b/TMP Exporter/Library/metadata/a5/a54eac0e085a44468963fa57f209470d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a54eac0e085a44468963fa57f209470d.info
rename to TMP Exporter/Library/metadata/a5/a54eac0e085a44468963fa57f209470d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966 b/TMP Exporter/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966
rename to TMP Exporter/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966.info b/TMP Exporter/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966.info
rename to TMP Exporter/Library/metadata/a5/a55fb7b4961a425381d1282fc424f966.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a571de1bea3cb4c9784493c6f1b0b76c b/TMP Exporter/Library/metadata/a5/a571de1bea3cb4c9784493c6f1b0b76c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a571de1bea3cb4c9784493c6f1b0b76c
rename to TMP Exporter/Library/metadata/a5/a571de1bea3cb4c9784493c6f1b0b76c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a571de1bea3cb4c9784493c6f1b0b76c.info b/TMP Exporter/Library/metadata/a5/a571de1bea3cb4c9784493c6f1b0b76c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a571de1bea3cb4c9784493c6f1b0b76c.info
rename to TMP Exporter/Library/metadata/a5/a571de1bea3cb4c9784493c6f1b0b76c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a592d27ead6884163839d4f8da3977ef b/TMP Exporter/Library/metadata/a5/a592d27ead6884163839d4f8da3977ef
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a592d27ead6884163839d4f8da3977ef
rename to TMP Exporter/Library/metadata/a5/a592d27ead6884163839d4f8da3977ef
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a592d27ead6884163839d4f8da3977ef.info b/TMP Exporter/Library/metadata/a5/a592d27ead6884163839d4f8da3977ef.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a592d27ead6884163839d4f8da3977ef.info
rename to TMP Exporter/Library/metadata/a5/a592d27ead6884163839d4f8da3977ef.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a5ebb11c6fc3a2f498bd89593f7744aa b/TMP Exporter/Library/metadata/a5/a5ebb11c6fc3a2f498bd89593f7744aa
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a5ebb11c6fc3a2f498bd89593f7744aa
rename to TMP Exporter/Library/metadata/a5/a5ebb11c6fc3a2f498bd89593f7744aa
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a5ebb11c6fc3a2f498bd89593f7744aa.info b/TMP Exporter/Library/metadata/a5/a5ebb11c6fc3a2f498bd89593f7744aa.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a5ebb11c6fc3a2f498bd89593f7744aa.info
rename to TMP Exporter/Library/metadata/a5/a5ebb11c6fc3a2f498bd89593f7744aa.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a b/TMP Exporter/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a
rename to TMP Exporter/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a.info b/TMP Exporter/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a.info
rename to TMP Exporter/Library/metadata/a5/a5edd19845e0e426eb775477a7988a4a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc b/TMP Exporter/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc
rename to TMP Exporter/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc.info b/TMP Exporter/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc.info
rename to TMP Exporter/Library/metadata/a6/a6842a74831964edc8fefa1c0aed89dc.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a6/a6ab6fd2b91214e8a9c8ec2224a528de b/TMP Exporter/Library/metadata/a6/a6ab6fd2b91214e8a9c8ec2224a528de
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a6/a6ab6fd2b91214e8a9c8ec2224a528de
rename to TMP Exporter/Library/metadata/a6/a6ab6fd2b91214e8a9c8ec2224a528de
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a6/a6ab6fd2b91214e8a9c8ec2224a528de.info b/TMP Exporter/Library/metadata/a6/a6ab6fd2b91214e8a9c8ec2224a528de.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a6/a6ab6fd2b91214e8a9c8ec2224a528de.info
rename to TMP Exporter/Library/metadata/a6/a6ab6fd2b91214e8a9c8ec2224a528de.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39 b/TMP Exporter/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39
rename to TMP Exporter/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39.info b/TMP Exporter/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39.info
rename to TMP Exporter/Library/metadata/a7/a7b89acd74e047778b42209a7a733d39.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7c91a123806d41a0873fcdcb629b1c4 b/TMP Exporter/Library/metadata/a7/a7c91a123806d41a0873fcdcb629b1c4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7c91a123806d41a0873fcdcb629b1c4
rename to TMP Exporter/Library/metadata/a7/a7c91a123806d41a0873fcdcb629b1c4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7c91a123806d41a0873fcdcb629b1c4.info b/TMP Exporter/Library/metadata/a7/a7c91a123806d41a0873fcdcb629b1c4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7c91a123806d41a0873fcdcb629b1c4.info
rename to TMP Exporter/Library/metadata/a7/a7c91a123806d41a0873fcdcb629b1c4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868 b/TMP Exporter/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868
rename to TMP Exporter/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868.info b/TMP Exporter/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868.info
rename to TMP Exporter/Library/metadata/a7/a7ec9e7ad8b847b7ae4510af83c5d868.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44 b/TMP Exporter/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44
rename to TMP Exporter/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44.info b/TMP Exporter/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44.info
rename to TMP Exporter/Library/metadata/a8/a8d9e44eff3f447db9448925617ccb44.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0 b/TMP Exporter/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0
rename to TMP Exporter/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0.info b/TMP Exporter/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0.info
rename to TMP Exporter/Library/metadata/a9/a98bc92072da64d49a393088e55ce2a0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6 b/TMP Exporter/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6
rename to TMP Exporter/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6.info b/TMP Exporter/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6.info
rename to TMP Exporter/Library/metadata/aa/aa160f27c3fe4052a5850e21108811b6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4 b/TMP Exporter/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4
rename to TMP Exporter/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4.info b/TMP Exporter/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4.info
rename to TMP Exporter/Library/metadata/aa/aa76955fe5bb44f7915d91db8c7043c4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410 b/TMP Exporter/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410
rename to TMP Exporter/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410.info b/TMP Exporter/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410.info
rename to TMP Exporter/Library/metadata/ab/ab2114bdc8544297b417dfefe9f1e410.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e b/TMP Exporter/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e
rename to TMP Exporter/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e.info b/TMP Exporter/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e.info
rename to TMP Exporter/Library/metadata/ab/ab866bd39382069418f5c179c1e1ab3e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84 b/TMP Exporter/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84
rename to TMP Exporter/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84.info b/TMP Exporter/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84.info
rename to TMP Exporter/Library/metadata/ab/abdc053b8e3644f299aedc641d609a84.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ac/ac281230df7b14becb40b3c479f1b429 b/TMP Exporter/Library/metadata/ac/ac281230df7b14becb40b3c479f1b429
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ac/ac281230df7b14becb40b3c479f1b429
rename to TMP Exporter/Library/metadata/ac/ac281230df7b14becb40b3c479f1b429
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ac/ac281230df7b14becb40b3c479f1b429.info b/TMP Exporter/Library/metadata/ac/ac281230df7b14becb40b3c479f1b429.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ac/ac281230df7b14becb40b3c479f1b429.info
rename to TMP Exporter/Library/metadata/ac/ac281230df7b14becb40b3c479f1b429.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ac/acc34040a66fe4170bc8885268860cfe b/TMP Exporter/Library/metadata/ac/acc34040a66fe4170bc8885268860cfe
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ac/acc34040a66fe4170bc8885268860cfe
rename to TMP Exporter/Library/metadata/ac/acc34040a66fe4170bc8885268860cfe
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ac/acc34040a66fe4170bc8885268860cfe.info b/TMP Exporter/Library/metadata/ac/acc34040a66fe4170bc8885268860cfe.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ac/acc34040a66fe4170bc8885268860cfe.info
rename to TMP Exporter/Library/metadata/ac/acc34040a66fe4170bc8885268860cfe.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ad/adee0c1377ef8b2489060e152dd0d119 b/TMP Exporter/Library/metadata/ad/adee0c1377ef8b2489060e152dd0d119
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ad/adee0c1377ef8b2489060e152dd0d119
rename to TMP Exporter/Library/metadata/ad/adee0c1377ef8b2489060e152dd0d119
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ad/adee0c1377ef8b2489060e152dd0d119.info b/TMP Exporter/Library/metadata/ad/adee0c1377ef8b2489060e152dd0d119.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ad/adee0c1377ef8b2489060e152dd0d119.info
rename to TMP Exporter/Library/metadata/ad/adee0c1377ef8b2489060e152dd0d119.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/af/afd7697844f4142f9aa91471c1fba506 b/TMP Exporter/Library/metadata/af/afd7697844f4142f9aa91471c1fba506
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/af/afd7697844f4142f9aa91471c1fba506
rename to TMP Exporter/Library/metadata/af/afd7697844f4142f9aa91471c1fba506
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/af/afd7697844f4142f9aa91471c1fba506.info b/TMP Exporter/Library/metadata/af/afd7697844f4142f9aa91471c1fba506.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/af/afd7697844f4142f9aa91471c1fba506.info
rename to TMP Exporter/Library/metadata/af/afd7697844f4142f9aa91471c1fba506.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b0/b025f6f8a47be46418bcb0ed1050cfb4 b/TMP Exporter/Library/metadata/b0/b025f6f8a47be46418bcb0ed1050cfb4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b0/b025f6f8a47be46418bcb0ed1050cfb4
rename to TMP Exporter/Library/metadata/b0/b025f6f8a47be46418bcb0ed1050cfb4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b0/b025f6f8a47be46418bcb0ed1050cfb4.info b/TMP Exporter/Library/metadata/b0/b025f6f8a47be46418bcb0ed1050cfb4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b0/b025f6f8a47be46418bcb0ed1050cfb4.info
rename to TMP Exporter/Library/metadata/b0/b025f6f8a47be46418bcb0ed1050cfb4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1 b/TMP Exporter/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1
rename to TMP Exporter/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1.info b/TMP Exporter/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1.info
rename to TMP Exporter/Library/metadata/b0/b09be1f217d34247af54863a2f5587e1.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b0/b0bb2afc5cd494e6f9b44455a0fc22f8 b/TMP Exporter/Library/metadata/b0/b0bb2afc5cd494e6f9b44455a0fc22f8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b0/b0bb2afc5cd494e6f9b44455a0fc22f8
rename to TMP Exporter/Library/metadata/b0/b0bb2afc5cd494e6f9b44455a0fc22f8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b0/b0bb2afc5cd494e6f9b44455a0fc22f8.info b/TMP Exporter/Library/metadata/b0/b0bb2afc5cd494e6f9b44455a0fc22f8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b0/b0bb2afc5cd494e6f9b44455a0fc22f8.info
rename to TMP Exporter/Library/metadata/b0/b0bb2afc5cd494e6f9b44455a0fc22f8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30 b/TMP Exporter/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30
rename to TMP Exporter/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30.info b/TMP Exporter/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30.info
rename to TMP Exporter/Library/metadata/b0/b0c12f0066bd444a1b3a900679169f30.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b1/b181a174758843d998af1f275856d318 b/TMP Exporter/Library/metadata/b1/b181a174758843d998af1f275856d318
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b1/b181a174758843d998af1f275856d318
rename to TMP Exporter/Library/metadata/b1/b181a174758843d998af1f275856d318
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b1/b181a174758843d998af1f275856d318.info b/TMP Exporter/Library/metadata/b1/b181a174758843d998af1f275856d318.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b1/b181a174758843d998af1f275856d318.info
rename to TMP Exporter/Library/metadata/b1/b181a174758843d998af1f275856d318.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4 b/TMP Exporter/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4
rename to TMP Exporter/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4.info b/TMP Exporter/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4.info
rename to TMP Exporter/Library/metadata/b2/b219c86ce508e478367c0a46e1aa9fe4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2 b/TMP Exporter/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2
rename to TMP Exporter/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2.info b/TMP Exporter/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2.info
rename to TMP Exporter/Library/metadata/b2/b274f3d1ea05d4bd8a13f4556f7797d2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e b/TMP Exporter/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e
rename to TMP Exporter/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e.info b/TMP Exporter/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e.info
rename to TMP Exporter/Library/metadata/b2/b2b693dffac3a4433b3114fea0b7fd4e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11 b/TMP Exporter/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11
rename to TMP Exporter/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11.info b/TMP Exporter/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11.info
rename to TMP Exporter/Library/metadata/b3/b32abd1c9d73a4cce8389f084ac12b11.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b52bde26a83564960bcb90217f72b910 b/TMP Exporter/Library/metadata/b5/b52bde26a83564960bcb90217f72b910
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b52bde26a83564960bcb90217f72b910
rename to TMP Exporter/Library/metadata/b5/b52bde26a83564960bcb90217f72b910
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b52bde26a83564960bcb90217f72b910.info b/TMP Exporter/Library/metadata/b5/b52bde26a83564960bcb90217f72b910.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b52bde26a83564960bcb90217f72b910.info
rename to TMP Exporter/Library/metadata/b5/b52bde26a83564960bcb90217f72b910.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029 b/TMP Exporter/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029
rename to TMP Exporter/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029.info b/TMP Exporter/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029.info
rename to TMP Exporter/Library/metadata/b5/b52e557db2c2b4eebb10444f1d582029.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5366b8adc0f44b3c9cb261a3f752d7a b/TMP Exporter/Library/metadata/b5/b5366b8adc0f44b3c9cb261a3f752d7a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5366b8adc0f44b3c9cb261a3f752d7a
rename to TMP Exporter/Library/metadata/b5/b5366b8adc0f44b3c9cb261a3f752d7a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5366b8adc0f44b3c9cb261a3f752d7a.info b/TMP Exporter/Library/metadata/b5/b5366b8adc0f44b3c9cb261a3f752d7a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5366b8adc0f44b3c9cb261a3f752d7a.info
rename to TMP Exporter/Library/metadata/b5/b5366b8adc0f44b3c9cb261a3f752d7a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c b/TMP Exporter/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c
rename to TMP Exporter/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c.info b/TMP Exporter/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c.info
rename to TMP Exporter/Library/metadata/b5/b5d6c28ed7b94775be9e2560f300247c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5da970776034f77a070d99423d68791 b/TMP Exporter/Library/metadata/b5/b5da970776034f77a070d99423d68791
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5da970776034f77a070d99423d68791
rename to TMP Exporter/Library/metadata/b5/b5da970776034f77a070d99423d68791
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5da970776034f77a070d99423d68791.info b/TMP Exporter/Library/metadata/b5/b5da970776034f77a070d99423d68791.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5da970776034f77a070d99423d68791.info
rename to TMP Exporter/Library/metadata/b5/b5da970776034f77a070d99423d68791.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59 b/TMP Exporter/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59
rename to TMP Exporter/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59.info b/TMP Exporter/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59.info
rename to TMP Exporter/Library/metadata/b5/b5f4343795a0e4626ac1fe4a9e6fce59.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6295675042094715ad9cc104210aeb7 b/TMP Exporter/Library/metadata/b6/b6295675042094715ad9cc104210aeb7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6295675042094715ad9cc104210aeb7
rename to TMP Exporter/Library/metadata/b6/b6295675042094715ad9cc104210aeb7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6295675042094715ad9cc104210aeb7.info b/TMP Exporter/Library/metadata/b6/b6295675042094715ad9cc104210aeb7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6295675042094715ad9cc104210aeb7.info
rename to TMP Exporter/Library/metadata/b6/b6295675042094715ad9cc104210aeb7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6d1682724bab428496b2bd2d8c7b194 b/TMP Exporter/Library/metadata/b6/b6d1682724bab428496b2bd2d8c7b194
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6d1682724bab428496b2bd2d8c7b194
rename to TMP Exporter/Library/metadata/b6/b6d1682724bab428496b2bd2d8c7b194
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6d1682724bab428496b2bd2d8c7b194.info b/TMP Exporter/Library/metadata/b6/b6d1682724bab428496b2bd2d8c7b194.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6d1682724bab428496b2bd2d8c7b194.info
rename to TMP Exporter/Library/metadata/b6/b6d1682724bab428496b2bd2d8c7b194.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f b/TMP Exporter/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f
rename to TMP Exporter/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f.info b/TMP Exporter/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f.info
rename to TMP Exporter/Library/metadata/b6/b6e75d7f429a4e7e9e1ffb4f85cff49f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037 b/TMP Exporter/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037
rename to TMP Exporter/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037.info b/TMP Exporter/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037.info
rename to TMP Exporter/Library/metadata/b7/b77b1ad9c05af0412725856c6c53b037.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b7/b7c10e584b708734ba6141e7d4797931 b/TMP Exporter/Library/metadata/b7/b7c10e584b708734ba6141e7d4797931
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b7/b7c10e584b708734ba6141e7d4797931
rename to TMP Exporter/Library/metadata/b7/b7c10e584b708734ba6141e7d4797931
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b7/b7c10e584b708734ba6141e7d4797931.info b/TMP Exporter/Library/metadata/b7/b7c10e584b708734ba6141e7d4797931.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b7/b7c10e584b708734ba6141e7d4797931.info
rename to TMP Exporter/Library/metadata/b7/b7c10e584b708734ba6141e7d4797931.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b b/TMP Exporter/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b
rename to TMP Exporter/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b.info b/TMP Exporter/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b.info
rename to TMP Exporter/Library/metadata/b7/b7e8a8fb69eacee439474914ea54bf9b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81 b/TMP Exporter/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81
rename to TMP Exporter/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81.info b/TMP Exporter/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81.info
rename to TMP Exporter/Library/metadata/b8/b83f06ac0c0696e9563230865ca72b81.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b9/b9374526debed24449d75f8cc6d0103f b/TMP Exporter/Library/metadata/b9/b9374526debed24449d75f8cc6d0103f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b9/b9374526debed24449d75f8cc6d0103f
rename to TMP Exporter/Library/metadata/b9/b9374526debed24449d75f8cc6d0103f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b9/b9374526debed24449d75f8cc6d0103f.info b/TMP Exporter/Library/metadata/b9/b9374526debed24449d75f8cc6d0103f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b9/b9374526debed24449d75f8cc6d0103f.info
rename to TMP Exporter/Library/metadata/b9/b9374526debed24449d75f8cc6d0103f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a b/TMP Exporter/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a
rename to TMP Exporter/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a.info b/TMP Exporter/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a.info
rename to TMP Exporter/Library/metadata/b9/b95ab00277ee47c687d710a3bb623d0a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6 b/TMP Exporter/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6
rename to TMP Exporter/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6.info b/TMP Exporter/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6.info
rename to TMP Exporter/Library/metadata/b9/b9f324f08cd904ec986357c98dd9eaa6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ba/bac185a28e198c1419b649ca946942ea b/TMP Exporter/Library/metadata/ba/bac185a28e198c1419b649ca946942ea
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ba/bac185a28e198c1419b649ca946942ea
rename to TMP Exporter/Library/metadata/ba/bac185a28e198c1419b649ca946942ea
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ba/bac185a28e198c1419b649ca946942ea.info b/TMP Exporter/Library/metadata/ba/bac185a28e198c1419b649ca946942ea.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ba/bac185a28e198c1419b649ca946942ea.info
rename to TMP Exporter/Library/metadata/ba/bac185a28e198c1419b649ca946942ea.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984 b/TMP Exporter/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984
rename to TMP Exporter/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984.info b/TMP Exporter/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984.info
rename to TMP Exporter/Library/metadata/bb/bb05cab7d802aa5468f8f2f86840d984.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb15697a279504a90b825c44dc355047 b/TMP Exporter/Library/metadata/bb/bb15697a279504a90b825c44dc355047
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb15697a279504a90b825c44dc355047
rename to TMP Exporter/Library/metadata/bb/bb15697a279504a90b825c44dc355047
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb15697a279504a90b825c44dc355047.info b/TMP Exporter/Library/metadata/bb/bb15697a279504a90b825c44dc355047.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb15697a279504a90b825c44dc355047.info
rename to TMP Exporter/Library/metadata/bb/bb15697a279504a90b825c44dc355047.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9 b/TMP Exporter/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9
rename to TMP Exporter/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9.info b/TMP Exporter/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9.info
rename to TMP Exporter/Library/metadata/bb/bb42b2d967d6427983c901a4ffc8ecd9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063 b/TMP Exporter/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063
rename to TMP Exporter/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063.info b/TMP Exporter/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063.info
rename to TMP Exporter/Library/metadata/bb/bbec1324b05a54939ad2fea2d7e11063.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3 b/TMP Exporter/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3
rename to TMP Exporter/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3.info b/TMP Exporter/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3.info
rename to TMP Exporter/Library/metadata/bc/bc00e25696e4132499f56528d3fed2e3.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bc/bc1ede39bf3643ee8e493720e4259791 b/TMP Exporter/Library/metadata/bc/bc1ede39bf3643ee8e493720e4259791
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bc/bc1ede39bf3643ee8e493720e4259791
rename to TMP Exporter/Library/metadata/bc/bc1ede39bf3643ee8e493720e4259791
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bc/bc1ede39bf3643ee8e493720e4259791.info b/TMP Exporter/Library/metadata/bc/bc1ede39bf3643ee8e493720e4259791.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bc/bc1ede39bf3643ee8e493720e4259791.info
rename to TMP Exporter/Library/metadata/bc/bc1ede39bf3643ee8e493720e4259791.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792 b/TMP Exporter/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792
rename to TMP Exporter/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792.info b/TMP Exporter/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792.info
rename to TMP Exporter/Library/metadata/bc/bcd27da1c9ae94d2cafe094482a20792.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214 b/TMP Exporter/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214
rename to TMP Exporter/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214.info b/TMP Exporter/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214.info
rename to TMP Exporter/Library/metadata/be/be4b06d1ee51e4ac2a01a0e499d4c214.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d b/TMP Exporter/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d
rename to TMP Exporter/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d.info b/TMP Exporter/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d.info
rename to TMP Exporter/Library/metadata/bf/bfd567a3d1631a761bca9e99fa53d86d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c b/TMP Exporter/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c
rename to TMP Exporter/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c.info b/TMP Exporter/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c.info
rename to TMP Exporter/Library/metadata/bf/bfd715cd54ab84c22b128149c12b516c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bf/bff25ea4cf0d3d841b6787b9f649f21b b/TMP Exporter/Library/metadata/bf/bff25ea4cf0d3d841b6787b9f649f21b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bf/bff25ea4cf0d3d841b6787b9f649f21b
rename to TMP Exporter/Library/metadata/bf/bff25ea4cf0d3d841b6787b9f649f21b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/bf/bff25ea4cf0d3d841b6787b9f649f21b.info b/TMP Exporter/Library/metadata/bf/bff25ea4cf0d3d841b6787b9f649f21b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/bf/bff25ea4cf0d3d841b6787b9f649f21b.info
rename to TMP Exporter/Library/metadata/bf/bff25ea4cf0d3d841b6787b9f649f21b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c0/c060426bfd6e82575228df6656368eaa b/TMP Exporter/Library/metadata/c0/c060426bfd6e82575228df6656368eaa
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c0/c060426bfd6e82575228df6656368eaa
rename to TMP Exporter/Library/metadata/c0/c060426bfd6e82575228df6656368eaa
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c0/c060426bfd6e82575228df6656368eaa.info b/TMP Exporter/Library/metadata/c0/c060426bfd6e82575228df6656368eaa.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c0/c060426bfd6e82575228df6656368eaa.info
rename to TMP Exporter/Library/metadata/c0/c060426bfd6e82575228df6656368eaa.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c0/c09652e660b34484cb10d35ed2206df5 b/TMP Exporter/Library/metadata/c0/c09652e660b34484cb10d35ed2206df5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c0/c09652e660b34484cb10d35ed2206df5
rename to TMP Exporter/Library/metadata/c0/c09652e660b34484cb10d35ed2206df5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c0/c09652e660b34484cb10d35ed2206df5.info b/TMP Exporter/Library/metadata/c0/c09652e660b34484cb10d35ed2206df5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c0/c09652e660b34484cb10d35ed2206df5.info
rename to TMP Exporter/Library/metadata/c0/c09652e660b34484cb10d35ed2206df5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c1/c18cb9388313e4287ad5895ee735c47d b/TMP Exporter/Library/metadata/c1/c18cb9388313e4287ad5895ee735c47d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c1/c18cb9388313e4287ad5895ee735c47d
rename to TMP Exporter/Library/metadata/c1/c18cb9388313e4287ad5895ee735c47d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c1/c18cb9388313e4287ad5895ee735c47d.info b/TMP Exporter/Library/metadata/c1/c18cb9388313e4287ad5895ee735c47d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c1/c18cb9388313e4287ad5895ee735c47d.info
rename to TMP Exporter/Library/metadata/c1/c18cb9388313e4287ad5895ee735c47d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c b/TMP Exporter/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c
rename to TMP Exporter/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c.info b/TMP Exporter/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c.info
rename to TMP Exporter/Library/metadata/c2/c2f7f6a88b4c4f20a53deb72f3d9144c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c4/c41005c129ba4d66911b75229fd70b45 b/TMP Exporter/Library/metadata/c4/c41005c129ba4d66911b75229fd70b45
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c4/c41005c129ba4d66911b75229fd70b45
rename to TMP Exporter/Library/metadata/c4/c41005c129ba4d66911b75229fd70b45
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c4/c41005c129ba4d66911b75229fd70b45.info b/TMP Exporter/Library/metadata/c4/c41005c129ba4d66911b75229fd70b45.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c4/c41005c129ba4d66911b75229fd70b45.info
rename to TMP Exporter/Library/metadata/c4/c41005c129ba4d66911b75229fd70b45.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c4/c4c1445ee948a4124bfa9fb818a17e36 b/TMP Exporter/Library/metadata/c4/c4c1445ee948a4124bfa9fb818a17e36
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c4/c4c1445ee948a4124bfa9fb818a17e36
rename to TMP Exporter/Library/metadata/c4/c4c1445ee948a4124bfa9fb818a17e36
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c4/c4c1445ee948a4124bfa9fb818a17e36.info b/TMP Exporter/Library/metadata/c4/c4c1445ee948a4124bfa9fb818a17e36.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c4/c4c1445ee948a4124bfa9fb818a17e36.info
rename to TMP Exporter/Library/metadata/c4/c4c1445ee948a4124bfa9fb818a17e36.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73 b/TMP Exporter/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73
rename to TMP Exporter/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73.info b/TMP Exporter/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73.info
rename to TMP Exporter/Library/metadata/c4/c4df1124e2787ee0c8d1a911de17ee73.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b b/TMP Exporter/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b
rename to TMP Exporter/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b.info b/TMP Exporter/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b.info
rename to TMP Exporter/Library/metadata/c5/c522a644a29fcab2eaf63298c118a65b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c5/c55a64c7570474f47a94abe39ebfef04 b/TMP Exporter/Library/metadata/c5/c55a64c7570474f47a94abe39ebfef04
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c5/c55a64c7570474f47a94abe39ebfef04
rename to TMP Exporter/Library/metadata/c5/c55a64c7570474f47a94abe39ebfef04
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c5/c55a64c7570474f47a94abe39ebfef04.info b/TMP Exporter/Library/metadata/c5/c55a64c7570474f47a94abe39ebfef04.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c5/c55a64c7570474f47a94abe39ebfef04.info
rename to TMP Exporter/Library/metadata/c5/c55a64c7570474f47a94abe39ebfef04.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c5/c58fc68a282572d46a270a2e3b8c4fb9 b/TMP Exporter/Library/metadata/c5/c58fc68a282572d46a270a2e3b8c4fb9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c5/c58fc68a282572d46a270a2e3b8c4fb9
rename to TMP Exporter/Library/metadata/c5/c58fc68a282572d46a270a2e3b8c4fb9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c5/c58fc68a282572d46a270a2e3b8c4fb9.info b/TMP Exporter/Library/metadata/c5/c58fc68a282572d46a270a2e3b8c4fb9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c5/c58fc68a282572d46a270a2e3b8c4fb9.info
rename to TMP Exporter/Library/metadata/c5/c58fc68a282572d46a270a2e3b8c4fb9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482 b/TMP Exporter/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482
rename to TMP Exporter/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482.info b/TMP Exporter/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482.info
rename to TMP Exporter/Library/metadata/c5/c5ba7626a737840ff88a3bd84b100482.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8 b/TMP Exporter/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8
rename to TMP Exporter/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8.info b/TMP Exporter/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8.info
rename to TMP Exporter/Library/metadata/c6/c68ba5b432ef64e67ae0bf74960908a8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c7/c754112a02f354a6696fa4f2b99e95a5 b/TMP Exporter/Library/metadata/c7/c754112a02f354a6696fa4f2b99e95a5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c7/c754112a02f354a6696fa4f2b99e95a5
rename to TMP Exporter/Library/metadata/c7/c754112a02f354a6696fa4f2b99e95a5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c7/c754112a02f354a6696fa4f2b99e95a5.info b/TMP Exporter/Library/metadata/c7/c754112a02f354a6696fa4f2b99e95a5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c7/c754112a02f354a6696fa4f2b99e95a5.info
rename to TMP Exporter/Library/metadata/c7/c754112a02f354a6696fa4f2b99e95a5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5 b/TMP Exporter/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5
rename to TMP Exporter/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5.info b/TMP Exporter/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5.info
rename to TMP Exporter/Library/metadata/c7/c7559cdbc33f04af1a5a42d2aa5b40a5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b b/TMP Exporter/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b
rename to TMP Exporter/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b.info b/TMP Exporter/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b.info
rename to TMP Exporter/Library/metadata/c7/c76700ea0062413d9f69409b4e9e151b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c7/c786248494be6489bbfa006bdf59c773 b/TMP Exporter/Library/metadata/c7/c786248494be6489bbfa006bdf59c773
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c7/c786248494be6489bbfa006bdf59c773
rename to TMP Exporter/Library/metadata/c7/c786248494be6489bbfa006bdf59c773
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c7/c786248494be6489bbfa006bdf59c773.info b/TMP Exporter/Library/metadata/c7/c786248494be6489bbfa006bdf59c773.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c7/c786248494be6489bbfa006bdf59c773.info
rename to TMP Exporter/Library/metadata/c7/c786248494be6489bbfa006bdf59c773.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117 b/TMP Exporter/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117
rename to TMP Exporter/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117.info b/TMP Exporter/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117.info
rename to TMP Exporter/Library/metadata/c9/c99bfe4fc4e5c4dc3917c14075acd117.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb b/TMP Exporter/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb
rename to TMP Exporter/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb.info b/TMP Exporter/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb.info
rename to TMP Exporter/Library/metadata/ca/ca51b19024094d1b87f3e07edb0a75fb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c b/TMP Exporter/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c
rename to TMP Exporter/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c.info b/TMP Exporter/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c.info
rename to TMP Exporter/Library/metadata/ca/ca53a6f1e29564d528bb56b92e0f181c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31 b/TMP Exporter/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31
rename to TMP Exporter/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31.info b/TMP Exporter/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31.info
rename to TMP Exporter/Library/metadata/ca/ca77d26d10b9455ca5a4b22c93be2a31.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e b/TMP Exporter/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e
rename to TMP Exporter/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e.info b/TMP Exporter/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e.info
rename to TMP Exporter/Library/metadata/ca/ca819640f53b48919bf7774744f7f15e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970 b/TMP Exporter/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970
rename to TMP Exporter/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970.info b/TMP Exporter/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970.info
rename to TMP Exporter/Library/metadata/ca/cabaa672b0e3ee91fa7b6da4daab7970.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136 b/TMP Exporter/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136
rename to TMP Exporter/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136.info b/TMP Exporter/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136.info
rename to TMP Exporter/Library/metadata/cc/cc1b50b5501f748da8bec762294d9136.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/cd/cd44c1bc0fa624a39aa784af44c62180 b/TMP Exporter/Library/metadata/cd/cd44c1bc0fa624a39aa784af44c62180
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/cd/cd44c1bc0fa624a39aa784af44c62180
rename to TMP Exporter/Library/metadata/cd/cd44c1bc0fa624a39aa784af44c62180
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/cd/cd44c1bc0fa624a39aa784af44c62180.info b/TMP Exporter/Library/metadata/cd/cd44c1bc0fa624a39aa784af44c62180.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/cd/cd44c1bc0fa624a39aa784af44c62180.info
rename to TMP Exporter/Library/metadata/cd/cd44c1bc0fa624a39aa784af44c62180.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892 b/TMP Exporter/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892
rename to TMP Exporter/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892.info b/TMP Exporter/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892.info
rename to TMP Exporter/Library/metadata/ce/ce4395ccdb12cf62fca756358be1a892.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901 b/TMP Exporter/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901
rename to TMP Exporter/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901.info b/TMP Exporter/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901.info
rename to TMP Exporter/Library/metadata/ce/ce4ff17ca867d2b48b5c8a4181611901.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333 b/TMP Exporter/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333
rename to TMP Exporter/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333.info b/TMP Exporter/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333.info
rename to TMP Exporter/Library/metadata/cf/cf1fe50a641faac4691bf49eb32ce333.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf6aca931950a4a6a886e214e9e649c4 b/TMP Exporter/Library/metadata/cf/cf6aca931950a4a6a886e214e9e649c4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf6aca931950a4a6a886e214e9e649c4
rename to TMP Exporter/Library/metadata/cf/cf6aca931950a4a6a886e214e9e649c4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf6aca931950a4a6a886e214e9e649c4.info b/TMP Exporter/Library/metadata/cf/cf6aca931950a4a6a886e214e9e649c4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf6aca931950a4a6a886e214e9e649c4.info
rename to TMP Exporter/Library/metadata/cf/cf6aca931950a4a6a886e214e9e649c4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf81c85f95fe47e1a27f6ae460cf182c b/TMP Exporter/Library/metadata/cf/cf81c85f95fe47e1a27f6ae460cf182c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf81c85f95fe47e1a27f6ae460cf182c
rename to TMP Exporter/Library/metadata/cf/cf81c85f95fe47e1a27f6ae460cf182c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf81c85f95fe47e1a27f6ae460cf182c.info b/TMP Exporter/Library/metadata/cf/cf81c85f95fe47e1a27f6ae460cf182c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/cf/cf81c85f95fe47e1a27f6ae460cf182c.info
rename to TMP Exporter/Library/metadata/cf/cf81c85f95fe47e1a27f6ae460cf182c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c b/TMP Exporter/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c
rename to TMP Exporter/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c.info b/TMP Exporter/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c.info
rename to TMP Exporter/Library/metadata/d0/d028fbbad11524d13a069f495ddcf01c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d0/d0603b6d5186471b96c778c3949c7ce2 b/TMP Exporter/Library/metadata/d0/d0603b6d5186471b96c778c3949c7ce2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d0/d0603b6d5186471b96c778c3949c7ce2
rename to TMP Exporter/Library/metadata/d0/d0603b6d5186471b96c778c3949c7ce2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d0/d0603b6d5186471b96c778c3949c7ce2.info b/TMP Exporter/Library/metadata/d0/d0603b6d5186471b96c778c3949c7ce2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d0/d0603b6d5186471b96c778c3949c7ce2.info
rename to TMP Exporter/Library/metadata/d0/d0603b6d5186471b96c778c3949c7ce2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a b/TMP Exporter/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a
rename to TMP Exporter/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a.info b/TMP Exporter/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a.info
rename to TMP Exporter/Library/metadata/d0/d0e3ad91972c66f5238f5b9b7d5ae58a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1114812d620342e1a4ad3eaae7e220c b/TMP Exporter/Library/metadata/d1/d1114812d620342e1a4ad3eaae7e220c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1114812d620342e1a4ad3eaae7e220c
rename to TMP Exporter/Library/metadata/d1/d1114812d620342e1a4ad3eaae7e220c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1114812d620342e1a4ad3eaae7e220c.info b/TMP Exporter/Library/metadata/d1/d1114812d620342e1a4ad3eaae7e220c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1114812d620342e1a4ad3eaae7e220c.info
rename to TMP Exporter/Library/metadata/d1/d1114812d620342e1a4ad3eaae7e220c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81 b/TMP Exporter/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81
rename to TMP Exporter/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81.info b/TMP Exporter/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81.info
rename to TMP Exporter/Library/metadata/d1/d1a0a27327b54c3bac52a08929c33f81.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e b/TMP Exporter/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e
rename to TMP Exporter/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e.info b/TMP Exporter/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e.info
rename to TMP Exporter/Library/metadata/d1/d1c1a2d988f5148fd9ab17b2460d271e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d3/d31e5d760880a4e52a3a75322481d0d2 b/TMP Exporter/Library/metadata/d3/d31e5d760880a4e52a3a75322481d0d2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d3/d31e5d760880a4e52a3a75322481d0d2
rename to TMP Exporter/Library/metadata/d3/d31e5d760880a4e52a3a75322481d0d2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d3/d31e5d760880a4e52a3a75322481d0d2.info b/TMP Exporter/Library/metadata/d3/d31e5d760880a4e52a3a75322481d0d2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d3/d31e5d760880a4e52a3a75322481d0d2.info
rename to TMP Exporter/Library/metadata/d3/d31e5d760880a4e52a3a75322481d0d2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796 b/TMP Exporter/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796
rename to TMP Exporter/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796.info b/TMP Exporter/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796.info
rename to TMP Exporter/Library/metadata/d3/d3cbe921f7b3d9a3257e7c61a5761796.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228 b/TMP Exporter/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228
rename to TMP Exporter/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228.info b/TMP Exporter/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228.info
rename to TMP Exporter/Library/metadata/d4/d40e85137bc74864a47f42ceddfec228.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d4/d437fe60bb34f45728664a5d930c1635 b/TMP Exporter/Library/metadata/d4/d437fe60bb34f45728664a5d930c1635
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d4/d437fe60bb34f45728664a5d930c1635
rename to TMP Exporter/Library/metadata/d4/d437fe60bb34f45728664a5d930c1635
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d4/d437fe60bb34f45728664a5d930c1635.info b/TMP Exporter/Library/metadata/d4/d437fe60bb34f45728664a5d930c1635.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d4/d437fe60bb34f45728664a5d930c1635.info
rename to TMP Exporter/Library/metadata/d4/d437fe60bb34f45728664a5d930c1635.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d4/d4ef26aa386b44923b61c9c4b505a67c b/TMP Exporter/Library/metadata/d4/d4ef26aa386b44923b61c9c4b505a67c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d4/d4ef26aa386b44923b61c9c4b505a67c
rename to TMP Exporter/Library/metadata/d4/d4ef26aa386b44923b61c9c4b505a67c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d4/d4ef26aa386b44923b61c9c4b505a67c.info b/TMP Exporter/Library/metadata/d4/d4ef26aa386b44923b61c9c4b505a67c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d4/d4ef26aa386b44923b61c9c4b505a67c.info
rename to TMP Exporter/Library/metadata/d4/d4ef26aa386b44923b61c9c4b505a67c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217 b/TMP Exporter/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217
rename to TMP Exporter/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217.info b/TMP Exporter/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217.info
rename to TMP Exporter/Library/metadata/d5/d5a61f8cc87394b28aec6b88b4083217.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5c4313ac603b03488157fd651d6751b b/TMP Exporter/Library/metadata/d5/d5c4313ac603b03488157fd651d6751b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5c4313ac603b03488157fd651d6751b
rename to TMP Exporter/Library/metadata/d5/d5c4313ac603b03488157fd651d6751b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5c4313ac603b03488157fd651d6751b.info b/TMP Exporter/Library/metadata/d5/d5c4313ac603b03488157fd651d6751b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5c4313ac603b03488157fd651d6751b.info
rename to TMP Exporter/Library/metadata/d5/d5c4313ac603b03488157fd651d6751b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be b/TMP Exporter/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be
rename to TMP Exporter/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be.info b/TMP Exporter/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be.info
rename to TMP Exporter/Library/metadata/d5/d5f0b0adc6826e9dd3b72e292e8438be.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e b/TMP Exporter/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e
rename to TMP Exporter/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e.info b/TMP Exporter/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e.info
rename to TMP Exporter/Library/metadata/d6/d607a67dc772b484da060e66a3d61a4e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c b/TMP Exporter/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c
rename to TMP Exporter/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c.info b/TMP Exporter/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c.info
rename to TMP Exporter/Library/metadata/d6/d6a708dbb74414a6dbd60e07d9513c1c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2 b/TMP Exporter/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2
rename to TMP Exporter/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2.info b/TMP Exporter/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2.info
rename to TMP Exporter/Library/metadata/d6/d6c6a000a805f00649b36b542e8426c2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c b/TMP Exporter/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c
rename to TMP Exporter/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c.info b/TMP Exporter/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c.info
rename to TMP Exporter/Library/metadata/d6/d6db7caf2e852b75ebb9c6098418179c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d8/d82c1b31c7e74239bff1220585707d2b b/TMP Exporter/Library/metadata/d8/d82c1b31c7e74239bff1220585707d2b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d8/d82c1b31c7e74239bff1220585707d2b
rename to TMP Exporter/Library/metadata/d8/d82c1b31c7e74239bff1220585707d2b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d8/d82c1b31c7e74239bff1220585707d2b.info b/TMP Exporter/Library/metadata/d8/d82c1b31c7e74239bff1220585707d2b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d8/d82c1b31c7e74239bff1220585707d2b.info
rename to TMP Exporter/Library/metadata/d8/d82c1b31c7e74239bff1220585707d2b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3 b/TMP Exporter/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3
rename to TMP Exporter/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3.info b/TMP Exporter/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3.info
rename to TMP Exporter/Library/metadata/d8/d85e5eeaf8f135aeaaebdc8aa3cff6c3.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d9/d912d4873af534bd4a9d44bf1b52f14e b/TMP Exporter/Library/metadata/d9/d912d4873af534bd4a9d44bf1b52f14e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d9/d912d4873af534bd4a9d44bf1b52f14e
rename to TMP Exporter/Library/metadata/d9/d912d4873af534bd4a9d44bf1b52f14e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d9/d912d4873af534bd4a9d44bf1b52f14e.info b/TMP Exporter/Library/metadata/d9/d912d4873af534bd4a9d44bf1b52f14e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d9/d912d4873af534bd4a9d44bf1b52f14e.info
rename to TMP Exporter/Library/metadata/d9/d912d4873af534bd4a9d44bf1b52f14e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0 b/TMP Exporter/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0
rename to TMP Exporter/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0.info b/TMP Exporter/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0.info
rename to TMP Exporter/Library/metadata/d9/d929147d9f78c487397abb40f2c257b0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d9/d930090c0cd643c7b55f19a38538c162 b/TMP Exporter/Library/metadata/d9/d930090c0cd643c7b55f19a38538c162
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d9/d930090c0cd643c7b55f19a38538c162
rename to TMP Exporter/Library/metadata/d9/d930090c0cd643c7b55f19a38538c162
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d9/d930090c0cd643c7b55f19a38538c162.info b/TMP Exporter/Library/metadata/d9/d930090c0cd643c7b55f19a38538c162.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d9/d930090c0cd643c7b55f19a38538c162.info
rename to TMP Exporter/Library/metadata/d9/d930090c0cd643c7b55f19a38538c162.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317 b/TMP Exporter/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317
rename to TMP Exporter/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317.info b/TMP Exporter/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317.info
rename to TMP Exporter/Library/metadata/d9/d9647b571c5e44729b71d756b3d55317.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/da/da0b41deddf0a4414b09681018c171f1 b/TMP Exporter/Library/metadata/da/da0b41deddf0a4414b09681018c171f1
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/da/da0b41deddf0a4414b09681018c171f1
rename to TMP Exporter/Library/metadata/da/da0b41deddf0a4414b09681018c171f1
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/da/da0b41deddf0a4414b09681018c171f1.info b/TMP Exporter/Library/metadata/da/da0b41deddf0a4414b09681018c171f1.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/da/da0b41deddf0a4414b09681018c171f1.info
rename to TMP Exporter/Library/metadata/da/da0b41deddf0a4414b09681018c171f1.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb b/TMP Exporter/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb
rename to TMP Exporter/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb.info b/TMP Exporter/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb.info
rename to TMP Exporter/Library/metadata/dc/dc443db3e92b4983b9738c1131f555cb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968 b/TMP Exporter/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968
rename to TMP Exporter/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968.info b/TMP Exporter/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968.info
rename to TMP Exporter/Library/metadata/dc/dcc8c6e92b172a65719af5ddf47dd968.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2 b/TMP Exporter/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2
rename to TMP Exporter/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2.info b/TMP Exporter/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2.info
rename to TMP Exporter/Library/metadata/dc/dce91326f102345f3ba2f0987c0679c2.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21 b/TMP Exporter/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21
rename to TMP Exporter/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21.info b/TMP Exporter/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21.info
rename to TMP Exporter/Library/metadata/dc/dced8f6ea9f964e8e8e61574ea889d21.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38 b/TMP Exporter/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38
rename to TMP Exporter/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38.info b/TMP Exporter/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38.info
rename to TMP Exporter/Library/metadata/dd/dd2fe74169b54bf58fca17288513ef38.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dd/dd89cf5b9246416f84610a006f916af7 b/TMP Exporter/Library/metadata/dd/dd89cf5b9246416f84610a006f916af7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dd/dd89cf5b9246416f84610a006f916af7
rename to TMP Exporter/Library/metadata/dd/dd89cf5b9246416f84610a006f916af7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/dd/dd89cf5b9246416f84610a006f916af7.info b/TMP Exporter/Library/metadata/dd/dd89cf5b9246416f84610a006f916af7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/dd/dd89cf5b9246416f84610a006f916af7.info
rename to TMP Exporter/Library/metadata/dd/dd89cf5b9246416f84610a006f916af7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/df/df786ba27a82ab542871d60941ff87d1 b/TMP Exporter/Library/metadata/df/df786ba27a82ab542871d60941ff87d1
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/df/df786ba27a82ab542871d60941ff87d1
rename to TMP Exporter/Library/metadata/df/df786ba27a82ab542871d60941ff87d1
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/df/df786ba27a82ab542871d60941ff87d1.info b/TMP Exporter/Library/metadata/df/df786ba27a82ab542871d60941ff87d1.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/df/df786ba27a82ab542871d60941ff87d1.info
rename to TMP Exporter/Library/metadata/df/df786ba27a82ab542871d60941ff87d1.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/df/dffef66376be4fa480fb02b19edbe903 b/TMP Exporter/Library/metadata/df/dffef66376be4fa480fb02b19edbe903
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/df/dffef66376be4fa480fb02b19edbe903
rename to TMP Exporter/Library/metadata/df/dffef66376be4fa480fb02b19edbe903
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/df/dffef66376be4fa480fb02b19edbe903.info b/TMP Exporter/Library/metadata/df/dffef66376be4fa480fb02b19edbe903.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/df/dffef66376be4fa480fb02b19edbe903.info
rename to TMP Exporter/Library/metadata/df/dffef66376be4fa480fb02b19edbe903.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b b/TMP Exporter/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b
rename to TMP Exporter/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b.info b/TMP Exporter/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b.info
rename to TMP Exporter/Library/metadata/e0/e05ace3bd15740cda0bad60d89092a5b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e1/e1007cd261c84053beb0c3537782908d b/TMP Exporter/Library/metadata/e1/e1007cd261c84053beb0c3537782908d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e1/e1007cd261c84053beb0c3537782908d
rename to TMP Exporter/Library/metadata/e1/e1007cd261c84053beb0c3537782908d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e1/e1007cd261c84053beb0c3537782908d.info b/TMP Exporter/Library/metadata/e1/e1007cd261c84053beb0c3537782908d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e1/e1007cd261c84053beb0c3537782908d.info
rename to TMP Exporter/Library/metadata/e1/e1007cd261c84053beb0c3537782908d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17 b/TMP Exporter/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17
rename to TMP Exporter/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17.info b/TMP Exporter/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17.info
rename to TMP Exporter/Library/metadata/e1/e1ef8466c8fd01a549f10baa4d51fa17.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3 b/TMP Exporter/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3
rename to TMP Exporter/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3.info b/TMP Exporter/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3.info
rename to TMP Exporter/Library/metadata/e2/e21bec35f48a44298911b25ead550ce3.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e2/e2da6f13836e79e49af85ef19ce13cdc b/TMP Exporter/Library/metadata/e2/e2da6f13836e79e49af85ef19ce13cdc
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e2/e2da6f13836e79e49af85ef19ce13cdc
rename to TMP Exporter/Library/metadata/e2/e2da6f13836e79e49af85ef19ce13cdc
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e2/e2da6f13836e79e49af85ef19ce13cdc.info b/TMP Exporter/Library/metadata/e2/e2da6f13836e79e49af85ef19ce13cdc.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e2/e2da6f13836e79e49af85ef19ce13cdc.info
rename to TMP Exporter/Library/metadata/e2/e2da6f13836e79e49af85ef19ce13cdc.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486 b/TMP Exporter/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486
rename to TMP Exporter/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486.info b/TMP Exporter/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486.info
rename to TMP Exporter/Library/metadata/e4/e426a33061f184a9785cd5d82f9fb486.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e4/e45f79867376940b7ba31502238d8efa b/TMP Exporter/Library/metadata/e4/e45f79867376940b7ba31502238d8efa
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e4/e45f79867376940b7ba31502238d8efa
rename to TMP Exporter/Library/metadata/e4/e45f79867376940b7ba31502238d8efa
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e4/e45f79867376940b7ba31502238d8efa.info b/TMP Exporter/Library/metadata/e4/e45f79867376940b7ba31502238d8efa.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e4/e45f79867376940b7ba31502238d8efa.info
rename to TMP Exporter/Library/metadata/e4/e45f79867376940b7ba31502238d8efa.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823 b/TMP Exporter/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823
rename to TMP Exporter/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823.info b/TMP Exporter/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823.info
rename to TMP Exporter/Library/metadata/e4/e4e0b1de1aee400d81ed4273141e7823.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a b/TMP Exporter/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a
rename to TMP Exporter/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a.info b/TMP Exporter/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a.info
rename to TMP Exporter/Library/metadata/e4/e4f4cf1b9b434137a499903a7a1d651a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb b/TMP Exporter/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb
rename to TMP Exporter/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb.info b/TMP Exporter/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb.info
rename to TMP Exporter/Library/metadata/e5/e53bc96d2d054b8cbc811f0d73e761eb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a b/TMP Exporter/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a
rename to TMP Exporter/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a.info b/TMP Exporter/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a.info
rename to TMP Exporter/Library/metadata/e6/e69259f6ff914146ad610be5491eb44a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe b/TMP Exporter/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe
rename to TMP Exporter/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe.info b/TMP Exporter/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe.info
rename to TMP Exporter/Library/metadata/e6/e6925bb38494e6a43ba0921e65e424fe.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4 b/TMP Exporter/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4
rename to TMP Exporter/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4.info b/TMP Exporter/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4.info
rename to TMP Exporter/Library/metadata/e6/e6a1d1e3d2384453a7371b4a07a41ca4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e7/e73a58f6e2794ae7b1b7e50b7fb811b0 b/TMP Exporter/Library/metadata/e7/e73a58f6e2794ae7b1b7e50b7fb811b0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e7/e73a58f6e2794ae7b1b7e50b7fb811b0
rename to TMP Exporter/Library/metadata/e7/e73a58f6e2794ae7b1b7e50b7fb811b0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e7/e73a58f6e2794ae7b1b7e50b7fb811b0.info b/TMP Exporter/Library/metadata/e7/e73a58f6e2794ae7b1b7e50b7fb811b0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e7/e73a58f6e2794ae7b1b7e50b7fb811b0.info
rename to TMP Exporter/Library/metadata/e7/e73a58f6e2794ae7b1b7e50b7fb811b0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f b/TMP Exporter/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f
rename to TMP Exporter/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f.info b/TMP Exporter/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f.info
rename to TMP Exporter/Library/metadata/e8/e87e16ece4884c3bb85cc0e02f133a9f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838 b/TMP Exporter/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838
rename to TMP Exporter/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838.info b/TMP Exporter/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838.info
rename to TMP Exporter/Library/metadata/e9/e93ec7eb6de342aabd156833e253f838.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50 b/TMP Exporter/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50
rename to TMP Exporter/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50.info b/TMP Exporter/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50.info
rename to TMP Exporter/Library/metadata/e9/e9df95f53f1c1d0c9199e235d6c42b50.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680 b/TMP Exporter/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680
rename to TMP Exporter/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680.info b/TMP Exporter/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680.info
rename to TMP Exporter/Library/metadata/ea/ead147da21254ff9a0a936bdd75e1680.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ec/ec02776fe29df900b897106d61977735 b/TMP Exporter/Library/metadata/ec/ec02776fe29df900b897106d61977735
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ec/ec02776fe29df900b897106d61977735
rename to TMP Exporter/Library/metadata/ec/ec02776fe29df900b897106d61977735
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ec/ec02776fe29df900b897106d61977735.info b/TMP Exporter/Library/metadata/ec/ec02776fe29df900b897106d61977735.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ec/ec02776fe29df900b897106d61977735.info
rename to TMP Exporter/Library/metadata/ec/ec02776fe29df900b897106d61977735.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e b/TMP Exporter/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e
rename to TMP Exporter/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e.info b/TMP Exporter/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e.info
rename to TMP Exporter/Library/metadata/ed/ed041e68439749a69d0efa0e3d896c2e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea b/TMP Exporter/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea
rename to TMP Exporter/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea.info b/TMP Exporter/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea.info
rename to TMP Exporter/Library/metadata/ed/ed7343f30e3843b3afda8f8b02669cea.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38 b/TMP Exporter/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38
rename to TMP Exporter/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38.info b/TMP Exporter/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38.info
rename to TMP Exporter/Library/metadata/ed/ede0462698a4a5643aa9872c074acd38.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ed/edf97aac6cc5a437ebf600a06a2e5ac7 b/TMP Exporter/Library/metadata/ed/edf97aac6cc5a437ebf600a06a2e5ac7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ed/edf97aac6cc5a437ebf600a06a2e5ac7
rename to TMP Exporter/Library/metadata/ed/edf97aac6cc5a437ebf600a06a2e5ac7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ed/edf97aac6cc5a437ebf600a06a2e5ac7.info b/TMP Exporter/Library/metadata/ed/edf97aac6cc5a437ebf600a06a2e5ac7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ed/edf97aac6cc5a437ebf600a06a2e5ac7.info
rename to TMP Exporter/Library/metadata/ed/edf97aac6cc5a437ebf600a06a2e5ac7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c b/TMP Exporter/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c
rename to TMP Exporter/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c.info b/TMP Exporter/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c.info
rename to TMP Exporter/Library/metadata/ee/ee148e281f3c41c5b4ff5f8a5afe5a6c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0 b/TMP Exporter/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0
rename to TMP Exporter/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0.info b/TMP Exporter/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0.info
rename to TMP Exporter/Library/metadata/ee/eeed6954b3c264ca0b28a92aa6289bf0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf b/TMP Exporter/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf
rename to TMP Exporter/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf.info b/TMP Exporter/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf.info
rename to TMP Exporter/Library/metadata/ef/ef5a2781610c4f12a79939f717f789cf.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ef/efeaf4d0977497145a3f0630e811b8b6 b/TMP Exporter/Library/metadata/ef/efeaf4d0977497145a3f0630e811b8b6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ef/efeaf4d0977497145a3f0630e811b8b6
rename to TMP Exporter/Library/metadata/ef/efeaf4d0977497145a3f0630e811b8b6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ef/efeaf4d0977497145a3f0630e811b8b6.info b/TMP Exporter/Library/metadata/ef/efeaf4d0977497145a3f0630e811b8b6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ef/efeaf4d0977497145a3f0630e811b8b6.info
rename to TMP Exporter/Library/metadata/ef/efeaf4d0977497145a3f0630e811b8b6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf b/TMP Exporter/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf
rename to TMP Exporter/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf.info b/TMP Exporter/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf.info
rename to TMP Exporter/Library/metadata/ef/effb76e1937b45ff8adf45e51a4c08cf.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f0/f03b3e03b69e74ef9bd0f20377217a73 b/TMP Exporter/Library/metadata/f0/f03b3e03b69e74ef9bd0f20377217a73
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f0/f03b3e03b69e74ef9bd0f20377217a73
rename to TMP Exporter/Library/metadata/f0/f03b3e03b69e74ef9bd0f20377217a73
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f0/f03b3e03b69e74ef9bd0f20377217a73.info b/TMP Exporter/Library/metadata/f0/f03b3e03b69e74ef9bd0f20377217a73.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f0/f03b3e03b69e74ef9bd0f20377217a73.info
rename to TMP Exporter/Library/metadata/f0/f03b3e03b69e74ef9bd0f20377217a73.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8 b/TMP Exporter/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8
rename to TMP Exporter/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8.info b/TMP Exporter/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8.info
rename to TMP Exporter/Library/metadata/f0/f0f13f2ab3d6d13cfc6e4656824bfca8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509 b/TMP Exporter/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509
rename to TMP Exporter/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509.info b/TMP Exporter/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509.info
rename to TMP Exporter/Library/metadata/f0/f0fec68172b84dae8d5407bc0702a509.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0 b/TMP Exporter/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0
rename to TMP Exporter/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0.info b/TMP Exporter/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0.info
rename to TMP Exporter/Library/metadata/f1/f1045c695c5bf4fb7b8509687bc60fc0.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6 b/TMP Exporter/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6
rename to TMP Exporter/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6.info b/TMP Exporter/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6.info
rename to TMP Exporter/Library/metadata/f1/f1687bb24464840ae9e1d253685ae0f6.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7 b/TMP Exporter/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7
rename to TMP Exporter/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7.info b/TMP Exporter/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7.info
rename to TMP Exporter/Library/metadata/f1/f1ea944dcf8849ebab391e461b99ccb7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f2/f2233ba26b028cc4b9e58681e7a22dac b/TMP Exporter/Library/metadata/f2/f2233ba26b028cc4b9e58681e7a22dac
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f2/f2233ba26b028cc4b9e58681e7a22dac
rename to TMP Exporter/Library/metadata/f2/f2233ba26b028cc4b9e58681e7a22dac
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f2/f2233ba26b028cc4b9e58681e7a22dac.info b/TMP Exporter/Library/metadata/f2/f2233ba26b028cc4b9e58681e7a22dac.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f2/f2233ba26b028cc4b9e58681e7a22dac.info
rename to TMP Exporter/Library/metadata/f2/f2233ba26b028cc4b9e58681e7a22dac.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981 b/TMP Exporter/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981
rename to TMP Exporter/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981.info b/TMP Exporter/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981.info
rename to TMP Exporter/Library/metadata/f2/f28fcced5af094cf78eb4e1109a71981.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad b/TMP Exporter/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad
rename to TMP Exporter/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad.info b/TMP Exporter/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad.info
rename to TMP Exporter/Library/metadata/f3/f34f5fa2437664b2a81b4a7f34df87ad.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5 b/TMP Exporter/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5
rename to TMP Exporter/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5.info b/TMP Exporter/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5.info
rename to TMP Exporter/Library/metadata/f4/f4688fdb7df04437aeb418b961361dc5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9 b/TMP Exporter/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9
rename to TMP Exporter/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9.info b/TMP Exporter/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9.info
rename to TMP Exporter/Library/metadata/f4/f4845225cf0e4acfab0f1903ff872bc9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4935fb862d54980b1bcbca942962642 b/TMP Exporter/Library/metadata/f4/f4935fb862d54980b1bcbca942962642
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4935fb862d54980b1bcbca942962642
rename to TMP Exporter/Library/metadata/f4/f4935fb862d54980b1bcbca942962642
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4935fb862d54980b1bcbca942962642.info b/TMP Exporter/Library/metadata/f4/f4935fb862d54980b1bcbca942962642.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4935fb862d54980b1bcbca942962642.info
rename to TMP Exporter/Library/metadata/f4/f4935fb862d54980b1bcbca942962642.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b b/TMP Exporter/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b
rename to TMP Exporter/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b.info b/TMP Exporter/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b.info
rename to TMP Exporter/Library/metadata/f4/f499e12eaeb145bf9022f581c0b7fa5b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4c7193663918411c8f78e3cf844cb9e b/TMP Exporter/Library/metadata/f4/f4c7193663918411c8f78e3cf844cb9e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4c7193663918411c8f78e3cf844cb9e
rename to TMP Exporter/Library/metadata/f4/f4c7193663918411c8f78e3cf844cb9e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4c7193663918411c8f78e3cf844cb9e.info b/TMP Exporter/Library/metadata/f4/f4c7193663918411c8f78e3cf844cb9e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f4/f4c7193663918411c8f78e3cf844cb9e.info
rename to TMP Exporter/Library/metadata/f4/f4c7193663918411c8f78e3cf844cb9e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f5/f54d1bd14bd3ca042bd867b519fee8cc b/TMP Exporter/Library/metadata/f5/f54d1bd14bd3ca042bd867b519fee8cc
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f5/f54d1bd14bd3ca042bd867b519fee8cc
rename to TMP Exporter/Library/metadata/f5/f54d1bd14bd3ca042bd867b519fee8cc
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f5/f54d1bd14bd3ca042bd867b519fee8cc.info b/TMP Exporter/Library/metadata/f5/f54d1bd14bd3ca042bd867b519fee8cc.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f5/f54d1bd14bd3ca042bd867b519fee8cc.info
rename to TMP Exporter/Library/metadata/f5/f54d1bd14bd3ca042bd867b519fee8cc.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f5/f550a1a4d67022741ac56c988c7030eb b/TMP Exporter/Library/metadata/f5/f550a1a4d67022741ac56c988c7030eb
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f5/f550a1a4d67022741ac56c988c7030eb
rename to TMP Exporter/Library/metadata/f5/f550a1a4d67022741ac56c988c7030eb
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f5/f550a1a4d67022741ac56c988c7030eb.info b/TMP Exporter/Library/metadata/f5/f550a1a4d67022741ac56c988c7030eb.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f5/f550a1a4d67022741ac56c988c7030eb.info
rename to TMP Exporter/Library/metadata/f5/f550a1a4d67022741ac56c988c7030eb.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64 b/TMP Exporter/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64
rename to TMP Exporter/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64.info b/TMP Exporter/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64.info
rename to TMP Exporter/Library/metadata/f5/f5600e6ae5a1464da659eca36bef9d64.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8 b/TMP Exporter/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8
rename to TMP Exporter/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8.info b/TMP Exporter/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8.info
rename to TMP Exporter/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4 b/TMP Exporter/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4
rename to TMP Exporter/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4.info b/TMP Exporter/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4.info
rename to TMP Exporter/Library/metadata/f6/f68d88b9933cd4204925b22192bf15b4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e b/TMP Exporter/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e
rename to TMP Exporter/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e.info b/TMP Exporter/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e.info
rename to TMP Exporter/Library/metadata/f6/f695b5f9415c40b39ae877eaff41c96e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f7/f70555f144d8491a825f0804e09c671c b/TMP Exporter/Library/metadata/f7/f70555f144d8491a825f0804e09c671c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f7/f70555f144d8491a825f0804e09c671c
rename to TMP Exporter/Library/metadata/f7/f70555f144d8491a825f0804e09c671c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f7/f70555f144d8491a825f0804e09c671c.info b/TMP Exporter/Library/metadata/f7/f70555f144d8491a825f0804e09c671c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f7/f70555f144d8491a825f0804e09c671c.info
rename to TMP Exporter/Library/metadata/f7/f70555f144d8491a825f0804e09c671c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f7/f74142ec8a4cd4fb1b0ff6cf5c3075af b/TMP Exporter/Library/metadata/f7/f74142ec8a4cd4fb1b0ff6cf5c3075af
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f7/f74142ec8a4cd4fb1b0ff6cf5c3075af
rename to TMP Exporter/Library/metadata/f7/f74142ec8a4cd4fb1b0ff6cf5c3075af
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f7/f74142ec8a4cd4fb1b0ff6cf5c3075af.info b/TMP Exporter/Library/metadata/f7/f74142ec8a4cd4fb1b0ff6cf5c3075af.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f7/f74142ec8a4cd4fb1b0ff6cf5c3075af.info
rename to TMP Exporter/Library/metadata/f7/f74142ec8a4cd4fb1b0ff6cf5c3075af.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122 b/TMP Exporter/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122
rename to TMP Exporter/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122.info b/TMP Exporter/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122.info
rename to TMP Exporter/Library/metadata/f7/f7a8357347c80dc69c08d0b1a05e2122.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f7/f7ada0af4f174f0694ca6a487b8f543d b/TMP Exporter/Library/metadata/f7/f7ada0af4f174f0694ca6a487b8f543d
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f7/f7ada0af4f174f0694ca6a487b8f543d
rename to TMP Exporter/Library/metadata/f7/f7ada0af4f174f0694ca6a487b8f543d
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f7/f7ada0af4f174f0694ca6a487b8f543d.info b/TMP Exporter/Library/metadata/f7/f7ada0af4f174f0694ca6a487b8f543d.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f7/f7ada0af4f174f0694ca6a487b8f543d.info
rename to TMP Exporter/Library/metadata/f7/f7ada0af4f174f0694ca6a487b8f543d.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9 b/TMP Exporter/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9
rename to TMP Exporter/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9.info b/TMP Exporter/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9.info
rename to TMP Exporter/Library/metadata/f8/f851ca8f9604f442aafccf60a6713ce9.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5 b/TMP Exporter/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5
rename to TMP Exporter/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5.info b/TMP Exporter/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5.info
rename to TMP Exporter/Library/metadata/f8/f8e6a2d47aba4c6c9b3c5a72d9f48da5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f b/TMP Exporter/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f
rename to TMP Exporter/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f.info b/TMP Exporter/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f.info
rename to TMP Exporter/Library/metadata/f8/f8eca3a711f4842eba0c52ea9885ef7f.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f9/f944311c8fff2479fa3ba741f6039fc8 b/TMP Exporter/Library/metadata/f9/f944311c8fff2479fa3ba741f6039fc8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f9/f944311c8fff2479fa3ba741f6039fc8
rename to TMP Exporter/Library/metadata/f9/f944311c8fff2479fa3ba741f6039fc8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f9/f944311c8fff2479fa3ba741f6039fc8.info b/TMP Exporter/Library/metadata/f9/f944311c8fff2479fa3ba741f6039fc8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f9/f944311c8fff2479fa3ba741f6039fc8.info
rename to TMP Exporter/Library/metadata/f9/f944311c8fff2479fa3ba741f6039fc8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f9/f952c082cb03451daed3ee968ac6c63e b/TMP Exporter/Library/metadata/f9/f952c082cb03451daed3ee968ac6c63e
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f9/f952c082cb03451daed3ee968ac6c63e
rename to TMP Exporter/Library/metadata/f9/f952c082cb03451daed3ee968ac6c63e
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/f9/f952c082cb03451daed3ee968ac6c63e.info b/TMP Exporter/Library/metadata/f9/f952c082cb03451daed3ee968ac6c63e.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/f9/f952c082cb03451daed3ee968ac6c63e.info
rename to TMP Exporter/Library/metadata/f9/f952c082cb03451daed3ee968ac6c63e.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338 b/TMP Exporter/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338
rename to TMP Exporter/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338.info b/TMP Exporter/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338.info
rename to TMP Exporter/Library/metadata/fa/fa27413e9edb06a6058d6c894eca0338.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa4ff09b6aaaa4df29a884efa38bce56 b/TMP Exporter/Library/metadata/fa/fa4ff09b6aaaa4df29a884efa38bce56
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa4ff09b6aaaa4df29a884efa38bce56
rename to TMP Exporter/Library/metadata/fa/fa4ff09b6aaaa4df29a884efa38bce56
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa4ff09b6aaaa4df29a884efa38bce56.info b/TMP Exporter/Library/metadata/fa/fa4ff09b6aaaa4df29a884efa38bce56.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa4ff09b6aaaa4df29a884efa38bce56.info
rename to TMP Exporter/Library/metadata/fa/fa4ff09b6aaaa4df29a884efa38bce56.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5 b/TMP Exporter/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5
rename to TMP Exporter/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5.info b/TMP Exporter/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5.info
rename to TMP Exporter/Library/metadata/fa/fa6bd40a216346b783a4cce741d277a5.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fa/fade42e8bc714b018fac513c043d323b b/TMP Exporter/Library/metadata/fa/fade42e8bc714b018fac513c043d323b
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fa/fade42e8bc714b018fac513c043d323b
rename to TMP Exporter/Library/metadata/fa/fade42e8bc714b018fac513c043d323b
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fa/fade42e8bc714b018fac513c043d323b.info b/TMP Exporter/Library/metadata/fa/fade42e8bc714b018fac513c043d323b.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fa/fade42e8bc714b018fac513c043d323b.info
rename to TMP Exporter/Library/metadata/fa/fade42e8bc714b018fac513c043d323b.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563 b/TMP Exporter/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563
rename to TMP Exporter/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563.info b/TMP Exporter/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563.info
rename to TMP Exporter/Library/metadata/fc/fc3a810351931f5e6183e16b9beb5563.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fc/fc46f91ea1e8e4ca2ab693fef9156dbe b/TMP Exporter/Library/metadata/fc/fc46f91ea1e8e4ca2ab693fef9156dbe
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fc/fc46f91ea1e8e4ca2ab693fef9156dbe
rename to TMP Exporter/Library/metadata/fc/fc46f91ea1e8e4ca2ab693fef9156dbe
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fc/fc46f91ea1e8e4ca2ab693fef9156dbe.info b/TMP Exporter/Library/metadata/fc/fc46f91ea1e8e4ca2ab693fef9156dbe.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fc/fc46f91ea1e8e4ca2ab693fef9156dbe.info
rename to TMP Exporter/Library/metadata/fc/fc46f91ea1e8e4ca2ab693fef9156dbe.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a b/TMP Exporter/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a
rename to TMP Exporter/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a.info b/TMP Exporter/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a.info
rename to TMP Exporter/Library/metadata/fc/fcc60c1d6bb544d9b712b652f418ff3a.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd0a39b4d296d4d509b4f1dbd08d0630 b/TMP Exporter/Library/metadata/fd/fd0a39b4d296d4d509b4f1dbd08d0630
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd0a39b4d296d4d509b4f1dbd08d0630
rename to TMP Exporter/Library/metadata/fd/fd0a39b4d296d4d509b4f1dbd08d0630
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd0a39b4d296d4d509b4f1dbd08d0630.info b/TMP Exporter/Library/metadata/fd/fd0a39b4d296d4d509b4f1dbd08d0630.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd0a39b4d296d4d509b4f1dbd08d0630.info
rename to TMP Exporter/Library/metadata/fd/fd0a39b4d296d4d509b4f1dbd08d0630.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88 b/TMP Exporter/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88
rename to TMP Exporter/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88.info b/TMP Exporter/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88.info
rename to TMP Exporter/Library/metadata/fd/fd382b8abbd6145c29e32af0e2a26d88.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7 b/TMP Exporter/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7
rename to TMP Exporter/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7.info b/TMP Exporter/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7.info
rename to TMP Exporter/Library/metadata/fd/fd871a8be47119612f7c254e96a822b7.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fe393ace9b354375a9cb14cdbbc28be4 b/TMP Exporter/Library/metadata/fe/fe393ace9b354375a9cb14cdbbc28be4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fe393ace9b354375a9cb14cdbbc28be4
rename to TMP Exporter/Library/metadata/fe/fe393ace9b354375a9cb14cdbbc28be4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fe393ace9b354375a9cb14cdbbc28be4.info b/TMP Exporter/Library/metadata/fe/fe393ace9b354375a9cb14cdbbc28be4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fe393ace9b354375a9cb14cdbbc28be4.info
rename to TMP Exporter/Library/metadata/fe/fe393ace9b354375a9cb14cdbbc28be4.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c b/TMP Exporter/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c
rename to TMP Exporter/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c.info b/TMP Exporter/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c.info
rename to TMP Exporter/Library/metadata/fe/fe684bbd80eab45778b9eb316893ff7c.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33 b/TMP Exporter/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33
rename to TMP Exporter/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33.info b/TMP Exporter/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33.info
rename to TMP Exporter/Library/metadata/fe/fea24dc53b50441a9b2a8f9473fede33.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8 b/TMP Exporter/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8
rename to TMP Exporter/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8.info b/TMP Exporter/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8.info
rename to TMP Exporter/Library/metadata/fe/fea49a0730244a98bf1087f7ca9410a8.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18 b/TMP Exporter/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18
rename to TMP Exporter/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18.info b/TMP Exporter/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18.info
rename to TMP Exporter/Library/metadata/fe/fec197bad419341558f81f2ec8a05e18.info
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fed9dda667cab45d398d06402bba03f4 b/TMP Exporter/Library/metadata/fe/fed9dda667cab45d398d06402bba03f4
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fed9dda667cab45d398d06402bba03f4
rename to TMP Exporter/Library/metadata/fe/fed9dda667cab45d398d06402bba03f4
diff --git a/BSIPA-ModList/TMP Exporter/Library/metadata/fe/fed9dda667cab45d398d06402bba03f4.info b/TMP Exporter/Library/metadata/fe/fed9dda667cab45d398d06402bba03f4.info
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/Library/metadata/fe/fed9dda667cab45d398d06402bba03f4.info
rename to TMP Exporter/Library/metadata/fe/fed9dda667cab45d398d06402bba03f4.info
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/AudioManager.asset b/TMP Exporter/ProjectSettings/AudioManager.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/AudioManager.asset
rename to TMP Exporter/ProjectSettings/AudioManager.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/ClusterInputManager.asset b/TMP Exporter/ProjectSettings/ClusterInputManager.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/ClusterInputManager.asset
rename to TMP Exporter/ProjectSettings/ClusterInputManager.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/DynamicsManager.asset b/TMP Exporter/ProjectSettings/DynamicsManager.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/DynamicsManager.asset
rename to TMP Exporter/ProjectSettings/DynamicsManager.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/EditorBuildSettings.asset b/TMP Exporter/ProjectSettings/EditorBuildSettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/EditorBuildSettings.asset
rename to TMP Exporter/ProjectSettings/EditorBuildSettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/EditorSettings.asset b/TMP Exporter/ProjectSettings/EditorSettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/EditorSettings.asset
rename to TMP Exporter/ProjectSettings/EditorSettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/GraphicsSettings.asset b/TMP Exporter/ProjectSettings/GraphicsSettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/GraphicsSettings.asset
rename to TMP Exporter/ProjectSettings/GraphicsSettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/InputManager.asset b/TMP Exporter/ProjectSettings/InputManager.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/InputManager.asset
rename to TMP Exporter/ProjectSettings/InputManager.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/NavMeshAreas.asset b/TMP Exporter/ProjectSettings/NavMeshAreas.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/NavMeshAreas.asset
rename to TMP Exporter/ProjectSettings/NavMeshAreas.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/NetworkManager.asset b/TMP Exporter/ProjectSettings/NetworkManager.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/NetworkManager.asset
rename to TMP Exporter/ProjectSettings/NetworkManager.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/Physics2DSettings.asset b/TMP Exporter/ProjectSettings/Physics2DSettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/Physics2DSettings.asset
rename to TMP Exporter/ProjectSettings/Physics2DSettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/PresetManager.asset b/TMP Exporter/ProjectSettings/PresetManager.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/PresetManager.asset
rename to TMP Exporter/ProjectSettings/PresetManager.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/ProjectSettings.asset b/TMP Exporter/ProjectSettings/ProjectSettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/ProjectSettings.asset
rename to TMP Exporter/ProjectSettings/ProjectSettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/ProjectVersion.txt b/TMP Exporter/ProjectSettings/ProjectVersion.txt
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/ProjectVersion.txt
rename to TMP Exporter/ProjectSettings/ProjectVersion.txt
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/QualitySettings.asset b/TMP Exporter/ProjectSettings/QualitySettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/QualitySettings.asset
rename to TMP Exporter/ProjectSettings/QualitySettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/TagManager.asset b/TMP Exporter/ProjectSettings/TagManager.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/TagManager.asset
rename to TMP Exporter/ProjectSettings/TagManager.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/TimeManager.asset b/TMP Exporter/ProjectSettings/TimeManager.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/TimeManager.asset
rename to TMP Exporter/ProjectSettings/TimeManager.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/UnityConnectSettings.asset b/TMP Exporter/ProjectSettings/UnityConnectSettings.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/UnityConnectSettings.asset
rename to TMP Exporter/ProjectSettings/UnityConnectSettings.asset
diff --git a/BSIPA-ModList/TMP Exporter/ProjectSettings/VFXManager.asset b/TMP Exporter/ProjectSettings/VFXManager.asset
similarity index 100%
rename from BSIPA-ModList/TMP Exporter/ProjectSettings/VFXManager.asset
rename to TMP Exporter/ProjectSettings/VFXManager.asset
diff --git a/appveyor.yml b/appveyor.yml
index bb967aa2..5c754f3a 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,6 +1,6 @@
version: 'BSIPA-{branch}-{build}'
environment:
- bsipa_version: '3.12.18'
+ bsipa_version: '3.12.19'
pull_requests:
do_not_increment_build_number: true
install: