joye-backend-utility 5.1.7 → 5.1.9

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.
package/README.md CHANGED
@@ -1,2 +1,2 @@
1
- # joye-backend-utility
2
- Joye backend utility for common functions and all the database related generic functions with database connection
1
+ # joye-backend-utility
2
+ Joye backend utility for common functions and all the database related generic functions with database connection
package/dist/database.js CHANGED
@@ -40,6 +40,10 @@ class database {
40
40
  con.model('Organization_User_Attr_Permission', schema_1.OrganizationUserAttrPermissionSchema);
41
41
  con.model('User_Goal', schema_1.userGoalSchema);
42
42
  con.model('User_Joy_Level_Qa', schema_1.userJoyLevelQaSchema);
43
+ con.model('User_Training_Data', schema_1.UserTrainingDataSchema);
44
+ con.model('User_Training_Week_Data', schema_1.UserTrainingWeekDataSchema);
45
+ con.model('Master_Training', schema_1.MasterTrainingSchema);
46
+ con.model('Master_Training_Week', schema_1.MasterTrainingWeekSchema);
43
47
  };
44
48
  this.connectToDatabase = () => {
45
49
  const env = config_1.NODE_ENV || 'development';
@@ -31,3 +31,7 @@ export { TimezoneSchema } from './timezones';
31
31
  export { OrganizationUserAttrPermissionSchema } from './organizationUserAttrPermission';
32
32
  export { userGoalSchema } from './userGoal';
33
33
  export { userJoyLevelQaSchema } from './userJoyLevelQa';
34
+ export { MasterTrainingSchema } from './masterTraining';
35
+ export { MasterTrainingWeekSchema } from './masterTrainingWeek';
36
+ export { UserTrainingDataSchema } from './userTrainingData';
37
+ export { UserTrainingWeekDataSchema } from './userTrainingWeekData';
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.userJoyLevelQaSchema = exports.userGoalSchema = exports.OrganizationUserAttrPermissionSchema = exports.TimezoneSchema = exports.UserVideoSchema = exports.UserFeedbackSchema = exports.UserReminderSchema = exports.MasterLinkCardSchema = exports.UserRecommendationSchema = exports.MasterSuggestionsParameterSchema = exports.MasterSuggestionsMessageSchema = exports.MasterBlessingsDataSchema = exports.MasterVideoSchema = exports.DatabaseInfoSchema = exports.UserSchema = exports.UserMessageLogSchema = exports.UserMessageSchema = exports.UserMeetingSchema = exports.UserLogSchema = exports.PlatformSchema = exports.OrganizationSchema = exports.MasterThemeMessageSchema = exports.MasterThemeDataSchema = exports.MasterPredictionEmotionsMessageMappingSchema = exports.MasterPredictionEmotionMessageSchema = exports.MasterPredictionEmotionSchema = exports.MasterPodcastSchema = exports.MasterEmotionMessageTypeThemeMappingSchema = exports.MasterEmotionsMessageMappingSchema = exports.MasterEmotionsSchema = exports.MasterDataSchema = exports.MasterAppSettingSchema = exports.BrewSchema = void 0;
3
+ exports.UserTrainingWeekDataSchema = exports.UserTrainingDataSchema = exports.MasterTrainingWeekSchema = exports.MasterTrainingSchema = exports.userJoyLevelQaSchema = exports.userGoalSchema = exports.OrganizationUserAttrPermissionSchema = exports.TimezoneSchema = exports.UserVideoSchema = exports.UserFeedbackSchema = exports.UserReminderSchema = exports.MasterLinkCardSchema = exports.UserRecommendationSchema = exports.MasterSuggestionsParameterSchema = exports.MasterSuggestionsMessageSchema = exports.MasterBlessingsDataSchema = exports.MasterVideoSchema = exports.DatabaseInfoSchema = exports.UserSchema = exports.UserMessageLogSchema = exports.UserMessageSchema = exports.UserMeetingSchema = exports.UserLogSchema = exports.PlatformSchema = exports.OrganizationSchema = exports.MasterThemeMessageSchema = exports.MasterThemeDataSchema = exports.MasterPredictionEmotionsMessageMappingSchema = exports.MasterPredictionEmotionMessageSchema = exports.MasterPredictionEmotionSchema = exports.MasterPodcastSchema = exports.MasterEmotionMessageTypeThemeMappingSchema = exports.MasterEmotionsMessageMappingSchema = exports.MasterEmotionsSchema = exports.MasterDataSchema = exports.MasterAppSettingSchema = exports.BrewSchema = void 0;
4
4
  var brew_1 = require("./brew");
5
5
  Object.defineProperty(exports, "BrewSchema", { enumerable: true, get: function () { return brew_1.BrewSchema; } });
6
6
  var masterAppSetting_1 = require("./masterAppSetting");
@@ -67,3 +67,11 @@ var userGoal_1 = require("./userGoal");
67
67
  Object.defineProperty(exports, "userGoalSchema", { enumerable: true, get: function () { return userGoal_1.userGoalSchema; } });
68
68
  var userJoyLevelQa_1 = require("./userJoyLevelQa");
69
69
  Object.defineProperty(exports, "userJoyLevelQaSchema", { enumerable: true, get: function () { return userJoyLevelQa_1.userJoyLevelQaSchema; } });
70
+ var masterTraining_1 = require("./masterTraining");
71
+ Object.defineProperty(exports, "MasterTrainingSchema", { enumerable: true, get: function () { return masterTraining_1.MasterTrainingSchema; } });
72
+ var masterTrainingWeek_1 = require("./masterTrainingWeek");
73
+ Object.defineProperty(exports, "MasterTrainingWeekSchema", { enumerable: true, get: function () { return masterTrainingWeek_1.MasterTrainingWeekSchema; } });
74
+ var userTrainingData_1 = require("./userTrainingData");
75
+ Object.defineProperty(exports, "UserTrainingDataSchema", { enumerable: true, get: function () { return userTrainingData_1.UserTrainingDataSchema; } });
76
+ var userTrainingWeekData_1 = require("./userTrainingWeekData");
77
+ Object.defineProperty(exports, "UserTrainingWeekDataSchema", { enumerable: true, get: function () { return userTrainingWeekData_1.UserTrainingWeekDataSchema; } });
@@ -29,5 +29,9 @@ const MasterPodcast = new mongoose_1.Schema({
29
29
  default: false,
30
30
  required: false,
31
31
  },
32
+ training: {
33
+ type: Boolean,
34
+ required: false,
35
+ },
32
36
  });
