react-native-nitro-sqlite 9.0.1 → 9.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -34,7 +34,7 @@ public:
34
34
  explicit NitroSQLiteException(const std::string& message): NitroSQLiteException(NitroSQLiteExceptionType::UnknownError, message) {}
35
35
  NitroSQLiteException(const NitroSQLiteExceptionType& type, const char* message) : NitroSQLiteException(type, std::string(message)) {}
36
36
  NitroSQLiteException(const NitroSQLiteExceptionType& type, const std::string& message)
37
- : _exceptionString("[react-native-nitro-sqlite] " + typeToString(type) + ": " + message) {}
37
+ : _exceptionString("[" + typeToString(type) + "] " + message) {}
38
38
 
39
39
  private:
40
40
  const std::string _exceptionString;
@@ -5,6 +5,7 @@ namespace margelo::nitro::rnnitrosqlite {
5
5
  std::optional<double> HybridNativeQueryResult::getInsertId() {
6
6
  return this->_insertId;
7
7
  }
8
+
8
9
  double HybridNativeQueryResult::getRowsAffected() {
9
10
  return this->_rowsAffected;
10
11
  }
@@ -27,8 +27,11 @@ private:
27
27
  public:
28
28
  // Properties
29
29
  std::optional<double> getInsertId() override;
30
+
30
31
  double getRowsAffected() override;
32
+
31
33
  SQLiteQueryResults getResults() override;
34
+
32
35
  std::optional<SQLiteQueryTableMetadata> getMetadata() override;
33
36
  };
34
37
 
@@ -1,6 +1,5 @@
1
1
  #include "HybridNitroSQLite.hpp"
2
2
  #include "HybridNativeQueryResult.hpp"
3
- #include "ThreadPool.hpp"
4
3
  #include "NitroSQLiteException.hpp"
5
4
  #include "logs.hpp"
6
5
  #include "macros.hpp"
@@ -14,8 +13,6 @@
14
13
 