33
37
  exports.MasterPodcastSchema = MasterPodcast;
@@ -0,0 +1,2 @@
1
+ import { Schema } from 'mongoose';
2
+ export declare const MasterTrainingSchema: Schema<import("mongoose").Document<any, any, any>, import("mongoose").Model<import("mongoose").Document<any, any, any>, any, any>, undefined, {}>;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MasterTrainingSchema = void 0;
4
+ const mongoose_1 = require("mongoose");
5
+ const MasterTraining = new mongoose_1.Schema({
6
+ key: {
7
+ type: String,
8
+ required: true,
9
+ index: true,
10
+ },
11
+ title: {
12
+ type: String,
13
+ required: true,
14
+ },
15
+ overview: {
16
+ type: String,
17
+ required: false,
18
+ },
19
+ durationWeeks: {
20
+ type: Number,
21
+ required: true,
22
+ },
23
+ active: {
24
+ type: Boolean,
25
+ required: true,
26
+ default: true,
27
+ },
28
+ });
29
+ exports.MasterTrainingSchema = MasterTraining;
@@ -0,0 +1,2 @@
1
+ import { Schema } from 'mongoose';
2
+ export declare const MasterTrainingWeekSchema: Schema<import("mongoose").Document<any, any, any>, import("mongoose").Model<import("mongoose").Document<any, any, any>, any, any>, undefined, {}>;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MasterTrainingWeekSchema = void 0;
4
+ const mongoose_1 = require("mongoose");
5
+ const MasterTrainingWeek = new mongoose_1.Schema({
6
+ trainingKey: {
7
+ type: String,
8
+ required: true,
9
+ index: true,
10
+ },
11
+ title: {
12
+ type: String,
13
+ required: true,
14
+ },
15
+ learn: {
16
+ type: Array,
17
+ required: false,
18
+ },
19
+ practice: {
20
+ type: Array,
21
+ required: false,
22
+ },
23
+ podcasts: {
24
+ type: Array,
25
+ required: false,
26
+ },
27
+ practiceReminder: {
28
+ type: Array,
29
+ required: false,
30
+ },
31
+ });
32
+ exports.MasterTrainingWeekSchema = MasterTrainingWeek;
@@ -166,6 +166,10 @@ const User = new mongoose_1.Schema({
166
166
  type: Number,
167
167
  required: false,
168
168
  },
169
+ lastModeWeek: {
170
+ type: Number,
171
+ required: false,
172
+ },
169
173
  lastCardCycle: {
170
174
  // TO identify what was the last cycle
171
175
  // Value in 1, 2, 3
@@ -180,6 +184,11 @@ const User = new mongoose_1.Schema({
180
184
  required: false,
181
185
  type: String,
182
186
  },
187
+ autoNotificationMode: {
188
+ // Value in Dynamic (default), ZenFlow, LightEasy
189
+ required: false,
190
+ type: String,
191
+ },
183
192
  });
184
193
  User.index({ botDetails: 1, preferredTimezone: -1 }, {
185
194
  unique: false,
@@ -0,0 +1,2 @@
1
+ import { Schema } from 'mongoose';
2
+ export declare const UserTrainingDataSchema: Schema<import("mongoose").Document<any, any, any>, import("mongoose").Model<import("mongoose").Document<any, any, any>, any, any>, undefined, {}>;
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UserTrainingDataSchema = void 0;
4
+ const mongoose_1 = require("mongoose");
5
+ const UserTrainingData = new mongoose_1.Schema({
6
+ trainingKey: {
7
+ type: String,
8
+ required: true,
9
+ index: true,
10
+ },
11
+ startDate: {
12
+ type: String,
13
+ required: true,
14
+ },
15
+ startWeek: {
16
+ type: String,
17
+ required: false,
18
+ },
19
+ creationTimestamp: {
20
+ type: Number,
21
+ required: true,
22
+ },
23
+ status: {
24
+ type: String,
25
+ required: true,
26
+ default: true,
27
+ },
28
+ preRating: {
29
+ type: Number,
30
+ required: false,
31
+ },
32
+ postRating: {
33
+ type: Number,
34
+ required: false,
35
+ },
36
+ });
37
+ exports.UserTrainingDataSchema = UserTrainingData;
@@ -0,0 +1,2 @@
1
+ import { Schema } from 'mongoose';
2
+ export declare const UserTrainingWeekDataSchema: Schema<import("mongoose").Document<any, any, any>, import("mongoose").Model<import("mongoose").Document<any, any, any>, any, any>, undefined, {}>;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UserTrainingWeekDataSchema = void 0;
4
+ const mongoose_1 = require("mongoose");
5
+ const UserTrainingWeekData = new mongoose_1.Schema({
6
+ trainingKey: {
7
+ type: String,
8
+ required: true,
9
+ index: true,
10
+ },
11
+ startDate: {
12
+ type: String,
13
+ required: true,
14
+ },
15
+ startWeek: {
16
+ type: String,
17
+ required: false,
18
+ },
19
+ creationTimestamp: {
20
+ type: Number,
21
+ required: true,
22
+ },
23
+ status: {
24
+ type: String,
25
+ required: true,
26
+ },
27
+ practiceReminder: {
28
+ type: Array,
29
+ required: false,
30
+ },
31
+ endDate: {
32
+ type: String,
33
+ required: false,
34
+ },
35
+ });
36
+ exports.UserTrainingWeekDataSchema = UserTrainingWeekData;
package/package.json CHANGED
@@ -1,62 +1,62 @@
1
- {
2
- "name": "joye-backend-utility",
3
- "version": "5.1.7",
4
- "description": "Joye backend utility for db functions and common functions",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "files": [
8
- "/dist/**/*"
9
- ],
10
- "engines": {
11
- "node": "17.1.0"
12
- },
13
- "scripts": {
14
- "build": "tsc && yarn copy-files",
15
- "test": "echo \"Error: no test specified\"",
16
- "postinstall": "npm run build",
17
- "lint": "eslint --ignore-path .gitignore --ext .ts .",
18
- "lint:fix": "npm run lint -- --fix",
19
- "prepare": "husky install && yarn build",
20
- "copy-files": "copyfiles -u 1 lib/jwtKeys/**/* dist/"
21
- },
22
- "repository": {
23
- "type": "git",
24
- "url": "git+https://github.com/Joye-ai/joye-backend-utility.git"
25
- },
26
- "author": "",
27
- "license": "ISC",
28
- "bugs": {
29
- "url": "https://github.com/Joye-ai/joye-backend-utility/issues"
30
- },
31
- "homepage": "https://github.com/Joye-ai/joye-backend-utility#readme",
32
- "dependencies": {
33
- "bcrypt": "^5.0.1",
34
- "dotenv": "^16.0.0",
35
- "fs": "^0.0.1-security",
36
- "jsonwebtoken": "^9.0.0",
37
- "moment": "^2.29.3",
38
- "mongoose": "^5.10.1",
39
- "path": "^0.12.7",
40
- "redis": "^4.6.15",
41
- "uuid": "^9.0.0"
42
- },
43
- "devDependencies": {
44
- "@types/bcrypt": "^5.0.0",
45
- "@types/node": "^17.0.25",
46
- "@types/redis": "^4.0.11",
47
- "@typescript-eslint/eslint-plugin": "^4.28.2",
48
- "@typescript-eslint/parser": "^4.28.2",
49
- "copyfiles": "^2.4.1",
50
- "eslint": "^7.30.0",
51
- "eslint-config-prettier": "^8.3.0",
52
- "eslint-plugin-prettier": "^3.4.0",
53
- "husky": "^7.0.0",
54
- "lint-staged": "^11.0.0",
55
- "prettier": "^2.3.2",
56
- "rimraf": "^5.0.1",
57
- "ts-node": "^10.4.0",
58
- "tsc-alias": "^1.4.1",
59
- "tsconfig-paths": "^3.10.1",
60
- "typescript": "^4.6.3"
61
- }
62
- }
1
+ {
2
+ "name": "joye-backend-utility",
3
+ "version": "5.1.9",
4
+ "description": "Joye backend utility for db functions and common functions",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "/dist/**/*"
9
+ ],
10
+ "engines": {
11
+ "node": "17.1.0"
12
+ },
13
+ "scripts": {
14
+ "build": "tsc && yarn copy-files",
15
+ "test": "echo \"Error: no test specified\"",
16
+ "postinstall": "npm run build",
17
+ "lint": "eslint --ignore-path .gitignore --ext .ts .",
18
+ "lint:fix": "npm run lint -- --fix",
19
+ "prepare": "husky install && yarn build",
20
+ "copy-files": "copyfiles -u 1 lib/jwtKeys/**/* dist/"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/Joye-ai/joye-backend-utility.git"
25
+ },
26
+ "author": "",
27
+ "license": "ISC",
28
+ "bugs": {
29
+ "url": "https://github.com/Joye-ai/joye-backend-utility/issues"
30
+ },
31
+ "homepage": "https://github.com/Joye-ai/joye-backend-utility#readme",
32
+ "dependencies": {
33
+ "bcrypt": "^5.0.1",
34
+ "dotenv": "^16.0.0",
35
+ "fs": "^0.0.1-security",
36
+ "jsonwebtoken": "^9.0.0",
37
+ "moment": "^2.29.3",
38
+ "mongoose": "^5.10.1",
39
+ "path": "^0.12.7",
40
+ "redis": "^4.6.15",
41
+ "uuid": "^9.0.0"
42
+ },
43
+ "devDependencies": {
44
+ "@types/bcrypt": "^5.0.0",
45
+ "@types/node": "^17.0.25",
46
+ "@types/redis": "^4.0.11",
47
+ "@typescript-eslint/eslint-plugin": "^4.28.2",
48
+ "@typescript-eslint/parser": "^4.28.2",
49
+ "copyfiles": "^2.4.1",
50
+ "eslint": "^7.30.0",
51
+ "eslint-config-prettier": "^8.3.0",
52
+ "eslint-plugin-prettier": "^3.4.0",
53
+ "husky": "^7.0.0",
54
+ "lint-staged": "^11.0.0",
55
+ "prettier": "^2.3.2",
56
+ "rimraf": "^5.0.1",
57
+ "ts-node": "^10.4.0",
58
+ "tsc-alias": "^1.4.1",
59
+ "tsconfig-paths": "^3.10.1",
60
+ "typescript": "^4.6.3"
61
+ }
62
+ }
@@ -1,54 +0,0 @@
1
- -----BEGIN ENCRYPTED PRIVATE KEY-----
2
- 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
- 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
- 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
- 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
- y6xsUC+yZEiAnAOrKdXLsRRUizbhxpxdzkYtzI3EgqeIAGN6IAAbhlp7xSOxelDv
7
- ZiJ2E/ssdQn/vpyJrR41S0xg7ioz4vxTVD8VectKMrwYs2TpRF68QOSyP7dsv73X
8
- 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
- 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
- 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
- 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
- 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
- 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
- ZAeeUohKZ6sSD9rAdowv+uua4kdtWl2N7Emk2kNhFULalUzV402k4MvLTqFqj7Sj
15
- 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
- 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
- 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
- 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
- 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
- s3Rz5cTjV++sm4wIEAQqEaGM8IUHTmm9utHE+oqG9vy4yH+wvFmAMjsX/Yewhntw
21
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- s2ZZMAqpxSRn7l+eeXkZm3nmvqGbbIf9QhPAFk2ZisIjvTMqSxo2Q8SyMg2QrGVB
34
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
54
- -----END ENCRYPTED PRIVATE KEY-----
@@ -1,14 +0,0 @@
1
- -----BEGIN PUBLIC KEY-----
2
- MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAhQm+l2g8jmpiCwxpYJVr
3
- Bghj2p7eYofKfj/k9ng6TQQaVEcq9br1i8iCW5qi5/6ihpD+095FZ/LKgO6jdbr5
4
- QyMTftMQbQuY/TtEYR3e882tjdjH8zPWP8YZj2/EDV9kuVkkiIpTHiHOlh/C+7fQ
5
- fiOoKHC6auEfeoh5yEgi57dy0md0bKnQ8WPpklkdoZrHJdRyneZY0/dnsv7PQ3Wx
6
- pIL56LGPJA1SkhfyhhCQn+Kh/aOE6fuecnxmkKDlp33351vu7M7obR2ozr/wBUBs
7
- Q2W61S9EcdBwx9PWQNsLPDEC8XuW7KvfetTzp+ZoLwMDLnoiDD1eyMiuHi7kq3KC
8
- 9lt+Ymf1FfrBTfLhIo7BI3py0pKgoUYNgmkaYzw57BfcPcq4BR1LsavRh2qbBb+e
9
- cGoZQMqmgfiz4DyyXC2zJjruTMBheOhfA/fkMOSgsjTh3v5yno6ledgYTbJR3czf
10
- 2FH43dpGEgop/NHwfoMuV/pPJ3ZKqaeqZMm61wEgugUiVwT+aHOijkfIApRGuu8u
11
- NQcfLXHcxT4lQ/XJ7rejwUibZBc0iv4pMT9jfap/Aycv7F49R8Mtwaj3vfKw9tNK
12
- TTIHxl0KUIOd0byDkmGE+kzNVMWLCC3xL+S0TgUxbehNLQRS0xK6DdGmDXUfki0F
13
- vuaVrQnfE/VvOnDBSksVu40CAwEAAQ==
14
- -----END PUBLIC KEY-----