15
14
  namespace margelo::nitro::rnnitrosqlite {
16
15
 
17
- auto pool = std::make_shared<margelo::rnnitrosqlite::ThreadPool>();
18
-
19
16
  const std::string getDocPath(const std::optional<std::string>& location) {
20
17
  std::string tempDocPath = std::string(HybridNitroSQLite::docPath);
21
18
  if (location) {
@@ -61,23 +58,12 @@ ExecuteQueryResult HybridNitroSQLite::execute(const std::string& dbName, const s
61
58
  return std::make_shared<HybridNativeQueryResult>(result.insertId, result.rowsAffected, *result.results, *result.metadata);
62
59
  };
63
60
 
64
- std::future<ExecuteQueryResult> HybridNitroSQLite::executeAsync(const std::string& dbName, const std::string& query,
65
- const std::optional<SQLiteQueryParams>& params) {
66
- auto promise = std::make_shared<std::promise<ExecuteQueryResult>>();
67
- auto future = promise->get_future();
68
-
69
- auto task = [this, promise, dbName, query, params]() {
70
- try {
71
- auto result = execute(dbName, query, params);
72
- promise->set_value(result);
73
- } catch (...) {
74
- promise->set_exception(std::current_exception());
75
- }
76
- };
77
-
78
- pool->queueWork(std::move(task));
79
-
80
- return future;
61
+ std::shared_ptr<Promise<std::shared_ptr<HybridNativeQueryResultSpec>>> HybridNitroSQLite::executeAsync(const std::string& dbName, const std::string& query,
62
+ const std::optional<SQLiteQueryParams>& params) {
63
+ return Promise<std::shared_ptr<HybridNativeQueryResultSpec>>::async([=, this]() -> std::shared_ptr<HybridNativeQueryResultSpec> {
64
+ auto result = execute(dbName, query, params);
65
+ return result;
66
+ });
81
67
  };
82
68
 
83
69
  BatchQueryResult HybridNitroSQLite::executeBatch(const std::string& dbName, const std::vector<BatchQueryCommand>& batchParams) {
@@ -87,23 +73,12 @@ BatchQueryResult HybridNitroSQLite::executeBatch(const std::string& dbName, cons
87
73
  return BatchQueryResult(result.rowsAffected);
88
74
  };
89
75
 
90
- std::future<BatchQueryResult> HybridNitroSQLite::executeBatchAsync(const std::string& dbName,
91
- const std::vector<BatchQueryCommand>& batchParams) {
92
- auto promise = std::make_shared<std::promise<BatchQueryResult>>();
93
- auto future = promise->get_future();
94
-
95
- auto task = [this, promise, dbName, batchParams]() {
96
- try {
97
- auto result = executeBatch(dbName, batchParams);
98
- promise->set_value(result);
99
- } catch (...) {
100
- promise->set_exception(std::current_exception());
101
- }
102
- };
103
-
104
- pool->queueWork(std::move(task));
105
-
106
- return future;
76
+ std::shared_ptr<Promise<BatchQueryResult>> HybridNitroSQLite::executeBatchAsync(const std::string& dbName,
77
+ const std::vector<BatchQueryCommand>& batchParams) {
78
+ return Promise<BatchQueryResult>::async([=, this]() -> BatchQueryResult {
79
+ auto result = executeBatch(dbName, batchParams);
80
+ return result;
81
+ });
107
82
  };
108
83
 
109
84
  FileLoadResult HybridNitroSQLite::loadFile(const std::string& dbName, const std::string& location) {
@@ -111,22 +86,11 @@ FileLoadResult HybridNitroSQLite::loadFile(const std::string& dbName, const std:
111
86
  return FileLoadResult(result.commands, result.rowsAffected);
112
87
  };
113
88
 
114
- std::future<FileLoadResult> HybridNitroSQLite::loadFileAsync(const std::string& dbName, const std::string& location) {
115
- auto promise = std::make_shared<std::promise<FileLoadResult>>();
116
- auto future = promise->get_future();
117
-
118
- auto task = [this, promise, dbName, location]() {
119
- try {
120
- auto result = loadFile(dbName, location);
121
- promise->set_value(result);
122
- } catch (...) {
123
- promise->set_exception(std::current_exception());
124
- }
125
- };
126
-
127
- pool->queueWork(std::move(task));
128
-
129
- return future;
89
+ std::shared_ptr<Promise<FileLoadResult>> HybridNitroSQLite::loadFileAsync(const std::string& dbName, const std::string& location) {
90
+ return Promise<FileLoadResult>::async([=, this]() -> FileLoadResult {
91
+ auto result = loadFile(dbName, location);
92
+ return result;
93
+ });
130
94
  };
131
95
 
132
96
  } // namespace margelo::nitro::rnnitrosqlite
@@ -18,17 +18,25 @@ public:
18
18
  public:
19
19
  // Methods
20
20
  void open(const std::string& dbName, const std::optional<std::string>& location) override;
21
+
21
22
  void close(const std::string& dbName) override;
23
+
22
24
  void drop(const std::string& dbName, const std::optional<std::string>& location) override;
25
+
23
26
  void attach(const std::string& mainDbName, const std::string& dbNameToAttach, const std::string& alias,
24
27
  const std::optional<std::string>& location) override;
28
+
25
29
  void detach(const std::string& mainDbName, const std::string& alias) override;
30
+
26
31
  std::shared_ptr<HybridNativeQueryResultSpec> execute(const std::string& dbName, const std::string& query, const std::optional<SQLiteQueryParams>& params) override;
27
- std::future<std::shared_ptr<HybridNativeQueryResultSpec>> executeAsync(const std::string& dbName, const std::string& query, const std::optional<SQLiteQueryParams>& params) override;
32
+
33
+ std::shared_ptr<Promise<std::shared_ptr<HybridNativeQueryResultSpec>>> executeAsync(const std::string& dbName, const std::string& query, const std::optional<SQLiteQueryParams>& params) override;
34
+
28
35
  BatchQueryResult executeBatch(const std::string& dbName, const std::vector<BatchQueryCommand>& commands) override;
29
- std::future<BatchQueryResult> executeBatchAsync(const std::string& dbName, const std::vector<BatchQueryCommand>& commands) override;
36
+ std::shared_ptr<Promise<BatchQueryResult>> executeBatchAsync(const std::string& dbName, const std::vector<BatchQueryCommand>& commands) override;
37
+
30
38
  FileLoadResult loadFile(const std::string& dbName, const std::string& location) override;
31
- std::future<FileLoadResult> loadFileAsync(const std::string& dbName, const std::string& location) override;
39
+ std::shared_ptr<Promise<FileLoadResult>> loadFileAsync(const std::string& dbName, const std::string& location) override;
32
40
  };
33
41
 
34
42
  inline std::string HybridNitroSQLite::docPath = "";
@@ -19,7 +19,6 @@
19
19
  83BC6E792C8F78A200B954D2 /* sqlfileloader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83BC6E682C8F78A200B954D2 /* sqlfileloader.cpp */; };
20
20
  83BC6E7A2C8F78A200B954D2 /* sqlite3.c in Sources */ = {isa = PBXBuildFile; fileRef = 83BC6E6A2C8F78A200B954D2 /* sqlite3.c */; };
21
21
  83BC6E7B2C8F78A200B954D2 /* sqliteBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83BC6E6C2C8F78A200B954D2 /* sqliteBridge.cpp */; };
22
- 83BC6E7C2C8F78A200B954D2 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83BC6E6E2C8F78A200B954D2 /* ThreadPool.cpp */; };
23
22
  83BC6E7F2C8F7BDD00B954D2 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83BC6E7E2C8F7BDD00B954D2 /* Empty.swift */; };
24
23
  /* End PBXBuildFile section */
25
24
 
@@ -75,8 +74,6 @@
75
74
  83BC6E6B2C8F78A200B954D2 /* sqlite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sqlite3.h; sourceTree = "<group>"; };
76
75
  83BC6E6C2C8F78A200B954D2 /* sqliteBridge.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sqliteBridge.cpp; sourceTree = "<group>"; };
77
76
  83BC6E6D2C8F78A200B954D2 /* sqliteBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sqliteBridge.h; sourceTree = "<group>"; };
78
- 83BC6E6E2C8F78A200B954D2 /* ThreadPool.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ThreadPool.cpp; sourceTree = "<group>"; };
79
- 83BC6E6F2C8F78A200B954D2 /* ThreadPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThreadPool.h; sourceTree = "<group>"; };
80
77
  83BC6E7E2C8F7BDD00B954D2 /* Empty.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Empty.swift; sourceTree = "<group>"; };
81
78
  /* End PBXFileReference section */
82
79
 
@@ -206,8 +203,6 @@
206
203
  83BC6E6B2C8F78A200B954D2 /* sqlite3.h */,
207
204
  83BC6E6C2C8F78A200B954D2 /* sqliteBridge.cpp */,
208
205
  83BC6E6D2C8F78A200B954D2 /* sqliteBridge.h */,
209
- 83BC6E6E2C8F78A200B954D2 /* ThreadPool.cpp */,
210
- 83BC6E6F2C8F78A200B954D2 /* ThreadPool.h */,
211
206
  );
212
207
  name = cpp;
213
208
  path = ../cpp;
@@ -272,7 +267,6 @@
272
267
  files = (
273
268
  83BC6E772C8F78A200B954D2 /* OnLoad.cpp in Sources */,
274
269
  83BC6E792C8F78A200B954D2 /* sqlfileloader.cpp in Sources */,
275
- 83BC6E7C2C8F78A200B954D2 /* ThreadPool.cpp in Sources */,
276
270
  83BC6E712C8F78A200B954D2 /* RNNitroSQLite-Swift-Cxx-Bridge.cpp in Sources */,
277
271
  83BC6E762C8F78A200B954D2 /* JSIHelper.cpp in Sources */,
278
272
  83BC6E7F2C8F7BDD00B954D2 /* Empty.swift in Sources */,
@@ -20,7 +20,7 @@
20
20
  #include <NitroModules/ArrayBufferHolder.hpp>
21
21
  #include <NitroModules/AnyMapHolder.hpp>
22
22
  #include <NitroModules/HybridContext.hpp>
23
- #include <NitroModules/PromiseHolder.hpp>
23
+ #include <NitroModules/RuntimeError.hpp>
24
24
 
25
25
  // Forward declarations of Swift defined types
26
26
 
@@ -31,7 +31,7 @@ namespace margelo::nitro::rnnitrosqlite { struct FileLoadResult; }
31
31
  #include <vector>
32
32
  #include <variant>
33
33
  #include <NitroModules/ArrayBuffer.hpp>
34
- #include <future>
34
+ #include <NitroModules/Promise.hpp>
35
35
  #include "BatchQueryResult.hpp"
36
36
  #include "BatchQueryCommand.hpp"
37
37
  #include "FileLoadResult.hpp"
@@ -73,11 +73,11 @@ namespace margelo::nitro::rnnitrosqlite {
73
73
  virtual void attach(const std::string& mainDbName, const std::string& dbNameToAttach, const std::string& alias, const std::optional<std::string>& location) = 0;
74
74
  virtual void detach(const std::string& mainDbName, const std::string& alias) = 0;
75
75
  virtual std::shared_ptr<margelo::nitro::rnnitrosqlite::HybridNativeQueryResultSpec> execute(const std::string& dbName, const std::string& query, const std::optional<std::vector<std::variant<std::string, double, int64_t, bool, std::shared_ptr<ArrayBuffer>>>>& params) = 0;
76
- virtual std::future<std::shared_ptr<margelo::nitro::rnnitrosqlite::HybridNativeQueryResultSpec>> executeAsync(const std::string& dbName, const std::string& query, const std::optional<std::vector<std::variant<std::string, double, int64_t, bool, std::shared_ptr<ArrayBuffer>>>>& params) = 0;
76
+ virtual std::shared_ptr<Promise<std::shared_ptr<margelo::nitro::rnnitrosqlite::HybridNativeQueryResultSpec>>> executeAsync(const std::string& dbName, const std::string& query, const std::optional<std::vector<std::variant<std::string, double, int64_t, bool, std::shared_ptr<ArrayBuffer>>>>& params) = 0;
77
77
  virtual BatchQueryResult executeBatch(const std::string& dbName, const std::vector<BatchQueryCommand>& commands) = 0;
78
- virtual std::future<BatchQueryResult> executeBatchAsync(const std::string& dbName, const std::vector<BatchQueryCommand>& commands) = 0;
78
+ virtual std::shared_ptr<Promise<BatchQueryResult>> executeBatchAsync(const std::string& dbName, const std::vector<BatchQueryCommand>& commands) = 0;
79
79
  virtual FileLoadResult loadFile(const std::string& dbName, const std::string& location) = 0;
80
- virtual std::future<FileLoadResult> loadFileAsync(const std::string& dbName, const std::string& location) = 0;
80
+ virtual std::shared_ptr<Promise<FileLoadResult>> loadFileAsync(const std::string& dbName, const std::string& location) = 0;
81
81
 
82
82
  protected:
83
83
  // Hybrid Setup
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-nitro-sqlite",
3
- "version": "9.0.1",
3
+ "version": "9.1.0",
4
4
  "description": "Fast SQLite library for React Native built using Nitro Modules",
5
5
  "source": "./src/index.ts",
6
6
  "main": "./lib/commonjs/index",
@@ -79,7 +79,7 @@
79
79
  "peerDependencies": {
80
80
  "react": ">=17.0.0",
81
81
  "react-native": ">=0.74.0",
82
- "react-native-nitro-modules": "*"
82
+ "react-native-nitro-modules": ">=0.17.0"
83
83
  },
84
84
  "resolutions": {
85
85
  "@types/react": "^18.2.44"
@@ -1,91 +0,0 @@
1
- //
2
- // ThreadPool.cpp
3
- // react-native-nitro-sqlite
4
- //
5
- // Created by Oscar on 13.03.22.
6
- //
7
-
8
- #include "ThreadPool.hpp"
9
-
10
- namespace margelo::rnnitrosqlite {
11
-
12
- ThreadPool::ThreadPool() : done(false) {
13
- // This returns the number of threads supported by the system. If the
14
- // function can't figure out this information, it returns 0. 0 is not good,
15
- // so we create at least 1
16
- auto numberOfThreads = std::thread::hardware_concurrency();
17
- if (numberOfThreads == 0) {
18
- numberOfThreads = 1;
19
- }
20
-
21
- for (unsigned i = 0; i < numberOfThreads; ++i) {
22
- // The threads will execute the private member `doWork`. Note that we need
23
- // to pass a reference to the function (namespaced with the class name) as
24
- // the first argument, and the current object as second argument
25
- threads.push_back(std::thread(&ThreadPool::doWork, this));
26
- }
27
- }
28
-
29
- // The destructor joins all the threads so the program can exit gracefully.
30
- // This will be executed if there is any exception (e.g. creating the threads)
31
- ThreadPool::~ThreadPool() {
32
- // So threads know it's time to shut down
33
- done = true;
34
-
35
- // Wake up all the threads, so they can finish and be joined
36
- workQueueConditionVariable.notify_all();
37
- for (auto& thread : threads) {
38
- if (thread.joinable()) {
39
- thread.join();
40
- }
41
- }
42
- }
43
-
44
- // This function will be called by the server every time there is a request
45
- // that needs to be processed by the thread pool
46
- void ThreadPool::queueWork(std::function<void(void)> task) {
47
- // Grab the mutex
48
- std::lock_guard<std::mutex> g(workQueueMutex);
49
-
50
- // Push the request to the queue
51
- workQueue.push(task);
52
-
53
- // Notify one thread that there are requests to process
54
- workQueueConditionVariable.notify_one();
55
- }
56
-
57
- // Function used by the threads to grab work from the queue
58
- void ThreadPool::doWork() {
59
- // Loop while the queue is not destructing
60
- while (!done) {
61
- std::function<void(void)> task;
62
-
63
- // Create a scope, so we don't lock the queue for longer than necessary
64
- {
65
- std::unique_lock<std::mutex> g(workQueueMutex);
66
- workQueueConditionVariable.wait(g, [&] {
67
- // Only wake up if there are elements in the queue or the program is
68
- // shutting down
69
- return !workQueue.empty() || done;
70
- });
71
-
72
- // If we are shutting down exit witout trying to process more work
73
- if (done) {
74
- break;
75
- }
76
-
77
- task = workQueue.front();
78
- workQueue.pop();
79
- }
80
- ++busy;
81
- task();
82
- --busy;
83
- }
84
- }
85
-
86
- void ThreadPool::waitFinished() {
87
- std::unique_lock<std::mutex> g(workQueueMutex);
88
- workQueueConditionVariable.wait(g, [&] { return workQueue.empty() && (busy == 0); });
89
- }
90
-
91
- } // namespace margelo::rnnitrosqlite
@@ -1,50 +0,0 @@
1
- //
2
- // ThreadPool.hpp
3
- // react-native-nitro-sqlite
4
- //
5
- // Created by Oscar on 13.03.22.
6
- //
7
-
8
- #pragma once
9
-
10
- #include <condition_variable>
11
- #include <exception>
12
- #include <mutex>
13
- #include <queue>
14
- #include <stdio.h>
15
- #include <thread>
16
- #include <vector>
17
-
18
- namespace margelo::rnnitrosqlite {
19
-
20
- class ThreadPool {
21
- public:
22
- ThreadPool();
23
- ~ThreadPool();
24
- void queueWork(std::function<void(void)> task);
25
- void waitFinished();
26
-
27
- private:
28
- unsigned int busy;
29
- // This condition variable is used for the threads to wait until there is work
30
- // to do
31
- std::condition_variable_any workQueueConditionVariable;
32
-
33
- // We store the threads in a vector, so we can later stop them gracefully
34
- std::vector<std::thread> threads;
35
-
36
- // Mutex to protect workQueue
37
- std::mutex workQueueMutex;
38
-
39
- // Queue of requests waiting to be processed
40
- std::queue<std::function<void(void)>> workQueue;
41
-
42
- // This will be set to true when the thread pool is shutting down. This tells
43
- // the threads to stop looping and finish
44
- bool done;
45
-
46
- // Function used by the threads to grab work from the queue
47
- void doWork();
48
- };
49
-
50
- } // namespace margelo::rnnitrosqlite
@@ -1 +0,0 @@
1
- {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.string.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/hybridobject.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/boxedhybridobject.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/nitromodulesproxy.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/turbomodule/nativenitromodules.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/nitromodules.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/anymap.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/constructor.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/index.d.ts","../src/types.ts","../src/specs/nativequeryresult.nitro.ts","../src/specs/nitrosqlite.nitro.ts","../src/nitro.ts","../src/operations/execute.ts","../src/operations/transaction.ts","../src/operations/session.ts","../../node_modules/react-native/types/modules/batchedbridge.d.ts","../../node_modules/react-native/types/modules/codegen.d.ts","../../node_modules/react-native/types/modules/devtools.d.ts","../../node_modules/react-native/types/modules/globals.d.ts","../../node_modules/react-native/types/modules/launchscreen.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/react-native/types/private/utilities.d.ts","../../node_modules/react-native/types/public/insets.d.ts","../../node_modules/react-native/types/public/reactnativetypes.d.ts","../../node_modules/react-native/libraries/types/coreeventtypes.d.ts","../../node_modules/react-native/types/public/reactnativerenderer.d.ts","../../node_modules/react-native/libraries/components/touchable/touchable.d.ts","../../node_modules/react-native/libraries/components/view/viewaccessibility.d.ts","../../node_modules/react-native/libraries/components/view/viewproptypes.d.ts","../../node_modules/react-native/libraries/components/refreshcontrol/refreshcontrol.d.ts","../../node_modules/react-native/libraries/components/scrollview/scrollview.d.ts","../../node_modules/react-native/libraries/components/view/view.d.ts","../../node_modules/react-native/libraries/image/imageresizemode.d.ts","../../node_modules/react-native/libraries/image/imagesource.d.ts","../../node_modules/react-native/libraries/image/image.d.ts","../../node_modules/@react-native/virtualized-lists/lists/virtualizedlist.d.ts","../../node_modules/@react-native/virtualized-lists/index.d.ts","../../node_modules/react-native/libraries/lists/flatlist.d.ts","../../node_modules/react-native/libraries/reactnative/rendererproxy.d.ts","../../node_modules/react-native/libraries/lists/sectionlist.d.ts","../../node_modules/react-native/libraries/text/text.d.ts","../../node_modules/react-native/libraries/animated/animated.d.ts","../../node_modules/react-native/libraries/stylesheet/stylesheettypes.d.ts","../../node_modules/react-native/libraries/stylesheet/stylesheet.d.ts","../../node_modules/react-native/libraries/stylesheet/processcolor.d.ts","../../node_modules/react-native/libraries/actionsheetios/actionsheetios.d.ts","../../node_modules/react-native/libraries/alert/alert.d.ts","../../node_modules/react-native/libraries/animated/easing.d.ts","../../node_modules/react-native/libraries/animated/useanimatedvalue.d.ts","../../node_modules/react-native/libraries/vendor/emitter/eventemitter.d.ts","../../node_modules/react-native/libraries/eventemitter/rctdeviceeventemitter.d.ts","../../node_modules/react-native/libraries/eventemitter/rctnativeappeventemitter.d.ts","../../node_modules/react-native/libraries/appstate/appstate.d.ts","../../node_modules/react-native/libraries/batchedbridge/nativemodules.d.ts","../../node_modules/react-native/libraries/components/accessibilityinfo/accessibilityinfo.d.ts","../../node_modules/react-native/libraries/components/activityindicator/activityindicator.d.ts","../../node_modules/react-native/libraries/components/clipboard/clipboard.d.ts","../../node_modules/react-native/libraries/components/drawerandroid/drawerlayoutandroid.d.ts","../../node_modules/react-native/libraries/eventemitter/nativeeventemitter.d.ts","../../node_modules/react-native/libraries/components/keyboard/keyboard.d.ts","../../node_modules/react-native/types/private/timermixin.d.ts","../../node_modules/react-native/libraries/components/keyboard/keyboardavoidingview.d.ts","../../node_modules/react-native/libraries/components/pressable/pressable.d.ts","../../node_modules/react-native/libraries/components/progressbarandroid/progressbarandroid.d.ts","../../node_modules/react-native/libraries/components/safeareaview/safeareaview.d.ts","../../node_modules/react-native/libraries/components/statusbar/statusbar.d.ts","../../node_modules/react-native/libraries/components/switch/switch.d.ts","../../node_modules/react-native/libraries/components/textinput/inputaccessoryview.d.ts","../../node_modules/react-native/libraries/components/textinput/textinput.d.ts","../../node_modules/react-native/libraries/components/toastandroid/toastandroid.d.ts","../../node_modules/react-native/libraries/components/touchable/touchablewithoutfeedback.d.ts","../../node_modules/react-native/libraries/components/touchable/touchablehighlight.d.ts","../../node_modules/react-native/libraries/components/touchable/touchableopacity.d.ts","../../node_modules/react-native/libraries/components/touchable/touchablenativefeedback.d.ts","../../node_modules/react-native/libraries/components/button.d.ts","../../node_modules/react-native/libraries/core/registercallablemodule.d.ts","../../node_modules/react-native/libraries/devtoolssettings/devtoolssettingsmanager.d.ts","../../node_modules/react-native/libraries/interaction/interactionmanager.d.ts","../../node_modules/react-native/libraries/interaction/panresponder.d.ts","../../node_modules/react-native/libraries/layoutanimation/layoutanimation.d.ts","../../node_modules/react-native/libraries/linking/linking.d.ts","../../node_modules/react-native/libraries/logbox/logbox.d.ts","../../node_modules/react-native/libraries/modal/modal.d.ts","../../node_modules/react-native/libraries/performance/systrace.d.ts","../../node_modules/react-native/libraries/permissionsandroid/permissionsandroid.d.ts","../../node_modules/react-native/libraries/pushnotificationios/pushnotificationios.d.ts","../../node_modules/react-native/libraries/utilities/iperformancelogger.d.ts","../../node_modules/react-native/libraries/reactnative/appregistry.d.ts","../../node_modules/react-native/libraries/reactnative/i18nmanager.d.ts","../../node_modules/react-native/libraries/reactnative/roottag.d.ts","../../node_modules/react-native/libraries/reactnative/uimanager.d.ts","../../node_modules/react-native/libraries/reactnative/requirenativecomponent.d.ts","../../node_modules/react-native/libraries/settings/settings.d.ts","../../node_modules/react-native/libraries/share/share.d.ts","../../node_modules/react-native/libraries/stylesheet/platformcolorvaluetypesios.d.ts","../../node_modules/react-native/libraries/stylesheet/platformcolorvaluetypes.d.ts","../../node_modules/react-native/libraries/turbomodule/rctexport.d.ts","../../node_modules/react-native/libraries/turbomodule/turbomoduleregistry.d.ts","../../node_modules/react-native/libraries/utilities/appearance.d.ts","../../node_modules/react-native/libraries/utilities/backhandler.d.ts","../../node_modules/react-native/libraries/utilities/devsettings.d.ts","../../node_modules/react-native/libraries/utilities/dimensions.d.ts","../../node_modules/react-native/libraries/utilities/pixelratio.d.ts","../../node_modules/react-native/libraries/utilities/platform.d.ts","../../node_modules/react-native/libraries/vibration/vibration.d.ts","../../node_modules/react-native/libraries/yellowbox/yellowboxdeprecated.d.ts","../../node_modules/react-native/libraries/vendor/core/errorutils.d.ts","../../node_modules/react-native/types/public/deprecatedpropertiesalias.d.ts","../../node_modules/react-native/types/index.d.ts","../src/specs/nativenitrosqliteonload.ts","../src/typeorm.ts","../src/index.ts","../src/specs/nativenitrosqliteonload.ios.ts","../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/buffer/index.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/sqlite.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/ts5.6/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"17edc026abf73c5c2dd508652d63f68ec4efd9d4856e3469890d27598209feb5","impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"90538ea42b1b8f3ac4ec7306a0a27ba7afee541df9684991e87202ffc9a6beb7","impliedFormat":1},{"version":"e5d121b23622c120b8e60e5efccd1436d9212b89f4cb180eb330f7d00cbe0e5d","impliedFormat":1},{"version":"36b6eabd3267624fa7b13a790877fc05eec7db80154aabb57f9c031c066189e9","impliedFormat":1},{"version":"c071991397ba57b75b07574dd2d11efe990aea9c59136423d149ce6c3f301eea","affectsGlobalScope":true,"impliedFormat":1},{"version":"edac49118a9eb46d842c8d24a567e31f0290ecdf8d44a5fc78da3112c2fdda54","impliedFormat":1},{"version":"5d6084b922921ea84fce8617204272f5fb30ef8bedd91da18102c160fcf591aa","impliedFormat":1},{"version":"a94e72e6c01437b8fa4f74fe9f192a8cc62b76e4c67730ca240f8db734f7c75e","impliedFormat":1},{"version":"ab8b3b5fdcd840447d69c2dd1b62b0104e7f4a6242e8af92d26433fa3dd9ff39","impliedFormat":1},{"version":"bad6bdff7cf4720e5cf1ea801cdc2e3cfd5bd735d1daddc4c30abb7fc24f25a3","signature":"f857292778fb7e1679b20e4b5a899d341f3f6251c89ec9a0937b634e0a89190f","impliedFormat":1},{"version":"1782890750928a68cb2a22995f533f5ce7831cbf6fef354cc80326b9ef317d07","signature":"3f1148d1c8b734349250e67947cfc0c0b69e4a29c12c982f8f53f4e876cd64d5","impliedFormat":1},{"version":"aa34ffbcceadccddb7b6ae21592536240b4dba4d15a1b59b76cb256a1d0e7649","signature":"67231995685912e74f95cfadb08a33c5337597e43dea1c2b0d594bc007142cb3","impliedFormat":1},{"version":"c21ee51738dad3e8f0c2623a59b9b98738d7e6a045bcf2a2cdde4325b54d8e28","signature":"7be04278b5dafd1b49eb83445aa6a4f201dc28f870d48d545f7ac72080343ed8","impliedFormat":1},{"version":"0c961a6d9bc99fdba77740cbab3d828b03205248f12531a2db331e6bc91bc04d","signature":"121a5e7519faace36ff9684a820107ecd3e31427e38e4178e37f3dd037e6864e","impliedFormat":1},{"version":"5d4605376afe6b0db231668c4089e3c7530114a314479e9e8729f4a73fc69b14","signature":"dff99e3000b3fdc3bfbb03221b79c6ae810475e7bea876e6b7cd05809c89577e","impliedFormat":1},{"version":"128785e006dfd2ec6ea1a25a0d76d92f2caa308e130eda4241e5f80309d4a8b6","signature":"99b232e5ca28a50f195db9ef987f5ca89291830c520ec2bcf1f06631184bdde0","impliedFormat":1},{"version":"3a909e8789a4f8b5377ef3fb8dc10d0c0a090c03f2e40aab599534727457475a","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b47c8df863142d9383f948c987e1ebd25ade3867aeb4ae60e9d6009035dfe46","impliedFormat":1},{"version":"b8dd45aa6e099a5f564edcabfe8114096b096eb1ffaa343dd6f3fe73f1a6e85e","impliedFormat":1},{"version":"38e8ac2d182bd3f85d28de9bdf1386c19a319f9c0280aa43960204c353b07878","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc4db28f3510994e45bbabba1ee33e9a0d27dab33d4c8a5844cee8c85438a058","impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"ed6b820c54de95b2510bb673490d61c7f2187f532a339d8d04981645a918961f","impliedFormat":1},{"version":"78e9a9dec8fcd712a2a775d8b67bf7d166c2fb06644bba3132f33dbef06db781","affectsGlobalScope":true,"impliedFormat":1},{"version":"232f660363b3b189f7be7822ed71e907195d1a85bc8d55d2b7ce3f09b2136938","impliedFormat":1},{"version":"e745388cfad9efb4e5a9a15a2c6b66d54094dd82f8d0c2551064e216f7b51526","impliedFormat":1},{"version":"53390c21d095fb54e6c0b8351cbf7f4008f096ade9717bc5ee75e340bc3dfa30","impliedFormat":1},{"version":"71493b2c538dffa1e3e968b55b70984b542cc6e488012850865f72768ff32630","impliedFormat":1},{"version":"8ebf448e9837fda1a368acbb575b0e28843d5b2a3fda04bce76248b64326ea49","impliedFormat":1},{"version":"91b9f6241fca7843985aa31157cfa08cc724c77d91145a4d834d27cdde099c05","impliedFormat":1},{"version":"8b94ac8c460c9a2578ca3308fecfcf034e21af89e9c287c97710e9717ffae133","impliedFormat":1},{"version":"a7266bcc42f8ec0f31f319c2dd8100411b4d7b8a534235cb00a719f1c8a2a42e","impliedFormat":1},{"version":"3dfa3a6f2a62259b56fa7bcebfbacf886848dfa037298be5bed07c7a0381ee4f","impliedFormat":1},{"version":"a1e3cda52746919d2a95784ce0b1b9ffa22052209aab5f54e079e7b920f5339e","impliedFormat":1},{"version":"1882680f8c88c5648d603408dd1943857ca831a815e33d3126be8368f7a69252","impliedFormat":1},{"version":"f387a979388291b2688ba0f604e3ae78874f5f777616b448d34109762a4f05a9","impliedFormat":1},{"version":"cae0fb826d8a88749189b8a924dfcb5d3ad629e3bc5ec934195fbd83fa48b068","impliedFormat":1},{"version":"376b8482d1224aa83f4521590672304e30ba847d0b87b9e1a62b2e60a5c788f2","impliedFormat":1},{"version":"488242948cc48ee6413a159c60bcaf70de15db01364741737a962662f1a127a5","impliedFormat":1},{"version":"42bacb33cddecbcfe3e043ee1117ba848801749e44f947626765b3e0aec74b1c","impliedFormat":1},{"version":"b326790c20287ad266b5fcd0c388e2a83320a24747856727dcb70c7bbd489dfc","impliedFormat":1},{"version":"cd2156bc8e4d54d52a2817d1b6f4629a5dd3173b1d8bb0fc893ee678d6a78ecd","impliedFormat":1},{"version":"60526d9010e8ccb2a76a59821061463464c3acd5bc7a50320df6d2e4e0d6e4f7","impliedFormat":1},{"version":"562cce1c8e14e8d5a55d1931cb1848b1df49cc7b1024356d56f3550ed57ad67f","impliedFormat":1},{"version":"623fa4efc706bb9956d0ae94b13321c6617655bf8ebdb270c9792bb398f82e44","impliedFormat":1},{"version":"f20c96192f5841cbf982d2c1989c1e9fdef41c4a9db7543edff131007bf1dbfb","impliedFormat":1},{"version":"79d6871ce0da76f4c865a58daa509d5c8a10545d510b804501daa5d0626e7028","impliedFormat":1},{"version":"9054417b5760061bc5fe31f9eee5dc9bf018339b0617d3c65dd1673c8e3c0f25","impliedFormat":1},{"version":"442856ad0787bc213f659e134c204ad0d502179aa216bf700faefb5572208358","impliedFormat":1},{"version":"443702ca8101ef0adc827c2cc530ca93cf98d41e36ce4399efb9bc833ad9cb62","impliedFormat":1},{"version":"c94f70562ae60797cce564c3bebbaaf1752c327d5063d6ac152aa5ca1616c267","impliedFormat":1},{"version":"2aeb5fcdfc884b16015617d263fd8d1a8513f7efe23880be4e5f0bdb3794b37c","impliedFormat":1},{"version":"fd412dd6372493eb8e3e95cae8687d35e4d34dde905a33e0ee47b74224cdd6ab","impliedFormat":1},{"version":"b561170fbe8d4292425e1dfa52406c8d97575681f7a5e420d11d9f72f7c29e38","impliedFormat":1},{"version":"5fe94f3f6411a0f6293f16fdc8e02ee61138941847ce91d6f6800c97fac22fcd","impliedFormat":1},{"version":"7f7c0ecc3eeeef905a3678e540947f4fbbc1a9c76075419dcc5fbfc3df59cb0b","impliedFormat":1},{"version":"df3303018d45c92be73fb4a282d5a242579f96235f5e0f8981983102caf5feca","impliedFormat":1},{"version":"35db266b474b3b9dfd0bc7d25dff3926cc227de45394262f3783b8b174182a16","impliedFormat":1},{"version":"8205e62a7310ac0513747f6d84175400680cff372559bc5fbe2df707194a295d","impliedFormat":1},{"version":"084d0df6805570b6dc6c8b49c3a71d5bdfe59606901e0026c63945b68d4b080a","impliedFormat":1},{"version":"8387fa3287992c71702756fe6ecea68e2f8f2c5aa434493e3afe4817dd4a4787","impliedFormat":1},{"version":"0f066f9654e700a9cf79c75553c934eb14296aa80583bd2b5d07e2d582a3f4ee","impliedFormat":1},{"version":"269c5d54104033b70331343bd931c9933852a882391ed6bd98c3d8b7d6465d22","impliedFormat":1},{"version":"a56b8577aaf471d9e60582065a8193269310e8cae48c1ce4111ed03216f5f715","impliedFormat":1},{"version":"486ae83cd51b813095f6716f06cc9b2cf480ad1d6c7f8ec59674d6c858cd2407","impliedFormat":1},{"version":"fff527e2567a24dd634a30268f1aa8a220315fed9c513d70ee872e54f67f27f3","impliedFormat":1},{"version":"5dd0ff735b3f2e642c3f16bcfb3dc4ecebb679a70e43cfb19ab5fd84d8faaeed","impliedFormat":1},{"version":"d1d78d1ef0f21ac77cdc436d2a4d56592453a8a2e51af2040ec9a69a5d35e4de","impliedFormat":1},{"version":"bc55b91274e43f88030c9cfe2c4217fae57894c3c302173ab6e9743c29484e3d","impliedFormat":1},{"version":"8bb22f70bfd7bf186631fa565c9202ee6a1009ffb961197b7d092b5a1e1d56b1","impliedFormat":1},{"version":"77282216c61bcef9a700db98e142301d5a7d988d3076286029da63e415e98a42","impliedFormat":1},{"version":"6c28f4f95aaa6c3c8b1a0681c29f446b0bf0ed1aa5aa11e8b2ca6fc9e066e9f2","impliedFormat":1},{"version":"64ce8e260a1362d4cadd6c753581a912a9869d4a53ec6e733dc61018f9250f5d","impliedFormat":1},{"version":"85a915dbb768b89cb92f5e6c165d776bfebd065883c34fee4e0219c3ed321b47","impliedFormat":1},{"version":"83df2f39cb14971adea51d1c84e7d146a34e9b7f84ad118450a51bdc3138412c","impliedFormat":1},{"version":"b96364fcb0c9d521e7618346b00acf3fe16ccf9368404ceac1658edee7b6332c","impliedFormat":1},{"version":"bdb2b70c74908c92ec41d8dd8375a195cb3bb07523e4de642b2b2dfbde249ca6","impliedFormat":1},{"version":"7b329f4137a552073f504022acbf8cd90d49cc5e5529791bef508f76ff774854","impliedFormat":1},{"version":"f63bbbffcfc897d22f34cf19ae13405cd267b1783cd21ec47d8a2d02947c98c1","impliedFormat":1},{"version":"7889f4932dfa7b1126cdc17914d85d80b5860cc3d62ba329494007e8aab45430","impliedFormat":1},{"version":"d9725ef7f60a791668f7fb808eb90b1789feaaef989a686fefc0f7546a51dcdc","impliedFormat":1},{"version":"df55b9be6ba19a6f77487e09dc7a94d7c9bf66094d35ea168dbd4bac42c46b8f","impliedFormat":1},{"version":"595125f3e088b883d104622ef10e6b7d5875ff6976bbe4d7dca090a3e2dca513","impliedFormat":1},{"version":"8ebb6f0603bf481e893311c49e4d2e2061413c51b9ba5898cd9b0a01f5ef19c8","impliedFormat":1},{"version":"e0d7eed4ba363df3faadb8e617f95f9fc8adfbb00b87db7ade4a1098d6cf1e90","impliedFormat":1},{"version":"38faab59a79924ce5eb4f2f3e7e7db91e74d425b4183f908cc014be213f0d971","impliedFormat":1},{"version":"de115595321ce012c456f512a799679bfc874f0ac0a4928a8429557bb25086aa","impliedFormat":1},{"version":"cdca67bd898deff48e3acb05fb44500b5ebce16c26a8ec99dee1522cf9879795","impliedFormat":1},{"version":"0524cab11ba9048d151d93cc666d3908fda329eec6b1642e9a936093e6d79f28","impliedFormat":1},{"version":"869073d7523e75f45bd65b2072865c60002d5e0cbd3d17831e999cf011312778","impliedFormat":1},{"version":"bc7b5906a6ce6c5744a640c314e020856be6c50a693e77dc12aff2d77b12ca76","impliedFormat":1},{"version":"56503e377bc1344f155e4e3115a772cb4e59350c0b8131e3e1fb2750ac491608","impliedFormat":1},{"version":"6b579287217ee1320ee1c6cfec5f6730f3a1f91daab000f7131558ee531b2bf8","impliedFormat":1},{"version":"e2ddb2877f5a841866f4fc772a601b58e90ac8399b35f9a06535be81b8e08b47","impliedFormat":1},{"version":"a793636667598e739a52684033037a67dc2d9db37fab727623626ef19aa5abb9","impliedFormat":1},{"version":"b15d6238a86bc0fc2368da429249b96c260debc0cec3eb7b5f838ad32587c129","impliedFormat":1},{"version":"9a9fba3a20769b0a74923e7032997451b61c1bd371c519429b29019399040d74","impliedFormat":1},{"version":"4b10e2fe52cb61035e58df3f1fdd926dd0fe9cf1a2302f92916da324332fb4e0","impliedFormat":1},{"version":"d1092ae8d6017f359f4758115f588e089848cc8fb359f7ba045b1a1cf3668a49","impliedFormat":1},{"version":"ddae9195b0da7b25a585ef43365f4dc5204a746b155fbee71e6ee1a9193fb69f","impliedFormat":1},{"version":"32dbced998ce74c5e76ce87044d0b4071857576dde36b0c6ed1d5957ce9cf5b5","impliedFormat":1},{"version":"5bc29a9918feba88816b71e32960cf11243b77b76630e9e87cad961e5e1d31d0","impliedFormat":1},{"version":"341ffa358628577f490f128f3880c01d50ef31412d1be012bb1cd959b0a383ea","impliedFormat":1},{"version":"ecc1b8878c8033bde0204b85e26fe1af6847805427759e5723882c848a11e134","impliedFormat":1},{"version":"cfc9c32553ad3b5be38342bc8731397438a93531118e1a226a8c79ad255b4f0c","impliedFormat":1},{"version":"16e5b5b023c2a1119c1878a51714861c56255778de0a7fe378391876a15f7433","impliedFormat":1},{"version":"52e8612d284467b4417143ca8fe54d30145fdfc3815f5b5ea9b14b677f422be5","impliedFormat":1},{"version":"a090a8a3b0ef2cceeb089acf4df95df72e7d934215896afe264ff6f734d66d15","impliedFormat":1},{"version":"a0259c6054e3ed2c5fb705b6638e384446cbcdf7fd2072c659b43bd56e214b9a","impliedFormat":1},{"version":"005319c82222e57934c7b211013eb6931829e46b2a61c5d9a1c3c25f8dc3ea90","impliedFormat":1},{"version":"151f422f08c8ca67b77c5c39d49278b4df452ef409237c8219be109ae3cdae9d","impliedFormat":1},{"version":"6466cbb0aa561e1c1a87850a1f066692f1692a0a9513c508a3886cd66a62dae8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b794e0da52e2653601a9c6ce0bde36c4b22fe28e8079bf696dab7c2d73947ae9","signature":"4e7168ebcf75ebc1a5cc0e6f1cb0a6afe095c5082991932d894c7c5187f75211","impliedFormat":1},{"version":"c7dd96c7c234ed616c944d88ed97ccdf1eba5579f190e0de6d9b00d6b24113ea","signature":"8328fd0bed2dbace9dd154ab045cba44f1a03779ff8cb8c665c55e84db46ca81","impliedFormat":1},{"version":"d717f3d92aaea6dfc0ee6f8f86904443a05c75f03315567c897f39087f43f257","signature":"cbc3b9d843f2eb86898cd82045e9d4d5f79d238fae2be9cace74aa51e1ef77bb","impliedFormat":1},{"version":"cdfc9396b114aec31e7f25d7483dcab41f004fe135824cf6c6ca6fcd34507c40","signature":"d334ebb057c1be6ee360b74c8b2bed0f4214568b1d4e3ca8d06d9caf5080ec27","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f6114eb1e8f70ec08816bdaa6ec740a0a7a01f25743e36f655f00157be394374","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"bb2cd9339d0201e7e78ccb6ff2f71aac103934bf35eaaa37e139ac2b68af0db8","affectsGlobalScope":true,"impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"46e07db372dd75edc1a26e68f16d1b7ffb34b7ab3db5cdb3e391a3604ad7bb7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f501a53b94ba382d9ba396a5c486969a3abc68309828fa67f916035f5d37fe2b","affectsGlobalScope":true,"impliedFormat":1},{"version":"c956ba45704d4a97f7a96923a307a6203bc0e7c4c532930d4c8ca261eaaff32a","impliedFormat":1},{"version":"ab0e88d33ccf15d8b3c891038b5a16094b0dd7e860ab0e2ba08da4384afce02b","impliedFormat":1},{"version":"954580f86c8e2a4abd5dcd1bcdf1a4c7e012495f1c39e058dc738bc93024642a","impliedFormat":1},{"version":"fa56be9b96f747e93b895d8dc2aa4fb9f0816743e6e2abb9d60705e88d4743a2","impliedFormat":1},{"version":"8257c55ff6bff6169142a35fce6811b511d857b4ae4f522cdb6ce20fd2116b2c","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"3a9e5dddbd6ca9507d0c06a557535ba2224a94a2b0f3e146e8215f93b7e5b3a8","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8b56de03a9f79f3fc1ac3a01a0d63bb48cc15f95a6b95549b4fb420e6030973","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"3c36ab47df4668254ccc170fc42e7d5116fd86a7e408d8dc220e559837cd2bbb","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"c86b9afa9b39b12db8e877d23b48888d80f26e1fe72a95f58552746a6e1fa4fe","impliedFormat":1},{"version":"e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","impliedFormat":1},{"version":"a8f06c2382a30b7cb89ad2dfc48fc3b2b490f3dafcd839dadc008e4e5d57031d","impliedFormat":1},{"version":"07b9d3b7204d931acc29269c98ac3aac87ebcba6e05141552d42a4c17f895aa4","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"1425f76ac97ce8617d1e2fa79e9a14e0fd1cfdaa155e13d4e92403a468177bc2","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"cca97c55398b8699fa3a96ef261b01d200ed2a44d2983586ab1a81d7d7b23cd9","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"f59493f68eade5200559e5016b5855f7d12e6381eb6cab9ad8a379af367b3b2d","impliedFormat":1},{"version":"125e3472965f529de239d2bc85b54579fed8e0b060d1d04de6576fb910a6ec7f","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"18f5c7c4ad71748cffdd42e829398acdfd2d150a887e5f07aae4f2acab68e71b","affectsGlobalScope":true,"impliedFormat":1},{"version":"72ed3074450a4a315063278f046637afdeea90aa72b2292a7976958ceafc344a","affectsGlobalScope":true,"impliedFormat":1},{"version":"a5c09990a37469b0311a92ce8feeb8682e83918723aedbd445bd7a0f510eaaa3","impliedFormat":1},{"version":"6b29aea17044029b257e5bd4e3e4f765cd72b8d3c11c753f363ab92cc3f9f947","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"d008cf1330c86b37a8128265c80795397c287cecff273bc3ce3a4883405f5112","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2b6058d3dd78c1b4dafc97083c5d44bdfbf4155194044bd17b8fcca554e766a","impliedFormat":1}],"root":[[80,86],[184,187]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":2,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noImplicitUseStrict":false,"noStrictGenericChecks":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./typescript","rootDir":"../src","skipLibCheck":true,"strict":true,"target":99},"fileIdsList":[[110,189,232],[95,183,189,232],[189,190,232],[189,231,232],[189,232,237,267],[189,232,233,238,244,245,252,264,275],[189,232,233,234,244,252],[189,232,235,276],[189,232,236,237,245,253],[189,232,237,264,272],[189,232,238,240,244,252],[189,231,232,239],[189,232,240,241],[189,232,244],[189,232,242,244],[189,231,232,244],[189,232,244,245,246,264,275],[189,232,244,245,246,259,264,267],[189,229,232,280],[189,232],[189,229,232,240,244,247,252,264,275],[189,232,244,245,247,248,252,264,272,275],[189,232,247,249,264,272,275],[189,232,244,250],[189,232,251,275,280],[189,232,240,244,252,264],[189,232,253],[189,232,254],[189,231,232,255],[189,190,191,231,232,233,234,235,236,237,238,239,240,241,242,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281],[189,232,257],[189,232,258],[189,232,244,259,260],[189,232,259,261,276,278],[189,232,244,264,265,266,267],[189,232,264,266],[189,232,264,265],[189,232,267],[189,232,268],[189,190,232,264],[189,232,244,270,271],[189,232,270,271],[189,232,237,252,264,272],[189,232,273],[232],[188,189,190,191,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282],[189,232,252,274],[189,232,247,258,275],[189,232,237,276],[189,232,264,277],[189,232,251,278],[189,232,279],[189,232,237,244,246,255,264,275,278,280],[189,232,264,281],[92,93,94,189,232],[72,189,232],[72,76,77,78,189,232],[75,189,232],[72,73,189,232],[74,189,232],[118,119,189,232],[95,99,105,106,109,112,114,115,118,189,232],[116,189,232],[126,189,232],[95,98,124,189,232],[95,96,98,99,103,117,118,189,232],[95,118,147,148,189,232],[95,96,98,99,103,118,189,232],[124,133,189,232],[95,96,103,117,118,135,189,232],[95,97,99,102,103,106,117,118,189,232],[95,96,98,103,118,189,232],[95,96,98,103,189,232],[95,96,97,99,101,103,104,117,118,189,232],[95,118,189,232],[95,117,118,189,232],[95,96,98,99,102,103,117,118,124,135,189,232],[95,97,99,189,232],[95,106,117,118,145,189,232],[95,96,101,118,145,147,189,232],[95,106,145,189,232],[95,96,97,99,101,102,117,118,135,189,232],[99,189,232],[95,97,99,100,101,102,117,118,189,232],[124,189,232],[125,189,232],[95,96,97,98,99,102,107,108,117,118,189,232],[99,100,189,232],[95,105,106,111,117,118,189,232],[95,105,111,113,117,118,189,232],[95,99,103,189,232],[95,117,161,189,232],[95,189,232],[98,189,232],[95,98,189,232],[118,189,232],[117,189,232],[107,116,118,189,232],[95,96,98,99,102,117,118,189,232],[171,189,232],[133,189,232],[87,88,89,90,91,97,98,99,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,189,232],[183,189,232],[89,189,232],[189,201,205,232,275],[189,201,232,264,275],[189,196,232],[189,198,201,232,272,275],[189,232,252,272],[189,232,283],[189,196,232,283],[189,198,201,232,252,275],[189,193,194,197,200,232,244,264,275],[189,201,208,232],[189,193,199,232],[189,201,222,223,232],[189,197,201,232,267,275,283],[189,222,232,283],[189,195,196,232,283],[189,201,232],[189,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,232],[189,201,216,232],[189,201,208,209,232],[189,199,201,209,210,232],[189,200,232],[189,193,196,201,232],[189,201,205,209,210,232],[189,205,232],[189,199,201,204,232,275],[189,193,198,201,208,232],[189,232,264],[189,196,201,222,232,280,283],[80,83,84,85,86,184,185,189,232],[79,82,85,189,232],[80,81,83,189,232],[80,83,84,85,189,232],[80,83,84,189,232],[184,189,232],[79,80,189,232],[79,80,81,189,232],[80,86,189,232]],"referencedMap":[[111,1],[110,2],[190,3],[191,3],[231,4],[232,5],[233,6],[234,7],[235,8],[236,9],[237,10],[238,11],[239,12],[240,13],[241,13],[243,14],[242,15],[244,16],[245,17],[246,18],[230,19],[282,20],[247,21],[248,22],[249,23],[250,24],[251,25],[252,26],[253,27],[254,28],[255,29],[256,30],[257,31],[258,32],[259,33],[260,33],[261,34],[262,20],[263,20],[264,35],[266,36],[265,37],[267,38],[268,39],[269,40],[270,41],[271,42],[272,43],[273,44],[189,45],[188,20],[283,46],[274,47],[275,48],[276,49],[277,50],[278,51],[279,52],[280,53],[281,54],[94,20],[92,20],[95,55],[192,20],[93,20],[77,20],[73,56],[78,56],[72,20],[79,57],[76,58],[74,59],[75,60],[120,61],[121,20],[116,62],[122,20],[123,63],[127,64],[128,20],[129,65],[130,66],[149,67],[131,20],[132,68],[134,69],[136,70],[137,71],[138,72],[104,72],[139,73],[105,74],[140,75],[141,66],[142,76],[143,77],[144,20],[101,78],[146,79],[148,80],[147,81],[145,82],[106,73],[102,83],[103,84],[150,20],[151,20],[133,85],[125,85],[126,86],[109,87],[107,20],[108,20],[152,85],[153,88],[154,20],[155,69],[112,89],[114,90],[156,20],[157,91],[158,20],[159,20],[160,20],[162,92],[163,20],[113,93],[166,94],[164,93],[165,95],[167,20],[168,96],[170,96],[169,96],[119,96],[118,97],[117,98],[115,99],[171,20],[172,100],[99,95],[173,64],[174,64],[175,101],[176,85],[161,20],[177,20],[178,20],[181,20],[124,20],[179,20],[180,93],[183,102],[87,20],[88,103],[89,104],[90,20],[91,20],[135,20],[96,20],[182,103],[97,20],[100,83],[98,93],[70,20],[71,20],[13,20],[12,20],[2,20],[14,20],[15,20],[16,20],[17,20],[18,20],[19,20],[20,20],[21,20],[3,20],[22,20],[4,20],[23,20],[27,20],[24,20],[25,20],[26,20],[28,20],[29,20],[30,20],[5,20],[31,20],[32,20],[33,20],[34,20],[6,20],[38,20],[35,20],[36,20],[37,20],[39,20],[7,20],[40,20],[45,20],[46,20],[41,20],[42,20],[43,20],[44,20],[8,20],[50,20],[47,20],[48,20],[49,20],[51,20],[9,20],[52,20],[53,20],[54,20],[57,20],[55,20],[56,20],[58,20],[59,20],[10,20],[60,20],[1,20],[61,20],[62,20],[11,20],[67,20],[64,20],[63,20],[68,20],[66,20],[69,20],[65,20],[208,105],[218,106],[207,105],[228,107],[199,108],[198,109],[227,110],[221,111],[226,112],[201,113],[215,114],[200,115],[224,116],[196,117],[195,110],[225,118],[197,119],[202,120],[203,20],[206,120],[193,20],[229,121],[219,122],[210,123],[211,124],[213,125],[209,126],[212,127],[222,110],[204,128],[205,129],[214,130],[194,131],[217,122],[216,120],[220,20],[223,132],[186,133],[83,134],[84,135],[86,136],[85,137],[187,138],[184,103],[81,139],[82,140],[185,141],[80,20]],"latestChangedDtsFile":"./typescript/specs/NativeNitroSQLiteOnLoad.ios.d.ts"},"version":"5.5.4"}