@feedmepos/mf-e-invoice 0.0.57 → 0.0.58-prod

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.
@@ -1,7 +1,7 @@
1
1
  var Tu = Object.defineProperty;
2
2
  var Pu = (s, c, d) => c in s ? Tu(s, c, { enumerable: !0, configurable: !0, writable: !0, value: d }) : s[c] = d;
3
3
  var os = (s, c, d) => Pu(s, typeof c != "symbol" ? c + "" : c, d);
4
- import { defineComponent as It, mergeModels as Iu, useModel as ju, computed as Xe, ref as ke, resolveComponent as Te, createElementBlock as We, openBlock as ze, createVNode as se, withCtx as Re, createElementVNode as K, Fragment as mt, renderList as yt, createBlock as _e, toDisplayString as lt, createCommentVNode as rt, unref as nt, h as bn, withModifiers as Ao, normalizeClass as _t, createTextVNode as Su, renderSlot as Ns, resolveDynamicComponent as qs, onMounted as Bs, Teleport as Ou, Transition as Ru, withKeys as Mu, watch as Pa } from "vue";
4
+ import { defineComponent as It, mergeModels as Iu, useModel as ju, computed as Xe, ref as ke, resolveComponent as Te, createElementBlock as We, openBlock as ze, createVNode as se, withCtx as Me, createElementVNode as K, Fragment as mt, renderList as yt, createBlock as _e, toDisplayString as lt, createCommentVNode as rt, unref as nt, h as bn, withModifiers as Ao, normalizeClass as _t, createTextVNode as Su, renderSlot as Ns, resolveDynamicComponent as qs, onMounted as Bs, Teleport as Ou, Transition as Mu, withKeys as Ru, watch as Pa } from "vue";
5
5
  import { useCoreStore as At } from "@feedmepos/mf-common";
6
6
  import { useSnackbar as cn, useDialog as bo, components as Ur, useDialogChild as ku } from "@feedmepos/ui-library";
7
7
  import { defineStore as Du, storeToRefs as ss } from "pinia";
@@ -22,28 +22,28 @@ var Pt = {}, Xr = {}, Q = {}, lo = {}, Yi = {}, Zi = {}, Ga = {};
22
22
  }
23
23
  v.assertNever = F, v.arrayToEnum = (I) => {
24
24
  const N = {};
25
- for (const M of I)
26
- N[M] = M;
25
+ for (const R of I)
26
+ N[R] = R;
27
27
  return N;
28
28
  }, v.getValidEnumValues = (I) => {
29
- const N = v.objectKeys(I).filter((V) => typeof I[I[V]] != "number"), M = {};
29
+ const N = v.objectKeys(I).filter((V) => typeof I[I[V]] != "number"), R = {};
30
30
  for (const V of N)
31
- M[V] = I[V];
32
- return v.objectValues(M);
31
+ R[V] = I[V];
32
+ return v.objectValues(R);
33
33
  }, v.objectValues = (I) => v.objectKeys(I).map(function(N) {
34
34
  return I[N];
35
35
  }), v.objectKeys = typeof Object.keys == "function" ? (I) => Object.keys(I) : (I) => {
36
36
  const N = [];
37
- for (const M in I)
38
- Object.prototype.hasOwnProperty.call(I, M) && N.push(M);
37
+ for (const R in I)
38
+ Object.prototype.hasOwnProperty.call(I, R) && N.push(R);
39
39
  return N;
40
40
  }, v.find = (I, N) => {
41
- for (const M of I)
42
- if (N(M))
43
- return M;
41
+ for (const R of I)
42
+ if (N(R))
43
+ return R;
44
44
  }, v.isInteger = typeof Number.isInteger == "function" ? (I) => Number.isInteger(I) : (I) => typeof I == "number" && isFinite(I) && Math.floor(I) === I;
45
45
  function j(I, N = " | ") {
46
- return I.map((M) => typeof M == "string" ? `'${M}'` : M).join(N);
46
+ return I.map((R) => typeof R == "string" ? `'${R}'` : R).join(N);
47
47
  }
48
48
  v.joinValues = j;
49
49
  })(c = s.util || (s.util = {})), s.ZodParsedType = c.arrayToEnum([
@@ -112,7 +112,7 @@ function vo() {
112
112
  "invalid_intersection_types",
113
113
  "not_multiple_of"
114
114
  ]);
115
- const v = (M) => JSON.stringify(M, null, 2).replace(/"([^"]+)":/g, "$1:");
115
+ const v = (R) => JSON.stringify(R, null, 2).replace(/"([^"]+)":/g, "$1:");
116
116
  s.quotelessJson = v;
117
117
  class z extends Error {
118
118
  constructor(V) {
@@ -169,27 +169,27 @@ function vo() {
169
169
  return this.flatten();
170
170
  }
171
171
  }
172
- s.ZodError = z, z.create = (M) => new z(M);
173
- const F = (M, V) => {
172
+ s.ZodError = z, z.create = (R) => new z(R);
173
+ const F = (R, V) => {
174
174
  let Z;
175
- switch (M.code) {
175
+ switch (R.code) {
176
176
  case s.ZodIssueCode.invalid_type:
177
- M.received === d.ZodParsedType.undefined ? Z = "Required" : Z = `Expected ${M.expected}, received ${M.received}`;
177
+ R.received === d.ZodParsedType.undefined ? Z = "Required" : Z = `Expected ${R.expected}, received ${R.received}`;
178
178
  break;
179
179
  case s.ZodIssueCode.invalid_literal:
180
- Z = `Invalid literal value, expected ${JSON.stringify(M.expected, c.jsonStringifyReplacer)}`;
180
+ Z = `Invalid literal value, expected ${JSON.stringify(R.expected, c.jsonStringifyReplacer)}`;
181
181
  break;
182
182
  case s.ZodIssueCode.unrecognized_keys:
183
- Z = `Unrecognized key(s) in object: ${d.util.joinValues(M.keys, ", ")}`;
183
+ Z = `Unrecognized key(s) in object: ${d.util.joinValues(R.keys, ", ")}`;
184
184
  break;
185
185
  case s.ZodIssueCode.invalid_union:
186
186
  Z = "Invalid input";
187
187
  break;
188
188
  case s.ZodIssueCode.invalid_union_discriminator:
189
- Z = `Invalid discriminator value. Expected ${d.util.joinValues(M.options)}`;
189
+ Z = `Invalid discriminator value. Expected ${d.util.joinValues(R.options)}`;
190
190
  break;
191
191
  case s.ZodIssueCode.invalid_enum_value:
192
- Z = `Invalid enum value. Expected ${d.util.joinValues(M.options)}, received '${M.received}'`;
192
+ Z = `Invalid enum value. Expected ${d.util.joinValues(R.options)}, received '${R.received}'`;
193
193
  break;
194
194
  case s.ZodIssueCode.invalid_arguments:
195
195
  Z = "Invalid function arguments";
@@ -201,13 +201,13 @@ function vo() {
201
201
  Z = "Invalid date";
202
202
  break;
203
203
  case s.ZodIssueCode.invalid_string:
204
- typeof M.validation == "object" ? "startsWith" in M.validation ? Z = `Invalid input: must start with "${M.validation.startsWith}"` : "endsWith" in M.validation ? Z = `Invalid input: must start with "${M.validation.endsWith}"` : d.util.assertNever(M.validation) : M.validation !== "regex" ? Z = `Invalid ${M.validation}` : Z = "Invalid";
204
+ typeof R.validation == "object" ? "startsWith" in R.validation ? Z = `Invalid input: must start with "${R.validation.startsWith}"` : "endsWith" in R.validation ? Z = `Invalid input: must start with "${R.validation.endsWith}"` : d.util.assertNever(R.validation) : R.validation !== "regex" ? Z = `Invalid ${R.validation}` : Z = "Invalid";
205
205
  break;
206
206
  case s.ZodIssueCode.too_small:
207
- M.type === "array" ? Z = `Array must contain ${M.inclusive ? "at least" : "more than"} ${M.minimum} element(s)` : M.type === "string" ? Z = `String must contain ${M.inclusive ? "at least" : "over"} ${M.minimum} character(s)` : M.type === "number" ? Z = `Number must be greater than ${M.inclusive ? "or equal to " : ""}${M.minimum}` : M.type === "date" ? Z = `Date must be greater than ${M.inclusive ? "or equal to " : ""}${new Date(M.minimum)}` : Z = "Invalid input";
207
+ R.type === "array" ? Z = `Array must contain ${R.inclusive ? "at least" : "more than"} ${R.minimum} element(s)` : R.type === "string" ? Z = `String must contain ${R.inclusive ? "at least" : "over"} ${R.minimum} character(s)` : R.type === "number" ? Z = `Number must be greater than ${R.inclusive ? "or equal to " : ""}${R.minimum}` : R.type === "date" ? Z = `Date must be greater than ${R.inclusive ? "or equal to " : ""}${new Date(R.minimum)}` : Z = "Invalid input";
208
208
  break;
209
209
  case s.ZodIssueCode.too_big:
210
- M.type === "array" ? Z = `Array must contain ${M.inclusive ? "at most" : "less than"} ${M.maximum} element(s)` : M.type === "string" ? Z = `String must contain ${M.inclusive ? "at most" : "under"} ${M.maximum} character(s)` : M.type === "number" ? Z = `Number must be less than ${M.inclusive ? "or equal to " : ""}${M.maximum}` : M.type === "date" ? Z = `Date must be smaller than ${M.inclusive ? "or equal to " : ""}${new Date(M.maximum)}` : Z = "Invalid input";
210
+ R.type === "array" ? Z = `Array must contain ${R.inclusive ? "at most" : "less than"} ${R.maximum} element(s)` : R.type === "string" ? Z = `String must contain ${R.inclusive ? "at most" : "under"} ${R.maximum} character(s)` : R.type === "number" ? Z = `Number must be less than ${R.inclusive ? "or equal to " : ""}${R.maximum}` : R.type === "date" ? Z = `Date must be smaller than ${R.inclusive ? "or equal to " : ""}${new Date(R.maximum)}` : Z = "Invalid input";
211
211
  break;
212
212
  case s.ZodIssueCode.custom:
213
213
  Z = "Invalid input";
@@ -216,17 +216,17 @@ function vo() {
216
216
  Z = "Intersection results could not be merged";
217
217
  break;
218
218
  case s.ZodIssueCode.not_multiple_of:
219
- Z = `Number must be a multiple of ${M.multipleOf}`;
219
+ Z = `Number must be a multiple of ${R.multipleOf}`;
220
220
  break;
221
221
  default:
222
- Z = V.defaultError, d.util.assertNever(M);
222
+ Z = V.defaultError, d.util.assertNever(R);
223
223
  }
224
224
  return { message: Z };
225
225
  };
226
226
  s.defaultErrorMap = F;
227
227
  let j = s.defaultErrorMap;
228
- function I(M) {
229
- j = M;
228
+ function I(R) {
229
+ j = R;
230
230
  }
231
231
  s.setErrorMap = I;
232
232
  function N() {
@@ -320,8 +320,8 @@ function yo() {
320
320
  s.isAborted = I;
321
321
  const N = (oe) => oe.status === "dirty";
322
322
  s.isDirty = N;
323
- const M = (oe) => oe.status === "valid";
324
- s.isValid = M;
323
+ const R = (oe) => oe.status === "valid";
324
+ s.isValid = R;
325
325
  const V = (oe) => typeof Promise !== void 0 && oe instanceof Promise;
326
326
  s.isAsync = V;
327
327
  const Z = (oe, ue) => typeof ue == "bigint" ? ue.toString() : ue;
@@ -519,7 +519,7 @@ var Ls = {}, Hs = {};
519
519
  }
520
520
  }
521
521
  s.ZodType = N, s.Schema = N, s.ZodSchema = N;
522
- const M = /^c[^\s-]{8,}$/i, V = /^([a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[a-f0-9]{4}-[a-f0-9]{12}|00000000-0000-0000-0000-000000000000)$/i, Z = /^(([^<>()[\]\.,;:\s@\"]+(\.[^<>()[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i;
522
+ const R = /^c[^\s-]{8,}$/i, V = /^([a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[a-f0-9]{4}-[a-f0-9]{12}|00000000-0000-0000-0000-000000000000)$/i, Z = /^(([^<>()[\]\.,;:\s@\"]+(\.[^<>()[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i;
523
523
  class oe extends N {
524
524
  constructor() {
525
525
  super(...arguments), this._regex = (P, O, q) => this.refinement(($) => P.test($), {
@@ -576,7 +576,7 @@ var Ls = {}, Hs = {};
576
576
  message: W.message
577
577
  }), q.dirty());
578
578
  else if (W.kind === "cuid")
579
- M.test(P.data) || ($ = this._getOrReturnCtx(P, $), d.addIssueToContext($, {
579
+ R.test(P.data) || ($ = this._getOrReturnCtx(P, $), d.addIssueToContext($, {
580
580
  validation: "cuid",
581
581
  code: z.ZodIssueCode.invalid_string,
582
582
  message: W.message
@@ -2088,8 +2088,8 @@ var Ls = {}, Hs = {};
2088
2088
  s.string = C;
2089
2089
  const T = G.create;
2090
2090
  s.number = T;
2091
- const R = b.create;
2092
- s.nan = R;
2091
+ const M = b.create;
2092
+ s.nan = M;
2093
2093
  const S = ee.create;
2094
2094
  s.bigint = S;
2095
2095
  const k = L.create;
@@ -2134,8 +2134,8 @@ var Ls = {}, Hs = {};
2134
2134
  s.lazy = Le;
2135
2135
  const ce = t.create;
2136
2136
  s.literal = ce;
2137
- const Me = i.create;
2138
- s.enum = Me;
2137
+ const Re = i.create;
2138
+ s.enum = Re;
2139
2139
  const qe = o.create;
2140
2140
  s.nativeEnum = qe;
2141
2141
  const ut = l.create;
@@ -2174,12 +2174,12 @@ var Ls = {}, Hs = {};
2174
2174
  } }), d(Ls, s), d(vo(), s);
2175
2175
  })(lo);
2176
2176
  (function(s) {
2177
- var c = Ke && Ke.__createBinding || (Object.create ? function(j, I, N, M) {
2178
- M === void 0 && (M = N), Object.defineProperty(j, M, { enumerable: !0, get: function() {
2177
+ var c = Ke && Ke.__createBinding || (Object.create ? function(j, I, N, R) {
2178
+ R === void 0 && (R = N), Object.defineProperty(j, R, { enumerable: !0, get: function() {
2179
2179
  return I[N];
2180
2180
  } });
2181
- } : function(j, I, N, M) {
2182
- M === void 0 && (M = N), j[M] = I[N];
2181
+ } : function(j, I, N, R) {
2182
+ R === void 0 && (R = N), j[R] = I[N];
2183
2183
  }), d = Ke && Ke.__setModuleDefault || (Object.create ? function(j, I) {
2184
2184
  Object.defineProperty(j, "default", { enumerable: !0, value: I });
2185
2185
  } : function(j, I) {
@@ -2329,16 +2329,16 @@ class Uu {
2329
2329
  }
2330
2330
  Gr.ZodMongoMeta = Uu;
2331
2331
  (function(s) {
2332
- var c = Ke && Ke.__createBinding || (Object.create ? function(I, N, M, V) {
2333
- V === void 0 && (V = M);
2334
- var Z = Object.getOwnPropertyDescriptor(N, M);
2332
+ var c = Ke && Ke.__createBinding || (Object.create ? function(I, N, R, V) {
2333
+ V === void 0 && (V = R);
2334
+ var Z = Object.getOwnPropertyDescriptor(N, R);
2335
2335
  (!Z || ("get" in Z ? !N.__esModule : Z.writable || Z.configurable)) && (Z = { enumerable: !0, get: function() {
2336
- return N[M];
2336
+ return N[R];
2337
2337
  } }), Object.defineProperty(I, V, Z);
2338
- } : function(I, N, M, V) {
2339
- V === void 0 && (V = M), I[V] = N[M];
2338
+ } : function(I, N, R, V) {
2339
+ V === void 0 && (V = R), I[V] = N[R];
2340
2340
  }), d = Ke && Ke.__exportStar || function(I, N) {
2341
- for (var M in I) M !== "default" && !Object.prototype.hasOwnProperty.call(N, M) && c(N, I, M);
2341
+ for (var R in I) R !== "default" && !Object.prototype.hasOwnProperty.call(N, R) && c(N, I, R);
2342
2342
  };
2343
2343
  Object.defineProperty(s, "__esModule", { value: !0 }), s.ZodMeta = void 0;
2344
2344
  const v = xr, z = Yn, F = Gr;
@@ -2595,7 +2595,7 @@ var at = {};
2595
2595
  precision: c.z.number()
2596
2596
  });
2597
2597
  })(at);
2598
- var Mt = {};
2598
+ var Rt = {};
2599
2599
  (function(s) {
2600
2600
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoAdvanceEmployee = s.FdoEmployee = s.FdoBaseEmployee = s.FdoEmployeeRef = void 0;
2601
2601
  const c = Se, d = Q;
@@ -2611,7 +2611,7 @@ var Mt = {};
2611
2611
  }), s.FdoEmployee = s.FdoBaseEmployee.describe(c.ZodMeta.couch().repo("user").setIndexKeys(["role"]).build()), s.FdoAdvanceEmployee = s.FdoBaseEmployee.extend({
2612
2612
  code: d.z.string().nullish()
2613
2613
  }).describe(c.ZodMeta.couch().repo("masterUser").build());
2614
- })(Mt);
2614
+ })(Rt);
2615
2615
  var fn = {}, br = {}, Wr = {};
2616
2616
  Object.defineProperty(Wr, "__esModule", { value: !0 });
2617
2617
  Wr.F_COUNTER_TYPE = void 0;
@@ -2623,7 +2623,7 @@ Wr.F_COUNTER_TYPE = Xu.z.enum([
2623
2623
  ]);
2624
2624
  (function(s) {
2625
2625
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoCounterRecord = s.FdoCounterRef = s.FdoCounter = void 0;
2626
- const c = Se, d = Q, v = at, z = Mt, F = Wr;
2626
+ const c = Se, d = Q, v = at, z = Rt, F = Wr;
2627
2627
  s.FdoCounter = d.z.object({
2628
2628
  _id: d.z.string(),
2629
2629
  type: F.F_COUNTER_TYPE,
@@ -2665,7 +2665,7 @@ Yt.F_PAYMENT_GATEWAY_KEY = Yu.z.enum([
2665
2665
  ]);
2666
2666
  (function(s) {
2667
2667
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoPaymentType = s.FdoTerminalPayment = s.FdoTerminalPaymentReconcileConfig = s.FdoOfflinePaymentMethod = s.FdoPayment = s.FdoChangePaymentActivity = s.FdoPaymentGatewayInfo = s.FdoPaymentRef = void 0;
2668
- const c = Se, d = Q, v = br, z = at, F = Mt, j = Yt;
2668
+ const c = Se, d = Q, v = br, z = at, F = Rt, j = Yt;
2669
2669
  s.FdoPaymentRef = d.z.object({
2670
2670
  name: d.z.string()
2671
2671
  }), s.FdoPaymentGatewayInfo = d.z.object({
@@ -2807,7 +2807,7 @@ tr.F_ADJUSTMENT_CAUSE = Qu.z.enum([
2807
2807
  ]);
2808
2808
  Object.defineProperty(Kr, "__esModule", { value: !0 });
2809
2809
  Kr.FdoBillAdjustment = void 0;
2810
- const pn = Q, Ku = _r, _u = Lt, $u = at, cs = Mt, Ju = tr;
2810
+ const pn = Q, Ku = _r, _u = Lt, $u = at, cs = Rt, Ju = tr;
2811
2811
  Kr.FdoBillAdjustment = pn.z.object({
2812
2812
  cause: Ju.F_ADJUSTMENT_CAUSE,
2813
2813
  referenceId: pn.z.string().nullish(),
@@ -3169,7 +3169,7 @@ Qn.BillItemCreatedByType = Ks.z.enum([
3169
3169
  ]);
3170
3170
  (function(s) {
3171
3171
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoArrayedBillItem = s.FdoBillItem = s.FdoBillItemPrintChecklistRecord = s.FdoBillItemMove = s.FdoBillSubItemRef = s.FdoBillItemVariantSelected = s.FdoItemAdjustment = s.FdoPrintBy = s.FdoKitchenStation = s.FdoBillItemIs = s.FdoBillItemRef = s.FdoBillItemTaxRef = void 0;
3172
- const c = Q, d = Lt, v = at, z = _r, F = Mt, j = wr, I = tr, N = rr, M = Qn, V = nr;
3172
+ const c = Q, d = Lt, v = at, z = _r, F = Rt, j = wr, I = tr, N = rr, R = Qn, V = nr;
3173
3173
  s.FdoBillItemTaxRef = c.z.object({
3174
3174
  systemCode: c.z.string(),
3175
3175
  taxCode: c.z.string(),
@@ -3247,7 +3247,7 @@ Qn.BillItemCreatedByType = Ks.z.enum([
3247
3247
  productId: c.z.string().nullish(),
3248
3248
  product: s.FdoBillItemRef,
3249
3249
  subItems: c.z.array(s.FdoBillSubItemRef),
3250
- status: M.F_BILL_ITEM_STATUS,
3250
+ status: R.F_BILL_ITEM_STATUS,
3251
3251
  is: s.FdoBillItemIs,
3252
3252
  unitQuantity: c.z.number().nullish(),
3253
3253
  quantity: c.z.number(),
@@ -3341,7 +3341,7 @@ ea.FdoBillReward = lr.z.object({
3341
3341
  var Io = {};
3342
3342
  (function(s) {
3343
3343
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoBillVoucherIssued = s.FdoVoucherIssueTo = s.FdoBillIssued = void 0;
3344
- const c = Q, d = Mt;
3344
+ const c = Q, d = Rt;
3345
3345
  s.FdoBillIssued = c.z.object({
3346
3346
  userId: c.z.string(),
3347
3347
  voucherId: c.z.string()
@@ -3362,7 +3362,7 @@ var Io = {};
3362
3362
  })(Io);
3363
3363
  (function(s) {
3364
3364
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoBill = s.FdoBillQueueInfo = s.FdoBillIs = s.FdoBillInHouseDelivery = s.FdoExternalPickup = s.FdoBillQrOrder = s.FdoBillRefund = void 0;
3365
- const c = Se, d = Q, v = at, z = Mt, F = fn, j = Qr, I = $t, N = Kr, M = Xa, V = Co, Z = yr, oe = Ya, ue = Za, G = Wa, ee = Po, L = Er, te = ea, fe = nr, re = Io;
3365
+ const c = Se, d = Q, v = at, z = Rt, F = fn, j = Qr, I = $t, N = Kr, R = Xa, V = Co, Z = yr, oe = Ya, ue = Za, G = Wa, ee = Po, L = Er, te = ea, fe = nr, re = Io;
3366
3366
  s.FdoBillRefund = d.z.object({
3367
3367
  by: z.FdoEmployeeRef.nullish(),
3368
3368
  approvedBy: z.FdoEmployeeRef.nullish(),
@@ -3413,7 +3413,7 @@ var Io = {};
3413
3413
  reward: te.FdoBillReward.nullish(),
3414
3414
  membership: ee.FdoBillMember.nullish(),
3415
3415
  inHouseDelivery: s.FdoBillInHouseDelivery.nullish(),
3416
- delivery: M.FdoBillDelivery.nullish(),
3416
+ delivery: R.FdoBillDelivery.nullish(),
3417
3417
  pickup: L.FdoBillPickup.nullish(),
3418
3418
  foodpandaPickup: s.FdoExternalPickup.nullish(),
3419
3419
  grabfoodPickup: s.FdoExternalPickup.nullish(),
@@ -4031,7 +4031,7 @@ en.F_RESTAURANT_FEATURE = Js.z.nativeEnum({
4031
4031
  });
4032
4032
  (function(s) {
4033
4033
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoRestaurant = s.FdoRestaurantQueueSettings = s.FdoRemoteSupport = void 0;
4034
- const c = Se, d = Q, v = hn, z = Fr, F = Tr, j = _a, I = Pr, N = Ir, M = jr, V = en;
4034
+ const c = Se, d = Q, v = hn, z = Fr, F = Tr, j = _a, I = Pr, N = Ir, R = jr, V = en;
4035
4035
  s.FdoRemoteSupport = d.z.object({
4036
4036
  deviceName: d.z.string(),
4037
4037
  anydeskId: d.z.string().nullish(),
@@ -4067,7 +4067,7 @@ en.F_RESTAURANT_FEATURE = Js.z.nativeEnum({
4067
4067
  feedmeDelivery: j.FdoRestaurantFeedmeDelivery.nullish(),
4068
4068
  pickup: N.FdoRestaurantPickup.nullish(),
4069
4069
  dineIn: I.FdoRestaurantDineIn.nullish(),
4070
- takeaway: M.FdoRestaurantTakeaway.nullish(),
4070
+ takeaway: R.FdoRestaurantTakeaway.nullish(),
4071
4071
  couchDbPassword: d.z.string().nullish(),
4072
4072
  apiToken: d.z.string().nullish(),
4073
4073
  remoteSupports: d.z.array(s.FdoRemoteSupport).nullish(),
@@ -4097,7 +4097,7 @@ _n.F_TARGET = el.z.enum([
4097
4097
  ]);
4098
4098
  (function(s) {
4099
4099
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoVoucherClaim = s.FdoTransferHistory = s.FdoVoucherClaimHistory = s.FdoVoucherRef = s.FdoMemberRewardOption = s.FdoFeedbackRewardOption = s.FdoSimpleClaimOption = s.FdoMultipleUseVoucherOption = s.FdoAfterSalesClaimOption = s.FdoBaseVoucherOption = void 0;
4100
- const c = Se, d = Q, v = hn, z = ir, F = Ka, j = _n, I = dn, N = ht, M = Cn;
4100
+ const c = Se, d = Q, v = hn, z = ir, F = Ka, j = _n, I = dn, N = ht, R = Cn;
4101
4101
  s.FdoBaseVoucherOption = d.z.object({
4102
4102
  type: j.F_VOUCHER_TYPE
4103
4103
  }).describe(c.ZodMeta.dart().baseUnion({
@@ -4143,7 +4143,7 @@ _n.F_TARGET = el.z.enum([
4143
4143
  fromCollection: "Restaurants",
4144
4144
  localField: "targetRestaurant"
4145
4145
  }).build()),
4146
- effect: M.FdoRawEffect,
4146
+ effect: R.FdoRawEffect,
4147
4147
  validSince: d.z.string().superRefine(c.isISODateString).nullish(),
4148
4148
  validity: d.z.number(),
4149
4149
  currentClaim: d.z.number(),
@@ -4296,17 +4296,17 @@ var Oo = {};
4296
4296
  outOfStock: c.z.array(s.FdtoOutOfStockError)
4297
4297
  });
4298
4298
  })(Oo);
4299
- var Ro = {}, sn = {};
4299
+ var Mo = {}, sn = {};
4300
4300
  Object.defineProperty(sn, "__esModule", { value: !0 });
4301
4301
  sn.F_PAYMENT_ISSUER = sn.F_PAYMENT_NAME = sn.F_ONLINE_PAYMENT_CHANNEL_TYPE = void 0;
4302
- const Mo = Q;
4303
- sn.F_ONLINE_PAYMENT_CHANNEL_TYPE = Mo.z.enum([
4302
+ const Ro = Q;
4303
+ sn.F_ONLINE_PAYMENT_CHANNEL_TYPE = Ro.z.enum([
4304
4304
  "Internet Banking",
4305
4305
  "Credit Card",
4306
4306
  "E-Wallet",
4307
4307
  "Over The Counter"
4308
4308
  ]);
4309
- sn.F_PAYMENT_NAME = Mo.z.enum([
4309
+ sn.F_PAYMENT_NAME = Ro.z.enum([
4310
4310
  "ALI PAY",
4311
4311
  "AMEX",
4312
4312
  "ANNY COIN",
@@ -4349,7 +4349,7 @@ sn.F_PAYMENT_NAME = Mo.z.enum([
4349
4349
  "FEEDME_TERMINAL",
4350
4350
  "FEEDME_EWALLET"
4351
4351
  ]);
4352
- sn.F_PAYMENT_ISSUER = Mo.z.enum([
4352
+ sn.F_PAYMENT_ISSUER = Ro.z.enum([
4353
4353
  "ALIPAY",
4354
4354
  "BOOST",
4355
4355
  "GRABPAY",
@@ -4371,7 +4371,7 @@ sn.F_PAYMENT_ISSUER = Mo.z.enum([
4371
4371
  ]);
4372
4372
  (function(s) {
4373
4373
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdtoPaymentDateRange = s.FdtoPaymentRefund = s.FdtoPerformRefundReq = s.FdtoPerformRefundByTransactionReq = s.FdtoPerformRefetchReq = s.FdtoCreditRefundReq = s.FdtoValidateOrderReq = s.FdtoFreeCreditPaymentCheckoutReq = s.FdtoCreditPaymentCheckoutReq = s.FdtoPerformScanPayReq = s.FdtoOnlinePaymentCheckoutRes = s.FdtoPaymentOnlineChannel = s.FdtoOnlinePaymentCheckoutReq = s.FdtoCreatePayment = void 0;
4374
- const c = Se, d = Q, v = br, z = at, F = Mt, j = Yt, I = fn, N = sn;
4374
+ const c = Se, d = Q, v = br, z = at, F = Rt, j = Yt, I = fn, N = sn;
4375
4375
  s.FdtoCreatePayment = d.z.object({
4376
4376
  counter: v.FdoCounterRef,
4377
4377
  payment: I.FdoPaymentRef,
@@ -4440,7 +4440,7 @@ sn.F_PAYMENT_ISSUER = Mo.z.enum([
4440
4440
  end: d.z.date(),
4441
4441
  restaurantId: d.z.string().superRefine(c.isObjectId).nullish()
4442
4442
  });
4443
- })(Ro);
4443
+ })(Mo);
4444
4444
  var ko = {}, la = {};
4445
4445
  (function(s) {
4446
4446
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoTaxSystem = s.FdoTaxSystemVariantion = s.FdoTaxSystemVariantRateByDate = s.FdoFlattenTaxSetting = s.FdoTax = s.FdoTaxApplyTo = s.FdoTaxInclusion = void 0;
@@ -4524,7 +4524,7 @@ ua.F_SERVICE_CHARGE_ORDER_TYPE = jd.z.enum([
4524
4524
  })(ko);
4525
4525
  (function(s) {
4526
4526
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdtoRejectOrderReq = s.FdtoAcceptOrderReq = s.FdtoDemoRestaurantRes = s.FdtoUpdateVersionReq = s.FdtoPosCurrentTimeRes = s.FdtoRegisterMachineReq = s.FdtoGenerateCreditOtpRes = s.FdtoGenerateCreditOtpReq = s.FdtoCompileReportWidgetRes = s.FdtoReportWidget = s.F_WIDGET_WIDTH = s.F_WIDGET_VISUALIZATION_TYPE = s.FdtoCompileReportReq = s.FdtoDateRangeReq = s.FdtoCompileCloseCounterReceiptReq = s.FdtoCanRes = s.FdtoCanPermissionRes = s.FdtoCanReq = s.FdtoSkuConvertRes = s.FdtoSkuConversionBalancesRes = s.FdtoSkuConversionBalance = s.FdtoUpdateStockBalanceReq = s.FdtoDeductableItem = s.FdtoDeductableSubItem = s.FdtoSpecialAdjustmentRes = s.FdtoSpecialAdjustmentReq = s.F_QUERY_ENGINE_LOG_TYPE = s.FdtoFeedmeEndpointReq = s.FdtoAdjustReq = s.FdtoCreateEffectsReq = s.FdtoRemoveEffectsReq = s.FdtoApplyMemberReq = s.FdtoCreateBillItemAdjustmentReq = s.FdtoChangePaymentMethodReq = s.FdtoItemKitchenReq = s.FdtoServeItemsReq = s.FdtoPrintChecklistReq = s.FdtoSendItemsReq = s.FdtoMoveRes = s.FdtoMoveReq = s.FdtoRefundRes = s.FdtoVoidItemsReq = s.FdtoStockItem = s.FdtoCreateOrUpdateItemsReq = s.FdtoItemBalanceMapping = s.FdtoItemBalanceInfo = s.FdtoItemVariantBalanceInfo = s.FdtoCreateOrUpdateItemsRes = s.FdtoCreatePaymentReq = s.FdtoRefundReq = void 0, s.FdtoBill = s.FdtoRectifyBillItemRes = s.FdtoCreateBill = s.FdtoUpdateItemsInventoryReq = s.FdtoCreateItem = s.FdtoFlatBill = s.FdtoRestaurantFeatures = s.FdtoRefetchEPaymentReq = s.FdtoRefundMemberStorePurchaseReq = s.FdtoCreateMemberStorePurchaseReq = s.FdtoApplyVoucherClaimReq = void 0;
4527
- const c = Q, d = Lt, v = br, z = jo, F = at, j = Mt, I = oa, N = Oo, M = wr, V = fn, Z = Ro, oe = Fr, ue = ko, G = wo, ee = rr, L = Xa, te = Ya, fe = Wa, re = Er, H = nr;
4527
+ const c = Q, d = Lt, v = br, z = jo, F = at, j = Rt, I = oa, N = Oo, R = wr, V = fn, Z = Mo, oe = Fr, ue = ko, G = wo, ee = rr, L = Xa, te = Ya, fe = Wa, re = Er, H = nr;
4528
4528
  s.FdtoRefundReq = c.z.object({
4529
4529
  bill: G.FdoBill,
4530
4530
  refundRecord: c.z.array(G.FdoBill),
@@ -4562,7 +4562,7 @@ ua.F_SERVICE_CHARGE_ORDER_TYPE = jd.z.enum([
4562
4562
  addon: c.z.array(s.FdtoItemBalanceInfo)
4563
4563
  }), s.FdtoCreateOrUpdateItemsReq = c.z.object({
4564
4564
  items: c.z.record(fe.FdoBillItem),
4565
- stock: M.FdoStockBalance.nullish(),
4565
+ stock: R.FdoStockBalance.nullish(),
4566
4566
  taxAndChargeSetting: ue.FdtoTaxAndChargeSetting
4567
4567
  }), s.FdtoStockItem = c.z.object({
4568
4568
  id: c.z.string(),
@@ -4616,12 +4616,12 @@ ua.F_SERVICE_CHARGE_ORDER_TYPE = jd.z.enum([
4616
4616
  }), s.FdtoFeedmeEndpointReq = c.z.object({
4617
4617
  endpoint: c.z.string()
4618
4618
  }), s.F_QUERY_ENGINE_LOG_TYPE = c.z.enum(["LAST_SYNC", "ERROR"]), s.FdtoSpecialAdjustmentReq = c.z.object({
4619
- stockBalance: M.FdoStockBalance,
4620
- skuChange: c.z.array(M.FdoSkuChange),
4619
+ stockBalance: R.FdoStockBalance,
4620
+ skuChange: c.z.array(R.FdoSkuChange),
4621
4621
  ref: c.z.string().nullish(),
4622
4622
  remark: c.z.string().nullish()
4623
4623
  }), s.FdtoSpecialAdjustmentRes = c.z.object({
4624
- newStockBalance: M.FdoStockBalance,
4624
+ newStockBalance: R.FdoStockBalance,
4625
4625
  inventoryAdjustment: I.FdoInventoryAdjustment
4626
4626
  }), s.FdtoDeductableSubItem = c.z.object({
4627
4627
  name: c.z.string(),
@@ -4637,10 +4637,10 @@ ua.F_SERVICE_CHARGE_ORDER_TYPE = jd.z.enum([
4637
4637
  subItems: c.z.array(s.FdtoDeductableSubItem),
4638
4638
  variantSelected: fe.FdoBillItemVariantSelected.nullish(),
4639
4639
  quantity: c.z.number(),
4640
- stockChange: M.FdoStockChange.nullish(),
4640
+ stockChange: R.FdoStockChange.nullish(),
4641
4641
  product: fe.FdoBillItemRef.nullish()
4642
4642
  }), s.FdtoUpdateStockBalanceReq = c.z.object({
4643
- stockDoc: M.FdoStockBalance,
4643
+ stockDoc: R.FdoStockBalance,
4644
4644
  from: c.z.array(s.FdtoDeductableItem),
4645
4645
  to: c.z.array(s.FdtoDeductableItem),
4646
4646
  ref: c.z.string()
@@ -4650,7 +4650,7 @@ ua.F_SERVICE_CHARGE_ORDER_TYPE = jd.z.enum([
4650
4650
  }), s.FdtoSkuConversionBalancesRes = c.z.object({
4651
4651
  balances: c.z.array(s.FdtoSkuConversionBalance)
4652
4652
  }), s.FdtoSkuConvertRes = c.z.object({
4653
- stock: M.FdoStockBalance,
4653
+ stock: R.FdoStockBalance,
4654
4654
  adjustments: c.z.array(I.FdoSkuAdjustment)
4655
4655
  }), s.FdtoCanReq = c.z.object({
4656
4656
  permissions: c.z.array(c.z.object({})),
@@ -4768,7 +4768,7 @@ ua.F_SERVICE_CHARGE_ORDER_TYPE = jd.z.enum([
4768
4768
  remark: c.z.string().nullish(),
4769
4769
  createdBy: j.FdoEmployeeRef,
4770
4770
  customer: ee.FdoBillCustomerRef.nullish(),
4771
- stockChange: M.FdoStockChange.nullish(),
4771
+ stockChange: R.FdoStockChange.nullish(),
4772
4772
  parent: fe.FdoBillItem.nullish()
4773
4773
  }), s.FdtoUpdateItemsInventoryReq = c.z.object({
4774
4774
  fromBill: G.FdoBill,
@@ -5166,7 +5166,7 @@ Sr.F_COUNTRY = Od.z.nativeEnum({
5166
5166
  var ti = {};
5167
5167
  Object.defineProperty(ti, "__esModule", { value: !0 });
5168
5168
  ti.FdoLinkedDelivery = void 0;
5169
- const Rd = Se, Qt = Q;
5169
+ const Md = Se, Qt = Q;
5170
5170
  ti.FdoLinkedDelivery = Qt.z.object({
5171
5171
  _id: Qt.z.string().optional(),
5172
5172
  key: Qt.z.string(),
@@ -5177,12 +5177,12 @@ ti.FdoLinkedDelivery = Qt.z.object({
5177
5177
  rounding: Qt.z.boolean().nullish(),
5178
5178
  useCustomOrderNumber: Qt.z.boolean().nullish(),
5179
5179
  requiredRemark: Qt.z.boolean().nullish()
5180
- }).describe(Rd.ZodMeta.couch().repo("fDeliveryCompany").build());
5180
+ }).describe(Md.ZodMeta.couch().repo("fDeliveryCompany").build());
5181
5181
  var ni = {};
5182
5182
  Object.defineProperty(ni, "__esModule", { value: !0 });
5183
5183
  ni.F_DELIVERY_TYPE = void 0;
5184
- const Md = Q;
5185
- ni.F_DELIVERY_TYPE = Md.z.enum([
5184
+ const Rd = Q;
5185
+ ni.F_DELIVERY_TYPE = Rd.z.enum([
5186
5186
  "IN_HOUSE",
5187
5187
  "FEEDME"
5188
5188
  ]);
@@ -5909,12 +5909,12 @@ ci.F_ORDER_NUMBER_PREFIX = Kd.z.enum([
5909
5909
  var or = {};
5910
5910
  Object.defineProperty(or, "__esModule", { value: !0 });
5911
5911
  or.FdoBasePaymentGateway = void 0;
5912
- const Ra = Q, _d = Se, $d = Yt;
5913
- or.FdoBasePaymentGateway = Ra.z.object({
5914
- _id: Ra.z.string(),
5915
- _rev: Ra.z.string(),
5912
+ const Ma = Q, _d = Se, $d = Yt;
5913
+ or.FdoBasePaymentGateway = Ma.z.object({
5914
+ _id: Ma.z.string(),
5915
+ _rev: Ma.z.string(),
5916
5916
  paymentGateway: $d.F_PAYMENT_GATEWAY_KEY,
5917
- active: Ra.z.boolean()
5917
+ active: Ma.z.boolean()
5918
5918
  }).describe(_d.ZodMeta.dart().baseUnion({
5919
5919
  isBaseUnion: !0,
5920
5920
  unionKey: "paymentGateway",
@@ -6520,7 +6520,7 @@ Xt.F_DELETE_EMPTY_BILL_BEHAVIOR = Ai.z.enum([
6520
6520
  ]);
6521
6521
  (function(s) {
6522
6522
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoRestaurantSetting = s.FdoCurrencyExchangeRate = s.FdoEInvoiceConfig = s.FdoDiscountRule = s.FdoReasonTemplate = s.FdoCustomItemTaxSetting = s.FdoFeedmeTerminalSetting = s.FdoEghlTerminalSetting = s.FdoTerminalSetting = s.FdoPrinterServerSetting = s.FdoQueueQrSetting = s.FdoDynamicQrSetting = s.FdoPrinterSetting = s.FdoAccountingSetting = void 0;
6523
- const c = Se, d = Q, v = Xr, z = yr, F = ht, j = at, I = _a, N = Pr, M = Ir, V = jr, Z = $a, oe = Tr, ue = Xt;
6523
+ const c = Se, d = Q, v = Xr, z = yr, F = ht, j = at, I = _a, N = Pr, R = Ir, V = jr, Z = $a, oe = Tr, ue = Xt;
6524
6524
  s.FdoAccountingSetting = d.z.object({
6525
6525
  autoCount: v.FdoAutoCountExporterConfig
6526
6526
  }), s.FdoPrinterSetting = d.z.object({
@@ -6581,7 +6581,7 @@ Xt.F_DELETE_EMPTY_BILL_BEHAVIOR = Ai.z.enum([
6581
6581
  inHouseDelivery: I.FdoRestaurantInHouseDelivery.nullish(),
6582
6582
  feedmeDelivery: I.FdoRestaurantFeedmeDelivery.nullish(),
6583
6583
  takeaway: V.FdoRestaurantTakeaway.nullish(),
6584
- pickup: M.FdoRestaurantPickup.nullish(),
6584
+ pickup: R.FdoRestaurantPickup.nullish(),
6585
6585
  dineIn: N.FdoRestaurantDineIn.nullish(),
6586
6586
  preparationMinute: d.z.number().nullish(),
6587
6587
  payoutAccount: d.z.record(d.z.any()).nullish(),
@@ -6816,7 +6816,7 @@ wn.FdtoBillingPaymentResponse = $e.z.object({
6816
6816
  var yi = {};
6817
6817
  Object.defineProperty(yi, "__esModule", { value: !0 });
6818
6818
  yi.FdoDrawer = void 0;
6819
- const fc = Se, qr = Q, hc = at, mc = br, pc = Mt;
6819
+ const fc = Se, qr = Q, hc = at, mc = br, pc = Rt;
6820
6820
  yi.FdoDrawer = qr.z.object({
6821
6821
  _id: qr.z.string(),
6822
6822
  createdAt: qr.z.string(),
@@ -6829,12 +6829,12 @@ yi.FdoDrawer = qr.z.object({
6829
6829
  var wi = {};
6830
6830
  Object.defineProperty(wi, "__esModule", { value: !0 });
6831
6831
  wi.FdoTimesheet = void 0;
6832
- const gc = Se, Ma = Q, Ac = Mt;
6833
- wi.FdoTimesheet = Ma.z.object({
6834
- _id: Ma.z.string(),
6832
+ const gc = Se, Ra = Q, Ac = Rt;
6833
+ wi.FdoTimesheet = Ra.z.object({
6834
+ _id: Ra.z.string(),
6835
6835
  user: Ac.FdoEmployeeRef,
6836
- startedAt: Ma.z.string(),
6837
- endedAt: Ma.z.string().nullish()
6836
+ startedAt: Ra.z.string(),
6837
+ endedAt: Ra.z.string().nullish()
6838
6838
  }).describe(gc.ZodMeta.couch().repo("timesheet").build());
6839
6839
  var zi = {};
6840
6840
  Object.defineProperty(zi, "__esModule", { value: !0 });
@@ -6871,7 +6871,7 @@ var gr = {}, Ei = {}, Wo = {};
6871
6871
  })(Wo);
6872
6872
  (function(s) {
6873
6873
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoPurchaseOrder = s.FdoDeliveryConfirmation = s.FdoPurchaseOrderReceived = s.FdoPurchaseOrderRequestRef = s.FdoPurchaseOrderItem = s.FdoPurchaseOrderSeqNo = void 0;
6874
- const c = Q, d = Se, v = ht, z = at, F = Mt, j = Fn, I = fa, N = Wo;
6874
+ const c = Q, d = Se, v = ht, z = at, F = Rt, j = Fn, I = fa, N = Wo;
6875
6875
  s.FdoPurchaseOrderSeqNo = c.z.object({
6876
6876
  no: c.z.number()
6877
6877
  }), s.FdoPurchaseOrderItem = c.z.object({
@@ -7046,11 +7046,11 @@ var Ol = {};
7046
7046
  password: c.z.string()
7047
7047
  });
7048
7048
  })(Ol);
7049
- var Rr = {};
7050
- Object.defineProperty(Rr, "__esModule", { value: !0 });
7051
- Rr.FdoCreditTransaction = void 0;
7049
+ var Mr = {};
7050
+ Object.defineProperty(Mr, "__esModule", { value: !0 });
7051
+ Mr.FdoCreditTransaction = void 0;
7052
7052
  const Tt = Q, zc = ir, Ec = hn, Cc = Cr, Fc = ma, an = Se, ro = ta;
7053
- Rr.FdoCreditTransaction = Tt.z.object({
7053
+ Mr.FdoCreditTransaction = Tt.z.object({
7054
7054
  _id: Tt.z.string().superRefine(an.isObjectId),
7055
7055
  business: Tt.z.string().superRefine(an.isObjectId),
7056
7056
  pf_business: Tt.z.lazy(() => Ec.FdoBusiness).nullish().describe(an.ZodMeta.mongo().populate({ fromCollection: "Businesses", localField: "business" }).build()),
@@ -7069,7 +7069,7 @@ Rr.FdoCreditTransaction = Tt.z.object({
7069
7069
  refunded: Tt.z.boolean(),
7070
7070
  refundedFrom: Tt.z.string().nullish()
7071
7071
  }).describe(an.ZodMeta.mongo().repo("CreditTransactions").build());
7072
- var Rl = {};
7072
+ var Ml = {};
7073
7073
  (function(s) {
7074
7074
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdtoSmsCreditBalanceRes = s.FdtoSmsCreditBalance = s.FdtoSendSmsRes = s.FdtoSendSms = s.FdtoSmsGetQuoteRes = s.FdtoSmsGetQuote = s.FdtoTopUpSmsCreditRes = s.FdtoTopUpSmsCredit = s.FdtoTopUpSmsCreditManual = s.FdtoTopUpSmsCreditLicense = s.FdtoTopUpSmsCreditBase = void 0;
7075
7075
  const c = Se, d = Q, v = va, z = at, F = wt, j = $n;
@@ -7117,8 +7117,8 @@ var Rl = {};
7117
7117
  balance: z.FdoDinero,
7118
7118
  quantityAvailable: d.z.number().nullable()
7119
7119
  });
7120
- })(Rl);
7121
- var Ml = {};
7120
+ })(Ml);
7121
+ var Rl = {};
7122
7122
  (function(s) {
7123
7123
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdtoPhoneNotificationOption = s.FdtoBaseNotificationOption = s.FdtoNotificationResponse = void 0;
7124
7124
  const c = Q, d = Nt;
@@ -7131,7 +7131,7 @@ var Ml = {};
7131
7131
  type: c.z.literal(d.F_NOTIFICATION_TYPE.enum.PHONE),
7132
7132
  provider: d.F_PHONE_PROVIDER
7133
7133
  });
7134
- })(Ml);
7134
+ })(Rl);
7135
7135
  var kl = {};
7136
7136
  (function(s) {
7137
7137
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoSettlement = s.FdoSettlementBeneficiaryBank = void 0;
@@ -7438,7 +7438,7 @@ var Vl = {};
7438
7438
  var Fi = {};
7439
7439
  (function(s) {
7440
7440
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoStoreTransaction = s.FdoStoreTransactionRefundInfo = s.FdoTitleAcquired = s.FdoStoreOption = s.FdoBundleCategory = s.FdoStoreBundle = s.FdoStoreBundleClient = s.FdoBundleTaxTotal = s.FdoStoreBundleTaxSetting = s.FdoTopupCountCondition = s.FdoBaseStoreCondition = s.FdoCreditItem = s.FdoTitleItem = void 0;
7441
- const c = Se, d = Q, v = dn, z = hn, F = ir, j = Cr, I = ar, N = En, M = ht, V = at, Z = la, oe = Rr, ue = ei;
7441
+ const c = Se, d = Q, v = dn, z = hn, F = ir, j = Cr, I = ar, N = En, R = ht, V = at, Z = la, oe = Mr, ue = ei;
7442
7442
  s.FdoTitleItem = d.z.object({
7443
7443
  id: d.z.string(),
7444
7444
  dayToExpire: d.z.number()
@@ -7458,7 +7458,7 @@ var Fi = {};
7458
7458
  name: d.z.string(),
7459
7459
  systemCode: d.z.string(),
7460
7460
  taxCode: d.z.string(),
7461
- rate: M.FdoDecimal,
7461
+ rate: R.FdoDecimal,
7462
7462
  total: V.FdoDinero
7463
7463
  }), s.FdoStoreBundleClient = d.z.object({
7464
7464
  canPurchase: d.z.boolean(),
@@ -7594,7 +7594,7 @@ var Ll = {};
7594
7594
  var Hl = {};
7595
7595
  (function(s) {
7596
7596
  Object.defineProperty(s, "__esModule", { value: !0 }), s.FdoMemberStorePurchase = s.FdtoGetMemberStorePurchaseRes = s.FdtoGetMemberStorePurchaseResCredit = s.FdtoGetMemberStorePurchaseResClaim = s.FdoStoreTransactionRefundInfoRes = s.FdoMemberStorePurchaseMember = s.FdoMemberStorePurchasePayment = void 0;
7597
- const c = Se, d = Q, v = Za, z = ei, F = Mt, j = Rr, I = Fi, N = En, M = ar, V = fn, Z = ba;
7597
+ const c = Se, d = Q, v = Za, z = ei, F = Rt, j = Mr, I = Fi, N = En, R = ar, V = fn, Z = ba;
7598
7598
  s.FdoMemberStorePurchasePayment = V.FdoPayment.extend({
7599
7599
  createdAt: d.z.string()
7600
7600
  }), s.FdoMemberStorePurchaseMember = d.z.object({
@@ -7609,7 +7609,7 @@ var Hl = {};
7609
7609
  credits: d.z.array(j.FdoCreditTransaction),
7610
7610
  refundedAt: d.z.string(),
7611
7611
  reason: d.z.string()
7612
- }), s.FdtoGetMemberStorePurchaseResClaim = M.FdoVoucherClaim.omit({
7612
+ }), s.FdtoGetMemberStorePurchaseResClaim = R.FdoVoucherClaim.omit({
7613
7613
  _id: !0
7614
7614
  }).extend({ id: d.z.string() }), s.FdtoGetMemberStorePurchaseResCredit = j.FdoCreditTransaction.omit({
7615
7615
  _id: !0
@@ -7657,7 +7657,7 @@ var Hl = {};
7657
7657
  }), d = Ke && Ke.__exportStar || function(v, z) {
7658
7658
  for (var F in v) F !== "default" && !Object.prototype.hasOwnProperty.call(z, F) && c(z, v, F);
7659
7659
  };
7660
- Object.defineProperty(s, "__esModule", { value: !0 }), d(Xr, s), d(Yr, s), d(Zr, s), d(wo, s), d(_s, s), d($t, s), d(Kr, s), d(tr, s), d(rr, s), d(Xa, s), d(Co, s), d(yr, s), d(Ya, s), d(Ja, s), d(Za, s), d(Wa, s), d(Qn, s), d(Po, s), d(Er, s), d(ea, s), d(nr, s), d(mr, s), d(ct, s), d(hn, s), d(nl, s), d(da, s), d(rl, s), d(mn, s), d(aa, s), d(vr, s), d(ei, s), d(br, s), d(Wr, s), d(al, s), d(Sr, s), d(jo, s), d(ia, s), d(ht, s), d(ti, s), d(ni, s), d(at, s), d(zn, s), d(Bt, s), d(xt, s), d(ai, s), d(No, s), d(vn, s), d(qo, s), d(ll, s), d(ul, s), d(Cn, s), d(qt, s), d($r, s), d(Zn, s), d(Wn, s), d(Jr, s), d(_r, s), d(Mt, s), d(dl, s), d(ii, s), d(cl, s), d(oi, s), d(fl, s), d(ca, s), d(Fn, s), d(zr, s), d(fa, s), d(wr, s), d(ha, s), d(hl, s), d(wt, s), d(ml, s), d(si, s), d(ta, s), d(ma, s), d(pa, s), d(li, s), d(_n, s), d(dn, s), d(Ut, s), d(Cr, s), d(ga, s), d(Aa, s), d(yn, s), d(En, s), d(ba, s), d($n, s), d(va, s), d(Nt, s), d(di, s), d(ci, s), d(Vt, s), d(or, s), d(Vo, s), d(Lo, s), d(Ho, s), d(gl, s), d(fi, s), d(hi, s), d(Yt, s), d(fn, s), d(Ro, s), d(sn, s), d(mi, s), d(pr, s), d(pi, s), d(ln, s), d(st, s), d(bl, s), d(Qr, s), d(Fr, s), d(vl, s), d(xo, s), d(yl, s), d(un, s), d(wl, s), d(zl, s), d(gi, s), d(ya, s), d(Yo, s), d(El, s), d(Xt, s), d(_a, s), d(Pr, s), d(Ir, s), d(jr, s), d(ir, s), d(en, s), d(bi, s), d(ua, s), d(Tr, s), d(Cl, s), d(Fl, s), d(wa, s), d(vi, s), d(Kn, s), d(Jt, s), d(Jn, s), d(Pl, s), d(Lt, s), d(Io, s), d(ra, s), d(wn, s), d(yi, s), d(To, s), d(wi, s), d(sa, s), d(oa, s), d(zi, s), d(Oo, s), d(gr, s), d(Wo, s), d(Sl, s), d(Ol, s), d(Rr, s), d(na, s), d(Rl, s), d(Ml, s), d(kl, s), d(Uo, s), d(Xo, s), d(Ci, s), d($a, s), d(la, s), d(ko, s), d(Ka, s), d(Dl, s), d(Nl, s), d(ql, s), d(So, s), d(Ei, s), d(ar, s), d(za, s), d(Bl, s), d(Vl, s), d(Fi, s), d(Ll, s), d(Hl, s);
7660
+ Object.defineProperty(s, "__esModule", { value: !0 }), d(Xr, s), d(Yr, s), d(Zr, s), d(wo, s), d(_s, s), d($t, s), d(Kr, s), d(tr, s), d(rr, s), d(Xa, s), d(Co, s), d(yr, s), d(Ya, s), d(Ja, s), d(Za, s), d(Wa, s), d(Qn, s), d(Po, s), d(Er, s), d(ea, s), d(nr, s), d(mr, s), d(ct, s), d(hn, s), d(nl, s), d(da, s), d(rl, s), d(mn, s), d(aa, s), d(vr, s), d(ei, s), d(br, s), d(Wr, s), d(al, s), d(Sr, s), d(jo, s), d(ia, s), d(ht, s), d(ti, s), d(ni, s), d(at, s), d(zn, s), d(Bt, s), d(xt, s), d(ai, s), d(No, s), d(vn, s), d(qo, s), d(ll, s), d(ul, s), d(Cn, s), d(qt, s), d($r, s), d(Zn, s), d(Wn, s), d(Jr, s), d(_r, s), d(Rt, s), d(dl, s), d(ii, s), d(cl, s), d(oi, s), d(fl, s), d(ca, s), d(Fn, s), d(zr, s), d(fa, s), d(wr, s), d(ha, s), d(hl, s), d(wt, s), d(ml, s), d(si, s), d(ta, s), d(ma, s), d(pa, s), d(li, s), d(_n, s), d(dn, s), d(Ut, s), d(Cr, s), d(ga, s), d(Aa, s), d(yn, s), d(En, s), d(ba, s), d($n, s), d(va, s), d(Nt, s), d(di, s), d(ci, s), d(Vt, s), d(or, s), d(Vo, s), d(Lo, s), d(Ho, s), d(gl, s), d(fi, s), d(hi, s), d(Yt, s), d(fn, s), d(Mo, s), d(sn, s), d(mi, s), d(pr, s), d(pi, s), d(ln, s), d(st, s), d(bl, s), d(Qr, s), d(Fr, s), d(vl, s), d(xo, s), d(yl, s), d(un, s), d(wl, s), d(zl, s), d(gi, s), d(ya, s), d(Yo, s), d(El, s), d(Xt, s), d(_a, s), d(Pr, s), d(Ir, s), d(jr, s), d(ir, s), d(en, s), d(bi, s), d(ua, s), d(Tr, s), d(Cl, s), d(Fl, s), d(wa, s), d(vi, s), d(Kn, s), d(Jt, s), d(Jn, s), d(Pl, s), d(Lt, s), d(Io, s), d(ra, s), d(wn, s), d(yi, s), d(To, s), d(wi, s), d(sa, s), d(oa, s), d(zi, s), d(Oo, s), d(gr, s), d(Wo, s), d(Sl, s), d(Ol, s), d(Mr, s), d(na, s), d(Ml, s), d(Rl, s), d(kl, s), d(Uo, s), d(Xo, s), d(Ci, s), d($a, s), d(la, s), d(ko, s), d(Ka, s), d(Dl, s), d(Nl, s), d(ql, s), d(So, s), d(Ei, s), d(ar, s), d(za, s), d(Bl, s), d(Vl, s), d(Fi, s), d(Ll, s), d(Hl, s);
7661
7661
  })(Pt);
7662
7662
  function Ul(s, c) {
7663
7663
  return function() {
@@ -7668,7 +7668,7 @@ var vs = {};
7668
7668
  const { toString: Pc } = Object.prototype, { getPrototypeOf: Qo } = Object, { iterator: Ti, toStringTag: xl } = Symbol, Pi = /* @__PURE__ */ ((s) => (c) => {
7669
7669
  const d = Pc.call(c);
7670
7670
  return s[d] || (s[d] = d.slice(8, -1).toLowerCase());
7671
- })(/* @__PURE__ */ Object.create(null)), Zt = (s) => (s = s.toLowerCase(), (c) => Pi(c) === s), Ii = (s) => (c) => typeof c === s, { isArray: Mr } = Array, Ar = Ii("undefined");
7671
+ })(/* @__PURE__ */ Object.create(null)), Zt = (s) => (s = s.toLowerCase(), (c) => Pi(c) === s), Ii = (s) => (c) => typeof c === s, { isArray: Rr } = Array, Ar = Ii("undefined");
7672
7672
  function Ea(s) {
7673
7673
  return s !== null && !Ar(s) && s.constructor !== null && !Ar(s.constructor) && Ot(s.constructor.isBuffer) && s.constructor.isBuffer(s);
7674
7674
  }
@@ -7690,7 +7690,7 @@ const jc = Ii("string"), Ot = Ii("function"), Xl = Ii("number"), Ca = (s) => s !
7690
7690
  } catch {
7691
7691
  return !1;
7692
7692
  }
7693
- }, Rc = Zt("Date"), Mc = Zt("File"), kc = Zt("Blob"), Dc = Zt("FileList"), Nc = (s) => Ca(s) && Ot(s.pipe), qc = (s) => {
7693
+ }, Mc = Zt("Date"), Rc = Zt("File"), kc = Zt("Blob"), Dc = Zt("FileList"), Nc = (s) => Ca(s) && Ot(s.pipe), qc = (s) => {
7694
7694
  let c;
7695
7695
  return s && (typeof FormData == "function" && s instanceof FormData || Ot(s.append) && ((c = Pi(s)) === "formdata" || // detect form-data instance
7696
7696
  c === "object" && Ot(s.toString) && s.toString() === "[object FormData]"));
@@ -7699,7 +7699,7 @@ function Fa(s, c, { allOwnKeys: d = !1 } = {}) {
7699
7699
  if (s === null || typeof s > "u")
7700
7700
  return;
7701
7701
  let v, z;
7702
- if (typeof s != "object" && (s = [s]), Mr(s))
7702
+ if (typeof s != "object" && (s = [s]), Rr(s))
7703
7703
  for (v = 0, z = s.length; v < z; v++)
7704
7704
  c.call(null, s[v], v, s);
7705
7705
  else {
@@ -7726,7 +7726,7 @@ const Gn = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typ
7726
7726
  function co() {
7727
7727
  const { caseless: s, skipUndefined: c } = Zl(this) && this || {}, d = {}, v = (z, F) => {
7728
7728
  const j = s && Yl(d, F) || F;
7729
- Ba(d[j]) && Ba(z) ? d[j] = co(d[j], z) : Ba(z) ? d[j] = co({}, z) : Mr(z) ? d[j] = z.slice() : (!c || !Ar(z)) && (d[j] = z);
7729
+ Ba(d[j]) && Ba(z) ? d[j] = co(d[j], z) : Ba(z) ? d[j] = co({}, z) : Rr(z) ? d[j] = z.slice() : (!c || !Ar(z)) && (d[j] = z);
7730
7730
  };
7731
7731
  for (let z = 0, F = arguments.length; z < F; z++)
7732
7732
  arguments[z] && Fa(arguments[z], v);
@@ -7754,7 +7754,7 @@ const Gc = (s, c, d, { allOwnKeys: v } = {}) => (Fa(c, (z, F) => {
7754
7754
  return v !== -1 && v === d;
7755
7755
  }, Qc = (s) => {
7756
7756
  if (!s) return null;
7757
- if (Mr(s)) return s;
7757
+ if (Rr(s)) return s;
7758
7758
  let c = s.length;
7759
7759
  if (!Xl(c)) return null;
7760
7760
  const d = new Array(c);
@@ -7806,7 +7806,7 @@ const Gc = (s, c, d, { allOwnKeys: v } = {}) => (Fa(c, (z, F) => {
7806
7806
  d[F] = !0;
7807
7807
  });
7808
7808
  };
7809
- return Mr(s) ? v(s) : v(String(s).split(c)), d;
7809
+ return Rr(s) ? v(s) : v(String(s).split(c)), d;
7810
7810
  }, af = () => {
7811
7811
  }, of = (s, c) => s != null && Number.isFinite(s = +s) ? s : c;
7812
7812
  function sf(s) {
@@ -7821,7 +7821,7 @@ const lf = (s) => {
7821
7821
  return v;
7822
7822
  if (!("toJSON" in v)) {
7823
7823
  c[z] = v;
7824
- const F = Mr(v) ? [] : {};
7824
+ const F = Rr(v) ? [] : {};
7825
7825
  return Fa(v, (j, I) => {
7826
7826
  const N = d(j, z + 1);
7827
7827
  !Ar(N) && (F[I] = N);
@@ -7839,7 +7839,7 @@ const lf = (s) => {
7839
7839
  typeof setImmediate == "function",
7840
7840
  Ot(Gn.postMessage)
7841
7841
  ), cf = typeof queueMicrotask < "u" ? queueMicrotask.bind(Gn) : typeof vs < "u" && vs.nextTick || Ql, ff = (s) => s != null && Ot(s[Ti]), ne = {
7842
- isArray: Mr,
7842
+ isArray: Rr,
7843
7843
  isArrayBuffer: Gl,
7844
7844
  isBuffer: Ea,
7845
7845
  isFormData: qc,
@@ -7855,8 +7855,8 @@ const lf = (s) => {
7855
7855
  isResponse: Hc,
7856
7856
  isHeaders: Uc,
7857
7857
  isUndefined: Ar,
7858
- isDate: Rc,
7859
- isFile: Mc,
7858
+ isDate: Mc,
7859
+ isFile: Rc,
7860
7860
  isBlob: kc,
7861
7861
  isRegExp: tf,
7862
7862
  isFunction: Ot,
@@ -7946,7 +7946,7 @@ Qe.from = (s, c, d, v, z, F) => {
7946
7946
  const j = Object.create(Kl);
7947
7947
  ne.toFlatObject(s, j, function(V) {
7948
7948
  return V !== Error.prototype;
7949
- }, (M) => M !== "isAxiosError");
7949
+ }, (R) => R !== "isAxiosError");
7950
7950
  const I = s && s.message ? s.message : "Error", N = c == null && s ? s.code : c;
7951
7951
  return Qe.call(j, I, N, d, v, z), s && j.cause == null && Object.defineProperty(j, "cause", { value: s, configurable: !0 }), j.name = s && s.name || "Error", F && Object.assign(j, F), j;
7952
7952
  };
@@ -7981,7 +7981,7 @@ function ji(s, c, d) {
7981
7981
  const v = d.metaTokens, z = d.visitor || V, F = d.dots, j = d.indexes, N = (d.Blob || typeof Blob < "u" && Blob) && ne.isSpecCompliantForm(c);
7982
7982
  if (!ne.isFunction(z))
7983
7983
  throw new TypeError("visitor must be a function");
7984
- function M(G) {
7984
+ function R(G) {
7985
7985
  if (G === null) return "";
7986
7986
  if (ne.isDate(G))
7987
7987
  return G.toISOString();
@@ -8001,15 +8001,15 @@ function ji(s, c, d) {
8001
8001
  !(ne.isUndefined(re) || re === null) && c.append(
8002
8002
  // eslint-disable-next-line no-nested-ternary
8003
8003
  j === !0 ? ws([ee], H, F) : j === null ? ee : ee + "[]",
8004
- M(re)
8004
+ R(re)
8005
8005
  );
8006
8006
  }), !1;
8007
8007
  }
8008
- return fo(G) ? !0 : (c.append(ws(L, ee, F), M(G)), !1);
8008
+ return fo(G) ? !0 : (c.append(ws(L, ee, F), R(G)), !1);
8009
8009
  }
8010
8010
  const Z = [], oe = Object.assign(pf, {
8011
8011
  defaultVisitor: V,
8012
- convertValue: M,
8012
+ convertValue: R,
8013
8013
  isVisitable: fo
8014
8014
  });
8015
8015
  function ue(G, ee) {
@@ -8309,7 +8309,7 @@ function Of(s) {
8309
8309
  c[v[1]] = v[2];
8310
8310
  return c;
8311
8311
  }
8312
- const Rf = (s) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(s.trim());
8312
+ const Mf = (s) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(s.trim());
8313
8313
  function ao(s, c, d, v, z) {
8314
8314
  if (ne.isFunction(v))
8315
8315
  return v.call(this, c, d);
@@ -8320,7 +8320,7 @@ function ao(s, c, d, v, z) {
8320
8320
  return v.test(c);
8321
8321
  }
8322
8322
  }
8323
- function Mf(s) {
8323
+ function Rf(s) {
8324
8324
  return s.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (c, d, v) => d.toUpperCase() + v);
8325
8325
  }
8326
8326
  function kf(s, c) {
@@ -8334,30 +8334,30 @@ function kf(s, c) {
8334
8334
  });
8335
8335
  });
8336
8336
  }
8337
- let Rt = class {
8337
+ let Mt = class {
8338
8338
  constructor(c) {
8339
8339
  c && this.set(c);
8340
8340
  }
8341
8341
  set(c, d, v) {
8342
8342
  const z = this;
8343
- function F(I, N, M) {
8343
+ function F(I, N, R) {
8344
8344
  const V = Br(N);
8345
8345
  if (!V)
8346
8346
  throw new Error("header name must be a non-empty string");
8347
8347
  const Z = ne.findKey(z, V);
8348
- (!Z || z[Z] === void 0 || M === !0 || M === void 0 && z[Z] !== !1) && (z[Z || N] = Va(I));
8348
+ (!Z || z[Z] === void 0 || R === !0 || R === void 0 && z[Z] !== !1) && (z[Z || N] = Va(I));
8349
8349
  }
8350
- const j = (I, N) => ne.forEach(I, (M, V) => F(M, V, N));
8350
+ const j = (I, N) => ne.forEach(I, (R, V) => F(R, V, N));
8351
8351
  if (ne.isPlainObject(c) || c instanceof this.constructor)
8352
8352
  j(c, d);
8353
- else if (ne.isString(c) && (c = c.trim()) && !Rf(c))
8353
+ else if (ne.isString(c) && (c = c.trim()) && !Mf(c))
8354
8354
  j(Sf(c), d);
8355
8355
  else if (ne.isObject(c) && ne.isIterable(c)) {
8356
- let I = {}, N, M;
8356
+ let I = {}, N, R;
8357
8357
  for (const V of c) {
8358
8358
  if (!ne.isArray(V))
8359
8359
  throw TypeError("Object iterator must return a key-value pair");
8360
- I[M = V[0]] = (N = I[M]) ? ne.isArray(N) ? [...N, V[1]] : [N, V[1]] : V[1];
8360
+ I[R = V[0]] = (N = I[R]) ? ne.isArray(N) ? [...N, V[1]] : [N, V[1]] : V[1];
8361
8361
  }
8362
8362
  j(I, d);
8363
8363
  } else
@@ -8416,7 +8416,7 @@ let Rt = class {
8416
8416
  d[j] = Va(z), delete d[F];
8417
8417
  return;
8418
8418
  }
8419
- const I = c ? Mf(F) : String(F).trim();
8419
+ const I = c ? Rf(F) : String(F).trim();
8420
8420
  I !== F && delete d[F], d[I] = Va(z), v[I] = !0;
8421
8421
  }), this;
8422
8422
  }
@@ -8460,8 +8460,8 @@ let Rt = class {
8460
8460
  return ne.isArray(c) ? c.forEach(F) : F(c), this;
8461
8461
  }
8462
8462
  };
8463
- Rt.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization"]);
8464
- ne.reduceDescriptors(Rt.prototype, ({ value: s }, c) => {
8463
+ Mt.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization"]);
8464
+ ne.reduceDescriptors(Mt.prototype, ({ value: s }, c) => {
8465
8465
  let d = c[0].toUpperCase() + c.slice(1);
8466
8466
  return {
8467
8467
  get: () => s,
@@ -8470,9 +8470,9 @@ ne.reduceDescriptors(Rt.prototype, ({ value: s }, c) => {
8470
8470
  }
8471
8471
  };
8472
8472
  });
8473
- ne.freezeMethods(Rt);
8473
+ ne.freezeMethods(Mt);
8474
8474
  function io(s, c) {
8475
- const d = this || Ta, v = c || d, z = Rt.from(v.headers);
8475
+ const d = this || Ta, v = c || d, z = Mt.from(v.headers);
8476
8476
  let F = v.data;
8477
8477
  return ne.forEach(s, function(I) {
8478
8478
  F = I.call(d, F, z.normalize(), c ? c.status : void 0);
@@ -8506,25 +8506,25 @@ function Nf(s, c) {
8506
8506
  const d = new Array(s), v = new Array(s);
8507
8507
  let z = 0, F = 0, j;
8508
8508
  return c = c !== void 0 ? c : 1e3, function(N) {
8509
- const M = Date.now(), V = v[F];
8510
- j || (j = M), d[z] = N, v[z] = M;
8509
+ const R = Date.now(), V = v[F];
8510
+ j || (j = R), d[z] = N, v[z] = R;
8511
8511
  let Z = F, oe = 0;
8512
8512
  for (; Z !== z; )
8513
8513
  oe += d[Z++], Z = Z % s;
8514
- if (z = (z + 1) % s, z === F && (F = (F + 1) % s), M - j < c)
8514
+ if (z = (z + 1) % s, z === F && (F = (F + 1) % s), R - j < c)
8515
8515
  return;
8516
- const ue = V && M - V;
8516
+ const ue = V && R - V;
8517
8517
  return ue ? Math.round(oe * 1e3 / ue) : void 0;
8518
8518
  };
8519
8519
  }
8520
8520
  function qf(s, c) {
8521
8521
  let d = 0, v = 1e3 / c, z, F;
8522
- const j = (M, V = Date.now()) => {
8523
- d = V, z = null, F && (clearTimeout(F), F = null), s(...M);
8522
+ const j = (R, V = Date.now()) => {
8523
+ d = V, z = null, F && (clearTimeout(F), F = null), s(...R);
8524
8524
  };
8525
- return [(...M) => {
8525
+ return [(...R) => {
8526
8526
  const V = Date.now(), Z = V - d;
8527
- Z >= v ? j(M, V) : (z = M, F || (F = setTimeout(() => {
8527
+ Z >= v ? j(R, V) : (z = R, F || (F = setTimeout(() => {
8528
8528
  F = null, j(z);
8529
8529
  }, v - Z)));
8530
8530
  }, () => z && j(z)];
@@ -8533,15 +8533,15 @@ const Ha = (s, c, d = 3) => {
8533
8533
  let v = 0;
8534
8534
  const z = Nf(50, 250);
8535
8535
  return qf((F) => {
8536
- const j = F.loaded, I = F.lengthComputable ? F.total : void 0, N = j - v, M = z(N), V = j <= I;
8536
+ const j = F.loaded, I = F.lengthComputable ? F.total : void 0, N = j - v, R = z(N), V = j <= I;
8537
8537
  v = j;
8538
8538
  const Z = {
8539
8539
  loaded: j,
8540
8540
  total: I,
8541
8541
  progress: I ? j / I : void 0,
8542
8542
  bytes: N,
8543
- rate: M || void 0,
8544
- estimated: M && I && V ? (I - j) / M : void 0,
8543
+ rate: R || void 0,
8544
+ estimated: R && I && V ? (I - j) / R : void 0,
8545
8545
  event: F,
8546
8546
  lengthComputable: I != null,
8547
8547
  [c ? "download" : "upload"]: !0
@@ -8597,34 +8597,34 @@ function iu(s, c, d) {
8597
8597
  let v = !Lf(c);
8598
8598
  return s && (v || d == !1) ? Hf(s, c) : c;
8599
8599
  }
8600
- const Ps = (s) => s instanceof Rt ? { ...s } : s;
8600
+ const Ps = (s) => s instanceof Mt ? { ...s } : s;
8601
8601
  function er(s, c) {
8602
8602
  c = c || {};
8603
8603
  const d = {};
8604
- function v(M, V, Z, oe) {
8605
- return ne.isPlainObject(M) && ne.isPlainObject(V) ? ne.merge.call({ caseless: oe }, M, V) : ne.isPlainObject(V) ? ne.merge({}, V) : ne.isArray(V) ? V.slice() : V;
8604
+ function v(R, V, Z, oe) {
8605
+ return ne.isPlainObject(R) && ne.isPlainObject(V) ? ne.merge.call({ caseless: oe }, R, V) : ne.isPlainObject(V) ? ne.merge({}, V) : ne.isArray(V) ? V.slice() : V;
8606
8606
  }
8607
- function z(M, V, Z, oe) {
8607
+ function z(R, V, Z, oe) {
8608
8608
  if (ne.isUndefined(V)) {
8609
- if (!ne.isUndefined(M))
8610
- return v(void 0, M, Z, oe);
8611
- } else return v(M, V, Z, oe);
8609
+ if (!ne.isUndefined(R))
8610
+ return v(void 0, R, Z, oe);
8611
+ } else return v(R, V, Z, oe);
8612
8612
  }
8613
- function F(M, V) {
8613
+ function F(R, V) {
8614
8614
  if (!ne.isUndefined(V))
8615
8615
  return v(void 0, V);
8616
8616
  }
8617
- function j(M, V) {
8617
+ function j(R, V) {
8618
8618
  if (ne.isUndefined(V)) {
8619
- if (!ne.isUndefined(M))
8620
- return v(void 0, M);
8619
+ if (!ne.isUndefined(R))
8620
+ return v(void 0, R);
8621
8621
  } else return v(void 0, V);
8622
8622
  }
8623
- function I(M, V, Z) {
8623
+ function I(R, V, Z) {
8624
8624
  if (Z in c)
8625
- return v(M, V);
8625
+ return v(R, V);
8626
8626
  if (Z in s)
8627
- return v(void 0, M);
8627
+ return v(void 0, R);
8628
8628
  }
8629
8629
  const N = {
8630
8630
  url: F,
@@ -8655,7 +8655,7 @@ function er(s, c) {
8655
8655
  socketPath: j,
8656
8656
  responseEncoding: j,
8657
8657
  validateStatus: I,
8658
- headers: (M, V, Z) => z(Ps(M), Ps(V), Z, !0)
8658
+ headers: (R, V, Z) => z(Ps(R), Ps(V), Z, !0)
8659
8659
  };
8660
8660
  return ne.forEach(Object.keys({ ...s, ...c }), function(V) {
8661
8661
  const Z = N[V] || z, oe = Z(s[V], c[V], V);
@@ -8665,16 +8665,16 @@ function er(s, c) {
8665
8665
  const ou = (s) => {
8666
8666
  const c = er({}, s);
8667
8667
  let { data: d, withXSRFToken: v, xsrfHeaderName: z, xsrfCookieName: F, headers: j, auth: I } = c;
8668
- if (c.headers = j = Rt.from(j), c.url = eu(iu(c.baseURL, c.url, c.allowAbsoluteUrls), s.params, s.paramsSerializer), I && j.set(
8668
+ if (c.headers = j = Mt.from(j), c.url = eu(iu(c.baseURL, c.url, c.allowAbsoluteUrls), s.params, s.paramsSerializer), I && j.set(
8669
8669
  "Authorization",
8670
8670
  "Basic " + btoa((I.username || "") + ":" + (I.password ? unescape(encodeURIComponent(I.password)) : ""))
8671
8671
  ), ne.isFormData(d)) {
8672
8672
  if (zt.hasStandardBrowserEnv || zt.hasStandardBrowserWebWorkerEnv)
8673
8673
  j.setContentType(void 0);
8674
8674
  else if (ne.isFunction(d.getHeaders)) {
8675
- const N = d.getHeaders(), M = ["content-type", "content-length"];
8675
+ const N = d.getHeaders(), R = ["content-type", "content-length"];
8676
8676
  Object.entries(N).forEach(([V, Z]) => {
8677
- M.includes(V.toLowerCase()) && j.set(V, Z);
8677
+ R.includes(V.toLowerCase()) && j.set(V, Z);
8678
8678
  });
8679
8679
  }
8680
8680
  }
@@ -8687,8 +8687,8 @@ const ou = (s) => {
8687
8687
  return new Promise(function(d, v) {
8688
8688
  const z = ou(s);
8689
8689
  let F = z.data;
8690
- const j = Rt.from(z.headers).normalize();
8691
- let { responseType: I, onUploadProgress: N, onDownloadProgress: M } = z, V, Z, oe, ue, G;
8690
+ const j = Mt.from(z.headers).normalize();
8691
+ let { responseType: I, onUploadProgress: N, onDownloadProgress: R } = z, V, Z, oe, ue, G;
8692
8692
  function ee() {
8693
8693
  ue && ue(), G && G(), z.cancelToken && z.cancelToken.unsubscribe(V), z.signal && z.signal.removeEventListener("abort", V);
8694
8694
  }
@@ -8697,7 +8697,7 @@ const ou = (s) => {
8697
8697
  function te() {
8698
8698
  if (!L)
8699
8699
  return;
8700
- const re = Rt.from(
8700
+ const re = Mt.from(
8701
8701
  "getAllResponseHeaders" in L && L.getAllResponseHeaders()
8702
8702
  ), X = {
8703
8703
  data: !I || I === "text" || I === "json" ? L.responseText : L.response,
@@ -8731,7 +8731,7 @@ const ou = (s) => {
8731
8731
  )), L = null;
8732
8732
  }, F === void 0 && j.setContentType(null), "setRequestHeader" in L && ne.forEach(j.toJSON(), function(H, X) {
8733
8733
  L.setRequestHeader(X, H);
8734
- }), ne.isUndefined(z.withCredentials) || (L.withCredentials = !!z.withCredentials), I && I !== "json" && (L.responseType = z.responseType), M && ([oe, G] = Ha(M, !0), L.addEventListener("progress", oe)), N && L.upload && ([Z, ue] = Ha(N), L.upload.addEventListener("progress", Z), L.upload.addEventListener("loadend", ue)), (z.cancelToken || z.signal) && (V = (re) => {
8734
+ }), ne.isUndefined(z.withCredentials) || (L.withCredentials = !!z.withCredentials), I && I !== "json" && (L.responseType = z.responseType), R && ([oe, G] = Ha(R, !0), L.addEventListener("progress", oe)), N && L.upload && ([Z, ue] = Ha(N), L.upload.addEventListener("progress", Z), L.upload.addEventListener("loadend", ue)), (z.cancelToken || z.signal) && (V = (re) => {
8735
8735
  L && (v(!re || re.type ? new kr(null, s, L) : re), L.abort(), L = null);
8736
8736
  }, z.cancelToken && z.cancelToken.subscribe(V), z.signal && (z.signal.aborted ? V() : z.signal.addEventListener("abort", V)));
8737
8737
  const fe = Df(z.url);
@@ -8745,10 +8745,10 @@ const ou = (s) => {
8745
8745
  const { length: d } = s = s ? s.filter(Boolean) : [];
8746
8746
  if (c || d) {
8747
8747
  let v = new AbortController(), z;
8748
- const F = function(M) {
8748
+ const F = function(R) {
8749
8749
  if (!z) {
8750
8750
  z = !0, I();
8751
- const V = M instanceof Error ? M : this.reason;
8751
+ const V = R instanceof Error ? R : this.reason;
8752
8752
  v.abort(V instanceof Qe ? V : new kr(V instanceof Error ? V.message : V));
8753
8753
  }
8754
8754
  };
@@ -8756,11 +8756,11 @@ const ou = (s) => {
8756
8756
  j = null, F(new Qe(`timeout ${c} of ms exceeded`, Qe.ETIMEDOUT));
8757
8757
  }, c);
8758
8758
  const I = () => {
8759
- s && (j && clearTimeout(j), j = null, s.forEach((M) => {
8760
- M.unsubscribe ? M.unsubscribe(F) : M.removeEventListener("abort", F);
8759
+ s && (j && clearTimeout(j), j = null, s.forEach((R) => {
8760
+ R.unsubscribe ? R.unsubscribe(F) : R.removeEventListener("abort", F);
8761
8761
  }), s = null);
8762
8762
  };
8763
- s.forEach((M) => M.addEventListener("abort", F));
8763
+ s.forEach((R) => R.addEventListener("abort", F));
8764
8764
  const { signal: N } = v;
8765
8765
  return N.unsubscribe = () => ne.asap(I), N;
8766
8766
  }
@@ -8800,8 +8800,8 @@ const ou = (s) => {
8800
8800
  return new ReadableStream({
8801
8801
  async pull(N) {
8802
8802
  try {
8803
- const { done: M, value: V } = await z.next();
8804
- if (M) {
8803
+ const { done: R, value: V } = await z.next();
8804
+ if (R) {
8805
8805
  I(), N.close();
8806
8806
  return;
8807
8807
  }
@@ -8811,8 +8811,8 @@ const ou = (s) => {
8811
8811
  d(oe);
8812
8812
  }
8813
8813
  N.enqueue(new Uint8Array(V));
8814
- } catch (M) {
8815
- throw I(M), M;
8814
+ } catch (R) {
8815
+ throw I(R), R;
8816
8816
  }
8817
8817
  },
8818
8818
  cancel(N) {
@@ -8827,7 +8827,7 @@ const ou = (s) => {
8827
8827
  }))(ne.global), {
8828
8828
  ReadableStream: Ss,
8829
8829
  TextEncoder: Os
8830
- } = ne.global, Rs = (s, ...c) => {
8830
+ } = ne.global, Ms = (s, ...c) => {
8831
8831
  try {
8832
8832
  return !!s(...c);
8833
8833
  } catch {
@@ -8840,7 +8840,7 @@ const ou = (s) => {
8840
8840
  const { fetch: c, Request: d, Response: v } = s, z = c ? ka(c) : typeof fetch == "function", F = ka(d), j = ka(v);
8841
8841
  if (!z)
8842
8842
  return !1;
8843
- const I = z && ka(Ss), N = z && (typeof Os == "function" ? /* @__PURE__ */ ((G) => (ee) => G.encode(ee))(new Os()) : async (G) => new Uint8Array(await new d(G).arrayBuffer())), M = F && I && Rs(() => {
8843
+ const I = z && ka(Ss), N = z && (typeof Os == "function" ? /* @__PURE__ */ ((G) => (ee) => G.encode(ee))(new Os()) : async (G) => new Uint8Array(await new d(G).arrayBuffer())), R = F && I && Ms(() => {
8844
8844
  let G = !1;
8845
8845
  const ee = new d(zt.origin, {
8846
8846
  body: new Ss(),
@@ -8850,7 +8850,7 @@ const ou = (s) => {
8850
8850
  }
8851
8851
  }).headers.has("Content-Type");
8852
8852
  return G && !ee;
8853
- }), V = j && I && Rs(() => ne.isReadableStream(new v("").body)), Z = {
8853
+ }), V = j && I && Ms(() => ne.isReadableStream(new v("").body)), Z = {
8854
8854
  stream: V && ((G) => G.body)
8855
8855
  };
8856
8856
  z && ["text", "arrayBuffer", "blob", "formData", "stream"].forEach((G) => {
@@ -8901,7 +8901,7 @@ const ou = (s) => {
8901
8901
  });
8902
8902
  let e;
8903
8903
  try {
8904
- if (de && M && L !== "get" && L !== "head" && (e = await ue(we, te)) !== 0) {
8904
+ if (de && R && L !== "get" && L !== "head" && (e = await ue(we, te)) !== 0) {
8905
8905
  let u = new d(ee, {
8906
8906
  method: "POST",
8907
8907
  body: te,
@@ -8949,7 +8949,7 @@ const ou = (s) => {
8949
8949
  return !le && g && g(), await new Promise((u, n) => {
8950
8950
  au(u, n, {
8951
8951
  data: ve,
8952
- headers: Rt.from(A.headers),
8952
+ headers: Mt.from(A.headers),
8953
8953
  status: A.status,
8954
8954
  statusText: A.statusText,
8955
8955
  config: G,
@@ -8972,10 +8972,10 @@ const ou = (s) => {
8972
8972
  z,
8973
8973
  d
8974
8974
  ];
8975
- let j = F.length, I = j, N, M, V = Kf;
8975
+ let j = F.length, I = j, N, R, V = Kf;
8976
8976
  for (; I--; )
8977
- N = F[I], M = V.get(N), M === void 0 && V.set(N, M = I ? /* @__PURE__ */ new Map() : Qf(c)), V = M;
8978
- return M;
8977
+ N = F[I], R = V.get(N), R === void 0 && V.set(N, R = I ? /* @__PURE__ */ new Map() : Qf(c)), V = R;
8978
+ return R;
8979
8979
  };
8980
8980
  su();
8981
8981
  const $o = {
@@ -8994,7 +8994,7 @@ ne.forEach($o, (s, c) => {
8994
8994
  Object.defineProperty(s, "adapterName", { value: c });
8995
8995
  }
8996
8996
  });
8997
- const Ms = (s) => `- ${s}`, _f = (s) => ne.isFunction(s) || s === null || s === !1;
8997
+ const Rs = (s) => `- ${s}`, _f = (s) => ne.isFunction(s) || s === null || s === !1;
8998
8998
  function $f(s, c) {
8999
8999
  s = ne.isArray(s) ? s : [s];
9000
9000
  const { length: d } = s;
@@ -9011,11 +9011,11 @@ function $f(s, c) {
9011
9011
  }
9012
9012
  if (!z) {
9013
9013
  const j = Object.entries(F).map(
9014
- ([N, M]) => `adapter ${N} ` + (M === !1 ? "is not supported by the environment" : "is not available in the build")
9014
+ ([N, R]) => `adapter ${N} ` + (R === !1 ? "is not supported by the environment" : "is not available in the build")
9015
9015
  );
9016
9016
  let I = d ? j.length > 1 ? `since :
9017
- ` + j.map(Ms).join(`
9018
- `) : " " + Ms(j[0]) : "as no adapter specified";
9017
+ ` + j.map(Rs).join(`
9018
+ `) : " " + Rs(j[0]) : "as no adapter specified";
9019
9019
  throw new Qe(
9020
9020
  "There is no suitable adapter to dispatch the request " + I,
9021
9021
  "ERR_NOT_SUPPORT"
@@ -9040,7 +9040,7 @@ function oo(s) {
9040
9040
  throw new kr(null, s);
9041
9041
  }
9042
9042
  function ks(s) {
9043
- return oo(s), s.headers = Rt.from(s.headers), s.data = io.call(
9043
+ return oo(s), s.headers = Mt.from(s.headers), s.data = io.call(
9044
9044
  s,
9045
9045
  s.transformRequest
9046
9046
  ), ["post", "put", "patch"].indexOf(s.method) !== -1 && s.headers.setContentType("application/x-www-form-urlencoded", !1), lu.getAdapter(s.adapter || Ta.adapter, s)(s).then(function(v) {
@@ -9048,13 +9048,13 @@ function ks(s) {
9048
9048
  s,
9049
9049
  s.transformResponse,
9050
9050
  v
9051
- ), v.headers = Rt.from(v.headers), v;
9051
+ ), v.headers = Mt.from(v.headers), v;
9052
9052
  }, function(v) {
9053
9053
  return ru(v) || (oo(s), v && v.response && (v.response.data = io.call(
9054
9054
  s,
9055
9055
  s.transformResponse,
9056
9056
  v.response
9057
- ), v.response.headers = Rt.from(v.response.headers))), Promise.reject(v);
9057
+ ), v.response.headers = Mt.from(v.response.headers))), Promise.reject(v);
9058
9058
  });
9059
9059
  }
9060
9060
  const uu = "1.13.2", Si = {};
@@ -9163,20 +9163,20 @@ let Xn = class {
9163
9163
  (G) => {
9164
9164
  delete F[G];
9165
9165
  }
9166
- ), d.headers = Rt.concat(j, F);
9166
+ ), d.headers = Mt.concat(j, F);
9167
9167
  const I = [];
9168
9168
  let N = !0;
9169
9169
  this.interceptors.request.forEach(function(ee) {
9170
9170
  typeof ee.runWhen == "function" && ee.runWhen(d) === !1 || (N = N && ee.synchronous, I.unshift(ee.fulfilled, ee.rejected));
9171
9171
  });
9172
- const M = [];
9172
+ const R = [];
9173
9173
  this.interceptors.response.forEach(function(ee) {
9174
- M.push(ee.fulfilled, ee.rejected);
9174
+ R.push(ee.fulfilled, ee.rejected);
9175
9175
  });
9176
9176
  let V, Z = 0, oe;
9177
9177
  if (!N) {
9178
9178
  const G = [ks.bind(this), void 0];
9179
- for (G.unshift(...I), G.push(...M), oe = G.length, V = Promise.resolve(d); Z < oe; )
9179
+ for (G.unshift(...I), G.push(...R), oe = G.length, V = Promise.resolve(d); Z < oe; )
9180
9180
  V = V.then(G[Z++], G[Z++]);
9181
9181
  return V;
9182
9182
  }
@@ -9196,8 +9196,8 @@ let Xn = class {
9196
9196
  } catch (G) {
9197
9197
  return Promise.reject(G);
9198
9198
  }
9199
- for (Z = 0, oe = M.length; Z < oe; )
9200
- V = V.then(M[Z++], M[Z++]);
9199
+ for (Z = 0, oe = R.length; Z < oe; )
9200
+ V = V.then(R[Z++], R[Z++]);
9201
9201
  return V;
9202
9202
  }
9203
9203
  getUri(c) {
@@ -9406,7 +9406,7 @@ ft.all = function(c) {
9406
9406
  ft.spread = t0;
9407
9407
  ft.isAxiosError = n0;
9408
9408
  ft.mergeConfig = er;
9409
- ft.AxiosHeaders = Rt;
9409
+ ft.AxiosHeaders = Mt;
9410
9410
  ft.formToJSON = (s) => nu(ne.isHTMLForm(s) ? new FormData(s) : s);
9411
9411
  ft.getAdapter = lu.getAdapter;
9412
9412
  ft.HttpStatusCode = mo;
@@ -9599,22 +9599,22 @@ const w0 = "data:image/svg+xml,%3csvg%20width='150'%20height='150'%20viewBox='0%
9599
9599
  c.value = I;
9600
9600
  }
9601
9601
  return (I, N) => {
9602
- const M = Te("FmIcon"), V = Te("FmChip"), Z = Te("FmSearch"), oe = Te("FmMenuDivider"), ue = Te("FmMenuItem"), G = Te("FmMenu");
9602
+ const R = Te("FmIcon"), V = Te("FmChip"), Z = Te("FmSearch"), oe = Te("FmMenuDivider"), ue = Te("FmMenuItem"), G = Te("FmMenu");
9603
9603
  return ze(), We("div", z0, [
9604
9604
  se(G, {
9605
9605
  "close-on-click": "",
9606
9606
  shift: !0
9607
9607
  }, {
9608
- "menu-button": Re(() => [
9608
+ "menu-button": Me(() => [
9609
9609
  se(V, { class: "bg-fm-color-neutral-gray-100 text-fm-color-neutral-gray-400 max-w-fit" }, {
9610
- default: Re(() => [
9611
- se(M, {
9610
+ default: Me(() => [
9611
+ se(R, {
9612
9612
  name: "storefront",
9613
9613
  size: "sm",
9614
9614
  outline: ""
9615
9615
  }),
9616
9616
  K("p", E0, lt(v.value), 1),
9617
- se(M, {
9617
+ se(R, {
9618
9618
  name: "expand_more",
9619
9619
  size: "sm",
9620
9620
  outline: ""
@@ -9623,7 +9623,7 @@ const w0 = "data:image/svg+xml,%3csvg%20width='150'%20height='150'%20viewBox='0%
9623
9623
  _: 1
9624
9624
  })
9625
9625
  ]),
9626
- "menu-wrapper": Re(() => [
9626
+ "menu-wrapper": Me(() => [
9627
9627
  K("div", C0, [
9628
9628
  se(Z, {
9629
9629
  modelValue: z.value,
@@ -9650,7 +9650,7 @@ var fu = { exports: {} };
9650
9650
  (function(d, v) {
9651
9651
  s.exports = v();
9652
9652
  })(Ke, function() {
9653
- var d = 1e3, v = 6e4, z = 36e5, F = "millisecond", j = "second", I = "minute", N = "hour", M = "day", V = "week", Z = "month", oe = "quarter", ue = "year", G = "date", ee = "Invalid Date", L = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, te = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, fe = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(g) {
9653
+ var d = 1e3, v = 6e4, z = 36e5, F = "millisecond", j = "second", I = "minute", N = "hour", R = "day", V = "week", Z = "month", oe = "quarter", ue = "year", G = "date", ee = "Invalid Date", L = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, te = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, fe = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(g) {
9654
9654
  var e = ["th", "st", "nd", "rd"], a = g % 100;
9655
9655
  return "[" + g + (e[(a - 20) % 10] || e[a] || e[0]) + "]";
9656
9656
  } }, re = function(g, e, a) {
@@ -9666,7 +9666,7 @@ var fu = { exports: {} };
9666
9666
  }, a: function(g) {
9667
9667
  return g < 0 ? Math.ceil(g) || 0 : Math.floor(g);
9668
9668
  }, p: function(g) {
9669
- return { M: Z, y: ue, w: V, d: M, D: G, h: N, m: I, s: j, ms: F, Q: oe }[g] || String(g || "").toLowerCase().replace(/s$/, "");
9669
+ return { M: Z, y: ue, w: V, d: R, D: G, h: N, m: I, s: j, ms: F, Q: oe }[g] || String(g || "").toLowerCase().replace(/s$/, "");
9670
9670
  }, u: function(g) {
9671
9671
  return g === void 0;
9672
9672
  } }, X = "en", de = {};
@@ -9737,7 +9737,7 @@ var fu = { exports: {} };
9737
9737
  }, e.startOf = function(a, me) {
9738
9738
  var A = this, le = !!ie.u(me) || me, ve = ie.p(a), u = function(h, p) {
9739
9739
  var m = ie.w(A.$u ? Date.UTC(A.$y, p, h) : new Date(A.$y, p, h), A);
9740
- return le ? m : m.endOf(M);
9740
+ return le ? m : m.endOf(R);
9741
9741
  }, n = function(h, p) {
9742
9742
  return ie.w(A.toDate()[h].apply(A.toDate("s"), (le ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(p)), A);
9743
9743
  }, t = this.$W, r = this.$M, i = this.$D, o = "set" + (this.$u ? "UTC" : "");
@@ -9749,7 +9749,7 @@ var fu = { exports: {} };
9749
9749
  case V:
9750
9750
  var l = this.$locale().weekStart || 0, f = (t < l ? t + 7 : t) - l;
9751
9751
  return u(le ? i - f : i + (6 - f), r);
9752
- case M:
9752
+ case R:
9753
9753
  case G:
9754
9754
  return n(o + "Hours", 0);
9755
9755
  case N:
@@ -9764,7 +9764,7 @@ var fu = { exports: {} };
9764
9764
  }, e.endOf = function(a) {
9765
9765
  return this.startOf(a, !1);
9766
9766
  }, e.$set = function(a, me) {
9767
- var A, le = ie.p(a), ve = "set" + (this.$u ? "UTC" : ""), u = (A = {}, A[M] = ve + "Date", A[G] = ve + "Date", A[Z] = ve + "Month", A[ue] = ve + "FullYear", A[N] = ve + "Hours", A[I] = ve + "Minutes", A[j] = ve + "Seconds", A[F] = ve + "Milliseconds", A)[le], n = le === M ? this.$D + (me - this.$W) : me;
9767
+ var A, le = ie.p(a), ve = "set" + (this.$u ? "UTC" : ""), u = (A = {}, A[R] = ve + "Date", A[G] = ve + "Date", A[Z] = ve + "Month", A[ue] = ve + "FullYear", A[N] = ve + "Hours", A[I] = ve + "Minutes", A[j] = ve + "Seconds", A[F] = ve + "Milliseconds", A)[le], n = le === R ? this.$D + (me - this.$W) : me;
9768
9768
  if (le === Z || le === ue) {
9769
9769
  var t = this.clone().set(G, 1);
9770
9770
  t.$d[u](n), t.init(), this.$d = t.set(G, Math.min(this.$D, t.daysInMonth())).$d;
@@ -9783,7 +9783,7 @@ var fu = { exports: {} };
9783
9783
  };
9784
9784
  if (ve === Z) return this.set(Z, this.$M + a);
9785
9785
  if (ve === ue) return this.set(ue, this.$y + a);
9786
- if (ve === M) return u(1);
9786
+ if (ve === R) return u(1);
9787
9787
  if (ve === V) return u(7);
9788
9788
  var n = (A = {}, A[I] = v, A[N] = z, A[j] = d, A)[ve] || 1, t = this.$d.getTime() + a * n;
9789
9789
  return ie.w(t, this);
@@ -9874,7 +9874,7 @@ var fu = { exports: {} };
9874
9874
  case V:
9875
9875
  le = (r - t) / 6048e5;
9876
9876
  break;
9877
- case M:
9877
+ case R:
9878
9878
  le = (r - t) / 864e5;
9879
9879
  break;
9880
9880
  case N:
@@ -9910,7 +9910,7 @@ var fu = { exports: {} };
9910
9910
  return this.$d.toUTCString();
9911
9911
  }, g;
9912
9912
  }(), be = je.prototype;
9913
- return Ue.prototype = be, [["$ms", F], ["$s", j], ["$m", I], ["$H", N], ["$W", M], ["$M", Z], ["$y", ue], ["$D", G]].forEach(function(g) {
9913
+ return Ue.prototype = be, [["$ms", F], ["$s", j], ["$m", I], ["$H", N], ["$W", R], ["$M", Z], ["$y", ue], ["$D", G]].forEach(function(g) {
9914
9914
  be[g[1]] = function(e) {
9915
9915
  return this.$g(e, g[0], g[1]);
9916
9916
  };
@@ -9949,7 +9949,7 @@ function so(s) {
9949
9949
  }
9950
9950
  var es = {};
9951
9951
  (function(s) {
9952
- var c = { env: { GITHUB_STATE: "/home/runner/work/_temp/_runner_file_commands/save_state_2e7fc02c-8ae7-4ad9-9f03-010d4c310889", npm_package_devDependencies__types_node: "^18.17.17", DOTNET_NOLOGO: "1", npm_package_devDependencies_vitest: "^2.0.0", npm_package_dependencies_pinia: "^2.1.7", USER: "runner", npm_config_version_commit_hooks: "true", npm_config_user_agent: "yarn/1.22.22 npm/? node/v18.20.8 linux x64", npm_config_always_auth: "true", CI: "true", npm_package_dependencies_vue: "^3.4.21", npm_package_scripts_build_dev_standalone: "cross-env NODE_ENV=development yarn vite build --mode development", npm_config_bin_links: "true", npm_config_wrap_output: "", RUNNER_ENVIRONMENT: "github-hosted", GITHUB_ENV: "/home/runner/work/_temp/_runner_file_commands/set_env_2e7fc02c-8ae7-4ad9-9f03-010d4c310889", PIPX_HOME: "/opt/pipx", npm_node_execpath: "/opt/hostedtoolcache/node/18.20.8/x64/bin/node", npm_package_devDependencies_vite: "^5.1.4", npm_package_scripts_build_prod_standalone: "cross-env NODE_ENV=production yarn vite build --mode production", npm_config_init_version: "1.0.0", JAVA_HOME_8_X64: "/usr/lib/jvm/temurin-8-jdk-amd64", SHLVL: "1", npm_package_files_0: "dist", HOME: "/home/runner", npm_package_devDependencies_sass: "1.69.5", RUNNER_TEMP: "/home/runner/work/_temp", GITHUB_EVENT_PATH: "/home/runner/work/_temp/_github_workflow/event.json", JAVA_HOME_11_X64: "/usr/lib/jvm/temurin-11-jdk-amd64", PIPX_BIN_DIR: "/opt/pipx_bin", GITHUB_REPOSITORY_OWNER: "feedmepos", npm_config_init_license: "MIT", NODE_OPTIONS: "--max-old-space-size=4096", GRADLE_HOME: "/usr/share/gradle-9.2.1", ANDROID_NDK_LATEST_HOME: "/usr/local/lib/android/sdk/ndk/29.0.14206865", JAVA_HOME_21_X64: "/usr/lib/jvm/temurin-21-jdk-amd64", GITHUB_RETENTION_DAYS: "90", YARN_WRAP_OUTPUT: "false", npm_package_devDependencies_npm_run_all2: "^6.0.6", npm_package_dependencies__feedmepos_mf_common: "^1.26.11", npm_package_scripts_type_check: "vue-tsc --noEmit -p tsconfig.app.json --composite false", npm_config_version_tag_prefix: "v", GITHUB_REPOSITORY_OWNER_ID: "54831515", POWERSHELL_DISTRIBUTION_CHANNEL: "GitHub-Actions-ubuntu24", AZURE_EXTENSION_DIR: "/opt/az/azcliextensions", GITHUB_HEAD_REF: "", SYSTEMD_EXEC_PID: "1759", npm_package_devDependencies__tsconfig_node18: "^18.2.2", npm_package_dependencies_dayjs: "^1.11.10", npm_package_dependencies__feedmepos_ui_library: "^1.6.8", npm_config_feedmepos_registry: "https://npm.pkg.github.com", GITHUB_GRAPHQL_URL: "https://api.github.com/graphql", npm_package_description: "# mf-e-invoice", npm_package_devDependencies_typescript: "~5.2.0", npm_package_devDependencies_tailwindcss: "^3.3.3", npm_package_dependencies__vitejs_plugin_vue_jsx: "^4.0.0", JAVA_HOME_25_X64: "/usr/lib/jvm/temurin-25-jdk-amd64", NVM_DIR: "/home/runner/.nvm", npm_package_readmeFilename: "README.md", npm_package_devDependencies_vue_tsc: "^1.8.11", npm_package_scripts_build_dev: "dotenv -e .env.development yarn build-only", DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "1", JAVA_HOME_17_X64: "/usr/lib/jvm/temurin-17-jdk-amd64", ImageVersion: "20260105.202.1", npm_package_devDependencies_prettier: "^3.0.3", npm_package_scripts_build_prod: "dotenv -e .env.production yarn build-only", npm_package_scripts_dev: "cross-env NODE_ENV=development vite --mode development --port 5178", LOGNAME: "runner", RUNNER_OS: "Linux", GITHUB_API_URL: "https://api.github.com", GOROOT_1_22_X64: "/opt/hostedtoolcache/go/1.22.12/x64", SWIFT_PATH: "/usr/share/swift/usr/bin", npm_package_devDependencies__vue_tsconfig: "^0.4.0", npm_package_type: "module", CHROMEWEBDRIVER: "/usr/local/share/chromedriver-linux64", GOROOT_1_23_X64: "/opt/hostedtoolcache/go/1.23.12/x64", JOURNAL_STREAM: "9:10893", GITHUB_WORKFLOW: "Publish mf-e-invoice", _: "/usr/local/bin/yarn", npm_package_devDependencies_autoprefixer: "^10.4.16", npm_package_module: "./dist/app.js", MEMORY_PRESSURE_WATCH: "/sys/fs/cgroup/system.slice/hosted-compute-agent.service/memory.pressure", GOROOT_1_24_X64: "/opt/hostedtoolcache/go/1.24.11/x64", npm_package_scripts_lint: "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", npm_config_registry: "https://registry.yarnpkg.com", ACTIONS_RUNNER_ACTION_ARCHIVE_CACHE: "/opt/actionarchivecache", GOROOT_1_25_X64: "/opt/hostedtoolcache/go/1.25.5/x64", GITHUB_RUN_ID: "20907421477", GITHUB_REF_TYPE: "tag", BOOTSTRAP_HASKELL_NONINTERACTIVE: "1", GITHUB_WORKFLOW_SHA: "ddecc6597fc7f16422e4a44a7eaf1edf69471333", GITHUB_BASE_REF: "", ImageOS: "ubuntu24", npm_package_devDependencies__vitejs_plugin_vue: "^4.3.4", npm_package_scripts_start: "cross-env NODE_ENV=production vite --mode prod", npm_package_exports___import: "./dist/app.js", npm_config_ignore_scripts: "", GITHUB_WORKFLOW_REF: "feedmepos/core/.github/workflows/e-invoice-portal-dev.yml@refs/tags/mf-e-invoice/0.0.57", GITHUB_ACTION_REPOSITORY: "", ENABLE_RUNNER_TRACING: "true", npm_package_dependencies_axios: "^1.6.2", PATH: "/tmp/yarn--1768189654445-0.3511471743112804:/home/runner/work/core/core/apps/e-invoice-portal/node_modules/.bin:/home/runner/.config/yarn/link/node_modules/.bin:/opt/hostedtoolcache/node/18.20.8/x64/libexec/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/bin/node_modules/npm/bin/node-gyp-bin:/tmp/yarn--1768189654142-0.6783694200468262:/home/runner/work/core/core/apps/e-invoice-portal/node_modules/.bin:/home/runner/.config/yarn/link/node_modules/.bin:/opt/hostedtoolcache/node/18.20.8/x64/libexec/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/bin/node_modules/npm/bin/node-gyp-bin:/tmp/yarn--1768189653743-0.8820792241576227:/home/runner/work/core/core/apps/e-invoice-portal/node_modules/.bin:/home/runner/.config/yarn/link/node_modules/.bin:/opt/hostedtoolcache/node/18.20.8/x64/libexec/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/bin/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/bin:/snap/bin:/home/runner/.local/bin:/opt/pipx_bin:/home/runner/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin", NODE: "/opt/hostedtoolcache/node/18.20.8/x64/bin/node", ANT_HOME: "/usr/share/ant", DOTNET_MULTILEVEL_LOOKUP: "0", RUNNER_TRACKING_ID: "github_56125f35-5020-474c-8369-9b6f5b461e1b", INVOCATION_ID: "9f818f5baf7b4447ac8e377ae9e941ae", RUNNER_TOOL_CACHE: "/opt/hostedtoolcache", npm_package_name: "@feedmepos/mf-e-invoice", GITHUB_ACTION: "__run_3", GITHUB_RUN_NUMBER: "93", GITHUB_TRIGGERING_ACTOR: "gaialance", RUNNER_ARCH: "X64", XDG_RUNTIME_DIR: "/run/user/1001", AGENT_TOOLSDIRECTORY: "/opt/hostedtoolcache", npm_package_scripts_publish_github_beta: "npm publish --tag beta --no-git-checks . --access public --@feedmepos:registry=https://npm.pkg.github.com/", npm_package_scripts_publish_github: "npm publish --no-git-checks . --access public --@feedmepos:registry=https://npm.pkg.github.com/", npm_package_scripts_publish_npm_beta: "npm publish --tag beta --no-git-checks . --access public --@feedmepos:registry=https://registry.npmjs.org/", npm_package_scripts_publish_npm: "npm publish --no-git-checks . --access public --@feedmepos:registry=https://registry.npmjs.org/", npm_package_scripts_build_mf: "vite build --mode fmmf", LANG: "C.UTF-8", VCPKG_INSTALLATION_ROOT: "/usr/local/share/vcpkg", npm_package_devDependencies_eslint: "^8.54.0", npm_package_devDependencies__vue_eslint_config_typescript: "^12.0.0", CONDA: "/usr/share/miniconda", RUNNER_NAME: "GitHub Actions 1000037636", XDG_CONFIG_HOME: "/home/runner/.config", GITHUB_REF_NAME: "mf-e-invoice/0.0.57", GITHUB_REPOSITORY: "feedmepos/core", npm_lifecycle_script: "vite build --mode fmmf", npm_package_dependencies__feedmepos_core: "^2.14.28", npm_package_scripts_build_dts: "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json --outDir ./dist && mv ./dist/src/* dist", ANDROID_NDK_ROOT: "/usr/local/lib/android/sdk/ndk/27.3.13750724", GITHUB_ACTION_REF: "", DEBIAN_FRONTEND: "noninteractive", npm_package_devDependencies__vue_eslint_config_prettier: "^8.0.0", npm_package_devDependencies__casl_ability: "^3.4.0", npm_package_scripts_test: "vitest run", npm_config_version_git_message: "v%s", SHELL: "/bin/bash", GITHUB_REPOSITORY_ID: "690880264", GITHUB_ACTIONS: "true", npm_lifecycle_event: "build:mf", npm_package_devDependencies_jsdom: "^24.0.0", npm_package_devDependencies__rushstack_eslint_patch: "^1.15.0", npm_package_scripts_build_only: "yarn build:mf && yarn build:dts", npm_package_version: "0.0.57", GITHUB_REF_PROTECTED: "false", npm_config_argv: '{"remain":[],"cooked":["run","build:dev"],"original":["build:dev"]}', npm_package_dependencies_dotenv_cli: "^7.4.2", npm_package_scripts_build: 'run-p type-check "build-only {@}" --', npm_config__feedmepos_registry: "https://npm.pkg.github.com", GITHUB_WORKSPACE: "/home/runner/work/core/core", ACCEPT_EULA: "Y", GITHUB_JOB: "deploy", GITHUB_SHA: "ddecc6597fc7f16422e4a44a7eaf1edf69471333", GITHUB_RUN_ATTEMPT: "1", npm_package_devDependencies_eslint_plugin_tailwindcss: "^3.14.0", npm_package_dependencies_vue_router: "^4.3.0", npm_package_exports___style: "./dist/style.css", npm_config_version_git_tag: "true", npm_config_version_git_sign: "", GITHUB_REF: "refs/tags/mf-e-invoice/0.0.57", GITHUB_ACTOR: "gaialance", ANDROID_SDK_ROOT: "/usr/local/lib/android/sdk", npm_package_license: "UNLICENSED", npm_config_strict_ssl: "true", VITE_PINIA_STORE: "mf-e-invoice", npm_package_scripts_format: "prettier --write src/", GITHUB_PATH: "/home/runner/work/_temp/_runner_file_commands/add_path_2e7fc02c-8ae7-4ad9-9f03-010d4c310889", JAVA_HOME: "/usr/lib/jvm/temurin-17-jdk-amd64", PWD: "/home/runner/work/core/core/apps/e-invoice-portal", GITHUB_ACTOR_ID: "35401028", RUNNER_WORKSPACE: "/home/runner/work/core", npm_execpath: "/usr/local/lib/node_modules/yarn/bin/yarn.js", HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS: "3650", GITHUB_EVENT_NAME: "push", HOMEBREW_NO_AUTO_UPDATE: "1", ANDROID_HOME: "/usr/local/lib/android/sdk", GITHUB_SERVER_URL: "https://github.com", GECKOWEBDRIVER: "/usr/local/share/gecko_driver", GHCUP_INSTALL_BASE_PREFIX: "/usr/local", GITHUB_OUTPUT: "/home/runner/work/_temp/_runner_file_commands/set_output_2e7fc02c-8ae7-4ad9-9f03-010d4c310889", npm_package_exports___types: "./dist/app.d.ts", EDGEWEBDRIVER: "/usr/local/share/edge_driver", npm_package_devDependencies_postcss: "^8.4.31", npm_package_devDependencies_eslint_plugin_vue: "^9.19.2", npm_package_devDependencies_cross_env: "^7.0.3", npm_config_save_prefix: "^", npm_config_ignore_optional: "", VITE_BACKEND_URL: "https://e-invoice-dev.feedmeapi.com/e-invoice", ANDROID_NDK: "/usr/local/lib/android/sdk/ndk/27.3.13750724", SGX_AESM_ADDR: "1", CHROME_BIN: "/usr/bin/google-chrome", npm_package_scripts_deploy_beta: "yarn run build-only && yarn run publish-npm:beta && yarn run publish-github:beta && yarn run purge:beta", npm_package_scripts_deploy: "yarn run build-only && yarn run publish-npm && yarn run publish-github && yarn run purge:prod", npm_package_scripts_preview: "vite preview", VITE_FEED_ME_CLIENT_ID: "1a362d621873497b277ea55258cc82594ba148d235257f7bd44ea2acc132d8a4", SELENIUM_JAR_PATH: "/usr/share/java/selenium-server.jar", MEMORY_PRESSURE_WRITE: "c29tZSAyMDAwMDAgMjAwMDAwMAA=", INIT_CWD: "/home/runner/work/core/core/apps/e-invoice-portal", ANDROID_NDK_HOME: "/usr/local/lib/android/sdk/ndk/27.3.13750724", GITHUB_STEP_SUMMARY: "/home/runner/work/_temp/_runner_file_commands/step_summary_2e7fc02c-8ae7-4ad9-9f03-010d4c310889", npm_package_dependencies_libphonenumber_js: "^1.12.10", NODE_ENV: "production" } }, d = typeof c < "u" && (c.versions || {}).hasOwnProperty("node"), v = d ? Object.create(globalThis) : globalThis;
9952
+ var c = { env: { GITHUB_STATE: "/home/runner/work/_temp/_runner_file_commands/save_state_70b32dd6-f880-489b-af5b-0751ec9adfc7", npm_package_devDependencies__types_node: "^18.17.17", DOTNET_NOLOGO: "1", npm_package_devDependencies_vitest: "^2.0.0", npm_package_dependencies_pinia: "^2.1.7", USER: "runner", npm_config_version_commit_hooks: "true", npm_config_user_agent: "yarn/1.22.22 npm/? node/v18.20.8 linux x64", npm_config_always_auth: "true", CI: "true", npm_package_dependencies_vue: "^3.4.21", npm_package_scripts_build_dev_standalone: "cross-env NODE_ENV=development yarn vite build --mode development", npm_config_bin_links: "true", npm_config_wrap_output: "", RUNNER_ENVIRONMENT: "github-hosted", GITHUB_ENV: "/home/runner/work/_temp/_runner_file_commands/set_env_70b32dd6-f880-489b-af5b-0751ec9adfc7", PIPX_HOME: "/opt/pipx", npm_node_execpath: "/opt/hostedtoolcache/node/18.20.8/x64/bin/node", npm_package_devDependencies_vite: "^5.1.4", npm_package_scripts_build_prod_standalone: "cross-env NODE_ENV=production yarn vite build --mode production", npm_config_init_version: "1.0.0", JAVA_HOME_8_X64: "/usr/lib/jvm/temurin-8-jdk-amd64", SHLVL: "1", npm_package_files_0: "dist", HOME: "/home/runner", npm_package_devDependencies_sass: "1.69.5", RUNNER_TEMP: "/home/runner/work/_temp", GITHUB_EVENT_PATH: "/home/runner/work/_temp/_github_workflow/event.json", JAVA_HOME_11_X64: "/usr/lib/jvm/temurin-11-jdk-amd64", PIPX_BIN_DIR: "/opt/pipx_bin", GITHUB_REPOSITORY_OWNER: "feedmepos", npm_config_init_license: "MIT", NODE_OPTIONS: "--max-old-space-size=4096", GRADLE_HOME: "/usr/share/gradle-9.3.0", ANDROID_NDK_LATEST_HOME: "/usr/local/lib/android/sdk/ndk/29.0.14206865", JAVA_HOME_21_X64: "/usr/lib/jvm/temurin-21-jdk-amd64", GITHUB_RETENTION_DAYS: "90", YARN_WRAP_OUTPUT: "false", npm_package_devDependencies_npm_run_all2: "^6.0.6", npm_package_dependencies__feedmepos_mf_common: "^1.26.11", npm_package_scripts_type_check: "vue-tsc --noEmit -p tsconfig.app.json --composite false", npm_config_version_tag_prefix: "v", GITHUB_REPOSITORY_OWNER_ID: "54831515", POWERSHELL_DISTRIBUTION_CHANNEL: "GitHub-Actions-ubuntu24", AZURE_EXTENSION_DIR: "/opt/az/azcliextensions", GITHUB_HEAD_REF: "", SYSTEMD_EXEC_PID: "1831", npm_package_devDependencies__tsconfig_node18: "^18.2.2", npm_package_dependencies_dayjs: "^1.11.10", npm_package_dependencies__feedmepos_ui_library: "^1.6.8", npm_config_feedmepos_registry: "https://npm.pkg.github.com", GITHUB_GRAPHQL_URL: "https://api.github.com/graphql", npm_package_description: "# mf-e-invoice", npm_package_devDependencies_typescript: "~5.2.0", npm_package_devDependencies_tailwindcss: "^3.3.3", npm_package_dependencies__vitejs_plugin_vue_jsx: "^4.0.0", JAVA_HOME_25_X64: "/usr/lib/jvm/temurin-25-jdk-amd64", NVM_DIR: "/home/runner/.nvm", npm_package_readmeFilename: "README.md", npm_package_devDependencies_vue_tsc: "^1.8.11", npm_package_scripts_build_dev: "dotenv -e .env.development yarn build-only", DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "1", JAVA_HOME_17_X64: "/usr/lib/jvm/temurin-17-jdk-amd64", ImageVersion: "20260119.4.1", npm_package_devDependencies_prettier: "^3.0.3", npm_package_scripts_build_prod: "dotenv -e .env.production yarn build-only", npm_package_scripts_dev: "cross-env NODE_ENV=development vite --mode development --port 5178", LOGNAME: "runner", RUNNER_OS: "Linux", GITHUB_API_URL: "https://api.github.com", GOROOT_1_22_X64: "/opt/hostedtoolcache/go/1.22.12/x64", SWIFT_PATH: "/usr/share/swift/usr/bin", npm_package_devDependencies__vue_tsconfig: "^0.4.0", npm_package_type: "module", CHROMEWEBDRIVER: "/usr/local/share/chromedriver-linux64", GOROOT_1_23_X64: "/opt/hostedtoolcache/go/1.23.12/x64", JOURNAL_STREAM: "9:13454", GITHUB_WORKFLOW: "Publish mf-e-invoice production", _: "/usr/local/bin/yarn", npm_package_devDependencies_autoprefixer: "^10.4.16", npm_package_module: "./dist/app.js", MEMORY_PRESSURE_WATCH: "/sys/fs/cgroup/system.slice/hosted-compute-agent.service/memory.pressure", GOROOT_1_24_X64: "/opt/hostedtoolcache/go/1.24.12/x64", npm_package_scripts_lint: "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", npm_config_registry: "https://registry.yarnpkg.com", ACTIONS_RUNNER_ACTION_ARCHIVE_CACHE: "/opt/actionarchivecache", GOROOT_1_25_X64: "/opt/hostedtoolcache/go/1.25.6/x64", GITHUB_RUN_ID: "21354687873", GITHUB_REF_TYPE: "tag", BOOTSTRAP_HASKELL_NONINTERACTIVE: "1", GITHUB_WORKFLOW_SHA: "e8ab0b399849fb0f84a39fe3de8de211c2914944", GITHUB_BASE_REF: "", ImageOS: "ubuntu24", npm_package_devDependencies__vitejs_plugin_vue: "^4.3.4", npm_package_scripts_start: "cross-env NODE_ENV=production vite --mode production --port 5178", npm_package_exports___import: "./dist/app.js", npm_config_ignore_scripts: "", GITHUB_WORKFLOW_REF: "feedmepos/core/.github/workflows/e-invoice-portal-prod.yml@refs/tags/mf-e-invoice/0.0.58-prod", GITHUB_ACTION_REPOSITORY: "", ENABLE_RUNNER_TRACING: "true", npm_package_dependencies_axios: "^1.6.2", PATH: "/tmp/yarn--1769423991649-0.6543884134499323:/home/runner/work/core/core/apps/e-invoice-portal/node_modules/.bin:/home/runner/.config/yarn/link/node_modules/.bin:/opt/hostedtoolcache/node/18.20.8/x64/libexec/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/bin/node_modules/npm/bin/node-gyp-bin:/tmp/yarn--1769423991381-0.4243546085295753:/home/runner/work/core/core/apps/e-invoice-portal/node_modules/.bin:/home/runner/.config/yarn/link/node_modules/.bin:/opt/hostedtoolcache/node/18.20.8/x64/libexec/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/bin/node_modules/npm/bin/node-gyp-bin:/tmp/yarn--1769423991027-0.2678060585243338:/home/runner/work/core/core/apps/e-invoice-portal/node_modules/.bin:/home/runner/.config/yarn/link/node_modules/.bin:/opt/hostedtoolcache/node/18.20.8/x64/libexec/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/lib/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/bin/node_modules/npm/bin/node-gyp-bin:/opt/hostedtoolcache/node/18.20.8/x64/bin:/snap/bin:/home/runner/.local/bin:/opt/pipx_bin:/home/runner/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin", NODE: "/opt/hostedtoolcache/node/18.20.8/x64/bin/node", ANT_HOME: "/usr/share/ant", DOTNET_MULTILEVEL_LOOKUP: "0", RUNNER_TRACKING_ID: "github_46d2ec22-bfa7-4cbf-8ae0-035a80fa4f39", INVOCATION_ID: "3dc9937c7adc4b328dbbcf3ae2f056dd", RUNNER_TOOL_CACHE: "/opt/hostedtoolcache", npm_package_name: "@feedmepos/mf-e-invoice", GITHUB_ACTION: "__run_3", GITHUB_RUN_NUMBER: "35", GITHUB_TRIGGERING_ACTOR: "HJ29", RUNNER_ARCH: "X64", XDG_RUNTIME_DIR: "/run/user/1001", AGENT_TOOLSDIRECTORY: "/opt/hostedtoolcache", npm_package_scripts_publish_github_beta: "npm publish --tag beta --no-git-checks . --access public --@feedmepos:registry=https://npm.pkg.github.com/", npm_package_scripts_publish_github: "npm publish --no-git-checks . --access public --@feedmepos:registry=https://npm.pkg.github.com/", npm_package_scripts_publish_npm_beta: "npm publish --tag beta --no-git-checks . --access public --@feedmepos:registry=https://registry.npmjs.org/", npm_package_scripts_publish_npm: "npm publish --no-git-checks . --access public --@feedmepos:registry=https://registry.npmjs.org/", npm_package_scripts_build_mf: "vite build --mode fmmf", LANG: "C.UTF-8", VCPKG_INSTALLATION_ROOT: "/usr/local/share/vcpkg", npm_package_devDependencies_eslint: "^8.54.0", npm_package_devDependencies__vue_eslint_config_typescript: "^12.0.0", CONDA: "/usr/share/miniconda", RUNNER_NAME: "GitHub Actions 1000042063", XDG_CONFIG_HOME: "/home/runner/.config", GITHUB_REF_NAME: "mf-e-invoice/0.0.58-prod", GITHUB_REPOSITORY: "feedmepos/core", npm_lifecycle_script: "vite build --mode fmmf", npm_package_dependencies__feedmepos_core: "^2.14.28", npm_package_scripts_build_dts: "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json --outDir ./dist && mv ./dist/src/* dist", ANDROID_NDK_ROOT: "/usr/local/lib/android/sdk/ndk/27.3.13750724", GITHUB_ACTION_REF: "", DEBIAN_FRONTEND: "noninteractive", npm_package_devDependencies__vue_eslint_config_prettier: "^8.0.0", npm_package_devDependencies__casl_ability: "^3.4.0", npm_package_scripts_test: "vitest run", npm_config_version_git_message: "v%s", SHELL: "/bin/bash", GITHUB_REPOSITORY_ID: "690880264", GITHUB_ACTIONS: "true", npm_lifecycle_event: "build:mf", npm_package_devDependencies_jsdom: "^24.0.0", npm_package_devDependencies__rushstack_eslint_patch: "^1.15.0", npm_package_scripts_build_only: "yarn build:mf && yarn build:dts", npm_package_version: "0.0.58-prod", GITHUB_REF_PROTECTED: "false", npm_config_argv: '{"remain":[],"cooked":["run","build:prod"],"original":["build:prod"]}', npm_package_dependencies_dotenv_cli: "^7.4.2", npm_package_scripts_build: 'run-p type-check "build-only {@}" --', npm_config__feedmepos_registry: "https://npm.pkg.github.com", GITHUB_WORKSPACE: "/home/runner/work/core/core", ACCEPT_EULA: "Y", GITHUB_JOB: "deploy", GITHUB_SHA: "e8ab0b399849fb0f84a39fe3de8de211c2914944", GITHUB_RUN_ATTEMPT: "1", npm_package_devDependencies_eslint_plugin_tailwindcss: "^3.14.0", npm_package_dependencies_vue_router: "^4.3.0", npm_package_exports___style: "./dist/style.css", npm_config_version_git_tag: "true", npm_config_version_git_sign: "", GITHUB_REF: "refs/tags/mf-e-invoice/0.0.58-prod", GITHUB_ACTOR: "HJ29", ANDROID_SDK_ROOT: "/usr/local/lib/android/sdk", npm_package_license: "UNLICENSED", npm_config_strict_ssl: "true", VITE_PINIA_STORE: "mf-e-invoice", npm_package_scripts_format: "prettier --write src/", GITHUB_PATH: "/home/runner/work/_temp/_runner_file_commands/add_path_70b32dd6-f880-489b-af5b-0751ec9adfc7", JAVA_HOME: "/usr/lib/jvm/temurin-17-jdk-amd64", PWD: "/home/runner/work/core/core/apps/e-invoice-portal", GITHUB_ACTOR_ID: "24311533", RUNNER_WORKSPACE: "/home/runner/work/core", npm_execpath: "/usr/local/lib/node_modules/yarn/bin/yarn.js", HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS: "3650", GITHUB_EVENT_NAME: "push", HOMEBREW_NO_AUTO_UPDATE: "1", ANDROID_HOME: "/usr/local/lib/android/sdk", GITHUB_SERVER_URL: "https://github.com", GECKOWEBDRIVER: "/usr/local/share/gecko_driver", GHCUP_INSTALL_BASE_PREFIX: "/usr/local", GITHUB_OUTPUT: "/home/runner/work/_temp/_runner_file_commands/set_output_70b32dd6-f880-489b-af5b-0751ec9adfc7", npm_package_exports___types: "./dist/app.d.ts", EDGEWEBDRIVER: "/usr/local/share/edge_driver", npm_package_devDependencies_postcss: "^8.4.31", npm_package_devDependencies_eslint_plugin_vue: "^9.19.2", npm_package_devDependencies_cross_env: "^7.0.3", npm_config_save_prefix: "^", npm_config_ignore_optional: "", VITE_BACKEND_URL: "https://e-invoice.feedmeapi.com/e-invoice", ANDROID_NDK: "/usr/local/lib/android/sdk/ndk/27.3.13750724", SGX_AESM_ADDR: "1", PSModulePath: "/root/.local/share/powershell/Modules:/usr/local/share/powershell/Modules:/opt/microsoft/powershell/7/Modules:/usr/share/az_12.5.0", CHROME_BIN: "/usr/bin/google-chrome", npm_package_scripts_deploy_beta: "yarn run build-only && yarn run publish-npm:beta && yarn run publish-github:beta && yarn run purge:beta", npm_package_scripts_deploy: "yarn run build-only && yarn run publish-npm && yarn run publish-github && yarn run purge:prod", npm_package_scripts_preview: "vite preview", VITE_FEED_ME_CLIENT_ID: "1a362d621873497b277ea55258cc82594ba148d235257f7bd44ea2acc132d8a4", SELENIUM_JAR_PATH: "/usr/share/java/selenium-server.jar", MEMORY_PRESSURE_WRITE: "c29tZSAyMDAwMDAgMjAwMDAwMAA=", INIT_CWD: "/home/runner/work/core/core/apps/e-invoice-portal", ANDROID_NDK_HOME: "/usr/local/lib/android/sdk/ndk/27.3.13750724", GITHUB_STEP_SUMMARY: "/home/runner/work/_temp/_runner_file_commands/step_summary_70b32dd6-f880-489b-af5b-0751ec9adfc7", npm_package_dependencies_libphonenumber_js: "^1.12.10", NODE_ENV: "production" } }, d = typeof c < "u" && (c.versions || {}).hasOwnProperty("node"), v = d ? Object.create(globalThis) : globalThis;
9953
9953
  if (v.scheduleImmediate = typeof setImmediate < "u" ? function(F) {
9954
9954
  setImmediate(F);
9955
9955
  } : function(F) {
@@ -9966,12 +9966,12 @@ var es = {};
9966
9966
  try {
9967
9967
  throw new Error();
9968
9968
  } catch (Z) {
9969
- var I = Z.stack, N = new RegExp("^ *at [^(]*\\((.*):[0-9]*:[0-9]*\\)$", "mg"), M = null;
9969
+ var I = Z.stack, N = new RegExp("^ *at [^(]*\\((.*):[0-9]*:[0-9]*\\)$", "mg"), R = null;
9970
9970
  do {
9971
9971
  var V = N.exec(I);
9972
- V != null && (M = V);
9972
+ V != null && (R = V);
9973
9973
  } while (V != null);
9974
- return M[1];
9974
+ return R[1];
9975
9975
  }
9976
9976
  }
9977
9977
  var j = null;
@@ -10002,7 +10002,7 @@ var es = {};
10002
10002
  function N(n, t) {
10003
10003
  Object.assign(t, n);
10004
10004
  }
10005
- var M = function() {
10005
+ var R = function() {
10006
10006
  var n = function() {
10007
10007
  };
10008
10008
  n.prototype = { p: {} };
@@ -10020,7 +10020,7 @@ var es = {};
10020
10020
  }();
10021
10021
  function V(n, t) {
10022
10022
  if (n.prototype.constructor = n, n.prototype["$i" + n.name] = n, t != null) {
10023
- if (M) {
10023
+ if (R) {
10024
10024
  Object.setPrototypeOf(n.prototype, t.prototype);
10025
10025
  return;
10026
10026
  }
@@ -10705,13 +10705,13 @@ var es = {};
10705
10705
  return e.Cs(n, t, r);
10706
10706
  },
10707
10707
  Cs(n, t, r) {
10708
- var i, o, l, f, h, p, m, b, y, w, E, C, T = Array.isArray(t) ? t : e.u(t, !0, u.z), R = T.length, S = n.$R;
10709
- if (R < S) return e.dL(n, T, r);
10708
+ var i, o, l, f, h, p, m, b, y, w, E, C, T = Array.isArray(t) ? t : e.u(t, !0, u.z), M = T.length, S = n.$R;
10709
+ if (M < S) return e.dL(n, T, r);
10710
10710
  if (i = n.$D, o = i == null, l = o ? null : i(), f = g.dy(n), h = f.$C, typeof h == "string" && (h = f[h]), o)
10711
- return r != null && r.a !== 0 ? e.dL(n, T, r) : R === S ? h.apply(n, T) : e.dL(n, T, r);
10711
+ return r != null && r.a !== 0 ? e.dL(n, T, r) : M === S ? h.apply(n, T) : e.dL(n, T, r);
10712
10712
  if (Array.isArray(l))
10713
- return r != null && r.a !== 0 ? e.dL(n, T, r) : (p = S + l.length, R > p ? e.dL(n, T, null) : (R < p && (m = l.slice(R - S), T === t && (T = e.u(T, !0, u.z)), a.d.E(T, m)), h.apply(n, T)));
10714
- if (R > S) return e.dL(n, T, r);
10713
+ return r != null && r.a !== 0 ? e.dL(n, T, r) : (p = S + l.length, M > p ? e.dL(n, T, null) : (M < p && (m = l.slice(M - S), T === t && (T = e.u(T, !0, u.z)), a.d.E(T, m)), h.apply(n, T)));
10714
+ if (M > S) return e.dL(n, T, r);
10715
10715
  if (T === t && (T = e.u(T, !0, u.z)), b = Object.keys(l), r == null) for (o = b.length, y = 0; y < b.length; b.length === o || (0, e.cw)(b), ++y) {
10716
10716
  if (w = l[e.h(b[y])], a.af === w) return e.dL(n, T, r);
10717
10717
  a.d.B(T, w);
@@ -10874,13 +10874,13 @@ var es = {};
10874
10874
  }(n, t, e.ER);
10875
10875
  },
10876
10876
  BX(n) {
10877
- var t, r, i, o, l, f, h, p, m, b, y = n.co, w = n.iS, E = n.iI, C = n.nDA, T = n.aI, R = n.fs, S = n.cs, k = R[0], D = S[0], Y = y[k], U = n.fT;
10877
+ var t, r, i, o, l, f, h, p, m, b, y = n.co, w = n.iS, E = n.iI, C = n.nDA, T = n.aI, M = n.fs, S = n.cs, k = M[0], D = S[0], Y = y[k], U = n.fT;
10878
10878
  for (U.toString, t = Object.create(w ? new e.kp().constructor.prototype : new e.eF(null, null).constructor.prototype), t.$initialize = t.constructor, r = w ? function() {
10879
10879
  this.$initialize();
10880
10880
  } : function(_, J) {
10881
10881
  this.$initialize(_, J);
10882
- }, t.constructor = r, r.prototype = t, t.$_name = k, t.$_target = Y, i = !w, i ? o = e.xT(k, Y, E, C) : (t.$static_name = k, o = Y), t.$S = e.BT(U, w, E), t[D] = o, l = o, f = 1; f < R.length; ++f)
10883
- h = R[f], typeof h == "string" ? (p = y[h], m = h, h = p) : m = "", b = S[f], b != null && (i && (h = e.xT(m, h, E, C)), t[b] = h), f === T && (l = h);
10882
+ }, t.constructor = r, r.prototype = t, t.$_name = k, t.$_target = Y, i = !w, i ? o = e.xT(k, Y, E, C) : (t.$static_name = k, o = Y), t.$S = e.BT(U, w, E), t[D] = o, l = o, f = 1; f < M.length; ++f)
10883
+ h = M[f], typeof h == "string" ? (p = y[h], m = h, h = p) : m = "", b = S[f], b != null && (i && (h = e.xT(m, h, E, C)), t[b] = h), f === T && (l = h);
10884
10884
  return t.$C = l, t.$R = n.rC, t.$D = n.dV, r;
10885
10885
  },
10886
10886
  BT(n, t, r) {
@@ -11348,7 +11348,7 @@ var es = {};
11348
11348
  return n == null ? null : (r = t.y, i = n.Q, i == null && (i = n.Q = /* @__PURE__ */ new Map()), o = t.as, l = i.get(o), l ?? (f = e.dx(le.typeUniverse, n.x, r, 0), i.set(o, f), f));
11349
11349
  },
11350
11350
  dx(n, t, r, i) {
11351
- var o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _ = t.w;
11351
+ var o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _ = t.w;
11352
11352
  switch (_) {
11353
11353
  case 5:
11354
11354
  case 1:
@@ -11369,7 +11369,7 @@ var es = {};
11369
11369
  case 11:
11370
11370
  return w = t.x, E = t.y, C = e.fn(n, E, r, i), C === E ? t : e.zx(n, w, C);
11371
11371
  case 12:
11372
- return T = t.x, R = e.dx(n, T, r, i), S = t.y, k = e.Fe(n, S, r, i), R === T && k === S ? t : e.zv(n, R, k);
11372
+ return T = t.x, M = e.dx(n, T, r, i), S = t.y, k = e.Fe(n, S, r, i), M === T && k === S ? t : e.zv(n, M, k);
11373
11373
  case 13:
11374
11374
  return D = t.y, i += D.length, Y = e.fn(n, D, r, i), p = t.x, m = e.dx(n, p, r, i), Y === D && m === p ? t : e.x9(n, m, Y, !0);
11375
11375
  case 14:
@@ -11630,7 +11630,7 @@ var es = {};
11630
11630
  return l + "})";
11631
11631
  },
11632
11632
  zG(n, t, r) {
11633
- var i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae = ", ";
11633
+ var i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae = ", ";
11634
11634
  if (r != null) {
11635
11635
  for (i = r.length, t == null ? (t = e.w([], u.s), o = null) : o = t.length, l = t.length, f = i; f > 0; --f) a.d.B(t, "T" + (l + f));
11636
11636
  for (h = u.dy, p = u.tw, m = "<", b = "", f = 0; f < i; ++f, b = ae) {
@@ -11640,7 +11640,7 @@ var es = {};
11640
11640
  m += ">";
11641
11641
  } else
11642
11642
  m = "", o = null;
11643
- for (h = n.x, T = n.y, R = T.a, S = R.length, k = T.b, D = k.length, Y = T.c, U = Y.length, B = e.bk(h, t), _ = "", J = "", f = 0; f < S; ++f, J = ae) _ += J + e.bk(R[f], t);
11643
+ for (h = n.x, T = n.y, M = T.a, S = M.length, k = T.b, D = k.length, Y = T.c, U = Y.length, B = e.bk(h, t), _ = "", J = "", f = 0; f < S; ++f, J = ae) _ += J + e.bk(M[f], t);
11644
11644
  if (D > 0) {
11645
11645
  for (_ += J + "[", J = "", f = 0; f < D; ++f, J = ae) _ += J + e.bk(k[f], t);
11646
11646
  _ += "]";
@@ -11952,7 +11952,7 @@ var es = {};
11952
11952
  return o == null && (o = t.d = /* @__PURE__ */ new Map()), i = o.get(r), i == null && (i = e.aJ(n, t, null, r, null, !1) ? 1 : 0, o.set(r, i)), i !== 0;
11953
11953
  },
11954
11954
  aJ(n, t, r, i, o, l) {
11955
- var f, h, p, m, b, y, w, E, C, T, R;
11955
+ var f, h, p, m, b, y, w, E, C, T, M;
11956
11956
  if (t === i || (e.dz(i) ? f = !0 : f = i === u.tw, f) || (h = t.w, h === 4)) return !0;
11957
11957
  if (e.dz(t)) return !1;
11958
11958
  if (f = t.w, f === 1 || (p = h === 14, p && e.aJ(n, r[t.x], r, i, o, !1)))
@@ -11978,19 +11978,19 @@ var es = {};
11978
11978
  if (t === u.ud) return !0;
11979
11979
  if (h !== 13 || (y = t.y, w = i.y, E = y.length, E !== w.length)) return !1;
11980
11980
  for (r = r == null ? y : y.concat(r), o = o == null ? w : w.concat(o), C = 0; C < E; ++C)
11981
- if (T = y[C], R = w[C], !e.aJ(n, T, r, R, o, !1) || !e.aJ(n, R, o, T, r, !1)) return !1;
11981
+ if (T = y[C], M = w[C], !e.aJ(n, T, r, M, o, !1) || !e.aJ(n, M, o, T, r, !1)) return !1;
11982
11982
  return e.zJ(n, t.x, r, i.x, o, !1);
11983
11983
  }
11984
11984
  return m === 12 ? t === u.ud ? !0 : f ? !1 : e.zJ(n, t, r, i, o, !1) : h === 9 ? m !== 9 ? !1 : e.ET(n, t, r, i, o, !1) : b && m === 11 ? e.EX(n, t, r, i, o, !1) : !1;
11985
11985
  },
11986
11986
  zJ(n, t, r, i, o, l) {
11987
- var f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae;
11988
- if (!e.aJ(n, t.x, r, i.x, o, !1) || (f = t.y, h = i.y, p = f.a, m = h.a, b = p.length, y = m.length, b > y) || (w = y - b, E = f.b, C = h.b, T = E.length, R = C.length, b + T < y + R)) return !1;
11987
+ var f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae;
11988
+ if (!e.aJ(n, t.x, r, i.x, o, !1) || (f = t.y, h = i.y, p = f.a, m = h.a, b = p.length, y = m.length, b > y) || (w = y - b, E = f.b, C = h.b, T = E.length, M = C.length, b + T < y + M)) return !1;
11989
11989
  for (S = 0; S < b; ++S)
11990
11990
  if (k = p[S], !e.aJ(n, m[S], o, k, r, !1)) return !1;
11991
11991
  for (S = 0; S < w; ++S)
11992
11992
  if (k = E[S], !e.aJ(n, m[b + S], o, k, r, !1)) return !1;
11993
- for (S = 0; S < R; ++S)
11993
+ for (S = 0; S < M; ++S)
11994
11994
  if (k = E[w + S], !e.aJ(n, C[S], o, k, r, !1)) return !1;
11995
11995
  for (D = f.c, Y = h.c, U = D.length, B = Y.length, _ = 0, J = 0; J < B; J += 3)
11996
11996
  for (ae = Y[J]; ; ) {
@@ -12258,7 +12258,7 @@ var es = {};
12258
12258
  return n;
12259
12259
  },
12260
12260
  DD(n, t, r, i, o, l, f, h) {
12261
- var p, m, b, y, w, E, C, T, R, S = h >>> 2, k = 3 - (h & 3);
12261
+ var p, m, b, y, w, E, C, T, M, S = h >>> 2, k = 3 - (h & 3);
12262
12262
  for (p = t.length, m = n.length, b = l.length, y = r, w = 0; y < i; ++y) {
12263
12263
  if (!(y < p)) return e.p(t, y);
12264
12264
  if (E = t[y], w = (w | E) >>> 0, S = (S << 8 | E) & 16777215, --k, k === 0) {
@@ -12275,22 +12275,22 @@ var es = {};
12275
12275
  }
12276
12276
  if (w >= 0 && w <= 255) {
12277
12277
  if (k < 3) {
12278
- if (C = f + 1, R = C + 1, 3 - k === 1) {
12278
+ if (C = f + 1, M = C + 1, 3 - k === 1) {
12279
12279
  if (p = S >>> 2 & 63, !(p < m)) return e.p(n, p);
12280
12280
  if (!(f < b)) return e.p(l, f);
12281
12281
  if (l[f] = n.charCodeAt(p), p = S << 4 & 63, !(p < m)) return e.p(n, p);
12282
12282
  if (!(C < b)) return e.p(l, C);
12283
- if (l[C] = n.charCodeAt(p), f = R + 1, !(R < b)) return e.p(l, R);
12284
- if (l[R] = 61, !(f < b)) return e.p(l, f);
12283
+ if (l[C] = n.charCodeAt(p), f = M + 1, !(M < b)) return e.p(l, M);
12284
+ if (l[M] = 61, !(f < b)) return e.p(l, f);
12285
12285
  l[f] = 61;
12286
12286
  } else {
12287
12287
  if (p = S >>> 10 & 63, !(p < m)) return e.p(n, p);
12288
12288
  if (!(f < b)) return e.p(l, f);
12289
12289
  if (l[f] = n.charCodeAt(p), p = S >>> 4 & 63, !(p < m)) return e.p(n, p);
12290
12290
  if (!(C < b)) return e.p(l, C);
12291
- if (l[C] = n.charCodeAt(p), f = R + 1, p = S << 2 & 63, !(p < m)) return e.p(n, p);
12292
- if (!(R < b)) return e.p(l, R);
12293
- if (l[R] = n.charCodeAt(p), !(f < b)) return e.p(l, f);
12291
+ if (l[C] = n.charCodeAt(p), f = M + 1, p = S << 2 & 63, !(p < m)) return e.p(n, p);
12292
+ if (!(M < b)) return e.p(l, M);
12293
+ if (l[M] = n.charCodeAt(p), !(f < b)) return e.p(l, f);
12294
12294
  l[f] = 61;
12295
12295
  }
12296
12296
  return 0;
@@ -12306,7 +12306,7 @@ var es = {};
12306
12306
  throw e.k(e.ww(t, "Not a byte value at index " + y + ": 0x" + g.BM(t[y], 16), null));
12307
12307
  },
12308
12308
  DC(n, t, r, i, o, l) {
12309
- var f, h, p, m, b, y, w, E, C, T, R = "Invalid encoding before padding", S = "Invalid character", k = a.e.aS(l, 2), D = l & 3, Y = A.AV();
12309
+ var f, h, p, m, b, y, w, E, C, T, M = "Invalid encoding before padding", S = "Invalid character", k = a.e.aS(l, 2), D = l & 3, Y = A.AV();
12310
12310
  for (f = n.length, h = Y.length, p = i.length, m = t, b = 0; m < r; ++m) {
12311
12311
  if (!(m < f)) return e.p(n, m);
12312
12312
  if (y = n.charCodeAt(m), b |= y, w = y & 127, !(w < h)) return e.p(Y, w);
@@ -12321,12 +12321,12 @@ var es = {};
12321
12321
  } else if (E === -1 && D > 1) {
12322
12322
  if (b > 127) break;
12323
12323
  if (D === 3) {
12324
- if (k & 3) throw e.k(e.aQ(R, n, m));
12324
+ if (k & 3) throw e.k(e.aQ(M, n, m));
12325
12325
  if (C = o + 1, !(o < p)) return e.p(i, o);
12326
12326
  if (i[o] = k >>> 10, !(C < p)) return e.p(i, C);
12327
12327
  i[C] = k >>> 2;
12328
12328
  } else {
12329
- if (k & 15) throw e.k(e.aQ(R, n, m));
12329
+ if (k & 15) throw e.k(e.aQ(M, n, m));
12330
12330
  if (!(o < p)) return e.p(i, o);
12331
12331
  i[o] = k >>> 4;
12332
12332
  }
@@ -12667,7 +12667,7 @@ var es = {};
12667
12667
  return new e.k9(n, t.gjf(), t.gjp(), t.gjg());
12668
12668
  },
12669
12669
  n2(n) {
12670
- var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S = null, k = A.AH().c2(n);
12670
+ var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S = null, k = A.AH().c2(n);
12671
12671
  if (k != null) {
12672
12672
  if (t = new e.n3(), r = k.b, 1 >= r.length) return e.p(r, 1);
12673
12673
  if (i = r[1], i.toString, o = e.bw(i, S), 2 >= r.length) return e.p(r, 2);
@@ -12685,8 +12685,8 @@ var es = {};
12685
12685
  p -= C * (t.$1(r[11]) + 60 * T);
12686
12686
  }
12687
12687
  }
12688
- if (R = e.aE(o, l, f, h, p, m, y + a.f.aP(b % 1e3 / 1e3), w), R == null) throw e.k(e.aQ("Time out of range", n, S));
12689
- return e.js(R, w);
12688
+ if (M = e.aE(o, l, f, h, p, m, y + a.f.aP(b % 1e3 / 1e3), w), M == null) throw e.k(e.aQ("Time out of range", n, S));
12689
+ return e.js(M, w);
12690
12690
  } else throw e.k(e.aQ("Invalid date format", n, S));
12691
12691
  },
12692
12692
  C2(n) {
@@ -12856,9 +12856,9 @@ var es = {};
12856
12856
  var t = a.i.ci(n), r = e.kh(t, null);
12857
12857
  return r ?? e.di(t);
12858
12858
  },
12859
- I(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k) {
12859
+ I(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k) {
12860
12860
  var D;
12861
- return a.b === r ? (D = n.gp(n), t = g.n(t), e.ba(e.l(e.l(A.b7(), D), t))) : a.b === i ? (D = n.gp(n), t = g.n(t), r = g.n(r), e.ba(e.l(e.l(e.l(A.b7(), D), t), r))) : a.b === o ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), e.ba(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i))) : a.b === l ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), e.ba(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o))) : a.b === f ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l))) : a.b === h ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f))) : a.b === p ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h))) : a.b === m ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p))) : a.b === b ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m))) : a.b === y ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b))) : a.b === w ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y))) : a.b === E ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w))) : a.b === C ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E))) : a.b === T ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), C = g.n(C), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E), C))) : a.b === R ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), C = g.n(C), T = g.n(T), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E), C), T))) : a.b === S ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), C = g.n(C), T = g.n(T), R = g.n(R), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E), C), T), R))) : a.b === k ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), C = g.n(C), T = g.n(T), R = g.n(R), S = g.n(S), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E), C), T), R), S))) : (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), C = g.n(C), T = g.n(T), R = g.n(R), S = g.n(S), k = g.n(k), k = e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E), C), T), R), S), k)), k);
12861
+ return a.b === r ? (D = n.gp(n), t = g.n(t), e.ba(e.l(e.l(A.b7(), D), t))) : a.b === i ? (D = n.gp(n), t = g.n(t), r = g.n(r), e.ba(e.l(e.l(e.l(A.b7(), D), t), r))) : a.b === o ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), e.ba(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i))) : a.b === l ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), e.ba(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o))) : a.b === f ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l))) : a.b === h ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f))) : a.b === p ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h))) : a.b === m ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p))) : a.b === b ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m))) : a.b === y ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b))) : a.b === w ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y))) : a.b === E ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w))) : a.b === C ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E))) : a.b === T ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), C = g.n(C), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E), C))) : a.b === M ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), C = g.n(C), T = g.n(T), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E), C), T))) : a.b === S ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), C = g.n(C), T = g.n(T), M = g.n(M), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E), C), T), M))) : a.b === k ? (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), C = g.n(C), T = g.n(T), M = g.n(M), S = g.n(S), e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E), C), T), M), S))) : (D = n.gp(n), t = g.n(t), r = g.n(r), i = g.n(i), o = g.n(o), l = g.n(l), f = g.n(f), h = g.n(h), p = g.n(p), m = g.n(m), b = g.n(b), y = g.n(y), w = g.n(w), E = g.n(E), C = g.n(C), T = g.n(T), M = g.n(M), S = g.n(S), k = g.n(k), k = e.ba(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(e.l(A.b7(), D), t), r), i), o), l), f), h), p), m), b), y), w), E), C), T), M), S), k)), k);
12862
12862
  },
12863
12863
  kc(n) {
12864
12864
  var t, r, i = A.b7();
@@ -13081,8 +13081,8 @@ var es = {};
13081
13081
  return t.a(n);
13082
13082
  },
13083
13083
  Ds(n) {
13084
- var t, r, i, o, l, f, h = null, p = "variantSelected", m = "customer", b = "stockChange", y = u.f, w = u.N, E = y.a(n.h(0, "taxes")).H(0, new e.qo(), w, u.V), C = e.m(n.h(0, "id")), T = e.m(n.h(0, "productId")), R = u.z, S = e.wT(e.r(y.a(n.h(0, "product")), w, R)), k = e.yL(e.r(y.a(n.h(0, "is")), w, R)), D = n.h(0, p) == null ? h : e.wU(e.r(y.a(n.h(0, p)), w, R)), Y = g.F(u.j.a(n.h(0, "subItems")), new e.qp(), u.h);
13085
- return Y = e.u(Y, !0, Y.$ti.i("y.E")), t = e.aI(n.h(0, "unitQuantity")), r = e.O(n.h(0, "quantity")), i = e.m(n.h(0, "remark")), o = e.be(e.r(y.a(n.h(0, "createdBy")), w, R)), l = n.h(0, m) == null ? h : e.wS(e.r(y.a(n.h(0, m)), w, R)), f = n.h(0, b) == null ? h : e.yS(e.r(y.a(n.h(0, b)), w, R)), new e.ie(E, C, T, S, k, D, Y, t, r, i, o, l, f, n.h(0, "parent") == null ? h : e.oX(e.r(y.a(n.h(0, "parent")), w, R)));
13084
+ var t, r, i, o, l, f, h = null, p = "variantSelected", m = "customer", b = "stockChange", y = u.f, w = u.N, E = y.a(n.h(0, "taxes")).H(0, new e.qo(), w, u.V), C = e.m(n.h(0, "id")), T = e.m(n.h(0, "productId")), M = u.z, S = e.wT(e.r(y.a(n.h(0, "product")), w, M)), k = e.yL(e.r(y.a(n.h(0, "is")), w, M)), D = n.h(0, p) == null ? h : e.wU(e.r(y.a(n.h(0, p)), w, M)), Y = g.F(u.j.a(n.h(0, "subItems")), new e.qp(), u.h);
13085
+ return Y = e.u(Y, !0, Y.$ti.i("y.E")), t = e.aI(n.h(0, "unitQuantity")), r = e.O(n.h(0, "quantity")), i = e.m(n.h(0, "remark")), o = e.be(e.r(y.a(n.h(0, "createdBy")), w, M)), l = n.h(0, m) == null ? h : e.wS(e.r(y.a(n.h(0, m)), w, M)), f = n.h(0, b) == null ? h : e.yS(e.r(y.a(n.h(0, b)), w, M)), new e.ie(E, C, T, S, k, D, Y, t, r, i, o, l, f, n.h(0, "parent") == null ? h : e.oX(e.r(y.a(n.h(0, "parent")), w, M)));
13086
13086
  },
13087
13087
  Dt(n) {
13088
13088
  var t, r, i, o, l = null, f = u.N, h = u.P, p = n.gI().H(0, new e.qq(), f, h), m = n.d.j(), b = n.e.j(), y = n.f;
@@ -13258,12 +13258,12 @@ var es = {};
13258
13258
  z8(n, t) {
13259
13259
  return t.a(n);
13260
13260
  },
13261
- Dx(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce) {
13262
- return new e.hu(Y, D, Oe, De, y, xe, U, ae, J, _, B, Ye, Le, ce, Ie, f, Ce, Ae, S, w, Ee, l, k, R, h, r, p, Ne, C, Fe, i, n, m, t, Pe, o, E, T, b);
13261
+ Dx(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce) {
13262
+ return new e.hu(Y, D, Oe, De, y, xe, U, ae, J, _, B, Ye, Le, ce, Ie, f, Ce, Ae, S, w, Ee, l, k, M, h, r, p, Ne, C, Fe, i, n, m, t, Pe, o, E, T, b);
13263
13263
  },
13264
13264
  CF(n) {
13265
- var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae = null, Ce = n.b.j(), Ae = u.P, Ee = g.F(n.gZ(), new e.om(), Ae);
13266
- return Ee = e.u(Ee, !0, Ee.$ti.i("y.E")), t = a.a7.h(0, n.d), t.toString, r = n.e.j(), i = n.y, i = i == null ? ae : i.j(), o = n.z, o = o == null ? ae : o.j(), l = n.as, l = l == null ? ae : l.j(), f = n.ax, f = f == null ? ae : f.j(), h = n.ay, h = h == null ? ae : h.j(), p = n.CW, p = p == null ? ae : p.j(), m = n.gbu(), m == null ? m = ae : (m = g.F(m, new e.on(), Ae), m = e.u(m, !0, m.$ti.i("y.E"))), b = n.gaH(), b = b == null ? ae : b.H(0, new e.oo(), u.N, Ae), y = n.gbt(), y == null ? y = ae : (y = g.F(y, new e.op(), Ae), y = e.u(y, !0, y.$ti.i("y.E"))), w = n.fx, w = w == null ? ae : w.j(), E = u.N, C = n.gV().H(0, new e.oq(), E, Ae), T = n.gI().H(0, new e.or(), E, Ae), R = n.k1.j(), S = n.k2, S = S == null ? ae : S.j(), k = n.k3, k = k == null ? ae : k.j(), D = n.k4, D = D == null ? ae : D.j(), Y = n.ok, Y = Y == null ? ae : Y.j(), U = n.p1, U = U == null ? ae : U.j(), B = n.p2, B = B == null ? ae : B.j(), _ = n.gbj(), _ = _ == null ? ae : _.H(0, new e.os(), E, Ae), J = n.gbs(), Ae = J == null ? ae : J.H(0, new e.ot(), E, Ae), J = n.R8, J = J == null ? ae : J.j(), e.v(["productId", n.a, "product", Ce, "subItems", Ee, "status", t, "is", r, "unitQuantity", n.f, "quantity", n.r, "remark", n.w, "refundedFrom", n.x, "refundBy", i, "refundApprovedBy", o, "voidAt", n.Q, "voidBy", l, "voidReason", n.at, "voidApprovedBy", f, "createdBy", h, "sentAt", n.ch, "sentBy", p, "printChecklistRecords", m, "kitchenStation", b, "servedAt", n.db, "collectedAt", n.dx, "printReceiptAt", n.dy, "printBy", y, "customer", w, "adjustments", C, "deletedAt", n.go, "taxes", T, "nettTotal", R, "stockChange", S, "baseTotal", k, "addonTotal", D, "grossTotal", Y, "adjustmentTotal", U, "variantSelected", B, "billDiscount", _, "moveFrom", Ae, "parent", J, "_id", n.RG], E, u.z);
13265
+ var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae = null, Ce = n.b.j(), Ae = u.P, Ee = g.F(n.gZ(), new e.om(), Ae);
13266
+ return Ee = e.u(Ee, !0, Ee.$ti.i("y.E")), t = a.a7.h(0, n.d), t.toString, r = n.e.j(), i = n.y, i = i == null ? ae : i.j(), o = n.z, o = o == null ? ae : o.j(), l = n.as, l = l == null ? ae : l.j(), f = n.ax, f = f == null ? ae : f.j(), h = n.ay, h = h == null ? ae : h.j(), p = n.CW, p = p == null ? ae : p.j(), m = n.gbu(), m == null ? m = ae : (m = g.F(m, new e.on(), Ae), m = e.u(m, !0, m.$ti.i("y.E"))), b = n.gaH(), b = b == null ? ae : b.H(0, new e.oo(), u.N, Ae), y = n.gbt(), y == null ? y = ae : (y = g.F(y, new e.op(), Ae), y = e.u(y, !0, y.$ti.i("y.E"))), w = n.fx, w = w == null ? ae : w.j(), E = u.N, C = n.gV().H(0, new e.oq(), E, Ae), T = n.gI().H(0, new e.or(), E, Ae), M = n.k1.j(), S = n.k2, S = S == null ? ae : S.j(), k = n.k3, k = k == null ? ae : k.j(), D = n.k4, D = D == null ? ae : D.j(), Y = n.ok, Y = Y == null ? ae : Y.j(), U = n.p1, U = U == null ? ae : U.j(), B = n.p2, B = B == null ? ae : B.j(), _ = n.gbj(), _ = _ == null ? ae : _.H(0, new e.os(), E, Ae), J = n.gbs(), Ae = J == null ? ae : J.H(0, new e.ot(), E, Ae), J = n.R8, J = J == null ? ae : J.j(), e.v(["productId", n.a, "product", Ce, "subItems", Ee, "status", t, "is", r, "unitQuantity", n.f, "quantity", n.r, "remark", n.w, "refundedFrom", n.x, "refundBy", i, "refundApprovedBy", o, "voidAt", n.Q, "voidBy", l, "voidReason", n.at, "voidApprovedBy", f, "createdBy", h, "sentAt", n.ch, "sentBy", p, "printChecklistRecords", m, "kitchenStation", b, "servedAt", n.db, "collectedAt", n.dx, "printReceiptAt", n.dy, "printBy", y, "customer", w, "adjustments", C, "deletedAt", n.go, "taxes", T, "nettTotal", M, "stockChange", S, "baseTotal", k, "addonTotal", D, "grossTotal", Y, "adjustmentTotal", U, "variantSelected", B, "billDiscount", _, "moveFrom", Ae, "parent", J, "_id", n.RG], E, u.z);
13267
13267
  },
13268
13268
  f5(n) {
13269
13269
  var t = u.N;
@@ -13279,9 +13279,9 @@ var es = {};
13279
13279
  cN: function(t, r) {
13280
13280
  this.a = t, this.b = r;
13281
13281
  },
13282
- hu: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Me) {
13282
+ hu: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Re) {
13283
13283
  var qe = this;
13284
- qe.a = t, qe.b = r, qe.c = i, qe.d = o, qe.e = l, qe.f = f, qe.r = h, qe.w = p, qe.x = m, qe.y = b, qe.z = y, qe.Q = w, qe.as = E, qe.at = C, qe.ax = T, qe.ay = R, qe.ch = S, qe.CW = k, qe.cx = D, qe.cy = Y, qe.db = U, qe.dx = B, qe.dy = _, qe.fr = J, qe.fx = ae, qe.fy = Ce, qe.go = Ae, qe.id = Ee, qe.k1 = De, qe.k2 = Fe, qe.k3 = Oe, qe.k4 = Ne, qe.ok = xe, qe.p1 = Pe, qe.p2 = Ie, qe.p3 = Ye, qe.p4 = Le, qe.R8 = ce, qe.RG = Me;
13284
+ qe.a = t, qe.b = r, qe.c = i, qe.d = o, qe.e = l, qe.f = f, qe.r = h, qe.w = p, qe.x = m, qe.y = b, qe.z = y, qe.Q = w, qe.as = E, qe.at = C, qe.ax = T, qe.ay = M, qe.ch = S, qe.CW = k, qe.cx = D, qe.cy = Y, qe.db = U, qe.dx = B, qe.dy = _, qe.fr = J, qe.fx = ae, qe.fy = Ce, qe.go = Ae, qe.id = Ee, qe.k1 = De, qe.k2 = Fe, qe.k3 = Oe, qe.k4 = Ne, qe.ok = xe, qe.p1 = Pe, qe.p2 = Ie, qe.p3 = Ye, qe.p4 = Le, qe.R8 = ce, qe.RG = Re;
13285
13285
  },
13286
13286
  qw: function() {
13287
13287
  },
@@ -13314,29 +13314,29 @@ var es = {};
13314
13314
  za(n, t) {
13315
13315
  return t.a(n);
13316
13316
  },
13317
- wY(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Me, qe, ut, ot, dt) {
13318
- return new e.dp(T, ce, ut, qe, D, r, Ce, l, ot, S, xe, Oe, Ne, b, m, Ie, U, R, f, Ae, y, E, Me, Ee, Fe, h, Ye, C, _, t, J, Le, n, ae, i, k, dt, De, Pe, p, o, Y, B, w);
13317
+ wY(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Re, qe, ut, ot, dt) {
13318
+ return new e.dp(T, ce, ut, qe, D, r, Ce, l, ot, S, xe, Oe, Ne, b, m, Ie, U, M, f, Ae, y, E, Re, Ee, Fe, h, Ye, C, _, t, J, Le, n, ae, i, k, dt, De, Pe, p, o, Y, B, w);
13319
13319
  },
13320
- z_(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k) {
13321
- return new e.dn(p, m, b, k, C, t, y, S, R, T, h, i, w, o, l, f, E, r, n);
13320
+ z_(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k) {
13321
+ return new e.dn(p, m, b, k, C, t, y, S, M, T, h, i, w, o, l, f, E, r, n);
13322
13322
  },
13323
- wZ(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D) {
13324
- return new e.hF(n, t, r, i, l, f, h, p, m, b, y, w, E, T, R, S, k, D, o, C);
13323
+ wZ(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D) {
13324
+ return new e.hF(n, t, r, i, l, f, h, p, m, b, y, w, E, T, M, S, k, D, o, C);
13325
13325
  },
13326
- qL(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le) {
13327
- return new e.dq(D, k, Fe, Ee, b, Ne, Y, J, _, B, U, Ie, Ye, Le, Pe, f, ae, Ce, R, y, Ae, l, S, T, h, r, p, Oe, E, De, i, n, m, t, xe, o, w, C);
13326
+ qL(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le) {
13327
+ return new e.dq(D, k, Fe, Ee, b, Ne, Y, J, _, B, U, Ie, Ye, Le, Pe, f, ae, Ce, M, y, Ae, l, S, T, h, r, p, Oe, E, De, i, n, m, t, xe, o, w, C);
13328
13328
  },
13329
13329
  CU(n) {
13330
13330
  var t = g.F(u.j.a(n.h(0, "orderIds")), new e.po(), u.N);
13331
13331
  return new e.hK(e.u(t, !0, t.$ti.i("y.E")));
13332
13332
  },
13333
13333
  oE(n) {
13334
- var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le = null, ce = "delivery", Me = "approvedBy", qe = "membership", ut = "inHouseDelivery", ot = "foodpandaPickup", dt = "grabfoodPickup", he = "shopeefoodPickup", He = "queueInfo", Ft = "voucherIssued", jt = "dynamicQrSession", tt = "fullTaxInvoice", x = e.h(n.h(0, "_id")), P = e.m(n.h(0, "seqNumber")), O = u.N, q = e.aN(a.eP, n.h(0, "status"), u.ce, O), $ = e.h(n.h(0, "slot")), W = u.f, ye = W.a(n.h(0, "items")).H(0, new e.oF(), O, u.B), pe = W.a(n.h(0, "adjustments")).H(0, new e.oG(), O, u.r), Be = e.O(e.Aj(n.h(0, "person"))), Ve = e.m(n.h(0, "completedAt")), Ge = u.U, gt = Ge.a(n.h(0, "taxes"));
13335
- return gt = gt == null ? Le : gt.H(0, new e.oH(), O, u.uj), t = u.z, r = e.r(W.a(n.h(0, "is")), O, t), i = e.ao(r.h(0, "takeaway")), r = e.X(r.h(0, ce)), o = e.m(n.h(0, "refundedFrom")), n.h(0, "refund") == null ? l = Le : (l = e.r(W.a(n.h(0, "refund")), O, t), f = l.h(0, "by") == null ? Le : e.be(e.r(W.a(l.h(0, "by")), O, t)), h = l.h(0, Me) == null ? Le : e.be(e.r(W.a(l.h(0, Me)), O, t)), l = new e.hM(f, h, e.m(l.h(0, "reason")))), f = u.g, h = f.a(n.h(0, "refundRecord")), h == null ? h = Le : (h = g.F(h, new e.oI(), O), h = e.u(h, !0, h.$ti.i("y.E"))), p = Ge.a(n.h(0, "effects")), p = p == null ? Le : p.H(0, new e.oJ(), O, u.t), f = f.a(n.h(0, "effectGroups")), f == null ? f = Le : (f = g.F(f, new e.oK(), u.eS), f = e.u(f, !0, f.$ti.i("y.E"))), m = n.h(0, "reward") == null ? Le : e.CV(e.r(W.a(n.h(0, "reward")), O, t)), b = n.h(0, qe) == null ? Le : e.CQ(e.r(W.a(n.h(0, qe)), O, t)), n.h(0, ut) == null ? y = Le : (y = e.r(W.a(n.h(0, ut)), O, t), y = new e.hB(e.h(y.h(0, "name")), e.h(y.h(0, "contactNumber")), e.h(y.h(0, "addressLine")), e.m(y.h(0, "deliveryAt")), e.m(y.h(0, "remark")), e.a6(e.r(W.a(y.h(0, "deliveryFee")), O, t)), e.m(y.h(0, "orderId")))), w = n.h(0, ce) == null ? Le : e.CH(e.r(W.a(n.h(0, ce)), O, t)), E = n.h(0, "pickup") == null ? Le : e.CS(e.r(W.a(n.h(0, "pickup")), O, t)), C = n.h(0, ot) == null ? Le : e.wX(e.r(W.a(n.h(0, ot)), O, t)), T = n.h(0, dt) == null ? Le : e.wX(e.r(W.a(n.h(0, dt)), O, t)), R = n.h(0, he) == null ? Le : e.wX(e.r(W.a(n.h(0, he)), O, t)), S = e.m(n.h(0, "preorderOn")), n.h(0, He) == null ? k = Le : (k = e.r(W.a(n.h(0, He)), O, t), k = new e.hL(e.h(k.h(0, "_id")), e.h(k.h(0, "code")), e.h(k.h(0, "createdAt")))), D = n.h(0, "dineIn") == null ? Le : e.CJ(e.r(W.a(n.h(0, "dineIn")), O, t)), Y = e.aI(n.h(0, "roundToNearest")), U = e.a6(e.r(W.a(n.h(0, "grossTotal")), O, t)), B = W.a(n.h(0, "nettTaxes")).H(0, new e.oL(), O, u.uj), _ = e.a6(e.r(W.a(n.h(0, "adjustedTotal")), O, t)), J = e.a6(e.r(W.a(n.h(0, "nettTotal")), O, t)), ae = e.a6(e.r(W.a(n.h(0, "rounding")), O, t)), Ce = g.F(u.j.a(n.h(0, "activeItems")), new e.oM(), O), Ce = e.u(Ce, !0, Ce.$ti.i("y.E")), Ae = W.a(n.h(0, "payments")).H(0, new e.oN(), O, u.c), Ee = e.a6(e.r(W.a(n.h(0, "balance")), O, t)), Ge = Ge.a(n.h(0, "issued")), Ge = Ge == null ? Le : Ge.H(0, new e.oO(), O, u.yS), De = n.h(0, Ft) == null ? Le : e.CY(e.r(W.a(n.h(0, Ft)), O, t)), Fe = n.h(0, "qrOrder") == null ? Le : e.CU(e.r(W.a(n.h(0, "qrOrder")), O, t)), Oe = e.m(n.h(0, "remark")), n.h(0, jt) == null ? Ne = Le : (Ne = e.r(W.a(n.h(0, jt)), O, t), Ne = new e.hy(e.h(Ne.h(0, "id")), e.ao(Ne.h(0, "link")))), xe = e.aI(n.h(0, "calculatorVersion")), Pe = e.m(n.h(0, "machineId")), Ie = e.AE(a.eQ, n.h(0, "minPriceMode"), u.q9, O), n.h(0, tt) == null ? O = Le : (Ye = e.r(W.a(n.h(0, tt)), O, t), Ye = new e.hz(e.h(Ye.h(0, "id")), e.CM(e.r(W.a(Ye.h(0, "printMeta")), O, t)), e.m(Ye.h(0, "printedAt")), e.aI(Ye.h(0, "printCount"))), O = Ye), e.wY(Ce, _, pe, Ee, xe, Ve, w, D, Ne, f, p, C, O, T, U, x, y, new e.f6(i, r), Ge, ye, Pe, b, Ie, B, J, Ae, Be, E, S, Fe, k, l, h, o, Oe, m, Y, ae, P, R, $, q, gt, De);
13334
+ var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le = null, ce = "delivery", Re = "approvedBy", qe = "membership", ut = "inHouseDelivery", ot = "foodpandaPickup", dt = "grabfoodPickup", he = "shopeefoodPickup", He = "queueInfo", Ft = "voucherIssued", jt = "dynamicQrSession", tt = "fullTaxInvoice", x = e.h(n.h(0, "_id")), P = e.m(n.h(0, "seqNumber")), O = u.N, q = e.aN(a.eP, n.h(0, "status"), u.ce, O), $ = e.h(n.h(0, "slot")), W = u.f, ye = W.a(n.h(0, "items")).H(0, new e.oF(), O, u.B), pe = W.a(n.h(0, "adjustments")).H(0, new e.oG(), O, u.r), Be = e.O(e.Aj(n.h(0, "person"))), Ve = e.m(n.h(0, "completedAt")), Ge = u.U, gt = Ge.a(n.h(0, "taxes"));
13335
+ return gt = gt == null ? Le : gt.H(0, new e.oH(), O, u.uj), t = u.z, r = e.r(W.a(n.h(0, "is")), O, t), i = e.ao(r.h(0, "takeaway")), r = e.X(r.h(0, ce)), o = e.m(n.h(0, "refundedFrom")), n.h(0, "refund") == null ? l = Le : (l = e.r(W.a(n.h(0, "refund")), O, t), f = l.h(0, "by") == null ? Le : e.be(e.r(W.a(l.h(0, "by")), O, t)), h = l.h(0, Re) == null ? Le : e.be(e.r(W.a(l.h(0, Re)), O, t)), l = new e.hM(f, h, e.m(l.h(0, "reason")))), f = u.g, h = f.a(n.h(0, "refundRecord")), h == null ? h = Le : (h = g.F(h, new e.oI(), O), h = e.u(h, !0, h.$ti.i("y.E"))), p = Ge.a(n.h(0, "effects")), p = p == null ? Le : p.H(0, new e.oJ(), O, u.t), f = f.a(n.h(0, "effectGroups")), f == null ? f = Le : (f = g.F(f, new e.oK(), u.eS), f = e.u(f, !0, f.$ti.i("y.E"))), m = n.h(0, "reward") == null ? Le : e.CV(e.r(W.a(n.h(0, "reward")), O, t)), b = n.h(0, qe) == null ? Le : e.CQ(e.r(W.a(n.h(0, qe)), O, t)), n.h(0, ut) == null ? y = Le : (y = e.r(W.a(n.h(0, ut)), O, t), y = new e.hB(e.h(y.h(0, "name")), e.h(y.h(0, "contactNumber")), e.h(y.h(0, "addressLine")), e.m(y.h(0, "deliveryAt")), e.m(y.h(0, "remark")), e.a6(e.r(W.a(y.h(0, "deliveryFee")), O, t)), e.m(y.h(0, "orderId")))), w = n.h(0, ce) == null ? Le : e.CH(e.r(W.a(n.h(0, ce)), O, t)), E = n.h(0, "pickup") == null ? Le : e.CS(e.r(W.a(n.h(0, "pickup")), O, t)), C = n.h(0, ot) == null ? Le : e.wX(e.r(W.a(n.h(0, ot)), O, t)), T = n.h(0, dt) == null ? Le : e.wX(e.r(W.a(n.h(0, dt)), O, t)), M = n.h(0, he) == null ? Le : e.wX(e.r(W.a(n.h(0, he)), O, t)), S = e.m(n.h(0, "preorderOn")), n.h(0, He) == null ? k = Le : (k = e.r(W.a(n.h(0, He)), O, t), k = new e.hL(e.h(k.h(0, "_id")), e.h(k.h(0, "code")), e.h(k.h(0, "createdAt")))), D = n.h(0, "dineIn") == null ? Le : e.CJ(e.r(W.a(n.h(0, "dineIn")), O, t)), Y = e.aI(n.h(0, "roundToNearest")), U = e.a6(e.r(W.a(n.h(0, "grossTotal")), O, t)), B = W.a(n.h(0, "nettTaxes")).H(0, new e.oL(), O, u.uj), _ = e.a6(e.r(W.a(n.h(0, "adjustedTotal")), O, t)), J = e.a6(e.r(W.a(n.h(0, "nettTotal")), O, t)), ae = e.a6(e.r(W.a(n.h(0, "rounding")), O, t)), Ce = g.F(u.j.a(n.h(0, "activeItems")), new e.oM(), O), Ce = e.u(Ce, !0, Ce.$ti.i("y.E")), Ae = W.a(n.h(0, "payments")).H(0, new e.oN(), O, u.c), Ee = e.a6(e.r(W.a(n.h(0, "balance")), O, t)), Ge = Ge.a(n.h(0, "issued")), Ge = Ge == null ? Le : Ge.H(0, new e.oO(), O, u.yS), De = n.h(0, Ft) == null ? Le : e.CY(e.r(W.a(n.h(0, Ft)), O, t)), Fe = n.h(0, "qrOrder") == null ? Le : e.CU(e.r(W.a(n.h(0, "qrOrder")), O, t)), Oe = e.m(n.h(0, "remark")), n.h(0, jt) == null ? Ne = Le : (Ne = e.r(W.a(n.h(0, jt)), O, t), Ne = new e.hy(e.h(Ne.h(0, "id")), e.ao(Ne.h(0, "link")))), xe = e.aI(n.h(0, "calculatorVersion")), Pe = e.m(n.h(0, "machineId")), Ie = e.AE(a.eQ, n.h(0, "minPriceMode"), u.q9, O), n.h(0, tt) == null ? O = Le : (Ye = e.r(W.a(n.h(0, tt)), O, t), Ye = new e.hz(e.h(Ye.h(0, "id")), e.CM(e.r(W.a(Ye.h(0, "printMeta")), O, t)), e.m(Ye.h(0, "printedAt")), e.aI(Ye.h(0, "printCount"))), O = Ye), e.wY(Ce, _, pe, Ee, xe, Ve, w, D, Ne, f, p, C, O, T, U, x, y, new e.f6(i, r), Ge, ye, Pe, b, Ie, B, J, Ae, Be, E, S, Fe, k, l, h, o, Oe, m, Y, ae, P, M, $, q, gt, De);
13336
13336
  },
13337
13337
  CN(n) {
13338
- var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe = null, Ie = a.eP.h(0, n.c);
13339
- return Ie.toString, t = u.N, r = u.P, i = n.gJ().H(0, new e.oP(), t, r), o = n.gV().H(0, new e.oQ(), t, r), l = n.gI(), l = l == null ? Pe : l.H(0, new e.oR(), t, r), f = n.y.j(), h = n.Q, h = h == null ? Pe : h.j(), p = n.gdL(), m = n.gag(), m = m == null ? Pe : m.H(0, new e.oS(), t, r), b = n.gc1(), b == null ? b = Pe : (b = g.F(b, new e.oT(), r), b = e.u(b, !0, b.$ti.i("y.E"))), y = n.ay, y = y == null ? Pe : y.j(), w = n.ch, w = w == null ? Pe : w.j(), E = n.CW, E = E == null ? Pe : E.j(), C = n.cx, C = C == null ? Pe : C.j(), T = n.cy, T = T == null ? Pe : T.j(), R = n.db, R = R == null ? Pe : R.j(), S = n.dx, S = S == null ? Pe : S.j(), k = n.dy, k = k == null ? Pe : k.j(), D = n.fx, D = D == null ? Pe : D.j(), Y = n.fy, Y = Y == null ? Pe : Y.j(), U = n.id.j(), B = n.gdD().H(0, new e.oU(), t, r), _ = n.k2.j(), J = n.k3.j(), ae = n.k4.j(), Ce = n.gby(), Ae = n.gaV().H(0, new e.oV(), t, r), Ee = n.p2.j(), De = n.gdz(), r = De == null ? Pe : De.H(0, new e.oW(), t, r), De = n.p4, De = De == null ? Pe : De.j(), Fe = n.R8, Fe = Fe == null ? Pe : Fe.j(), Oe = n.rx, Oe = Oe == null ? Pe : Oe.j(), Ne = a.eQ.h(0, n.x1), xe = n.x2, xe = xe == null ? Pe : xe.j(), e.v(["_id", n.a, "seqNumber", n.b, "status", Ie, "slot", n.d, "items", i, "adjustments", o, "person", n.r, "completedAt", n.w, "taxes", l, "is", f, "refundedFrom", n.z, "refund", h, "refundRecord", p, "effects", m, "effectGroups", b, "reward", y, "membership", w, "inHouseDelivery", E, "delivery", C, "pickup", T, "foodpandaPickup", R, "grabfoodPickup", S, "shopeefoodPickup", k, "preorderOn", n.fr, "queueInfo", D, "dineIn", Y, "roundToNearest", n.go, "grossTotal", U, "nettTaxes", B, "adjustedTotal", _, "nettTotal", J, "rounding", ae, "activeItems", Ce, "payments", Ae, "balance", Ee, "issued", r, "voucherIssued", De, "qrOrder", Fe, "remark", n.RG, "dynamicQrSession", Oe, "calculatorVersion", n.ry, "machineId", n.to, "minPriceMode", Ne, "fullTaxInvoice", xe], t, u.z);
13338
+ var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe = null, Ie = a.eP.h(0, n.c);
13339
+ return Ie.toString, t = u.N, r = u.P, i = n.gJ().H(0, new e.oP(), t, r), o = n.gV().H(0, new e.oQ(), t, r), l = n.gI(), l = l == null ? Pe : l.H(0, new e.oR(), t, r), f = n.y.j(), h = n.Q, h = h == null ? Pe : h.j(), p = n.gdL(), m = n.gag(), m = m == null ? Pe : m.H(0, new e.oS(), t, r), b = n.gc1(), b == null ? b = Pe : (b = g.F(b, new e.oT(), r), b = e.u(b, !0, b.$ti.i("y.E"))), y = n.ay, y = y == null ? Pe : y.j(), w = n.ch, w = w == null ? Pe : w.j(), E = n.CW, E = E == null ? Pe : E.j(), C = n.cx, C = C == null ? Pe : C.j(), T = n.cy, T = T == null ? Pe : T.j(), M = n.db, M = M == null ? Pe : M.j(), S = n.dx, S = S == null ? Pe : S.j(), k = n.dy, k = k == null ? Pe : k.j(), D = n.fx, D = D == null ? Pe : D.j(), Y = n.fy, Y = Y == null ? Pe : Y.j(), U = n.id.j(), B = n.gdD().H(0, new e.oU(), t, r), _ = n.k2.j(), J = n.k3.j(), ae = n.k4.j(), Ce = n.gby(), Ae = n.gaV().H(0, new e.oV(), t, r), Ee = n.p2.j(), De = n.gdz(), r = De == null ? Pe : De.H(0, new e.oW(), t, r), De = n.p4, De = De == null ? Pe : De.j(), Fe = n.R8, Fe = Fe == null ? Pe : Fe.j(), Oe = n.rx, Oe = Oe == null ? Pe : Oe.j(), Ne = a.eQ.h(0, n.x1), xe = n.x2, xe = xe == null ? Pe : xe.j(), e.v(["_id", n.a, "seqNumber", n.b, "status", Ie, "slot", n.d, "items", i, "adjustments", o, "person", n.r, "completedAt", n.w, "taxes", l, "is", f, "refundedFrom", n.z, "refund", h, "refundRecord", p, "effects", m, "effectGroups", b, "reward", y, "membership", w, "inHouseDelivery", E, "delivery", C, "pickup", T, "foodpandaPickup", M, "grabfoodPickup", S, "shopeefoodPickup", k, "preorderOn", n.fr, "queueInfo", D, "dineIn", Y, "roundToNearest", n.go, "grossTotal", U, "nettTaxes", B, "adjustedTotal", _, "nettTotal", J, "rounding", ae, "activeItems", Ce, "payments", Ae, "balance", Ee, "issued", r, "voucherIssued", De, "qrOrder", Fe, "remark", n.RG, "dynamicQrSession", Oe, "calculatorVersion", n.ry, "machineId", n.to, "minPriceMode", Ne, "fullTaxInvoice", xe], t, u.z);
13340
13340
  },
13341
13341
  CG(n) {
13342
13342
  var t, r, i = "adjustmentRule", o = u.N, l = e.aN(a.u, n.h(0, "cause"), u.E, o), f = e.m(n.h(0, "referenceId")), h = e.m(n.h(0, "reason")), p = u.f, m = u.z, b = e.f5(e.r(p.a(n.h(0, "adjustment")), o, m)), y = n.h(0, i) == null ? null : e.wW(e.r(p.a(n.h(0, i)), o, m)), w = e.a6(e.r(p.a(n.h(0, "total")), o, m)), E = e.be(e.r(p.a(n.h(0, "createdBy")), o, m));
@@ -13346,8 +13346,8 @@ var es = {};
13346
13346
  return new e.hv(e.h(n.h(0, "id")), e.m(n.h(0, "name")));
13347
13347
  },
13348
13348
  CH(n) {
13349
- var t, r, i, o, l, f, h, p, m = "name", b = null, y = "customer", w = "otherCharge", E = "deliveryFee", C = "commissionCharge", T = e.m(n.h(0, "_id")), R = e.h(n.h(0, "key")), S = e.h(n.h(0, m)), k = e.h(n.h(0, "slotPrefix")), D = e.m(n.h(0, "paymentTypeKey")), Y = e.m(n.h(0, "catalogId")), U = e.m(n.h(0, "orderId")), B = e.m(n.h(0, "remark")), _ = e.X(n.h(0, "preparing")), J = e.m(n.h(0, "pickupRef"));
13350
- return n.h(0, "driver") == null ? t = b : (t = u.f, r = u.N, i = u.z, o = e.r(t.a(n.h(0, "driver")), r, i), l = e.h(o.h(0, m)), f = e.h(o.h(0, "phone")), o.h(0, "vehicle") == null ? t = b : (t = e.r(t.a(o.h(0, "vehicle")), r, i), t = new e.hU(e.m(t.h(0, "physicalVehicleType")), e.m(t.h(0, "licensePlate")), e.m(t.h(0, "model")))), t = new e.hT(l, f, t)), n.h(0, y) == null ? r = b : (r = e.r(u.f.a(n.h(0, y)), u.N, u.z), r = new e.hS(e.h(r.h(0, m)), e.h(r.h(0, "phone")), e.h(r.h(0, "address")))), i = n.h(0, w) == null ? b : e.a6(e.r(u.f.a(n.h(0, w)), u.N, u.z)), o = e.m(n.h(0, "deliveryAt")), l = n.h(0, E) == null ? b : e.a6(e.r(u.f.a(n.h(0, E)), u.N, u.z)), f = u.U, h = f.a(n.h(0, "deliveryFeeTaxes")), h = h == null ? b : h.H(0, new e.ov(), u.N, u.V), f = f.a(n.h(0, "otherChargeTaxes")), f = f == null ? b : f.H(0, new e.ow(), u.N, u.V), p = n.h(0, C) == null ? b : e.a6(e.r(u.f.a(n.h(0, C)), u.N, u.z)), e.z_(e.X(n.h(0, "canRefund")), Y, p, r, o, l, h, t, T, R, S, U, i, f, D, J, _, B, k);
13349
+ var t, r, i, o, l, f, h, p, m = "name", b = null, y = "customer", w = "otherCharge", E = "deliveryFee", C = "commissionCharge", T = e.m(n.h(0, "_id")), M = e.h(n.h(0, "key")), S = e.h(n.h(0, m)), k = e.h(n.h(0, "slotPrefix")), D = e.m(n.h(0, "paymentTypeKey")), Y = e.m(n.h(0, "catalogId")), U = e.m(n.h(0, "orderId")), B = e.m(n.h(0, "remark")), _ = e.X(n.h(0, "preparing")), J = e.m(n.h(0, "pickupRef"));
13350
+ return n.h(0, "driver") == null ? t = b : (t = u.f, r = u.N, i = u.z, o = e.r(t.a(n.h(0, "driver")), r, i), l = e.h(o.h(0, m)), f = e.h(o.h(0, "phone")), o.h(0, "vehicle") == null ? t = b : (t = e.r(t.a(o.h(0, "vehicle")), r, i), t = new e.hU(e.m(t.h(0, "physicalVehicleType")), e.m(t.h(0, "licensePlate")), e.m(t.h(0, "model")))), t = new e.hT(l, f, t)), n.h(0, y) == null ? r = b : (r = e.r(u.f.a(n.h(0, y)), u.N, u.z), r = new e.hS(e.h(r.h(0, m)), e.h(r.h(0, "phone")), e.h(r.h(0, "address")))), i = n.h(0, w) == null ? b : e.a6(e.r(u.f.a(n.h(0, w)), u.N, u.z)), o = e.m(n.h(0, "deliveryAt")), l = n.h(0, E) == null ? b : e.a6(e.r(u.f.a(n.h(0, E)), u.N, u.z)), f = u.U, h = f.a(n.h(0, "deliveryFeeTaxes")), h = h == null ? b : h.H(0, new e.ov(), u.N, u.V), f = f.a(n.h(0, "otherChargeTaxes")), f = f == null ? b : f.H(0, new e.ow(), u.N, u.V), p = n.h(0, C) == null ? b : e.a6(e.r(u.f.a(n.h(0, C)), u.N, u.z)), e.z_(e.X(n.h(0, "canRefund")), Y, p, r, o, l, h, t, T, M, S, U, i, f, D, J, _, B, k);
13351
13351
  },
13352
13352
  CI(n) {
13353
13353
  var t, r, i, o, l, f, h = null, p = n.z;
@@ -13362,8 +13362,8 @@ var es = {};
13362
13362
  return new e.hA(t == null ? null : t.H(0, new e.oD(), u.N, u.z));
13363
13363
  },
13364
13364
  wT(n) {
13365
- var t, r, i, o, l = null, f = "deliveryPrice", h = "minPrice", p = "originalPrice", m = "takeawayPrice", b = e.m(n.h(0, "categoryName")), y = e.h(n.h(0, "code")), w = n.h(0, "cost") == null ? l : e.a6(e.r(u.f.a(n.h(0, "cost")), u.N, u.z)), E = n.h(0, "costing") == null ? l : e.a6(e.r(u.f.a(n.h(0, "costing")), u.N, u.z)), C = n.h(0, f) == null ? l : e.a6(e.r(u.f.a(n.h(0, f)), u.N, u.z)), T = n.h(0, h) == null ? l : e.a6(e.r(u.f.a(n.h(0, h)), u.N, u.z)), R = e.h(n.h(0, "name")), S = e.m(n.h(0, "name2")), k = e.X(n.h(0, "noSst")), D = e.X(n.h(0, "openPrice")), Y = n.h(0, p) == null ? l : e.a6(e.r(u.f.a(n.h(0, p)), u.N, u.z)), U = e.aI(e.Aj(n.h(0, "perXUnit"))), B = u.f, _ = u.N, J = u.z, ae = e.a6(e.r(B.a(n.h(0, "price")), _, J)), Ce = e.m(n.h(0, "takeawayId")), Ae = e.m(n.h(0, "takeawayName"));
13366
- return B = n.h(0, m) == null ? l : e.a6(e.r(B.a(n.h(0, m)), _, J)), t = u.g, r = t.a(n.h(0, "taxes")), r == null ? r = l : (r = g.F(r, new e.pd(), u.lm), r = e.u(r, !0, r.$ti.i("y.E"))), i = e.m(n.h(0, "unit")), o = u.U.a(n.h(0, "customAttributes")), J = o == null ? l : o.H(0, new e.pe(), _, J), t = t.a(n.h(0, "subCategories")), t == null ? _ = l : (_ = g.F(t, new e.pf(), _), _ = e.u(_, !0, _.$ti.i("y.E"))), e.wZ(b, y, w, E, J, C, T, R, S, k, D, Y, U, ae, _, Ce, Ae, B, r, i);
13365
+ var t, r, i, o, l = null, f = "deliveryPrice", h = "minPrice", p = "originalPrice", m = "takeawayPrice", b = e.m(n.h(0, "categoryName")), y = e.h(n.h(0, "code")), w = n.h(0, "cost") == null ? l : e.a6(e.r(u.f.a(n.h(0, "cost")), u.N, u.z)), E = n.h(0, "costing") == null ? l : e.a6(e.r(u.f.a(n.h(0, "costing")), u.N, u.z)), C = n.h(0, f) == null ? l : e.a6(e.r(u.f.a(n.h(0, f)), u.N, u.z)), T = n.h(0, h) == null ? l : e.a6(e.r(u.f.a(n.h(0, h)), u.N, u.z)), M = e.h(n.h(0, "name")), S = e.m(n.h(0, "name2")), k = e.X(n.h(0, "noSst")), D = e.X(n.h(0, "openPrice")), Y = n.h(0, p) == null ? l : e.a6(e.r(u.f.a(n.h(0, p)), u.N, u.z)), U = e.aI(e.Aj(n.h(0, "perXUnit"))), B = u.f, _ = u.N, J = u.z, ae = e.a6(e.r(B.a(n.h(0, "price")), _, J)), Ce = e.m(n.h(0, "takeawayId")), Ae = e.m(n.h(0, "takeawayName"));
13366
+ return B = n.h(0, m) == null ? l : e.a6(e.r(B.a(n.h(0, m)), _, J)), t = u.g, r = t.a(n.h(0, "taxes")), r == null ? r = l : (r = g.F(r, new e.pd(), u.lm), r = e.u(r, !0, r.$ti.i("y.E"))), i = e.m(n.h(0, "unit")), o = u.U.a(n.h(0, "customAttributes")), J = o == null ? l : o.H(0, new e.pe(), _, J), t = t.a(n.h(0, "subCategories")), t == null ? _ = l : (_ = g.F(t, new e.pf(), _), _ = e.u(_, !0, _.$ti.i("y.E"))), e.wZ(b, y, w, E, J, C, T, M, S, k, D, Y, U, ae, _, Ce, Ae, B, r, i);
13367
13367
  },
13368
13368
  CP(n) {
13369
13369
  var t, r, i, o, l, f, h, p = null, m = n.c;
@@ -13385,12 +13385,12 @@ var es = {};
13385
13385
  return h = h == null ? l : h.H(0, new e.pt(), u.N, u.P), t = n.e, t = t == null ? l : t.j(), r = n.f, r = r == null ? l : r.j(), i = n.Q, i = i == null ? l : i.j(), o = g.F(n.gZ(), new e.pu(), u.P), e.v(["dynamic", f, "kitchenStation", h, "name", n.c, "name2", n.d, "price", t, "product", r, "productId", n.r, "quantity", n.w, "selection", n.x, "servedAt", n.y, "collectedAt", n.z, "variantSelected", i, "subItems", e.u(o, !0, o.$ti.i("y.E"))], u.N, u.z);
13386
13386
  },
13387
13387
  oX(n) {
13388
- var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie = null, Ye = "refundBy", Le = "refundApprovedBy", ce = "voidApprovedBy", Me = "createdBy", qe = "customer", ut = "stockChange", ot = "baseTotal", dt = "addonTotal", he = "grossTotal", He = "adjustmentTotal", Ft = "variantSelected", jt = e.m(n.h(0, "productId")), tt = u.f, x = u.N, P = u.z, O = e.wT(e.r(tt.a(n.h(0, "product")), x, P)), q = g.F(u.j.a(n.h(0, "subItems")), new e.oY(), u.h);
13389
- return q = e.u(q, !0, q.$ti.i("y.E")), t = e.aN(a.a7, n.h(0, "status"), u.B2, x), r = e.yL(e.r(tt.a(n.h(0, "is")), x, P)), i = e.aI(n.h(0, "unitQuantity")), o = e.O(n.h(0, "quantity")), l = e.m(n.h(0, "remark")), f = e.m(n.h(0, "refundedFrom")), h = n.h(0, Ye) == null ? Ie : e.be(e.r(tt.a(n.h(0, Ye)), x, P)), p = n.h(0, Le) == null ? Ie : e.be(e.r(tt.a(n.h(0, Le)), x, P)), m = e.m(n.h(0, "voidAt")), b = n.h(0, "voidBy") == null ? Ie : e.be(e.r(tt.a(n.h(0, "voidBy")), x, P)), y = e.m(n.h(0, "voidReason")), w = n.h(0, ce) == null ? Ie : e.be(e.r(tt.a(n.h(0, ce)), x, P)), E = n.h(0, Me) == null ? Ie : e.be(e.r(tt.a(n.h(0, Me)), x, P)), C = e.m(n.h(0, "sentAt")), T = n.h(0, "sentBy") == null ? Ie : e.be(e.r(tt.a(n.h(0, "sentBy")), x, P)), R = u.g, S = R.a(n.h(0, "printChecklistRecords")), S == null ? S = Ie : (S = g.F(S, new e.oZ(), u.z9), S = e.u(S, !0, S.$ti.i("y.E"))), k = u.U, D = k.a(n.h(0, "kitchenStation")), D = D == null ? Ie : D.H(0, new e.p_(), x, u.O), Y = e.m(n.h(0, "servedAt")), U = e.m(n.h(0, "collectedAt")), B = e.m(n.h(0, "printReceiptAt")), R = R.a(n.h(0, "printBy")), R == null ? R = Ie : (R = g.F(R, new e.p0(), u.mY), R = e.u(R, !0, R.$ti.i("y.E"))), _ = n.h(0, qe) == null ? Ie : e.wS(e.r(tt.a(n.h(0, qe)), x, P)), J = tt.a(n.h(0, "adjustments")).H(0, new e.p1(), x, u.F), ae = e.m(n.h(0, "deletedAt")), Ce = tt.a(n.h(0, "taxes")).H(0, new e.p2(), x, u.V), Ae = e.a6(e.r(tt.a(n.h(0, "nettTotal")), x, P)), Ee = n.h(0, ut) == null ? Ie : e.yS(e.r(tt.a(n.h(0, ut)), x, P)), De = n.h(0, ot) == null ? Ie : e.a6(e.r(tt.a(n.h(0, ot)), x, P)), Fe = n.h(0, dt) == null ? Ie : e.a6(e.r(tt.a(n.h(0, dt)), x, P)), Oe = n.h(0, he) == null ? Ie : e.a6(e.r(tt.a(n.h(0, he)), x, P)), Ne = n.h(0, He) == null ? Ie : e.a6(e.r(tt.a(n.h(0, He)), x, P)), xe = n.h(0, Ft) == null ? Ie : e.wU(e.r(tt.a(n.h(0, Ft)), x, P)), Pe = k.a(n.h(0, "billDiscount")), Pe = Pe == null ? Ie : Pe.H(0, new e.p3(), x, u.o), k = k.a(n.h(0, "moveFrom")), k = k == null ? Ie : k.H(0, new e.p4(), x, u.z0), e.qL(Fe, Ne, J, De, Pe, U, E, _, ae, Oe, r, D, k, Ae, n.h(0, "parent") == null ? Ie : e.oX(e.r(tt.a(n.h(0, "parent")), x, P)), R, S, B, O, jt, o, p, h, f, l, C, T, Y, t, Ee, q, Ce, i, xe, w, m, b, y);
13388
+ var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie = null, Ye = "refundBy", Le = "refundApprovedBy", ce = "voidApprovedBy", Re = "createdBy", qe = "customer", ut = "stockChange", ot = "baseTotal", dt = "addonTotal", he = "grossTotal", He = "adjustmentTotal", Ft = "variantSelected", jt = e.m(n.h(0, "productId")), tt = u.f, x = u.N, P = u.z, O = e.wT(e.r(tt.a(n.h(0, "product")), x, P)), q = g.F(u.j.a(n.h(0, "subItems")), new e.oY(), u.h);
13389
+ return q = e.u(q, !0, q.$ti.i("y.E")), t = e.aN(a.a7, n.h(0, "status"), u.B2, x), r = e.yL(e.r(tt.a(n.h(0, "is")), x, P)), i = e.aI(n.h(0, "unitQuantity")), o = e.O(n.h(0, "quantity")), l = e.m(n.h(0, "remark")), f = e.m(n.h(0, "refundedFrom")), h = n.h(0, Ye) == null ? Ie : e.be(e.r(tt.a(n.h(0, Ye)), x, P)), p = n.h(0, Le) == null ? Ie : e.be(e.r(tt.a(n.h(0, Le)), x, P)), m = e.m(n.h(0, "voidAt")), b = n.h(0, "voidBy") == null ? Ie : e.be(e.r(tt.a(n.h(0, "voidBy")), x, P)), y = e.m(n.h(0, "voidReason")), w = n.h(0, ce) == null ? Ie : e.be(e.r(tt.a(n.h(0, ce)), x, P)), E = n.h(0, Re) == null ? Ie : e.be(e.r(tt.a(n.h(0, Re)), x, P)), C = e.m(n.h(0, "sentAt")), T = n.h(0, "sentBy") == null ? Ie : e.be(e.r(tt.a(n.h(0, "sentBy")), x, P)), M = u.g, S = M.a(n.h(0, "printChecklistRecords")), S == null ? S = Ie : (S = g.F(S, new e.oZ(), u.z9), S = e.u(S, !0, S.$ti.i("y.E"))), k = u.U, D = k.a(n.h(0, "kitchenStation")), D = D == null ? Ie : D.H(0, new e.p_(), x, u.O), Y = e.m(n.h(0, "servedAt")), U = e.m(n.h(0, "collectedAt")), B = e.m(n.h(0, "printReceiptAt")), M = M.a(n.h(0, "printBy")), M == null ? M = Ie : (M = g.F(M, new e.p0(), u.mY), M = e.u(M, !0, M.$ti.i("y.E"))), _ = n.h(0, qe) == null ? Ie : e.wS(e.r(tt.a(n.h(0, qe)), x, P)), J = tt.a(n.h(0, "adjustments")).H(0, new e.p1(), x, u.F), ae = e.m(n.h(0, "deletedAt")), Ce = tt.a(n.h(0, "taxes")).H(0, new e.p2(), x, u.V), Ae = e.a6(e.r(tt.a(n.h(0, "nettTotal")), x, P)), Ee = n.h(0, ut) == null ? Ie : e.yS(e.r(tt.a(n.h(0, ut)), x, P)), De = n.h(0, ot) == null ? Ie : e.a6(e.r(tt.a(n.h(0, ot)), x, P)), Fe = n.h(0, dt) == null ? Ie : e.a6(e.r(tt.a(n.h(0, dt)), x, P)), Oe = n.h(0, he) == null ? Ie : e.a6(e.r(tt.a(n.h(0, he)), x, P)), Ne = n.h(0, He) == null ? Ie : e.a6(e.r(tt.a(n.h(0, He)), x, P)), xe = n.h(0, Ft) == null ? Ie : e.wU(e.r(tt.a(n.h(0, Ft)), x, P)), Pe = k.a(n.h(0, "billDiscount")), Pe = Pe == null ? Ie : Pe.H(0, new e.p3(), x, u.o), k = k.a(n.h(0, "moveFrom")), k = k == null ? Ie : k.H(0, new e.p4(), x, u.z0), e.qL(Fe, Ne, J, De, Pe, U, E, _, ae, Oe, r, D, k, Ae, n.h(0, "parent") == null ? Ie : e.oX(e.r(tt.a(n.h(0, "parent")), x, P)), M, S, B, O, jt, o, p, h, f, l, C, T, Y, t, Ee, q, Ce, i, xe, w, m, b, y);
13390
13390
  },
13391
13391
  CO(n) {
13392
- var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae = null, Ce = n.b.j(), Ae = u.P, Ee = g.F(n.gZ(), new e.p5(), Ae);
13393
- return Ee = e.u(Ee, !0, Ee.$ti.i("y.E")), t = a.a7.h(0, n.d), t.toString, r = n.e.j(), i = n.y, i = i == null ? ae : i.j(), o = n.z, o = o == null ? ae : o.j(), l = n.as, l = l == null ? ae : l.j(), f = n.ax, f = f == null ? ae : f.j(), h = n.ay, h = h == null ? ae : h.j(), p = n.CW, p = p == null ? ae : p.j(), m = n.gbu(), m == null ? m = ae : (m = g.F(m, new e.p6(), Ae), m = e.u(m, !0, m.$ti.i("y.E"))), b = n.gaH(), b = b == null ? ae : b.H(0, new e.p7(), u.N, Ae), y = n.gbt(), y == null ? y = ae : (y = g.F(y, new e.p8(), Ae), y = e.u(y, !0, y.$ti.i("y.E"))), w = n.fx, w = w == null ? ae : w.j(), E = u.N, C = n.gV().H(0, new e.p9(), E, Ae), T = n.gI().H(0, new e.pa(), E, Ae), R = n.k1.j(), S = n.k2, S = S == null ? ae : S.j(), k = n.k3, k = k == null ? ae : k.j(), D = n.k4, D = D == null ? ae : D.j(), Y = n.ok, Y = Y == null ? ae : Y.j(), U = n.p1, U = U == null ? ae : U.j(), B = n.p2, B = B == null ? ae : B.j(), _ = n.gbj(), _ = _ == null ? ae : _.H(0, new e.pb(), E, Ae), J = n.gbs(), Ae = J == null ? ae : J.H(0, new e.pc(), E, Ae), J = n.R8, J = J == null ? ae : J.j(), e.v(["productId", n.a, "product", Ce, "subItems", Ee, "status", t, "is", r, "unitQuantity", n.f, "quantity", n.r, "remark", n.w, "refundedFrom", n.x, "refundBy", i, "refundApprovedBy", o, "voidAt", n.Q, "voidBy", l, "voidReason", n.at, "voidApprovedBy", f, "createdBy", h, "sentAt", n.ch, "sentBy", p, "printChecklistRecords", m, "kitchenStation", b, "servedAt", n.db, "collectedAt", n.dx, "printReceiptAt", n.dy, "printBy", y, "customer", w, "adjustments", C, "deletedAt", n.go, "taxes", T, "nettTotal", R, "stockChange", S, "baseTotal", k, "addonTotal", D, "grossTotal", Y, "adjustmentTotal", U, "variantSelected", B, "billDiscount", _, "moveFrom", Ae, "parent", J], E, u.z);
13392
+ var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae = null, Ce = n.b.j(), Ae = u.P, Ee = g.F(n.gZ(), new e.p5(), Ae);
13393
+ return Ee = e.u(Ee, !0, Ee.$ti.i("y.E")), t = a.a7.h(0, n.d), t.toString, r = n.e.j(), i = n.y, i = i == null ? ae : i.j(), o = n.z, o = o == null ? ae : o.j(), l = n.as, l = l == null ? ae : l.j(), f = n.ax, f = f == null ? ae : f.j(), h = n.ay, h = h == null ? ae : h.j(), p = n.CW, p = p == null ? ae : p.j(), m = n.gbu(), m == null ? m = ae : (m = g.F(m, new e.p6(), Ae), m = e.u(m, !0, m.$ti.i("y.E"))), b = n.gaH(), b = b == null ? ae : b.H(0, new e.p7(), u.N, Ae), y = n.gbt(), y == null ? y = ae : (y = g.F(y, new e.p8(), Ae), y = e.u(y, !0, y.$ti.i("y.E"))), w = n.fx, w = w == null ? ae : w.j(), E = u.N, C = n.gV().H(0, new e.p9(), E, Ae), T = n.gI().H(0, new e.pa(), E, Ae), M = n.k1.j(), S = n.k2, S = S == null ? ae : S.j(), k = n.k3, k = k == null ? ae : k.j(), D = n.k4, D = D == null ? ae : D.j(), Y = n.ok, Y = Y == null ? ae : Y.j(), U = n.p1, U = U == null ? ae : U.j(), B = n.p2, B = B == null ? ae : B.j(), _ = n.gbj(), _ = _ == null ? ae : _.H(0, new e.pb(), E, Ae), J = n.gbs(), Ae = J == null ? ae : J.H(0, new e.pc(), E, Ae), J = n.R8, J = J == null ? ae : J.j(), e.v(["productId", n.a, "product", Ce, "subItems", Ee, "status", t, "is", r, "unitQuantity", n.f, "quantity", n.r, "remark", n.w, "refundedFrom", n.x, "refundBy", i, "refundApprovedBy", o, "voidAt", n.Q, "voidBy", l, "voidReason", n.at, "voidApprovedBy", f, "createdBy", h, "sentAt", n.ch, "sentBy", p, "printChecklistRecords", m, "kitchenStation", b, "servedAt", n.db, "collectedAt", n.dx, "printReceiptAt", n.dy, "printBy", y, "customer", w, "adjustments", C, "deletedAt", n.go, "taxes", T, "nettTotal", M, "stockChange", S, "baseTotal", k, "addonTotal", D, "grossTotal", Y, "adjustmentTotal", U, "variantSelected", B, "billDiscount", _, "moveFrom", Ae, "parent", J], E, u.z);
13394
13394
  },
13395
13395
  CQ(n) {
13396
13396
  var t, r, i = e.h(n.h(0, "id")), o = e.h(n.h(0, "userId")), l = e.m(n.h(0, "name")), f = e.m(n.h(0, "birthday")), h = e.m(n.h(0, "phoneNumber")), p = e.aI(n.h(0, "balance")), m = e.aI(n.h(0, "level")), b = u.g, y = b.a(n.h(0, "title"));
@@ -13525,9 +13525,9 @@ var es = {};
13525
13525
  iQ: function(t, r, i) {
13526
13526
  this.a = t, this.b = r, this.$ti = i;
13527
13527
  },
13528
- dp: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Me, qe, ut, ot, dt, he) {
13528
+ dp: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Re, qe, ut, ot, dt, he) {
13529
13529
  var He = this;
13530
- He.a = t, He.b = r, He.c = i, He.d = o, He.e = l, He.f = f, He.r = h, He.w = p, He.x = m, He.y = b, He.z = y, He.Q = w, He.as = E, He.at = C, He.ax = T, He.ay = R, He.ch = S, He.CW = k, He.cx = D, He.cy = Y, He.db = U, He.dx = B, He.dy = _, He.fr = J, He.fx = ae, He.fy = Ce, He.go = Ae, He.id = Ee, He.k1 = De, He.k2 = Fe, He.k3 = Oe, He.k4 = Ne, He.ok = xe, He.p1 = Pe, He.p2 = Ie, He.p3 = Ye, He.p4 = Le, He.R8 = ce, He.RG = Me, He.rx = qe, He.ry = ut, He.to = ot, He.x1 = dt, He.x2 = he;
13530
+ He.a = t, He.b = r, He.c = i, He.d = o, He.e = l, He.f = f, He.r = h, He.w = p, He.x = m, He.y = b, He.z = y, He.Q = w, He.as = E, He.at = C, He.ax = T, He.ay = M, He.ch = S, He.CW = k, He.cx = D, He.cy = Y, He.db = U, He.dx = B, He.dy = _, He.fr = J, He.fx = ae, He.fy = Ce, He.go = Ae, He.id = Ee, He.k1 = De, He.k2 = Fe, He.k3 = Oe, He.k4 = Ne, He.ok = xe, He.p1 = Pe, He.p2 = Ie, He.p3 = Ye, He.p4 = Le, He.R8 = ce, He.RG = Re, He.rx = qe, He.ry = ut, He.to = ot, He.x1 = dt, He.x2 = he;
13531
13531
  },
13532
13532
  qz: function() {
13533
13533
  },
@@ -13552,9 +13552,9 @@ var es = {};
13552
13552
  iP: function(t, r, i) {
13553
13553
  this.a = t, this.b = r, this.$ti = i;
13554
13554
  },
13555
- dn: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D) {
13555
+ dn: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D) {
13556
13556
  var Y = this;
13557
- Y.a = t, Y.b = r, Y.c = i, Y.d = o, Y.e = l, Y.f = f, Y.r = h, Y.w = p, Y.x = m, Y.y = b, Y.z = y, Y.Q = w, Y.as = E, Y.at = C, Y.ax = T, Y.ay = R, Y.ch = S, Y.CW = k, Y.cx = D;
13557
+ Y.a = t, Y.b = r, Y.c = i, Y.d = o, Y.e = l, Y.f = f, Y.r = h, Y.w = p, Y.x = m, Y.y = b, Y.z = y, Y.Q = w, Y.as = E, Y.at = C, Y.ax = T, Y.ay = M, Y.ch = S, Y.CW = k, Y.cx = D;
13558
13558
  },
13559
13559
  qE: function() {
13560
13560
  },
@@ -13590,9 +13590,9 @@ var es = {};
13590
13590
  },
13591
13591
  qP: function() {
13592
13592
  },
13593
- hF: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y) {
13593
+ hF: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y) {
13594
13594
  var U = this;
13595
- U.a = t, U.b = r, U.c = i, U.d = o, U.e = l, U.f = f, U.r = h, U.w = p, U.x = m, U.y = b, U.z = y, U.Q = w, U.as = E, U.at = C, U.ax = T, U.ay = R, U.ch = S, U.CW = k, U.cx = D, U.cy = Y;
13595
+ U.a = t, U.b = r, U.c = i, U.d = o, U.e = l, U.f = f, U.r = h, U.w = p, U.x = m, U.y = b, U.z = y, U.Q = w, U.as = E, U.at = C, U.ax = T, U.ay = M, U.ch = S, U.CW = k, U.cx = D, U.cy = Y;
13596
13596
  },
13597
13597
  qM: function() {
13598
13598
  },
@@ -13632,9 +13632,9 @@ var es = {};
13632
13632
  iR: function(t, r, i) {
13633
13633
  this.a = t, this.b = r, this.$ti = i;
13634
13634
  },
13635
- dq: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce) {
13636
- var Me = this;
13637
- Me.a = t, Me.b = r, Me.c = i, Me.d = o, Me.e = l, Me.f = f, Me.r = h, Me.w = p, Me.x = m, Me.y = b, Me.z = y, Me.Q = w, Me.as = E, Me.at = C, Me.ax = T, Me.ay = R, Me.ch = S, Me.CW = k, Me.cx = D, Me.cy = Y, Me.db = U, Me.dx = B, Me.dy = _, Me.fr = J, Me.fx = ae, Me.fy = Ce, Me.go = Ae, Me.id = Ee, Me.k1 = De, Me.k2 = Fe, Me.k3 = Oe, Me.k4 = Ne, Me.ok = xe, Me.p1 = Pe, Me.p2 = Ie, Me.p3 = Ye, Me.p4 = Le, Me.R8 = ce;
13635
+ dq: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce) {
13636
+ var Re = this;
13637
+ Re.a = t, Re.b = r, Re.c = i, Re.d = o, Re.e = l, Re.f = f, Re.r = h, Re.w = p, Re.x = m, Re.y = b, Re.z = y, Re.Q = w, Re.as = E, Re.at = C, Re.ax = T, Re.ay = M, Re.ch = S, Re.CW = k, Re.cx = D, Re.cy = Y, Re.db = U, Re.dx = B, Re.dy = _, Re.fr = J, Re.fx = ae, Re.fy = Ce, Re.go = Ae, Re.id = Ee, Re.k1 = De, Re.k2 = Fe, Re.k3 = Oe, Re.k4 = Ne, Re.ok = xe, Re.p1 = Pe, Re.p2 = Ie, Re.p3 = Ye, Re.p4 = Le, Re.R8 = ce;
13638
13638
  },
13639
13639
  qU: function() {
13640
13640
  },
@@ -14095,12 +14095,12 @@ var es = {};
14095
14095
  z9(n, t) {
14096
14096
  return t.a(n);
14097
14097
  },
14098
- z0(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S) {
14099
- return new e.dr(n, i, t, m, b, C, y, S, R, T, h, f, p, l, w, E, o, r);
14098
+ z0(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S) {
14099
+ return new e.dr(n, i, t, m, b, C, y, S, M, T, h, f, p, l, w, E, o, r);
14100
14100
  },
14101
14101
  D6(n) {
14102
- var t, r, i, o, l, f, h, p, m, b, y, w, E, C = null, T = "adjustmentRule", R = "customer", S = u.f, k = u.N, D = u.z, Y = e.f5(e.r(S.a(n.h(0, "adjustment")), k, D)), U = u.g, B = U.a(n.h(0, "availableOnlineOrder"));
14103
- return B == null ? B = C : (B = g.F(B, new e.pM(), u.hp), B = e.u(B, !0, B.$ti.i("y.E"))), t = n.h(0, T) == null ? C : e.wW(e.r(S.a(n.h(0, T)), k, D)), r = e.Dy(e.r(S.a(n.h(0, "options")), k, D)), i = e.aI(n.h(0, "priority")), o = e.ao(n.h(0, "success")), l = e.m(n.h(0, "reason")), f = U.a(n.h(0, "usedItems")), f == null ? f = C : (f = g.F(f, new e.pN(), u.uI), f = e.u(f, !0, f.$ti.i("y.E"))), h = U.a(n.h(0, "toUse")), h == null ? h = C : (h = g.F(h, new e.pO(), k), h = e.u(h, !0, h.$ti.i("y.E"))), p = U.a(n.h(0, "toGet")), p == null ? p = C : (p = g.F(p, new e.pP(), k), p = e.u(p, !0, p.$ti.i("y.E"))), m = e.X(n.h(0, "maximumReached")), U = U.a(n.h(0, "items")), U == null ? U = C : (U = g.F(U, new e.pQ(), k), U = e.u(U, !0, U.$ti.i("y.E"))), b = e.h(n.h(0, "name")), y = e.aN(a.u, n.h(0, "from"), u.E, k), w = e.h(n.h(0, "referenceId")), E = e.m(n.h(0, "returnId")), S = n.h(0, R) == null ? C : e.wS(e.r(S.a(n.h(0, R)), k, D)), e.z0(Y, t, e.X(n.h(0, "autoApplied")), B, S, y, U, m, b, r, i, l, w, E, o, p, h, f);
14102
+ var t, r, i, o, l, f, h, p, m, b, y, w, E, C = null, T = "adjustmentRule", M = "customer", S = u.f, k = u.N, D = u.z, Y = e.f5(e.r(S.a(n.h(0, "adjustment")), k, D)), U = u.g, B = U.a(n.h(0, "availableOnlineOrder"));
14103
+ return B == null ? B = C : (B = g.F(B, new e.pM(), u.hp), B = e.u(B, !0, B.$ti.i("y.E"))), t = n.h(0, T) == null ? C : e.wW(e.r(S.a(n.h(0, T)), k, D)), r = e.Dy(e.r(S.a(n.h(0, "options")), k, D)), i = e.aI(n.h(0, "priority")), o = e.ao(n.h(0, "success")), l = e.m(n.h(0, "reason")), f = U.a(n.h(0, "usedItems")), f == null ? f = C : (f = g.F(f, new e.pN(), u.uI), f = e.u(f, !0, f.$ti.i("y.E"))), h = U.a(n.h(0, "toUse")), h == null ? h = C : (h = g.F(h, new e.pO(), k), h = e.u(h, !0, h.$ti.i("y.E"))), p = U.a(n.h(0, "toGet")), p == null ? p = C : (p = g.F(p, new e.pP(), k), p = e.u(p, !0, p.$ti.i("y.E"))), m = e.X(n.h(0, "maximumReached")), U = U.a(n.h(0, "items")), U == null ? U = C : (U = g.F(U, new e.pQ(), k), U = e.u(U, !0, U.$ti.i("y.E"))), b = e.h(n.h(0, "name")), y = e.aN(a.u, n.h(0, "from"), u.E, k), w = e.h(n.h(0, "referenceId")), E = e.m(n.h(0, "returnId")), S = n.h(0, M) == null ? C : e.wS(e.r(S.a(n.h(0, M)), k, D)), e.z0(Y, t, e.X(n.h(0, "autoApplied")), B, S, y, U, m, b, r, i, l, w, E, o, p, h, f);
14104
14104
  },
14105
14105
  D7(n) {
14106
14106
  var t, r, i, o, l, f, h, p, m = null, b = n.a.j(), y = n.gdg();
@@ -14135,9 +14135,9 @@ var es = {};
14135
14135
  j0: function(t, r, i) {
14136
14136
  this.a = t, this.b = r, this.$ti = i;
14137
14137
  },
14138
- dr: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k) {
14138
+ dr: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k) {
14139
14139
  var D = this;
14140
- D.a = t, D.b = r, D.c = i, D.d = o, D.e = l, D.f = f, D.r = h, D.w = p, D.x = m, D.y = b, D.z = y, D.Q = w, D.as = E, D.at = C, D.ax = T, D.ay = R, D.ch = S, D.CW = k;
14140
+ D.a = t, D.b = r, D.c = i, D.d = o, D.e = l, D.f = f, D.r = h, D.w = p, D.x = m, D.y = b, D.z = y, D.Q = w, D.as = E, D.at = C, D.ax = T, D.ay = M, D.ch = S, D.CW = k;
14141
14141
  },
14142
14142
  rk: function() {
14143
14143
  },
@@ -14702,10 +14702,10 @@ var es = {};
14702
14702
  return n === 0 || t === 0 ? e.T(null) : e.bd(n, null, e.FP(n, t)).cA(0, t);
14703
14703
  },
14704
14704
  xh(n, t, r) {
14705
- var i, o, l, f, h, p, m, b, y, w, E, C = null, T = u.N, R = u.W, S = e.v(["price", new e.ak(new e.ag(a.l, n.ga4(n).gaW()), 0, C)], T, R), k = n.gbd() != null && n.ga4(n).gdG() != null;
14706
- for (k ? (i = n.gbd(), i.toString, o = n.ga4(n).gdG(), o.toString, l = e.v(["unitQuantity", new e.ak(new e.ag(a.r, e.FG(i, o).av(0, e.bd(1, C, C).gm(0)).gm(0)), 1, C)], T, R)) : (i = u.z, l = e.D(i, i)), f = e.AA("subItem", 1, n.gZ()), n.ga4(n).gcg() == null ? h = e.D(T, R) : (i = n.ga4(n).gcg(), h = e.v(["takeaway", new e.ak(new e.ag(a.l, i ?? e.T(C).gm(0)), 2, C)], T, R)), i = e.b1(S, T, R), o = l.gG(0), o = o.gM(o); o.v(); )
14707
- p = o.gC(), i.A(0, e.h(p.a), R.a(p.b));
14708
- return i.E(0, f), i.E(0, h), m = e.j9(i), b = e.xi(n, t, r), o = e.u(f.gX(), !0, T), a.d.E(o, new e.br(h, e.E(h).i("br<1>"))), p = n.gV(), p.gR(p) ? y = e.D(T, R) : (p = n.gV(), y = p.gG(p).O(0, e.D(T, R), new e.ux(m, o, b, t, 3), u.v)), o = n.gI(), w = e.fp(e.w([], u.s), o, t), R = e.b1(i, T, R), R.E(0, y), R = e.zU(new e.dU(e.v(["", new e.c9(R, k ? 1 : n.ga3(), w)], T, u.L), 0), e.v(["", w], T, u.BU), t).gJ(), R = R.gK(R), E = R.gah(R), R = n.gV(), i = u.F, R.gR(R) ? R = e.D(T, i) : (R = n.gV(), i = R.gG(R).O(0, e.D(T, i), new e.uy(y), u.pY), R = i), i = n.gI(), T = i.gG(i).O(0, e.D(T, u.V), new e.uz(E), u.pM), n.fm(R, C, E.a, T);
14705
+ var i, o, l, f, h, p, m, b, y, w, E, C = null, T = u.N, M = u.W, S = e.v(["price", new e.ak(new e.ag(a.l, n.ga4(n).gaW()), 0, C)], T, M), k = n.gbd() != null && n.ga4(n).gdG() != null;
14706
+ for (k ? (i = n.gbd(), i.toString, o = n.ga4(n).gdG(), o.toString, l = e.v(["unitQuantity", new e.ak(new e.ag(a.r, e.FG(i, o).av(0, e.bd(1, C, C).gm(0)).gm(0)), 1, C)], T, M)) : (i = u.z, l = e.D(i, i)), f = e.AA("subItem", 1, n.gZ()), n.ga4(n).gcg() == null ? h = e.D(T, M) : (i = n.ga4(n).gcg(), h = e.v(["takeaway", new e.ak(new e.ag(a.l, i ?? e.T(C).gm(0)), 2, C)], T, M)), i = e.b1(S, T, M), o = l.gG(0), o = o.gM(o); o.v(); )
14707
+ p = o.gC(), i.A(0, e.h(p.a), M.a(p.b));
14708
+ return i.E(0, f), i.E(0, h), m = e.j9(i), b = e.xi(n, t, r), o = e.u(f.gX(), !0, T), a.d.E(o, new e.br(h, e.E(h).i("br<1>"))), p = n.gV(), p.gR(p) ? y = e.D(T, M) : (p = n.gV(), y = p.gG(p).O(0, e.D(T, M), new e.ux(m, o, b, t, 3), u.v)), o = n.gI(), w = e.fp(e.w([], u.s), o, t), M = e.b1(i, T, M), M.E(0, y), M = e.zU(new e.dU(e.v(["", new e.c9(M, k ? 1 : n.ga3(), w)], T, u.L), 0), e.v(["", w], T, u.BU), t).gJ(), M = M.gK(M), E = M.gah(M), M = n.gV(), i = u.F, M.gR(M) ? M = e.D(T, i) : (M = n.gV(), i = M.gG(M).O(0, e.D(T, i), new e.uy(y), u.pY), M = i), i = n.gI(), T = i.gG(i).O(0, e.D(T, u.V), new e.uz(E), u.pM), n.fm(M, C, E.a, T);
14709
14709
  },
14710
14710
  fp(n, t, r) {
14711
14711
  return t.gG(t).O(0, e.D(u.N, u.k), new e.wl(r, n), u.BU);
@@ -14722,10 +14722,10 @@ var es = {};
14722
14722
  return t.gR(t) ? n : (i = u.N, o = u.W, l = new e.dU(e.v(["key", new e.c9(e.v(["", new e.ak(new e.ag(a.l, n), 1, null)], i, o), 1, e.fp(e.w([], u.s), t, r))], i, u.L), 0).b6(0).gJ().h(0, "key"), l.toString, f = e.D(i, o), f.A(0, "", new e.ak(new e.ag(a.l, l.c), 0, null)), l = l.gI(), f.E(0, l.gG(l).O(0, e.D(i, o), new e.uo(), u.v)), f = e.j9(f).gK(0), o = e.E(f), e.dP(e.e9(f, o.i("M(z.E)").a(new e.up()), o.i("z.E"), u.o)));
14723
14723
  },
14724
14724
  FO(n) {
14725
- var t, r, i, o, l, f, h, p, m, b, y, w = u.N, E = u.uj, C = a.d.O(n, e.D(w, E), new e.v0(), u.yW), T = e.D(w, E), R = e.bd(0, null, 4);
14725
+ var t, r, i, o, l, f, h, p, m, b, y, w = u.N, E = u.uj, C = a.d.O(n, e.D(w, E), new e.v0(), u.yW), T = e.D(w, E), M = e.bd(0, null, 4);
14726
14726
  for (t = C.gG(C), t = t.gM(t); t.v(); )
14727
- r = t.gC(), i = r.b, o = i.gak(), l = o.gD(o), f = new e.Y(l), f.hD(l, o.gbn(o), a.f.F(o.ga_(o))), o = f.a, o === A && e.x(), l = f.b, l === A && e.x(), f = f.c, f === A && e.x(), f = e.di(a.f.aK(l / Math.pow(10, f), a.e.F(f))), l = f ?? 0, h = new e.Y(A), h.ec(l, o, 2), i.gS() !== !0 && (o = h.a, o === A && e.x(), l = h.b, l === A && e.x(), f = h.c, f === A && e.x(), f = e.di(a.f.aK(l / Math.pow(10, f), a.e.F(f))), l = f ?? 0, f = new e.Y(A), f.ec(l, o, 4), o = i.gak(), l = f.a, l === A && e.x(), p = f.b, p === A && e.x(), f = f.c, f === A && e.x(), p = e.di(a.f.aK(p / Math.pow(10, f), a.e.F(f))), p == null && (p = 0), o = e.di(a.f.aK(o.gD(o) / Math.pow(10, o.ga_(o)), a.f.F(o.ga_(o)))), m = new e.Y(A), m.cT(e.fl(p - (o ?? 0), l, f)), m.a === A && e.x(), o = m.b, o === A && e.x(), l = m.c, l === A && e.x(), f = R.a, f === A && e.x(), p = R.b, p === A && e.x(), b = R.c, b === A && e.x(), p = e.di(a.f.aK(p / Math.pow(10, b), a.e.F(b))), p == null && (p = 0), l = e.di(a.f.aK(o / Math.pow(10, l), a.e.F(l))), R = new e.Y(A), R.cT(e.fl(p + (l ?? 0), f, b))), r = r.a, o = h.a, o === A && e.x(), l = h.b, l === A && e.x(), f = h.c, f === A && e.x(), T.E(0, e.v([r, i.aA(new e.bb(o, l, f))], w, E));
14728
- return y = T.gG(0).ab(0), a.d.bS(y, new e.v1()), new e.oi(e.c5(y, w, E), R.gm(0));
14727
+ r = t.gC(), i = r.b, o = i.gak(), l = o.gD(o), f = new e.Y(l), f.hD(l, o.gbn(o), a.f.F(o.ga_(o))), o = f.a, o === A && e.x(), l = f.b, l === A && e.x(), f = f.c, f === A && e.x(), f = e.di(a.f.aK(l / Math.pow(10, f), a.e.F(f))), l = f ?? 0, h = new e.Y(A), h.ec(l, o, 2), i.gS() !== !0 && (o = h.a, o === A && e.x(), l = h.b, l === A && e.x(), f = h.c, f === A && e.x(), f = e.di(a.f.aK(l / Math.pow(10, f), a.e.F(f))), l = f ?? 0, f = new e.Y(A), f.ec(l, o, 4), o = i.gak(), l = f.a, l === A && e.x(), p = f.b, p === A && e.x(), f = f.c, f === A && e.x(), p = e.di(a.f.aK(p / Math.pow(10, f), a.e.F(f))), p == null && (p = 0), o = e.di(a.f.aK(o.gD(o) / Math.pow(10, o.ga_(o)), a.f.F(o.ga_(o)))), m = new e.Y(A), m.cT(e.fl(p - (o ?? 0), l, f)), m.a === A && e.x(), o = m.b, o === A && e.x(), l = m.c, l === A && e.x(), f = M.a, f === A && e.x(), p = M.b, p === A && e.x(), b = M.c, b === A && e.x(), p = e.di(a.f.aK(p / Math.pow(10, b), a.e.F(b))), p == null && (p = 0), l = e.di(a.f.aK(o / Math.pow(10, l), a.e.F(l))), M = new e.Y(A), M.cT(e.fl(p + (l ?? 0), f, b))), r = r.a, o = h.a, o === A && e.x(), l = h.b, l === A && e.x(), f = h.c, f === A && e.x(), T.E(0, e.v([r, i.aA(new e.bb(o, l, f))], w, E));
14728
+ return y = T.gG(0).ab(0), a.d.bS(y, new e.v1()), new e.oi(e.c5(y, w, E), M.gm(0));
14729
14729
  },
14730
14730
  zU(n, t, r) {
14731
14731
  var i, o = n.b6(0);
@@ -15352,8 +15352,8 @@ var es = {};
15352
15352
  return r == null && (r = e.D(u.N, u.t)), t = r.gK(r).O(0, e.w([], u.s), new e.uN(), u.m), r = n.gJ(), n.bZ(r.gG(r).O(0, e.D(u.N, u.B), new e.uO(t), u.C));
15353
15353
  },
15354
15354
  Fu(n, t) {
15355
- var r, i, o, l, f, h, p, m, b, y, w, E, C, T = t.b, R = e.HK(n, T);
15356
- return R != null ? (r = n.gag(), r == null && (r = e.D(u.N, u.t)), r = e.b1(r, u.N, u.t), i = u.s, r.A(0, t.a, T.dn(!1, R, !1, e.w([], i), e.w([], i))), n.bk(r)) : (o = u.AK.a(g.Bq(T)), l = e.Hv(o, e.GS(n, T), T), r = l.b, g.dR(r) ? (r = n.gag(), r == null && (r = e.D(u.N, u.t)), r = e.b1(r, u.N, u.t), i = u.s, r.A(0, t.a, T.dn(l.c, "ITEM_NOT_ENOUGH", !1, e.w([], i), e.w([], i))), n.bk(r)) : (o.d instanceof e.fa ? (i = T.gL(), f = i.gU(i) !== a.p) : f = !1, f ? i = !0 : i = T.gaf() != null && T.gaf() instanceof e.bP, i && (r = u.BX.a(e.HB(r)), l = new e.dd(l.a, r, l.c)), h = new e.a2(Date.now(), !1), p = e.Ay(n, l.b, e.cd(h.B(0, e.eK(0, 0, 0, 1, 0, 0)))), m = e.Ay(p.b, l.a, e.cd(h.B(0, e.eK(0, 0, 0, 2, 0, 0)))), b = m.b, r = p.a, i = m.a, y = r.length, T.gJ() == null ? w = null : (w = e.u(i, !0, u.N), a.d.E(w, r)), E = T.fn(w, y !== 0, r, i), C = e.He(b.gJ(), E, b.ga7(), b.gcC()), i = b.gag(), T = i ?? e.D(u.N, u.t), T = e.b1(T, u.N, u.t), T.A(0, t.a, E), b.fg(T, C)));
15355
+ var r, i, o, l, f, h, p, m, b, y, w, E, C, T = t.b, M = e.HK(n, T);
15356
+ return M != null ? (r = n.gag(), r == null && (r = e.D(u.N, u.t)), r = e.b1(r, u.N, u.t), i = u.s, r.A(0, t.a, T.dn(!1, M, !1, e.w([], i), e.w([], i))), n.bk(r)) : (o = u.AK.a(g.Bq(T)), l = e.Hv(o, e.GS(n, T), T), r = l.b, g.dR(r) ? (r = n.gag(), r == null && (r = e.D(u.N, u.t)), r = e.b1(r, u.N, u.t), i = u.s, r.A(0, t.a, T.dn(l.c, "ITEM_NOT_ENOUGH", !1, e.w([], i), e.w([], i))), n.bk(r)) : (o.d instanceof e.fa ? (i = T.gL(), f = i.gU(i) !== a.p) : f = !1, f ? i = !0 : i = T.gaf() != null && T.gaf() instanceof e.bP, i && (r = u.BX.a(e.HB(r)), l = new e.dd(l.a, r, l.c)), h = new e.a2(Date.now(), !1), p = e.Ay(n, l.b, e.cd(h.B(0, e.eK(0, 0, 0, 1, 0, 0)))), m = e.Ay(p.b, l.a, e.cd(h.B(0, e.eK(0, 0, 0, 2, 0, 0)))), b = m.b, r = p.a, i = m.a, y = r.length, T.gJ() == null ? w = null : (w = e.u(i, !0, u.N), a.d.E(w, r)), E = T.fn(w, y !== 0, r, i), C = e.He(b.gJ(), E, b.ga7(), b.gcC()), i = b.gag(), T = i ?? e.D(u.N, u.t), T = e.b1(T, u.N, u.t), T.A(0, t.a, E), b.fg(T, C)));
15357
15357
  },
15358
15358
  GS(n, t) {
15359
15359
  var r, i, o, l, f, h = n.gag();
@@ -15548,19 +15548,19 @@ var es = {};
15548
15548
  this.a = t, this.b = r, this.c = i;
15549
15549
  },
15550
15550
  Ht(n, t) {
15551
- var r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U = u.Fa.a(n.d), B = u.sv, _ = e.w([], B), J = e.w([], B);
15551
+ var r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U = u.Fa.a(n.d), B = u.sv, _ = e.w([], B), J = e.w([], B);
15552
15552
  if (g.dR(U.gaR())) return new e.dd(_, J, !1);
15553
15553
  for (r = g.xJ(U.gaR(), new e.vQ(), u.N), _ = u.e, J = e.de(t, e.mi(), _), i = e.V(J), o = i.i("az<1>"), l = e.u(new e.az(J, i.i("A(1)").a(new e.vR(r)), o), !0, o.i("z.E")), o = u.Cw, f = e.w([], o), i = u.p, J = g.F(U.gaR(), new e.vS(), i), h = e.u(J, !0, J.$ti.i("y.E")), J = u.eH, p = e.D(i, J), m = e.GV(n, l), b = U.c, y = b !== !1, w = 0, E = 0, C = !1; C ? T = !1 : a.d.aF(h, new e.vT(l)) ? T = !y || w === 0 : T = !1, !!T; )
15554
15554
  e: {
15555
15555
  if (!(E < h.length)) return e.p(h, E);
15556
- if (R = h[E], a.d.W(f, R) || p.gK(0).bi(0, new e.vU(R))) {
15556
+ if (M = h[E], a.d.W(f, M) || p.gK(0).bi(0, new e.vU(M))) {
15557
15557
  if (!(E < h.length)) return e.p(h, E);
15558
15558
  if (T = h[E], typeof T != "number") return T.b_();
15559
15559
  a.d.A(h, E, T + 1);
15560
15560
  break e;
15561
15561
  }
15562
- if (S = g.dQ(U.gaR(), E), R >>> 0 !== R || R >= l.length) return e.p(l, R);
15563
- if (k = l[R], g.aB(S.gaU(), k.a) && (p.h(0, E) == null && p.A(0, E, e.w([], o)), T = p.h(0, E), T != null && a.d.B(T, R), p.h(0, E).length >= S.gaM())) {
15562
+ if (S = g.dQ(U.gaR(), E), M >>> 0 !== M || M >= l.length) return e.p(l, M);
15563
+ if (k = l[M], g.aB(S.gaU(), k.a) && (p.h(0, E) == null && p.A(0, E, e.w([], o)), T = p.h(0, E), T != null && a.d.B(T, M), p.h(0, E).length >= S.gaM())) {
15564
15564
  if (++E, E === g.aF(U.gaR())) {
15565
15565
  for (T = p.gK(0), D = e.E(T), D = D.i("@<1>").P(D.y[1]), T = new e.ea(g.ax(T.a), T.b, D.i("ea<1,2>")), D = D.y[1]; T.v(); )
15566
15566
  Y = T.a, a.d.E(f, Y ?? D.a(Y));
@@ -15953,9 +15953,9 @@ var es = {};
15953
15953
  },
15954
15954
  no: function() {
15955
15955
  },
15956
- fw: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S) {
15956
+ fw: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S) {
15957
15957
  var k = this;
15958
- k.a = t, k.b = r, k.c = i, k.d = o, k.e = l, k.f = f, k.r = h, k.w = p, k.x = m, k.y = b, k.z = y, k.Q = w, k.as = E, k.ax = C, k.ay = T, k.ch = R, k.CW = S;
15958
+ k.a = t, k.b = r, k.c = i, k.d = o, k.e = l, k.f = f, k.r = h, k.w = p, k.x = m, k.y = b, k.z = y, k.Q = w, k.as = E, k.ax = C, k.ay = T, k.ch = M, k.CW = S;
15959
15959
  },
15960
15960
  B(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T) {
15961
15961
  return new e.eX(p, r, l, b, T, E, h, o, w, f, m, n, i);
@@ -16025,15 +16025,15 @@ var es = {};
16025
16025
  this.a = t, this.b = 0;
16026
16026
  },
16027
16027
  Co(n, t, r, i, o) {
16028
- var l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce = e.xx(r, e.Hn(), null);
16029
- return Ce.toString, l = u.jM.a(A.xE().h(0, Ce)), f = l.e, 0 >= f.length ? e.p(f, 0) : (h = A.mo(), p = o, m = new e.nT(n).$1(l), b = l.r, m == null ? b = new e.kb(b, t) : (b = new e.kb(b, t), y = new e.kq(m), y.v(), new e.nS(l, y, !0, p, i, b).ig()), y = b.b, w = b.a, E = b.d, C = b.c, T = b.e, R = a.f.aP(Math.log(T) / A.B7()), S = b.ax, k = b.f, D = b.r, Y = b.w, U = b.x, B = b.y, _ = b.z, J = b.Q, ae = b.at, new e.nR(w, y, C, E, _, J, b.as, ae, S, D, Y, U, B, k, T, R, m, Ce, l, new e.cK(""), f.charCodeAt(0) - h));
16028
+ var l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce = e.xx(r, e.Hn(), null);
16029
+ return Ce.toString, l = u.jM.a(A.xE().h(0, Ce)), f = l.e, 0 >= f.length ? e.p(f, 0) : (h = A.mo(), p = o, m = new e.nT(n).$1(l), b = l.r, m == null ? b = new e.kb(b, t) : (b = new e.kb(b, t), y = new e.kq(m), y.v(), new e.nS(l, y, !0, p, i, b).ig()), y = b.b, w = b.a, E = b.d, C = b.c, T = b.e, M = a.f.aP(Math.log(T) / A.B7()), S = b.ax, k = b.f, D = b.r, Y = b.w, U = b.x, B = b.y, _ = b.z, J = b.Q, ae = b.at, new e.nR(w, y, C, E, _, J, b.as, ae, S, D, Y, U, B, k, T, M, m, Ce, l, new e.cK(""), f.charCodeAt(0) - h));
16030
16030
  },
16031
16031
  Cp(n) {
16032
16032
  return A.xE().a2(n);
16033
16033
  },
16034
- nR: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U) {
16034
+ nR: function(t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U) {
16035
16035
  var B = this;
16036
- B.a = t, B.b = r, B.c = i, B.d = o, B.e = l, B.f = f, B.r = h, B.w = p, B.x = m, B.z = b, B.Q = y, B.as = w, B.at = E, B.ax = C, B.CW = T, B.cx = R, B.cy = S, B.db = k, B.dx = D, B.fy = Y, B.id = U;
16036
+ B.a = t, B.b = r, B.c = i, B.d = o, B.e = l, B.f = f, B.r = h, B.w = p, B.x = m, B.z = b, B.Q = y, B.as = w, B.at = E, B.ax = C, B.CW = T, B.cx = M, B.cy = S, B.db = k, B.dx = D, B.fy = Y, B.id = U;
16037
16037
  },
16038
16038
  nT: function(t) {
16039
16039
  this.a = t;
@@ -19148,7 +19148,7 @@ var es = {};
19148
19148
  return o.c < n.c ? o : (o.er(n), t = e.x2(A.x_.aw(), 0, A.ij.aw(), A.ij.aw()), r = e.bQ(A.ij.aw(), t), i = new e.aY(!1, t, r), A.x1.aw() > 0 && (i = i.e6(0, A.x1.aw())), o.a && i.c > 0 ? i.aL(0) : i);
19149
19149
  },
19150
19150
  er(n) {
19151
- var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k = this, D = k.c;
19151
+ var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k = this, D = k.c;
19152
19152
  if (!(D === A.zg && n.c === A.zi && k.b === A.zf && n.b === A.zh)) {
19153
19153
  if (t = n.b, r = n.c, i = r - 1, !(i >= 0 && i < t.length)) return e.p(t, i);
19154
19154
  if (o = 16 - a.e.geQ(t[i]), o > 0 ? (l = new Uint16Array(r + 5), f = e.ze(t, r, o, l), h = new Uint16Array(D + 5), p = e.ze(k.b, D, o, h)) : (h = e.x2(k.b, 0, D, D + 2), f = r, l = t, p = D), i = f - 1, !(i >= 0 && i < l.length)) return e.p(l, i);
@@ -19160,11 +19160,11 @@ var es = {};
19160
19160
  h[p] = 0;
19161
19161
  }
19162
19162
  if (C = f + 2, T = new Uint16Array(C), !(f >= 0 && f < C)) return e.p(T, f);
19163
- for (T[f] = 1, e.kJ(T, f + 1, l, f, T), R = p - 1; b > 0; ) {
19164
- if (S = e.DG(m, h, R), --b, e.zk(S, T, 0, h, b, f), !(R >= 0 && R < i)) return e.p(h, R);
19165
- if (h[R] < S)
19166
- for (w = e.x3(T, f, b, y), e.kJ(h, E, y, w, h); --S, h[R] < S; ) e.kJ(h, E, y, w, h);
19167
- --R;
19163
+ for (T[f] = 1, e.kJ(T, f + 1, l, f, T), M = p - 1; b > 0; ) {
19164
+ if (S = e.DG(m, h, M), --b, e.zk(S, T, 0, h, b, f), !(M >= 0 && M < i)) return e.p(h, M);
19165
+ if (h[M] < S)
19166
+ for (w = e.x3(T, f, b, y), e.kJ(h, E, y, w, h); --S, h[M] < S; ) e.kJ(h, E, y, w, h);
19167
+ --M;
19168
19168
  }
19169
19169
  A.zf = k.b, A.zg = D, A.zh = t, A.zi = r, A.x_.b = h, A.x0.b = E, A.ij.b = f, A.x1.b = o;
19170
19170
  }
@@ -20899,9 +20899,9 @@ Arguments: [` + p + "]";
20899
20899
  return this.gn().$1$balance(n);
20900
20900
  }
20901
20901
  }, e.ee.prototype = {
20902
- $44$activeItems$adjustedTotal$adjustments$balance$calculatorVersion$completedAt$delivery$dineIn$dynamicQrSession$effectGroups$effects$foodpandaPickup$fullTaxInvoice$grabfoodPickup$grossTotal$id$inHouseDelivery$is_$issued$items$machineId$membership$minPriceMode$nettTaxes$nettTotal$payments$person$pickup$preorderOn$qrOrder$queueInfo$refund$refundRecord$refundedFrom$remark$reward$roundToNearest$rounding$seqNumber$shopeefoodPickup$slot$status$taxes$voucherIssued(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Me, qe, ut, ot, dt) {
20903
- var he = this.a, He = T == null ? he.a : e.h(T), Ft = a.a === ce ? he.b : e.m(ce), jt = ut == null ? he.c : u.ce.a(ut), tt = qe == null ? he.d : e.h(qe), x = D == null ? he.gJ() : u.C.a(D), P = r == null ? he.gV() : u.j_.a(r), O = Ce == null ? he.r : e.O(Ce), q = a.a === l ? he.w : e.m(l), $ = a.a === ot ? he.gI() : u.cb.a(ot), W = S == null ? he.y : u.nU.a(S), ye = a.a === xe ? he.z : e.m(xe), pe = a.a === Oe ? he.Q : u.dB.a(Oe), Be = a.a === Ne ? he.gdL() : u.y.a(Ne), Ve = a.a === b ? he.gag() : u.ie.a(b), Ge = a.a === m ? he.gc1() : u.DH.a(m), gt = a.a === Ie ? he.ay : u.jw.a(Ie), Ht = a.a === U ? he.ch : u.uQ.a(U), Pn = a.a === R ? he.CW : u.ex.a(R), In = a.a === f ? he.cx : u.ny.a(f), jn = a.a === Ae ? he.cy : u.AL.a(Ae), Sn = a.a === y ? he.db : u.Ca.a(y), On = a.a === E ? he.dx : u.Ca.a(E), Rn = a.a === Me ? he.dy : u.Ca.a(Me), Mn = a.a === Ee ? he.fr : e.m(Ee), kn = a.a === Fe ? he.fx : u.zm.a(Fe), Dn = a.a === h ? he.fy : u.zP.a(h), Nn = a.a === Ye ? he.go : e.aI(Ye), qn = C == null ? he.id : u.o.a(C), Bn = _ == null ? he.gdD() : u.yW.a(_), Vn = t == null ? he.k2 : u.o.a(t), Ln = J == null ? he.k3 : u.o.a(J), ki = Le == null ? he.k4 : u.o.a(Le), Di = n == null ? he.gby() : u.m.a(n), Ni = ae == null ? he.gaV() : u.hM.a(ae), qi = i == null ? he.p2 : u.o.a(i), Bi = a.a === k ? he.gdz() : u.hq.a(k), Vi = a.a === dt ? he.p4 : u.kG.a(dt), Li = a.a === De ? he.R8 : u.iW.a(De), Hi = a.a === Pe ? he.RG : e.m(Pe), Ui = a.a === p ? he.rx : u.iH.a(p), xi = a.a === o ? he.ry : e.aI(o), Gi = a.a === Y ? he.to : e.m(Y), Xi = a.a === B ? he.x1 : u.F2.a(B);
20904
- return this.b.$1(this.$ti.i("ee.1").a(he.iO(Di, Vn, P, qi, xi, q, In, Dn, Ui, Ge, Ve, Sn, a.a === w ? he.x2 : u.yX.a(w), On, qn, He, Pn, W, Bi, x, Gi, Ht, Xi, Bn, Ln, Ni, O, jn, Mn, Li, kn, pe, Be, ye, Hi, gt, Nn, ki, Ft, Rn, tt, jt, $, Vi)));
20902
+ $44$activeItems$adjustedTotal$adjustments$balance$calculatorVersion$completedAt$delivery$dineIn$dynamicQrSession$effectGroups$effects$foodpandaPickup$fullTaxInvoice$grabfoodPickup$grossTotal$id$inHouseDelivery$is_$issued$items$machineId$membership$minPriceMode$nettTaxes$nettTotal$payments$person$pickup$preorderOn$qrOrder$queueInfo$refund$refundRecord$refundedFrom$remark$reward$roundToNearest$rounding$seqNumber$shopeefoodPickup$slot$status$taxes$voucherIssued(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Re, qe, ut, ot, dt) {
20903
+ var he = this.a, He = T == null ? he.a : e.h(T), Ft = a.a === ce ? he.b : e.m(ce), jt = ut == null ? he.c : u.ce.a(ut), tt = qe == null ? he.d : e.h(qe), x = D == null ? he.gJ() : u.C.a(D), P = r == null ? he.gV() : u.j_.a(r), O = Ce == null ? he.r : e.O(Ce), q = a.a === l ? he.w : e.m(l), $ = a.a === ot ? he.gI() : u.cb.a(ot), W = S == null ? he.y : u.nU.a(S), ye = a.a === xe ? he.z : e.m(xe), pe = a.a === Oe ? he.Q : u.dB.a(Oe), Be = a.a === Ne ? he.gdL() : u.y.a(Ne), Ve = a.a === b ? he.gag() : u.ie.a(b), Ge = a.a === m ? he.gc1() : u.DH.a(m), gt = a.a === Ie ? he.ay : u.jw.a(Ie), Ht = a.a === U ? he.ch : u.uQ.a(U), Pn = a.a === M ? he.CW : u.ex.a(M), In = a.a === f ? he.cx : u.ny.a(f), jn = a.a === Ae ? he.cy : u.AL.a(Ae), Sn = a.a === y ? he.db : u.Ca.a(y), On = a.a === E ? he.dx : u.Ca.a(E), Mn = a.a === Re ? he.dy : u.Ca.a(Re), Rn = a.a === Ee ? he.fr : e.m(Ee), kn = a.a === Fe ? he.fx : u.zm.a(Fe), Dn = a.a === h ? he.fy : u.zP.a(h), Nn = a.a === Ye ? he.go : e.aI(Ye), qn = C == null ? he.id : u.o.a(C), Bn = _ == null ? he.gdD() : u.yW.a(_), Vn = t == null ? he.k2 : u.o.a(t), Ln = J == null ? he.k3 : u.o.a(J), ki = Le == null ? he.k4 : u.o.a(Le), Di = n == null ? he.gby() : u.m.a(n), Ni = ae == null ? he.gaV() : u.hM.a(ae), qi = i == null ? he.p2 : u.o.a(i), Bi = a.a === k ? he.gdz() : u.hq.a(k), Vi = a.a === dt ? he.p4 : u.kG.a(dt), Li = a.a === De ? he.R8 : u.iW.a(De), Hi = a.a === Pe ? he.RG : e.m(Pe), Ui = a.a === p ? he.rx : u.iH.a(p), xi = a.a === o ? he.ry : e.aI(o), Gi = a.a === Y ? he.to : e.m(Y), Xi = a.a === B ? he.x1 : u.F2.a(B);
20904
+ return this.b.$1(this.$ti.i("ee.1").a(he.iO(Di, Vn, P, qi, xi, q, In, Dn, Ui, Ge, Ve, Sn, a.a === w ? he.x2 : u.yX.a(w), On, qn, He, Pn, W, Bi, x, Gi, Ht, Xi, Bn, Ln, Ni, O, jn, Rn, Li, kn, pe, Be, ye, Hi, gt, Nn, ki, Ft, Mn, tt, jt, $, Vi)));
20905
20905
  },
20906
20906
  $0() {
20907
20907
  var n = null;
@@ -20960,9 +20960,9 @@ Arguments: [` + p + "]";
20960
20960
  return this.$44$activeItems$adjustedTotal$adjustments$balance$calculatorVersion$completedAt$delivery$dineIn$dynamicQrSession$effectGroups$effects$foodpandaPickup$fullTaxInvoice$grabfoodPickup$grossTotal$id$inHouseDelivery$is_$issued$items$machineId$membership$minPriceMode$nettTaxes$nettTotal$payments$person$pickup$preorderOn$qrOrder$queueInfo$refund$refundRecord$refundedFrom$remark$reward$roundToNearest$rounding$seqNumber$shopeefoodPickup$slot$status$taxes$voucherIssued(t, t, t, n, a.a, a.a, a.a, a.a, a.a, a.a, a.a, a.a, a.a, a.a, t, t, a.a, t, a.a, t, a.a, a.a, a.a, t, t, t, t, a.a, a.a, a.a, a.a, a.a, a.a, a.a, a.a, a.a, a.a, t, a.a, a.a, t, t, a.a, a.a);
20961
20961
  }
20962
20962
  }, e.iQ.prototype = {
20963
- $44$activeItems$adjustedTotal$adjustments$balance$calculatorVersion$completedAt$delivery$dineIn$dynamicQrSession$effectGroups$effects$foodpandaPickup$fullTaxInvoice$grabfoodPickup$grossTotal$id$inHouseDelivery$is_$issued$items$machineId$membership$minPriceMode$nettTaxes$nettTotal$payments$person$pickup$preorderOn$qrOrder$queueInfo$refund$refundRecord$refundedFrom$remark$reward$roundToNearest$rounding$seqNumber$shopeefoodPickup$slot$status$taxes$voucherIssued(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Me, qe, ut, ot, dt) {
20964
- var he = this, He = T == null ? he.a.a : e.h(T), Ft = a.a === ce ? he.a.b : e.m(ce), jt = ut == null ? he.a.c : u.ce.a(ut), tt = qe == null ? he.a.d : e.h(qe), x = D == null ? he.a.e : u.C.a(D), P = r == null ? he.a.f : u.j_.a(r), O = Ce == null ? he.a.r : e.O(Ce), q = a.a === l ? he.a.w : e.m(l), $ = a.a === ot ? he.a.x : u.cb.a(ot), W = S == null ? he.a.y : u.nU.a(S), ye = a.a === xe ? he.a.z : e.m(xe), pe = a.a === Oe ? he.a.Q : u.dB.a(Oe), Be = a.a === Ne ? he.a.as : u.y.a(Ne), Ve = a.a === b ? he.a.at : u.ie.a(b), Ge = a.a === m ? he.a.ax : u.DH.a(m), gt = a.a === Ie ? he.a.ay : u.jw.a(Ie), Ht = a.a === U ? he.a.ch : u.uQ.a(U), Pn = a.a === R ? he.a.CW : u.ex.a(R), In = a.a === f ? he.a.cx : u.ny.a(f), jn = a.a === Ae ? he.a.cy : u.AL.a(Ae), Sn = a.a === y ? he.a.db : u.Ca.a(y), On = a.a === E ? he.a.dx : u.Ca.a(E), Rn = a.a === Me ? he.a.dy : u.Ca.a(Me), Mn = a.a === Ee ? he.a.fr : e.m(Ee), kn = a.a === Fe ? he.a.fx : u.zm.a(Fe), Dn = a.a === h ? he.a.fy : u.zP.a(h), Nn = a.a === Ye ? he.a.go : e.aI(Ye), qn = C == null ? he.a.id : u.o.a(C), Bn = _ == null ? he.a.k1 : u.yW.a(_), Vn = t == null ? he.a.k2 : u.o.a(t), Ln = J == null ? he.a.k3 : u.o.a(J), ki = Le == null ? he.a.k4 : u.o.a(Le), Di = n == null ? he.a.ok : u.m.a(n), Ni = ae == null ? he.a.p1 : u.hM.a(ae), qi = i == null ? he.a.p2 : u.o.a(i), Bi = a.a === k ? he.a.p3 : u.hq.a(k), Vi = a.a === dt ? he.a.p4 : u.kG.a(dt), Li = a.a === De ? he.a.R8 : u.iW.a(De), Hi = a.a === Pe ? he.a.RG : e.m(Pe), Ui = a.a === p ? he.a.rx : u.iH.a(p), xi = a.a === o ? he.a.ry : e.aI(o), Gi = a.a === Y ? he.a.to : e.m(Y), Xi = a.a === B ? he.a.x1 : u.F2.a(B);
20965
- return he.b.$1(e.wY(Di, Vn, P, qi, xi, q, In, Dn, Ui, Ge, Ve, Sn, a.a === w ? he.a.x2 : u.yX.a(w), On, qn, He, Pn, W, Bi, x, Gi, Ht, Xi, Bn, Ln, Ni, O, jn, Mn, Li, kn, pe, Be, ye, Hi, gt, Nn, ki, Ft, Rn, tt, jt, $, Vi));
20963
+ $44$activeItems$adjustedTotal$adjustments$balance$calculatorVersion$completedAt$delivery$dineIn$dynamicQrSession$effectGroups$effects$foodpandaPickup$fullTaxInvoice$grabfoodPickup$grossTotal$id$inHouseDelivery$is_$issued$items$machineId$membership$minPriceMode$nettTaxes$nettTotal$payments$person$pickup$preorderOn$qrOrder$queueInfo$refund$refundRecord$refundedFrom$remark$reward$roundToNearest$rounding$seqNumber$shopeefoodPickup$slot$status$taxes$voucherIssued(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Re, qe, ut, ot, dt) {
20964
+ var he = this, He = T == null ? he.a.a : e.h(T), Ft = a.a === ce ? he.a.b : e.m(ce), jt = ut == null ? he.a.c : u.ce.a(ut), tt = qe == null ? he.a.d : e.h(qe), x = D == null ? he.a.e : u.C.a(D), P = r == null ? he.a.f : u.j_.a(r), O = Ce == null ? he.a.r : e.O(Ce), q = a.a === l ? he.a.w : e.m(l), $ = a.a === ot ? he.a.x : u.cb.a(ot), W = S == null ? he.a.y : u.nU.a(S), ye = a.a === xe ? he.a.z : e.m(xe), pe = a.a === Oe ? he.a.Q : u.dB.a(Oe), Be = a.a === Ne ? he.a.as : u.y.a(Ne), Ve = a.a === b ? he.a.at : u.ie.a(b), Ge = a.a === m ? he.a.ax : u.DH.a(m), gt = a.a === Ie ? he.a.ay : u.jw.a(Ie), Ht = a.a === U ? he.a.ch : u.uQ.a(U), Pn = a.a === M ? he.a.CW : u.ex.a(M), In = a.a === f ? he.a.cx : u.ny.a(f), jn = a.a === Ae ? he.a.cy : u.AL.a(Ae), Sn = a.a === y ? he.a.db : u.Ca.a(y), On = a.a === E ? he.a.dx : u.Ca.a(E), Mn = a.a === Re ? he.a.dy : u.Ca.a(Re), Rn = a.a === Ee ? he.a.fr : e.m(Ee), kn = a.a === Fe ? he.a.fx : u.zm.a(Fe), Dn = a.a === h ? he.a.fy : u.zP.a(h), Nn = a.a === Ye ? he.a.go : e.aI(Ye), qn = C == null ? he.a.id : u.o.a(C), Bn = _ == null ? he.a.k1 : u.yW.a(_), Vn = t == null ? he.a.k2 : u.o.a(t), Ln = J == null ? he.a.k3 : u.o.a(J), ki = Le == null ? he.a.k4 : u.o.a(Le), Di = n == null ? he.a.ok : u.m.a(n), Ni = ae == null ? he.a.p1 : u.hM.a(ae), qi = i == null ? he.a.p2 : u.o.a(i), Bi = a.a === k ? he.a.p3 : u.hq.a(k), Vi = a.a === dt ? he.a.p4 : u.kG.a(dt), Li = a.a === De ? he.a.R8 : u.iW.a(De), Hi = a.a === Pe ? he.a.RG : e.m(Pe), Ui = a.a === p ? he.a.rx : u.iH.a(p), xi = a.a === o ? he.a.ry : e.aI(o), Gi = a.a === Y ? he.a.to : e.m(Y), Xi = a.a === B ? he.a.x1 : u.F2.a(B);
20965
+ return he.b.$1(e.wY(Di, Vn, P, qi, xi, q, In, Dn, Ui, Ge, Ve, Sn, a.a === w ? he.a.x2 : u.yX.a(w), On, qn, He, Pn, W, Bi, x, Gi, Ht, Xi, Bn, Ln, Ni, O, jn, Rn, Li, kn, pe, Be, ye, Hi, gt, Nn, ki, Ft, Mn, tt, jt, $, Vi));
20966
20966
  },
20967
20967
  $0() {
20968
20968
  var n = null;
@@ -21083,8 +21083,8 @@ Arguments: [` + p + "]";
21083
21083
  iJ(n, t) {
21084
21084
  return this.gn().$2$calculatorVersion$effectGroups(n, t);
21085
21085
  },
21086
- iO(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Me, qe, ut, ot, dt) {
21087
- return this.gn().$44$activeItems$adjustedTotal$adjustments$balance$calculatorVersion$completedAt$delivery$dineIn$dynamicQrSession$effectGroups$effects$foodpandaPickup$fullTaxInvoice$grabfoodPickup$grossTotal$id$inHouseDelivery$is_$issued$items$machineId$membership$minPriceMode$nettTaxes$nettTotal$payments$person$pickup$preorderOn$qrOrder$queueInfo$refund$refundRecord$refundedFrom$remark$reward$roundToNearest$rounding$seqNumber$shopeefoodPickup$slot$status$taxes$voucherIssued(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Me, qe, ut, ot, dt);
21086
+ iO(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Re, qe, ut, ot, dt) {
21087
+ return this.gn().$44$activeItems$adjustedTotal$adjustments$balance$calculatorVersion$completedAt$delivery$dineIn$dynamicQrSession$effectGroups$effects$foodpandaPickup$fullTaxInvoice$grabfoodPickup$grossTotal$id$inHouseDelivery$is_$issued$items$machineId$membership$minPriceMode$nettTaxes$nettTotal$payments$person$pickup$preorderOn$qrOrder$queueInfo$refund$refundRecord$refundedFrom$remark$reward$roundToNearest$rounding$seqNumber$shopeefoodPickup$slot$status$taxes$voucherIssued(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le, ce, Re, qe, ut, ot, dt);
21088
21088
  },
21089
21089
  bZ(n) {
21090
21090
  return this.gn().$1$items(n);
@@ -21182,8 +21182,8 @@ Arguments: [` + p + "]";
21182
21182
  }
21183
21183
  }, e.ed.prototype = {
21184
21184
  $12$adjustment$adjustmentRule$afterTaxLevel$cause$createApprovedBy$createdBy$excludeIds$ignoreMinPrice$reason$referenceId$remark$total(n, t, r, i, o, l, f, h, p, m, b, y) {
21185
- var w = this.a, E = i == null ? w.a : u.E.a(i), C = a.a === m ? w.b : e.m(m), T = a.a === p ? w.c : e.m(p), R = n == null ? w.d : u.n.a(n), S = a.a === t ? w.e : u.AB.a(t), k = y == null ? w.f : u.o.a(y), D = l == null ? w.r : u.b.a(l), Y = o == null ? w.w : u.b.a(o), U = r == null ? w.x : e.O(r), B = a.a === b ? w.y : e.m(b), _ = a.a === f ? w.gbo() : u.y.a(f);
21186
- return this.b.$1(this.$ti.i("ed.1").a(w.iG(R, S, U, E, Y, D, _, a.a === h ? w.Q : e.X(h), T, C, B, k)));
21185
+ var w = this.a, E = i == null ? w.a : u.E.a(i), C = a.a === m ? w.b : e.m(m), T = a.a === p ? w.c : e.m(p), M = n == null ? w.d : u.n.a(n), S = a.a === t ? w.e : u.AB.a(t), k = y == null ? w.f : u.o.a(y), D = l == null ? w.r : u.b.a(l), Y = o == null ? w.w : u.b.a(o), U = r == null ? w.x : e.O(r), B = a.a === b ? w.y : e.m(b), _ = a.a === f ? w.gbo() : u.y.a(f);
21186
+ return this.b.$1(this.$ti.i("ed.1").a(w.iG(M, S, U, E, Y, D, _, a.a === h ? w.Q : e.X(h), T, C, B, k)));
21187
21187
  },
21188
21188
  $0() {
21189
21189
  var n = null;
@@ -21207,8 +21207,8 @@ Arguments: [` + p + "]";
21207
21207
  }
21208
21208
  }, e.iO.prototype = {
21209
21209
  $12$adjustment$adjustmentRule$afterTaxLevel$cause$createApprovedBy$createdBy$excludeIds$ignoreMinPrice$reason$referenceId$remark$total(n, t, r, i, o, l, f, h, p, m, b, y) {
21210
- var w = this, E = i == null ? w.a.a : u.E.a(i), C = a.a === m ? w.a.b : e.m(m), T = a.a === p ? w.a.c : e.m(p), R = n == null ? w.a.d : u.n.a(n), S = a.a === t ? w.a.e : u.AB.a(t), k = y == null ? w.a.f : u.o.a(y), D = l == null ? w.a.r : u.b.a(l), Y = o == null ? w.a.w : u.b.a(o), U = r == null ? w.a.x : e.O(r), B = a.a === b ? w.a.y : e.m(b), _ = a.a === f ? w.a.z : u.y.a(f), J = a.a === h ? w.a.Q : e.X(h);
21211
- return w.b.$1(new e.cr(E, C, T, R, S, k, D, Y, U, B, _, J));
21210
+ var w = this, E = i == null ? w.a.a : u.E.a(i), C = a.a === m ? w.a.b : e.m(m), T = a.a === p ? w.a.c : e.m(p), M = n == null ? w.a.d : u.n.a(n), S = a.a === t ? w.a.e : u.AB.a(t), k = y == null ? w.a.f : u.o.a(y), D = l == null ? w.a.r : u.b.a(l), Y = o == null ? w.a.w : u.b.a(o), U = r == null ? w.a.x : e.O(r), B = a.a === b ? w.a.y : e.m(b), _ = a.a === f ? w.a.z : u.y.a(f), J = a.a === h ? w.a.Q : e.X(h);
21211
+ return w.b.$1(new e.cr(E, C, T, M, S, k, D, Y, U, B, _, J));
21212
21212
  },
21213
21213
  $0() {
21214
21214
  var n = null;
@@ -21362,12 +21362,12 @@ Arguments: [` + p + "]";
21362
21362
  ff(n, t) {
21363
21363
  return this.gn().$2$deliveryFeeTaxes$otherChargeTaxes(n, t);
21364
21364
  },
21365
- f9(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k) {
21366
- return this.gn().$19$canRefund$catalogId$commissionCharge$customer$deliveryAt$deliveryFee$deliveryFeeTaxes$driver$id$key$name$orderId$otherCharge$otherChargeTaxes$paymentTypeKey$pickupRef$preparing$remark$slotPrefix(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k);
21365
+ f9(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k) {
21366
+ return this.gn().$19$canRefund$catalogId$commissionCharge$customer$deliveryAt$deliveryFee$deliveryFeeTaxes$driver$id$key$name$orderId$otherCharge$otherChargeTaxes$paymentTypeKey$pickupRef$preparing$remark$slotPrefix(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k);
21367
21367
  }
21368
21368
  }, e.cO.prototype = {
21369
- $19$canRefund$catalogId$commissionCharge$customer$deliveryAt$deliveryFee$deliveryFeeTaxes$driver$id$key$name$orderId$otherCharge$otherChargeTaxes$paymentTypeKey$pickupRef$preparing$remark$slotPrefix(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k) {
21370
- var D = this.a, Y = a.a === p ? D.gc4(D) : e.m(p), U = m == null ? D.gc8() : e.h(m), B = b == null ? D.ga8(D) : e.h(b), _ = k == null ? D.ge7() : e.h(k), J = a.a === C ? D.gfQ() : e.m(C), ae = a.a === t ? D.geR() : e.m(t), Ce = a.a === y ? D.gca() : e.m(y), Ae = a.a === S ? D.gaD() : e.m(S), Ee = a.a === R ? D.gfV() : e.X(R), De = a.a === T ? D.gfT() : e.m(T), Fe = a.a === h ? D.gfv() : u.cE.a(h), Oe = a.a === i ? D.gaT() : u.pi.a(i), Ne = a.a === w ? D.gaI() : u.S.a(w), xe = a.a === o ? D.gft() : e.m(o), Pe = a.a === l ? D.gbE() : u.S.a(l), Ie = a.a === f ? D.gbF() : u.Ag.a(f), Ye = a.a === E ? D.gaz() : u.Ag.a(E), Le = a.a === r ? D.geV() : u.S.a(r);
21369
+ $19$canRefund$catalogId$commissionCharge$customer$deliveryAt$deliveryFee$deliveryFeeTaxes$driver$id$key$name$orderId$otherCharge$otherChargeTaxes$paymentTypeKey$pickupRef$preparing$remark$slotPrefix(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k) {
21370
+ var D = this.a, Y = a.a === p ? D.gc4(D) : e.m(p), U = m == null ? D.gc8() : e.h(m), B = b == null ? D.ga8(D) : e.h(b), _ = k == null ? D.ge7() : e.h(k), J = a.a === C ? D.gfQ() : e.m(C), ae = a.a === t ? D.geR() : e.m(t), Ce = a.a === y ? D.gca() : e.m(y), Ae = a.a === S ? D.gaD() : e.m(S), Ee = a.a === M ? D.gfV() : e.X(M), De = a.a === T ? D.gfT() : e.m(T), Fe = a.a === h ? D.gfv() : u.cE.a(h), Oe = a.a === i ? D.gaT() : u.pi.a(i), Ne = a.a === w ? D.gaI() : u.S.a(w), xe = a.a === o ? D.gft() : e.m(o), Pe = a.a === l ? D.gbE() : u.S.a(l), Ie = a.a === f ? D.gbF() : u.Ag.a(f), Ye = a.a === E ? D.gaz() : u.Ag.a(E), Le = a.a === r ? D.geV() : u.S.a(r);
21371
21371
  return this.b.$1(e.E(this).i("cO.1").a(D.f9(a.a === n ? D.gbY() : e.X(n), ae, Le, Oe, xe, Pe, Ie, Fe, Y, U, B, Ce, Ne, Ye, J, De, Ee, Ae, _)));
21372
21372
  },
21373
21373
  $0() {
@@ -21380,8 +21380,8 @@ Arguments: [` + p + "]";
21380
21380
  return this.$19$canRefund$catalogId$commissionCharge$customer$deliveryAt$deliveryFee$deliveryFeeTaxes$driver$id$key$name$orderId$otherCharge$otherChargeTaxes$paymentTypeKey$pickupRef$preparing$remark$slotPrefix(a.a, a.a, a.a, a.a, a.a, a.a, a.a, a.a, a.a, null, null, a.a, a.a, n, a.a, a.a, a.a, a.a, null);
21381
21381
  }
21382
21382
  }, e.iP.prototype = {
21383
- $19$canRefund$catalogId$commissionCharge$customer$deliveryAt$deliveryFee$deliveryFeeTaxes$driver$id$key$name$orderId$otherCharge$otherChargeTaxes$paymentTypeKey$pickupRef$preparing$remark$slotPrefix(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k) {
21384
- var D = this, Y = a.a === p ? D.a.a : e.m(p), U = m == null ? D.a.b : e.h(m), B = b == null ? D.a.c : e.h(b), _ = k == null ? D.a.d : e.h(k), J = a.a === C ? D.a.e : e.m(C), ae = a.a === t ? D.a.f : e.m(t), Ce = a.a === y ? D.a.r : e.m(y), Ae = a.a === S ? D.a.w : e.m(S), Ee = a.a === R ? D.a.x : e.X(R), De = a.a === T ? D.a.y : e.m(T), Fe = a.a === h ? D.a.z : u.cE.a(h), Oe = a.a === i ? D.a.Q : u.pi.a(i), Ne = a.a === w ? D.a.as : u.S.a(w), xe = a.a === o ? D.a.at : e.m(o), Pe = a.a === l ? D.a.ax : u.S.a(l), Ie = a.a === f ? D.a.ay : u.Ag.a(f), Ye = a.a === E ? D.a.ch : u.Ag.a(E), Le = a.a === r ? D.a.CW : u.S.a(r);
21383
+ $19$canRefund$catalogId$commissionCharge$customer$deliveryAt$deliveryFee$deliveryFeeTaxes$driver$id$key$name$orderId$otherCharge$otherChargeTaxes$paymentTypeKey$pickupRef$preparing$remark$slotPrefix(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k) {
21384
+ var D = this, Y = a.a === p ? D.a.a : e.m(p), U = m == null ? D.a.b : e.h(m), B = b == null ? D.a.c : e.h(b), _ = k == null ? D.a.d : e.h(k), J = a.a === C ? D.a.e : e.m(C), ae = a.a === t ? D.a.f : e.m(t), Ce = a.a === y ? D.a.r : e.m(y), Ae = a.a === S ? D.a.w : e.m(S), Ee = a.a === M ? D.a.x : e.X(M), De = a.a === T ? D.a.y : e.m(T), Fe = a.a === h ? D.a.z : u.cE.a(h), Oe = a.a === i ? D.a.Q : u.pi.a(i), Ne = a.a === w ? D.a.as : u.S.a(w), xe = a.a === o ? D.a.at : e.m(o), Pe = a.a === l ? D.a.ax : u.S.a(l), Ie = a.a === f ? D.a.ay : u.Ag.a(f), Ye = a.a === E ? D.a.ch : u.Ag.a(E), Le = a.a === r ? D.a.CW : u.S.a(r);
21385
21385
  return D.b.$1(e.z_(a.a === n ? D.a.cx : e.X(n), ae, Le, Oe, xe, Pe, Ie, Fe, Y, U, B, Ce, Ne, Ye, J, De, Ee, Ae, _));
21386
21386
  },
21387
21387
  $0() {
@@ -21424,8 +21424,8 @@ Arguments: [` + p + "]";
21424
21424
  ff(n, t) {
21425
21425
  return this.gn().$2$deliveryFeeTaxes$otherChargeTaxes(n, t);
21426
21426
  },
21427
- f9(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k) {
21428
- return this.gn().$19$canRefund$catalogId$commissionCharge$customer$deliveryAt$deliveryFee$deliveryFeeTaxes$driver$id$key$name$orderId$otherCharge$otherChargeTaxes$paymentTypeKey$pickupRef$preparing$remark$slotPrefix(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k);
21427
+ f9(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k) {
21428
+ return this.gn().$19$canRefund$catalogId$commissionCharge$customer$deliveryAt$deliveryFee$deliveryFeeTaxes$driver$id$key$name$orderId$otherCharge$otherChargeTaxes$paymentTypeKey$pickupRef$preparing$remark$slotPrefix(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k);
21429
21429
  },
21430
21430
  gc4(n) {
21431
21431
  return this.a;
@@ -21779,8 +21779,8 @@ Arguments: [` + p + "]";
21779
21779
  }
21780
21780
  }, e.eh.prototype = {
21781
21781
  $13$collectedAt$dynamic_$kitchenStation$name$name2$price$product$productId$quantity$selection$servedAt$subItems$variantSelected(n, t, r, i, o, l, f, h, p, m, b, y, w) {
21782
- var E = this.a, C = a.a === t ? E.gdr() : u.X.a(t), T = a.a === r ? E.gaH() : u.ws.a(r), R = i == null ? E.c : e.h(i), S = a.a === o ? E.d : e.m(o), k = a.a === l ? E.e : u.S.a(l), D = a.a === f ? E.f : u.Bd.a(f), Y = a.a === h ? E.r : e.m(h), U = p == null ? E.w : e.O(p), B = m == null ? E.x : e.h(m), _ = a.a === b ? E.y : e.m(b), J = a.a === n ? E.z : e.m(n), ae = a.a === w ? E.Q : u.if.a(w);
21783
- return this.b.$1(this.$ti.i("eh.1").a(E.iH(J, C, T, R, S, k, D, Y, U, B, _, y == null ? E.gZ() : u.uk.a(y), ae)));
21782
+ var E = this.a, C = a.a === t ? E.gdr() : u.X.a(t), T = a.a === r ? E.gaH() : u.ws.a(r), M = i == null ? E.c : e.h(i), S = a.a === o ? E.d : e.m(o), k = a.a === l ? E.e : u.S.a(l), D = a.a === f ? E.f : u.Bd.a(f), Y = a.a === h ? E.r : e.m(h), U = p == null ? E.w : e.O(p), B = m == null ? E.x : e.h(m), _ = a.a === b ? E.y : e.m(b), J = a.a === n ? E.z : e.m(n), ae = a.a === w ? E.Q : u.if.a(w);
21783
+ return this.b.$1(this.$ti.i("eh.1").a(E.iH(J, C, T, M, S, k, D, Y, U, B, _, y == null ? E.gZ() : u.uk.a(y), ae)));
21784
21784
  },
21785
21785
  $0() {
21786
21786
  var n = null;
@@ -21798,8 +21798,8 @@ Arguments: [` + p + "]";
21798
21798
  }
21799
21799
  }, e.iU.prototype = {
21800
21800
  $13$collectedAt$dynamic_$kitchenStation$name$name2$price$product$productId$quantity$selection$servedAt$subItems$variantSelected(n, t, r, i, o, l, f, h, p, m, b, y, w) {
21801
- var E = this, C = a.a === t ? E.a.a : u.X.a(t), T = a.a === r ? E.a.b : u.ws.a(r), R = i == null ? E.a.c : e.h(i), S = a.a === o ? E.a.d : e.m(o), k = a.a === l ? E.a.e : u.S.a(l), D = a.a === f ? E.a.f : u.Bd.a(f), Y = a.a === h ? E.a.r : e.m(h), U = p == null ? E.a.w : e.O(p), B = m == null ? E.a.x : e.h(m), _ = a.a === b ? E.a.y : e.m(b), J = a.a === n ? E.a.z : e.m(n), ae = a.a === w ? E.a.Q : u.if.a(w), Ce = y == null ? E.a.as : u.uk.a(y);
21802
- return E.b.$1(new e.cs(C, T, R, S, k, D, Y, U, B, _, J, ae, Ce));
21801
+ var E = this, C = a.a === t ? E.a.a : u.X.a(t), T = a.a === r ? E.a.b : u.ws.a(r), M = i == null ? E.a.c : e.h(i), S = a.a === o ? E.a.d : e.m(o), k = a.a === l ? E.a.e : u.S.a(l), D = a.a === f ? E.a.f : u.Bd.a(f), Y = a.a === h ? E.a.r : e.m(h), U = p == null ? E.a.w : e.O(p), B = m == null ? E.a.x : e.h(m), _ = a.a === b ? E.a.y : e.m(b), J = a.a === n ? E.a.z : e.m(n), ae = a.a === w ? E.a.Q : u.if.a(w), Ce = y == null ? E.a.as : u.uk.a(y);
21802
+ return E.b.$1(new e.cs(C, T, M, S, k, D, Y, U, B, _, J, ae, Ce));
21803
21803
  },
21804
21804
  $0() {
21805
21805
  var n = null;
@@ -22034,8 +22034,8 @@ Arguments: [` + p + "]";
22034
22034
  bC(n) {
22035
22035
  return this.gn().$1$taxes(n);
22036
22036
  },
22037
- fl(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le) {
22038
- return this.gn().$38$addonTotal$adjustmentTotal$adjustments$baseTotal$billDiscount$collectedAt$createdBy$customer$deletedAt$grossTotal$is_$kitchenStation$moveFrom$nettTotal$parent$printBy$printChecklistRecords$printReceiptAt$product$productId$quantity$refundApprovedBy$refundBy$refundedFrom$remark$sentAt$sentBy$servedAt$status$stockChange$subItems$taxes$unitQuantity$variantSelected$voidApprovedBy$voidAt$voidBy$voidReason(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le);
22037
+ fl(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le) {
22038
+ return this.gn().$38$addonTotal$adjustmentTotal$adjustments$baseTotal$billDiscount$collectedAt$createdBy$customer$deletedAt$grossTotal$is_$kitchenStation$moveFrom$nettTotal$parent$printBy$printChecklistRecords$printReceiptAt$product$productId$quantity$refundApprovedBy$refundBy$refundedFrom$remark$sentAt$sentBy$servedAt$status$stockChange$subItems$taxes$unitQuantity$variantSelected$voidApprovedBy$voidAt$voidBy$voidReason(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le);
22039
22039
  },
22040
22040
  c_(n) {
22041
22041
  return this.gn().$1$subItems(n);
@@ -22065,9 +22065,9 @@ Arguments: [` + p + "]";
22065
22065
  return this.gn().$1$billDiscount(n);
22066
22066
  }
22067
22067
  }, e.cP.prototype = {
22068
- $38$addonTotal$adjustmentTotal$adjustments$baseTotal$billDiscount$collectedAt$createdBy$customer$deletedAt$grossTotal$is_$kitchenStation$moveFrom$nettTotal$parent$printBy$printChecklistRecords$printReceiptAt$product$productId$quantity$refundApprovedBy$refundBy$refundedFrom$remark$sentAt$sentBy$servedAt$status$stockChange$subItems$taxes$unitQuantity$variantSelected$voidApprovedBy$voidAt$voidBy$voidReason(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le) {
22069
- var ce = this.a, Me = a.a === D ? ce.gaJ() : e.m(D), qe = k == null ? ce.ga4(ce) : u.y3.a(k), ut = Fe == null ? ce.gZ() : u.uk.a(Fe), ot = Ee == null ? ce.gb1(ce) : u.B2.a(Ee), dt = b == null ? ce.gba() : u.g0.a(b), he = a.a === Ne ? ce.gbd() : e.aI(Ne), He = Y == null ? ce.ga3() : e.O(Y), Ft = a.a === J ? ce.gaD() : e.m(J), jt = a.a === _ ? ce.gbL() : e.m(_), tt = a.a === B ? ce.gdK() : u.R.a(B), x = a.a === U ? ce.gdJ() : u.R.a(U), P = a.a === Ie ? ce.gdS() : e.m(Ie), O = a.a === Ye ? ce.gdT() : u.R.a(Ye), q = a.a === Le ? ce.gdU() : e.m(Le), $ = a.a === Pe ? ce.gdR() : u.R.a(Pe), W = a.a === f ? ce.gbD() : u.R.a(f), ye = a.a === ae ? ce.gcR() : e.m(ae), pe = a.a === Ce ? ce.ge0() : u.R.a(Ce), Be = a.a === R ? ce.gbu() : u.qo.a(R), Ve = a.a === y ? ce.gaH() : u.ws.a(y), Ge = a.a === Ae ? ce.ge1() : e.m(Ae), gt = a.a === l ? ce.gbz() : e.m(l), Ht = a.a === S ? ce.gfW() : e.m(S), Pn = a.a === T ? ce.gbt() : u.rS.a(T), In = a.a === h ? ce.gaT() : u.EN.a(h), jn = r == null ? ce.gV() : u.pY.a(r), Sn = a.a === p ? ce.gdq() : e.m(p), On = Oe == null ? ce.gI() : u.pM.a(Oe), Rn = E == null ? ce.gau() : u.o.a(E), Mn = a.a === De ? ce.gbf() : u.ve.a(De), kn = a.a === i ? ce.gdi() : u.S.a(i), Dn = a.a === n ? ce.gd8() : u.S.a(n), Nn = a.a === m ? ce.gcQ() : u.S.a(m), qn = a.a === t ? ce.gd9() : u.S.a(t), Bn = a.a === xe ? ce.gbR() : u.if.a(xe), Vn = a.a === o ? ce.gbj() : u.i0.a(o), Ln = a.a === w ? ce.gbs() : u.jJ.a(w);
22070
- return this.b.$1(e.E(this).i("cP.1").a(ce.fl(Dn, qn, jn, kn, Vn, gt, W, In, Sn, Nn, dt, Ve, Ln, Rn, a.a === C ? ce.gcc(ce) : u.a3.a(C), Pn, Be, Ht, qe, Me, He, x, tt, jt, Ft, ye, pe, Ge, ot, Mn, ut, On, he, Bn, $, P, O, q)));
22068
+ $38$addonTotal$adjustmentTotal$adjustments$baseTotal$billDiscount$collectedAt$createdBy$customer$deletedAt$grossTotal$is_$kitchenStation$moveFrom$nettTotal$parent$printBy$printChecklistRecords$printReceiptAt$product$productId$quantity$refundApprovedBy$refundBy$refundedFrom$remark$sentAt$sentBy$servedAt$status$stockChange$subItems$taxes$unitQuantity$variantSelected$voidApprovedBy$voidAt$voidBy$voidReason(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le) {
22069
+ var ce = this.a, Re = a.a === D ? ce.gaJ() : e.m(D), qe = k == null ? ce.ga4(ce) : u.y3.a(k), ut = Fe == null ? ce.gZ() : u.uk.a(Fe), ot = Ee == null ? ce.gb1(ce) : u.B2.a(Ee), dt = b == null ? ce.gba() : u.g0.a(b), he = a.a === Ne ? ce.gbd() : e.aI(Ne), He = Y == null ? ce.ga3() : e.O(Y), Ft = a.a === J ? ce.gaD() : e.m(J), jt = a.a === _ ? ce.gbL() : e.m(_), tt = a.a === B ? ce.gdK() : u.R.a(B), x = a.a === U ? ce.gdJ() : u.R.a(U), P = a.a === Ie ? ce.gdS() : e.m(Ie), O = a.a === Ye ? ce.gdT() : u.R.a(Ye), q = a.a === Le ? ce.gdU() : e.m(Le), $ = a.a === Pe ? ce.gdR() : u.R.a(Pe), W = a.a === f ? ce.gbD() : u.R.a(f), ye = a.a === ae ? ce.gcR() : e.m(ae), pe = a.a === Ce ? ce.ge0() : u.R.a(Ce), Be = a.a === M ? ce.gbu() : u.qo.a(M), Ve = a.a === y ? ce.gaH() : u.ws.a(y), Ge = a.a === Ae ? ce.ge1() : e.m(Ae), gt = a.a === l ? ce.gbz() : e.m(l), Ht = a.a === S ? ce.gfW() : e.m(S), Pn = a.a === T ? ce.gbt() : u.rS.a(T), In = a.a === h ? ce.gaT() : u.EN.a(h), jn = r == null ? ce.gV() : u.pY.a(r), Sn = a.a === p ? ce.gdq() : e.m(p), On = Oe == null ? ce.gI() : u.pM.a(Oe), Mn = E == null ? ce.gau() : u.o.a(E), Rn = a.a === De ? ce.gbf() : u.ve.a(De), kn = a.a === i ? ce.gdi() : u.S.a(i), Dn = a.a === n ? ce.gd8() : u.S.a(n), Nn = a.a === m ? ce.gcQ() : u.S.a(m), qn = a.a === t ? ce.gd9() : u.S.a(t), Bn = a.a === xe ? ce.gbR() : u.if.a(xe), Vn = a.a === o ? ce.gbj() : u.i0.a(o), Ln = a.a === w ? ce.gbs() : u.jJ.a(w);
22070
+ return this.b.$1(e.E(this).i("cP.1").a(ce.fl(Dn, qn, jn, kn, Vn, gt, W, In, Sn, Nn, dt, Ve, Ln, Mn, a.a === C ? ce.gcc(ce) : u.a3.a(C), Pn, Be, Ht, qe, Re, He, x, tt, jt, Ft, ye, pe, Ge, ot, Rn, ut, On, he, Bn, $, P, O, q)));
22071
22071
  },
22072
22072
  $0() {
22073
22073
  var n = null;
@@ -22118,9 +22118,9 @@ Arguments: [` + p + "]";
22118
22118
  return this.$38$addonTotal$adjustmentTotal$adjustments$baseTotal$billDiscount$collectedAt$createdBy$customer$deletedAt$grossTotal$is_$kitchenStation$moveFrom$nettTotal$parent$printBy$printChecklistRecords$printReceiptAt$product$productId$quantity$refundApprovedBy$refundBy$refundedFrom$remark$sentAt$sentBy$servedAt$status$stockChange$subItems$taxes$unitQuantity$variantSelected$voidApprovedBy$voidAt$voidBy$voidReason(a.a, a.a, t, a.a, n, a.a, a.a, a.a, a.a, a.a, t, a.a, a.a, t, a.a, a.a, a.a, a.a, t, a.a, t, a.a, a.a, a.a, a.a, a.a, a.a, a.a, t, a.a, t, t, a.a, a.a, a.a, a.a, a.a, a.a);
22119
22119
  }
22120
22120
  }, e.iR.prototype = {
22121
- $38$addonTotal$adjustmentTotal$adjustments$baseTotal$billDiscount$collectedAt$createdBy$customer$deletedAt$grossTotal$is_$kitchenStation$moveFrom$nettTotal$parent$printBy$printChecklistRecords$printReceiptAt$product$productId$quantity$refundApprovedBy$refundBy$refundedFrom$remark$sentAt$sentBy$servedAt$status$stockChange$subItems$taxes$unitQuantity$variantSelected$voidApprovedBy$voidAt$voidBy$voidReason(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le) {
22122
- var ce = this, Me = a.a === D ? ce.a.a : e.m(D), qe = k == null ? ce.a.b : u.y3.a(k), ut = Fe == null ? ce.a.c : u.uk.a(Fe), ot = Ee == null ? ce.a.d : u.B2.a(Ee), dt = b == null ? ce.a.e : u.g0.a(b), he = a.a === Ne ? ce.a.f : e.aI(Ne), He = Y == null ? ce.a.r : e.O(Y), Ft = a.a === J ? ce.a.w : e.m(J), jt = a.a === _ ? ce.a.x : e.m(_), tt = a.a === B ? ce.a.y : u.R.a(B), x = a.a === U ? ce.a.z : u.R.a(U), P = a.a === Ie ? ce.a.Q : e.m(Ie), O = a.a === Ye ? ce.a.as : u.R.a(Ye), q = a.a === Le ? ce.a.at : e.m(Le), $ = a.a === Pe ? ce.a.ax : u.R.a(Pe), W = a.a === f ? ce.a.ay : u.R.a(f), ye = a.a === ae ? ce.a.ch : e.m(ae), pe = a.a === Ce ? ce.a.CW : u.R.a(Ce), Be = a.a === R ? ce.a.cx : u.qo.a(R), Ve = a.a === y ? ce.a.cy : u.ws.a(y), Ge = a.a === Ae ? ce.a.db : e.m(Ae), gt = a.a === l ? ce.a.dx : e.m(l), Ht = a.a === S ? ce.a.dy : e.m(S), Pn = a.a === T ? ce.a.fr : u.rS.a(T), In = a.a === h ? ce.a.fx : u.EN.a(h), jn = r == null ? ce.a.fy : u.pY.a(r), Sn = a.a === p ? ce.a.go : e.m(p), On = Oe == null ? ce.a.id : u.pM.a(Oe), Rn = E == null ? ce.a.k1 : u.o.a(E), Mn = a.a === De ? ce.a.k2 : u.ve.a(De), kn = a.a === i ? ce.a.k3 : u.S.a(i), Dn = a.a === n ? ce.a.k4 : u.S.a(n), Nn = a.a === m ? ce.a.ok : u.S.a(m), qn = a.a === t ? ce.a.p1 : u.S.a(t), Bn = a.a === xe ? ce.a.p2 : u.if.a(xe), Vn = a.a === o ? ce.a.p3 : u.i0.a(o), Ln = a.a === w ? ce.a.p4 : u.jJ.a(w);
22123
- return ce.b.$1(e.qL(Dn, qn, jn, kn, Vn, gt, W, In, Sn, Nn, dt, Ve, Ln, Rn, a.a === C ? ce.a.R8 : u.a3.a(C), Pn, Be, Ht, qe, Me, He, x, tt, jt, Ft, ye, pe, Ge, ot, Mn, ut, On, he, Bn, $, P, O, q));
22121
+ $38$addonTotal$adjustmentTotal$adjustments$baseTotal$billDiscount$collectedAt$createdBy$customer$deletedAt$grossTotal$is_$kitchenStation$moveFrom$nettTotal$parent$printBy$printChecklistRecords$printReceiptAt$product$productId$quantity$refundApprovedBy$refundBy$refundedFrom$remark$sentAt$sentBy$servedAt$status$stockChange$subItems$taxes$unitQuantity$variantSelected$voidApprovedBy$voidAt$voidBy$voidReason(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le) {
22122
+ var ce = this, Re = a.a === D ? ce.a.a : e.m(D), qe = k == null ? ce.a.b : u.y3.a(k), ut = Fe == null ? ce.a.c : u.uk.a(Fe), ot = Ee == null ? ce.a.d : u.B2.a(Ee), dt = b == null ? ce.a.e : u.g0.a(b), he = a.a === Ne ? ce.a.f : e.aI(Ne), He = Y == null ? ce.a.r : e.O(Y), Ft = a.a === J ? ce.a.w : e.m(J), jt = a.a === _ ? ce.a.x : e.m(_), tt = a.a === B ? ce.a.y : u.R.a(B), x = a.a === U ? ce.a.z : u.R.a(U), P = a.a === Ie ? ce.a.Q : e.m(Ie), O = a.a === Ye ? ce.a.as : u.R.a(Ye), q = a.a === Le ? ce.a.at : e.m(Le), $ = a.a === Pe ? ce.a.ax : u.R.a(Pe), W = a.a === f ? ce.a.ay : u.R.a(f), ye = a.a === ae ? ce.a.ch : e.m(ae), pe = a.a === Ce ? ce.a.CW : u.R.a(Ce), Be = a.a === M ? ce.a.cx : u.qo.a(M), Ve = a.a === y ? ce.a.cy : u.ws.a(y), Ge = a.a === Ae ? ce.a.db : e.m(Ae), gt = a.a === l ? ce.a.dx : e.m(l), Ht = a.a === S ? ce.a.dy : e.m(S), Pn = a.a === T ? ce.a.fr : u.rS.a(T), In = a.a === h ? ce.a.fx : u.EN.a(h), jn = r == null ? ce.a.fy : u.pY.a(r), Sn = a.a === p ? ce.a.go : e.m(p), On = Oe == null ? ce.a.id : u.pM.a(Oe), Mn = E == null ? ce.a.k1 : u.o.a(E), Rn = a.a === De ? ce.a.k2 : u.ve.a(De), kn = a.a === i ? ce.a.k3 : u.S.a(i), Dn = a.a === n ? ce.a.k4 : u.S.a(n), Nn = a.a === m ? ce.a.ok : u.S.a(m), qn = a.a === t ? ce.a.p1 : u.S.a(t), Bn = a.a === xe ? ce.a.p2 : u.if.a(xe), Vn = a.a === o ? ce.a.p3 : u.i0.a(o), Ln = a.a === w ? ce.a.p4 : u.jJ.a(w);
22123
+ return ce.b.$1(e.qL(Dn, qn, jn, kn, Vn, gt, W, In, Sn, Nn, dt, Ve, Ln, Mn, a.a === C ? ce.a.R8 : u.a3.a(C), Pn, Be, Ht, qe, Re, He, x, tt, jt, Ft, ye, pe, Ge, ot, Rn, ut, On, he, Bn, $, P, O, q));
22124
22124
  },
22125
22125
  $0() {
22126
22126
  var n = null;
@@ -22225,8 +22225,8 @@ Arguments: [` + p + "]";
22225
22225
  bC(n) {
22226
22226
  return this.gn().$1$taxes(n);
22227
22227
  },
22228
- fl(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le) {
22229
- return this.gn().$38$addonTotal$adjustmentTotal$adjustments$baseTotal$billDiscount$collectedAt$createdBy$customer$deletedAt$grossTotal$is_$kitchenStation$moveFrom$nettTotal$parent$printBy$printChecklistRecords$printReceiptAt$product$productId$quantity$refundApprovedBy$refundBy$refundedFrom$remark$sentAt$sentBy$servedAt$status$stockChange$subItems$taxes$unitQuantity$variantSelected$voidApprovedBy$voidAt$voidBy$voidReason(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le);
22228
+ fl(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le) {
22229
+ return this.gn().$38$addonTotal$adjustmentTotal$adjustments$baseTotal$billDiscount$collectedAt$createdBy$customer$deletedAt$grossTotal$is_$kitchenStation$moveFrom$nettTotal$parent$printBy$printChecklistRecords$printReceiptAt$product$productId$quantity$refundApprovedBy$refundBy$refundedFrom$remark$sentAt$sentBy$servedAt$status$stockChange$subItems$taxes$unitQuantity$variantSelected$voidApprovedBy$voidAt$voidBy$voidReason(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae, Ee, De, Fe, Oe, Ne, xe, Pe, Ie, Ye, Le);
22230
22230
  },
22231
22231
  c_(n) {
22232
22232
  return this.gn().$1$subItems(n);
@@ -22461,8 +22461,8 @@ Arguments: [` + p + "]";
22461
22461
  }
22462
22462
  }, e.cQ.prototype = {
22463
22463
  $10$canRefund$contactNumber$name$orderId$otherCharge$otherChargeTaxes$pickupAt$pickupPoint$platform$remark(n, t, r, i, o, l, f, h, p, m) {
22464
- var b = this.a, y = a.a === p ? b.gfU(b) : e.m(p), w = a.a === i ? b.gca() : e.m(i), E = r == null ? b.ga8(b) : e.h(r), C = t == null ? b.geW() : e.h(t), T = f == null ? b.gfR() : e.h(f), R = a.a === m ? b.gaD() : e.m(m), S = a.a === h ? b.gfS() : u.nb.a(h), k = a.a === o ? b.gaI() : u.S.a(o), D = a.a === l ? b.gaz() : u.Ag.a(l);
22465
- return this.b.$1(e.E(this).i("cQ.1").a(b.f8(a.a === n ? b.gbY() : e.X(n), C, E, w, k, D, T, S, y, R)));
22464
+ var b = this.a, y = a.a === p ? b.gfU(b) : e.m(p), w = a.a === i ? b.gca() : e.m(i), E = r == null ? b.ga8(b) : e.h(r), C = t == null ? b.geW() : e.h(t), T = f == null ? b.gfR() : e.h(f), M = a.a === m ? b.gaD() : e.m(m), S = a.a === h ? b.gfS() : u.nb.a(h), k = a.a === o ? b.gaI() : u.S.a(o), D = a.a === l ? b.gaz() : u.Ag.a(l);
22465
+ return this.b.$1(e.E(this).i("cQ.1").a(b.f8(a.a === n ? b.gbY() : e.X(n), C, E, w, k, D, T, S, y, M)));
22466
22466
  },
22467
22467
  $0() {
22468
22468
  return this.$10$canRefund$contactNumber$name$orderId$otherCharge$otherChargeTaxes$pickupAt$pickupPoint$platform$remark(a.a, null, null, a.a, a.a, a.a, null, a.a, a.a, a.a);
@@ -22472,8 +22472,8 @@ Arguments: [` + p + "]";
22472
22472
  }
22473
22473
  }, e.iT.prototype = {
22474
22474
  $10$canRefund$contactNumber$name$orderId$otherCharge$otherChargeTaxes$pickupAt$pickupPoint$platform$remark(n, t, r, i, o, l, f, h, p, m) {
22475
- var b = this, y = a.a === p ? b.a.a : e.m(p), w = a.a === i ? b.a.b : e.m(i), E = r == null ? b.a.c : e.h(r), C = t == null ? b.a.d : e.h(t), T = f == null ? b.a.e : e.h(f), R = a.a === m ? b.a.f : e.m(m), S = a.a === h ? b.a.r : u.nb.a(h), k = a.a === o ? b.a.w : u.S.a(o), D = a.a === l ? b.a.x : u.Ag.a(l), Y = a.a === n ? b.a.y : e.X(n);
22476
- return b.b.$1(new e.cR(y, w, E, C, T, R, S, k, D, Y));
22475
+ var b = this, y = a.a === p ? b.a.a : e.m(p), w = a.a === i ? b.a.b : e.m(i), E = r == null ? b.a.c : e.h(r), C = t == null ? b.a.d : e.h(t), T = f == null ? b.a.e : e.h(f), M = a.a === m ? b.a.f : e.m(m), S = a.a === h ? b.a.r : u.nb.a(h), k = a.a === o ? b.a.w : u.S.a(o), D = a.a === l ? b.a.x : u.Ag.a(l), Y = a.a === n ? b.a.y : e.X(n);
22476
+ return b.b.$1(new e.cR(y, w, E, C, T, M, S, k, D, Y));
22477
22477
  },
22478
22478
  $0() {
22479
22479
  return this.$10$canRefund$contactNumber$name$orderId$otherCharge$otherChargeTaxes$pickupAt$pickupPoint$platform$remark(a.a, null, null, a.a, a.a, a.a, null, a.a, a.a, a.a);
@@ -22631,8 +22631,8 @@ Arguments: [` + p + "]";
22631
22631
  }
22632
22632
  }, e.iS.prototype = {
22633
22633
  $8$adjustment$code$ignoreDiscount$inclusive$level$name$taxCode$total(n, t, r, i, o, l, f, h) {
22634
- var p = this, m = t == null ? p.a.a : e.h(t), b = a.a === f ? p.a.b : e.m(f), y = l == null ? p.a.c : e.h(l), w = o == null ? p.a.d : e.O(o), E = a.a === r ? p.a.e : e.X(r), C = a.a === i ? p.a.f : e.X(i), T = n == null ? p.a.r : u.n.a(n), R = h == null ? p.a.w : u.o.a(h);
22635
- return p.b.$1(new e.bG(m, b, y, w, E, C, T, R));
22634
+ var p = this, m = t == null ? p.a.a : e.h(t), b = a.a === f ? p.a.b : e.m(f), y = l == null ? p.a.c : e.h(l), w = o == null ? p.a.d : e.O(o), E = a.a === r ? p.a.e : e.X(r), C = a.a === i ? p.a.f : e.X(i), T = n == null ? p.a.r : u.n.a(n), M = h == null ? p.a.w : u.o.a(h);
22635
+ return p.b.$1(new e.bG(m, b, y, w, E, C, T, M));
22636
22636
  },
22637
22637
  $0() {
22638
22638
  var n = null;
@@ -22856,8 +22856,8 @@ Arguments: [` + p + "]";
22856
22856
  }
22857
22857
  }, e.ej.prototype = {
22858
22858
  $10$adjustment$code$count$ignoreDiscount$inclusive$level$meta$name$taxCode$total(n, t, r, i, o, l, f, h, p, m) {
22859
- var b = this.a, y = t == null ? b.a : e.h(t), w = a.a === p ? b.b : e.m(p), E = h == null ? b.c : e.h(h), C = l == null ? b.d : e.O(l), T = a.a === i ? b.e : e.X(i), R = a.a === o ? b.f : e.X(o), S = n == null ? b.r : u.n.a(n), k = m == null ? b.w : u.o.a(m), D = r == null ? b.x : e.O(r);
22860
- return this.b.$1(this.$ti.i("ej.1").a(b.iD(S, y, D, T, R, C, a.a === f ? b.gbr() : u.dT.a(f), E, w, k)));
22859
+ var b = this.a, y = t == null ? b.a : e.h(t), w = a.a === p ? b.b : e.m(p), E = h == null ? b.c : e.h(h), C = l == null ? b.d : e.O(l), T = a.a === i ? b.e : e.X(i), M = a.a === o ? b.f : e.X(o), S = n == null ? b.r : u.n.a(n), k = m == null ? b.w : u.o.a(m), D = r == null ? b.x : e.O(r);
22860
+ return this.b.$1(this.$ti.i("ej.1").a(b.iD(S, y, D, T, M, C, a.a === f ? b.gbr() : u.dT.a(f), E, w, k)));
22861
22861
  },
22862
22862
  $0() {
22863
22863
  var n = null;
@@ -22892,8 +22892,8 @@ Arguments: [` + p + "]";
22892
22892
  }
22893
22893
  }, e.iW.prototype = {
22894
22894
  $10$adjustment$code$count$ignoreDiscount$inclusive$level$meta$name$taxCode$total(n, t, r, i, o, l, f, h, p, m) {
22895
- var b = this, y = t == null ? b.a.a : e.h(t), w = a.a === p ? b.a.b : e.m(p), E = h == null ? b.a.c : e.h(h), C = l == null ? b.a.d : e.O(l), T = a.a === i ? b.a.e : e.X(i), R = a.a === o ? b.a.f : e.X(o), S = n == null ? b.a.r : u.n.a(n), k = m == null ? b.a.w : u.o.a(m), D = r == null ? b.a.x : e.O(r), Y = a.a === f ? b.a.y : u.dT.a(f);
22896
- return b.b.$1(new e.ct(y, w, E, C, T, R, S, k, D, Y));
22895
+ var b = this, y = t == null ? b.a.a : e.h(t), w = a.a === p ? b.a.b : e.m(p), E = h == null ? b.a.c : e.h(h), C = l == null ? b.a.d : e.O(l), T = a.a === i ? b.a.e : e.X(i), M = a.a === o ? b.a.f : e.X(o), S = n == null ? b.a.r : u.n.a(n), k = m == null ? b.a.w : u.o.a(m), D = r == null ? b.a.x : e.O(r), Y = a.a === f ? b.a.y : u.dT.a(f);
22896
+ return b.b.$1(new e.ct(y, w, E, C, T, M, S, k, D, Y));
22897
22897
  },
22898
22898
  $0() {
22899
22899
  var n = null;
@@ -23955,8 +23955,8 @@ Arguments: [` + p + "]";
23955
23955
  return this.gn().$2$adjustment$adjustmentRule(n, t);
23956
23956
  }
23957
23957
  }, e.eo.prototype = {
23958
- $18$adjustment$adjustmentRule$autoApplied$availableOnlineOrder$customer$from$items$maximumReached$name$options$priority$reason$referenceId$returnId$success$toGet$toUse$usedItems(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S) {
23959
- var k = this.a, D = n == null ? k.a : u.n.a(n), Y = a.a === i ? k.gdg() : u.sf.a(i), U = a.a === t ? k.c : u.AB.a(t), B = m == null ? k.d : u.kC.a(m), _ = a.a === b ? k.e : e.aI(b), J = C == null ? k.f : e.ao(C), ae = a.a === y ? k.r : e.m(y), Ce = a.a === S ? k.gdP() : u.ov.a(S), Ae = a.a === R ? k.gbQ() : u.y.a(R), Ee = a.a === T ? k.gae() : u.y.a(T), De = a.a === h ? k.z : e.X(h), Fe = a.a === f ? k.gJ() : u.y.a(f), Oe = p == null ? k.as : e.h(p), Ne = l == null ? k.at : u.E.a(l), xe = w == null ? k.ax : e.h(w), Pe = a.a === E ? k.ay : e.m(E), Ie = a.a === o ? k.ch : u.EN.a(o);
23958
+ $18$adjustment$adjustmentRule$autoApplied$availableOnlineOrder$customer$from$items$maximumReached$name$options$priority$reason$referenceId$returnId$success$toGet$toUse$usedItems(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S) {
23959
+ var k = this.a, D = n == null ? k.a : u.n.a(n), Y = a.a === i ? k.gdg() : u.sf.a(i), U = a.a === t ? k.c : u.AB.a(t), B = m == null ? k.d : u.kC.a(m), _ = a.a === b ? k.e : e.aI(b), J = C == null ? k.f : e.ao(C), ae = a.a === y ? k.r : e.m(y), Ce = a.a === S ? k.gdP() : u.ov.a(S), Ae = a.a === M ? k.gbQ() : u.y.a(M), Ee = a.a === T ? k.gae() : u.y.a(T), De = a.a === h ? k.z : e.X(h), Fe = a.a === f ? k.gJ() : u.y.a(f), Oe = p == null ? k.as : e.h(p), Ne = l == null ? k.at : u.E.a(l), xe = w == null ? k.ax : e.h(w), Pe = a.a === E ? k.ay : e.m(E), Ie = a.a === o ? k.ch : u.EN.a(o);
23960
23960
  return this.b.$1(this.$ti.i("eo.1").a(k.iI(D, U, a.a === r ? k.CW : e.X(r), Y, Ie, Ne, Fe, De, Oe, B, _, ae, xe, Pe, J, Ee, Ae, Ce)));
23961
23961
  },
23962
23962
  $0() {
@@ -23992,8 +23992,8 @@ Arguments: [` + p + "]";
23992
23992
  return this.$18$adjustment$adjustmentRule$autoApplied$availableOnlineOrder$customer$from$items$maximumReached$name$options$priority$reason$referenceId$returnId$success$toGet$toUse$usedItems(n, t, a.a, a.a, a.a, r, a.a, a.a, r, r, a.a, a.a, r, a.a, r, a.a, a.a, a.a);
23993
23993
  }
23994
23994
  }, e.j0.prototype = {
23995
- $18$adjustment$adjustmentRule$autoApplied$availableOnlineOrder$customer$from$items$maximumReached$name$options$priority$reason$referenceId$returnId$success$toGet$toUse$usedItems(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S) {
23996
- var k = this, D = n == null ? k.a.a : u.n.a(n), Y = a.a === i ? k.a.b : u.sf.a(i), U = a.a === t ? k.a.c : u.AB.a(t), B = m == null ? k.a.d : u.kC.a(m), _ = a.a === b ? k.a.e : e.aI(b), J = C == null ? k.a.f : e.ao(C), ae = a.a === y ? k.a.r : e.m(y), Ce = a.a === S ? k.a.w : u.ov.a(S), Ae = a.a === R ? k.a.x : u.y.a(R), Ee = a.a === T ? k.a.y : u.y.a(T), De = a.a === h ? k.a.z : e.X(h), Fe = a.a === f ? k.a.Q : u.y.a(f), Oe = p == null ? k.a.as : e.h(p), Ne = l == null ? k.a.at : u.E.a(l), xe = w == null ? k.a.ax : e.h(w), Pe = a.a === E ? k.a.ay : e.m(E), Ie = a.a === o ? k.a.ch : u.EN.a(o);
23995
+ $18$adjustment$adjustmentRule$autoApplied$availableOnlineOrder$customer$from$items$maximumReached$name$options$priority$reason$referenceId$returnId$success$toGet$toUse$usedItems(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S) {
23996
+ var k = this, D = n == null ? k.a.a : u.n.a(n), Y = a.a === i ? k.a.b : u.sf.a(i), U = a.a === t ? k.a.c : u.AB.a(t), B = m == null ? k.a.d : u.kC.a(m), _ = a.a === b ? k.a.e : e.aI(b), J = C == null ? k.a.f : e.ao(C), ae = a.a === y ? k.a.r : e.m(y), Ce = a.a === S ? k.a.w : u.ov.a(S), Ae = a.a === M ? k.a.x : u.y.a(M), Ee = a.a === T ? k.a.y : u.y.a(T), De = a.a === h ? k.a.z : e.X(h), Fe = a.a === f ? k.a.Q : u.y.a(f), Oe = p == null ? k.a.as : e.h(p), Ne = l == null ? k.a.at : u.E.a(l), xe = w == null ? k.a.ax : e.h(w), Pe = a.a === E ? k.a.ay : e.m(E), Ie = a.a === o ? k.a.ch : u.EN.a(o);
23997
23997
  return k.b.$1(e.z0(D, U, a.a === r ? k.a.CW : e.X(r), Y, Ie, Ne, Fe, De, Oe, B, _, ae, xe, Pe, J, Ee, Ae, Ce));
23998
23998
  },
23999
23999
  $0() {
@@ -24071,8 +24071,8 @@ Arguments: [` + p + "]";
24071
24071
  bm(n, t) {
24072
24072
  return this.gn().$2$reason$success(n, t);
24073
24073
  },
24074
- iI(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S) {
24075
- return this.gn().$18$adjustment$adjustmentRule$autoApplied$availableOnlineOrder$customer$from$items$maximumReached$name$options$priority$reason$referenceId$returnId$success$toGet$toUse$usedItems(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S);
24074
+ iI(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S) {
24075
+ return this.gn().$18$adjustment$adjustmentRule$autoApplied$availableOnlineOrder$customer$from$items$maximumReached$name$options$priority$reason$referenceId$returnId$success$toGet$toUse$usedItems(n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S);
24076
24076
  },
24077
24077
  dn(n, t, r, i, o) {
24078
24078
  return this.gn().$5$maximumReached$reason$success$toGet$toUse(n, t, r, i, o);
@@ -24357,8 +24357,8 @@ Arguments: [` + p + "]";
24357
24357
  }
24358
24358
  }, e.eq.prototype = {
24359
24359
  $12$adjustment$adjustmentRule$afterTaxLevel$cause$createApprovedBy$createdBy$excludeAddonPrice$ignoreMinPrice$reason$referenceId$remark$total(n, t, r, i, o, l, f, h, p, m, b, y) {
24360
- var w = this.a, E = i == null ? w.a : u.E.a(i), C = a.a === f ? w.b : e.X(f), T = a.a === m ? w.c : e.m(m), R = a.a === p ? w.d : e.m(p), S = n == null ? w.e : u.n.a(n), k = a.a === t ? w.f : u.AB.a(t), D = y == null ? w.r : u.o.a(y), Y = l == null ? w.w : u.b.a(l), U = o == null ? w.x : u.b.a(o), B = a.a === h ? w.y : e.X(h), _ = r == null ? w.z : e.O(r);
24361
- return this.b.$1(this.$ti.i("eq.1").a(w.iF(S, k, _, E, U, Y, C, B, R, T, a.a === b ? w.Q : e.m(b), D)));
24360
+ var w = this.a, E = i == null ? w.a : u.E.a(i), C = a.a === f ? w.b : e.X(f), T = a.a === m ? w.c : e.m(m), M = a.a === p ? w.d : e.m(p), S = n == null ? w.e : u.n.a(n), k = a.a === t ? w.f : u.AB.a(t), D = y == null ? w.r : u.o.a(y), Y = l == null ? w.w : u.b.a(l), U = o == null ? w.x : u.b.a(o), B = a.a === h ? w.y : e.X(h), _ = r == null ? w.z : e.O(r);
24361
+ return this.b.$1(this.$ti.i("eq.1").a(w.iF(S, k, _, E, U, Y, C, B, M, T, a.a === b ? w.Q : e.m(b), D)));
24362
24362
  },
24363
24363
  $0() {
24364
24364
  var n = null;
@@ -24382,8 +24382,8 @@ Arguments: [` + p + "]";
24382
24382
  }
24383
24383
  }, e.j2.prototype = {
24384
24384
  $12$adjustment$adjustmentRule$afterTaxLevel$cause$createApprovedBy$createdBy$excludeAddonPrice$ignoreMinPrice$reason$referenceId$remark$total(n, t, r, i, o, l, f, h, p, m, b, y) {
24385
- var w = this, E = i == null ? w.a.a : u.E.a(i), C = a.a === f ? w.a.b : e.X(f), T = a.a === m ? w.a.c : e.m(m), R = a.a === p ? w.a.d : e.m(p), S = n == null ? w.a.e : u.n.a(n), k = a.a === t ? w.a.f : u.AB.a(t), D = y == null ? w.a.r : u.o.a(y), Y = l == null ? w.a.w : u.b.a(l), U = o == null ? w.a.x : u.b.a(o), B = a.a === h ? w.a.y : e.X(h), _ = r == null ? w.a.z : e.O(r), J = a.a === b ? w.a.Q : e.m(b);
24386
- return w.b.$1(new e.cu(E, C, T, R, S, k, D, Y, U, B, _, J));
24385
+ var w = this, E = i == null ? w.a.a : u.E.a(i), C = a.a === f ? w.a.b : e.X(f), T = a.a === m ? w.a.c : e.m(m), M = a.a === p ? w.a.d : e.m(p), S = n == null ? w.a.e : u.n.a(n), k = a.a === t ? w.a.f : u.AB.a(t), D = y == null ? w.a.r : u.o.a(y), Y = l == null ? w.a.w : u.b.a(l), U = o == null ? w.a.x : u.b.a(o), B = a.a === h ? w.a.y : e.X(h), _ = r == null ? w.a.z : e.O(r), J = a.a === b ? w.a.Q : e.m(b);
24386
+ return w.b.$1(new e.cu(E, C, T, M, S, k, D, Y, U, B, _, J));
24387
24387
  },
24388
24388
  $0() {
24389
24389
  var n = null;
@@ -24594,8 +24594,8 @@ Arguments: [` + p + "]";
24594
24594
  }
24595
24595
  }, e.er.prototype = {
24596
24596
  $10$by$change$changePaymentActivity$counter$machineId$paid$payment$paymentGateway$receivedAmount$reference(n, t, r, i, o, l, f, h, p, m) {
24597
- var b = this.a, y = a.a === o ? b.a : e.m(o), w = a.a === i ? b.b : u.rH.a(i), E = f == null ? b.c : u.ki.a(f), C = a.a === h ? b.d : u.ak.a(h), T = a.a === m ? b.e : e.m(m), R = l == null ? b.f : u.o.a(l), S = t == null ? b.r : u.o.a(t), k = a.a === n ? b.w : u.R.a(n), D = p == null ? b.x : u.o.a(p);
24598
- return this.b.$1(this.$ti.i("er.1").a(b.iE(k, S, a.a === r ? b.gdj() : u.nO.a(r), w, y, R, E, C, D, T)));
24597
+ var b = this.a, y = a.a === o ? b.a : e.m(o), w = a.a === i ? b.b : u.rH.a(i), E = f == null ? b.c : u.ki.a(f), C = a.a === h ? b.d : u.ak.a(h), T = a.a === m ? b.e : e.m(m), M = l == null ? b.f : u.o.a(l), S = t == null ? b.r : u.o.a(t), k = a.a === n ? b.w : u.R.a(n), D = p == null ? b.x : u.o.a(p);
24598
+ return this.b.$1(this.$ti.i("er.1").a(b.iE(k, S, a.a === r ? b.gdj() : u.nO.a(r), w, y, M, E, C, D, T)));
24599
24599
  },
24600
24600
  $0() {
24601
24601
  var n = null;
@@ -24606,8 +24606,8 @@ Arguments: [` + p + "]";
24606
24606
  }
24607
24607
  }, e.j3.prototype = {
24608
24608
  $10$by$change$changePaymentActivity$counter$machineId$paid$payment$paymentGateway$receivedAmount$reference(n, t, r, i, o, l, f, h, p, m) {
24609
- var b = this, y = a.a === o ? b.a.a : e.m(o), w = a.a === i ? b.a.b : u.rH.a(i), E = f == null ? b.a.c : u.ki.a(f), C = a.a === h ? b.a.d : u.ak.a(h), T = a.a === m ? b.a.e : e.m(m), R = l == null ? b.a.f : u.o.a(l), S = t == null ? b.a.r : u.o.a(t), k = a.a === n ? b.a.w : u.R.a(n), D = p == null ? b.a.x : u.o.a(p), Y = a.a === r ? b.a.y : u.nO.a(r);
24610
- return b.b.$1(new e.c8(y, w, E, C, T, R, S, k, D, Y));
24609
+ var b = this, y = a.a === o ? b.a.a : e.m(o), w = a.a === i ? b.a.b : u.rH.a(i), E = f == null ? b.a.c : u.ki.a(f), C = a.a === h ? b.a.d : u.ak.a(h), T = a.a === m ? b.a.e : e.m(m), M = l == null ? b.a.f : u.o.a(l), S = t == null ? b.a.r : u.o.a(t), k = a.a === n ? b.a.w : u.R.a(n), D = p == null ? b.a.x : u.o.a(p), Y = a.a === r ? b.a.y : u.nO.a(r);
24610
+ return b.b.$1(new e.c8(y, w, E, C, T, M, S, k, D, Y));
24611
24611
  },
24612
24612
  $0() {
24613
24613
  var n = null;
@@ -24748,8 +24748,8 @@ Arguments: [` + p + "]";
24748
24748
  }
24749
24749
  }, e.j4.prototype = {
24750
24750
  $8$amount$deltaKey$doc$id$measurement$parentKey$remark$type(n, t, r, i, o, l, f, h) {
24751
- var p = this, m = i == null ? p.a.a : e.h(i), b = h == null ? p.a.b : u.zE.a(h), y = n == null ? p.a.c : u.q.a(n), w = a.a === o ? p.a.d : u.x6.a(o), E = a.a === r ? p.a.e : r, C = a.a === f ? p.a.f : e.m(f), T = a.a === t ? p.a.r : e.m(t), R = a.a === l ? p.a.w : e.m(l);
24752
- return p.b.$1(new e.cX(m, b, y, w, E, C, T, R));
24751
+ var p = this, m = i == null ? p.a.a : e.h(i), b = h == null ? p.a.b : u.zE.a(h), y = n == null ? p.a.c : u.q.a(n), w = a.a === o ? p.a.d : u.x6.a(o), E = a.a === r ? p.a.e : r, C = a.a === f ? p.a.f : e.m(f), T = a.a === t ? p.a.r : e.m(t), M = a.a === l ? p.a.w : e.m(l);
24752
+ return p.b.$1(new e.cX(m, b, y, w, E, C, T, M));
24753
24753
  },
24754
24754
  $0() {
24755
24755
  return this.$8$amount$deltaKey$doc$id$measurement$parentKey$remark$type(null, a.a, a.a, null, a.a, a.a, a.a, null);
@@ -25595,8 +25595,8 @@ Arguments: [` + p + "]";
25595
25595
  return t === A && e.x(), g.bx(t, e.D(u.N, u.L), new e.mD(this, n), u.ae);
25596
25596
  },
25597
25597
  b6(n) {
25598
- var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _ = this, J = null, ae = "deliveryFeeKey", Ce = "deliveryOtherChargeKey", Ae = "pickupChargeKey", Ee = {}, De = A.aT().a, Fe = _.a, Oe = Fe.gh_();
25599
- return Oe == null && (Oe = De.gfs()), t = u.N, r = u.L, i = e.b1(_.ix(), t, r), o = Fe.ga7(), l = e.BQ(Fe), f = l == null ? J : l.gm(0), l = Fe.gb8(), h = l == null ? J : l.gaI(), p = e.ye(Fe), r = e.D(t, r), f != null && (l = e.v(["", new e.ak(new e.ag(a.l, f), 0, J)], t, u.W), o != null && o >= 4 ? (m = Fe.gb8(), m = m == null ? J : m.gbF(), m == null && (m = e.D(t, u.V)), m = e.fp(e.w([], u.s), m, Fe.ga7())) : m = e.D(t, u.k), r.A(0, ae, new e.c9(l, 1, m))), h != null && (l = Fe.gb8(), l = l == null ? J : l.gaI(), l = e.v(["", new e.ak(new e.ag(a.l, l ?? e.T(J).gm(0)), 0, J)], t, u.W), m = Fe.gb8(), m = m == null ? J : m.gaz(), m == null && (m = e.D(t, u.V)), r.A(0, Ce, new e.c9(l, 1, e.fp(e.w([], u.s), m, Fe.ga7())))), p != null && (l = e.ye(Fe), l = e.v(["", new e.ak(new e.ag(a.l, l ?? e.T(J).gm(0)), 0, J)], t, u.W), m = Fe.gcE(), m = m == null ? J : m.gaz(), m == null && (m = e.D(t, u.V)), r.A(0, Ae, new e.c9(l, 1, e.fp(e.w([], u.s), m, Fe.ga7())))), i.E(0, r), r = _.b, r === A && e.x(), b = e.zU(new e.dU(i, Oe), g.bx(r, e.D(t, u.BU), new e.mE(_), u.aY), Fe.ga7()), Ee.a = e.w([], u.CL), r = g.F(_.b, new e.mF(Ee, b), u._), y = e.Hd(e.u(r, !0, r.$ti.i("y.E")), _.dW(), Fe.ga7()), w = Fe.gb8(), w != null && (r = w.gbF(), i = b.gJ().h(0, ae), i = i == null ? J : i.gI(), E = e.vA(r, i ?? e.D(t, u.ET)), r = w.gaz(), i = b.gJ().h(0, Ce), i = i == null ? J : i.gI(), C = e.vA(r, i ?? e.D(t, u.ET)), r = e.u(Ee.a, !0, u.kr), a.d.E(r, E.gK(0)), a.d.E(r, C.gK(0)), Ee.a = r, r = Fe.gb8(), w = r == null ? J : r.ff(e.t2(E), e.t2(C))), T = Fe.gcE(), T != null && (r = T.gaz(), i = b.gJ().h(0, Ae), i = i == null ? J : i.gI(), R = e.vA(r, i ?? e.D(t, u.ET)), r = e.u(Ee.a, !0, u.kr), a.d.E(r, R.gK(0)), Ee.a = r, T = T.f7(e.t2(R))), S = e.FO(Ee.a), k = e.As(e.W(b.c).av(0, b.b).B(0, S.b).gm(0), Oe), Ee = De.a, Ee === A && e.x(), D = a.f.F(Ee.d.c), Ee = u.o, Y = e.dP(g.F(y, new e.mG(), Ee)), r = _.c, r === A && e.x(), U = e.dP(r.gK(r).ad(0, new e.mH(), Ee)), Ee = u.B, r = e.b1(Fe.gJ(), t, Ee), r.E(0, e.c5(y, t, Ee)), Ee = _.c, t = e.W(Y), i = e.Q(t.gm(0)), t = t.a, t === A && e.x(), t = e.bd(i, t, D).gm(0), i = e.W(Y).B(0, U), l = e.Q(i.gm(0)), i = i.a, i === A && e.x(), i = e.bd(l, i, D).gm(0), l = e.W(k.a), m = e.Q(l.gm(0)), l = l.a, l === A && e.x(), l = e.bd(m, l, D).gm(0), m = e.W(k.b), B = e.Q(m.gm(0)), m = m.a, m === A && e.x(), e.FB(e.FF(Fe.fo(i, Ee, w, t, r, S.a, e.bd(B, m, D).gm(0), T, l)));
25598
+ var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _ = this, J = null, ae = "deliveryFeeKey", Ce = "deliveryOtherChargeKey", Ae = "pickupChargeKey", Ee = {}, De = A.aT().a, Fe = _.a, Oe = Fe.gh_();
25599
+ return Oe == null && (Oe = De.gfs()), t = u.N, r = u.L, i = e.b1(_.ix(), t, r), o = Fe.ga7(), l = e.BQ(Fe), f = l == null ? J : l.gm(0), l = Fe.gb8(), h = l == null ? J : l.gaI(), p = e.ye(Fe), r = e.D(t, r), f != null && (l = e.v(["", new e.ak(new e.ag(a.l, f), 0, J)], t, u.W), o != null && o >= 4 ? (m = Fe.gb8(), m = m == null ? J : m.gbF(), m == null && (m = e.D(t, u.V)), m = e.fp(e.w([], u.s), m, Fe.ga7())) : m = e.D(t, u.k), r.A(0, ae, new e.c9(l, 1, m))), h != null && (l = Fe.gb8(), l = l == null ? J : l.gaI(), l = e.v(["", new e.ak(new e.ag(a.l, l ?? e.T(J).gm(0)), 0, J)], t, u.W), m = Fe.gb8(), m = m == null ? J : m.gaz(), m == null && (m = e.D(t, u.V)), r.A(0, Ce, new e.c9(l, 1, e.fp(e.w([], u.s), m, Fe.ga7())))), p != null && (l = e.ye(Fe), l = e.v(["", new e.ak(new e.ag(a.l, l ?? e.T(J).gm(0)), 0, J)], t, u.W), m = Fe.gcE(), m = m == null ? J : m.gaz(), m == null && (m = e.D(t, u.V)), r.A(0, Ae, new e.c9(l, 1, e.fp(e.w([], u.s), m, Fe.ga7())))), i.E(0, r), r = _.b, r === A && e.x(), b = e.zU(new e.dU(i, Oe), g.bx(r, e.D(t, u.BU), new e.mE(_), u.aY), Fe.ga7()), Ee.a = e.w([], u.CL), r = g.F(_.b, new e.mF(Ee, b), u._), y = e.Hd(e.u(r, !0, r.$ti.i("y.E")), _.dW(), Fe.ga7()), w = Fe.gb8(), w != null && (r = w.gbF(), i = b.gJ().h(0, ae), i = i == null ? J : i.gI(), E = e.vA(r, i ?? e.D(t, u.ET)), r = w.gaz(), i = b.gJ().h(0, Ce), i = i == null ? J : i.gI(), C = e.vA(r, i ?? e.D(t, u.ET)), r = e.u(Ee.a, !0, u.kr), a.d.E(r, E.gK(0)), a.d.E(r, C.gK(0)), Ee.a = r, r = Fe.gb8(), w = r == null ? J : r.ff(e.t2(E), e.t2(C))), T = Fe.gcE(), T != null && (r = T.gaz(), i = b.gJ().h(0, Ae), i = i == null ? J : i.gI(), M = e.vA(r, i ?? e.D(t, u.ET)), r = e.u(Ee.a, !0, u.kr), a.d.E(r, M.gK(0)), Ee.a = r, T = T.f7(e.t2(M))), S = e.FO(Ee.a), k = e.As(e.W(b.c).av(0, b.b).B(0, S.b).gm(0), Oe), Ee = De.a, Ee === A && e.x(), D = a.f.F(Ee.d.c), Ee = u.o, Y = e.dP(g.F(y, new e.mG(), Ee)), r = _.c, r === A && e.x(), U = e.dP(r.gK(r).ad(0, new e.mH(), Ee)), Ee = u.B, r = e.b1(Fe.gJ(), t, Ee), r.E(0, e.c5(y, t, Ee)), Ee = _.c, t = e.W(Y), i = e.Q(t.gm(0)), t = t.a, t === A && e.x(), t = e.bd(i, t, D).gm(0), i = e.W(Y).B(0, U), l = e.Q(i.gm(0)), i = i.a, i === A && e.x(), i = e.bd(l, i, D).gm(0), l = e.W(k.a), m = e.Q(l.gm(0)), l = l.a, l === A && e.x(), l = e.bd(m, l, D).gm(0), m = e.W(k.b), B = e.Q(m.gm(0)), m = m.a, m === A && e.x(), e.FB(e.FF(Fe.fo(i, Ee, w, t, r, S.a, e.bd(B, m, D).gm(0), T, l)));
25600
25600
  },
25601
25601
  shN(n) {
25602
25602
  this.b = u.dz.a(n);
@@ -26264,7 +26264,7 @@ Arguments: [` + p + "]";
26264
26264
  $S: 166
26265
26265
  }, e.na.prototype = {
26266
26266
  hS() {
26267
- var n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k = this, D = k.b;
26267
+ var n, t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k = this, D = k.b;
26268
26268
  if (D === A && e.x(), !D.gR(D)) {
26269
26269
  for (D = k.a, D === A && e.x(), D = D.ga7(), n = k.b, D = D != null && D >= 4 ? e.HA(n) : e.Hz(n), n = e.V(D), t = new e.a_(D, n.i("b(1)").a(new e.nb()), n.i("a_<1,b>")), r = e.Hy(k.b), i = k.a, n = u.yR, k.sbU(n.a(k.jd(k.b))), D = u.z, o = u.f, l = r == null, f = u.s, h = u.N, p = u.t, m = !0; m; )
26270
26270
  if (b = k.c, b === A && e.x(), g.mq(b) && (b = k.b, y = k.c, k.sbU(n.a(k.j1(y, b, l ? e.w([], f) : r)))), b = k.b, w = b.gG(b).O(0, e.D(D, D), new e.nc(), o), i = k.iu(k.a, k.b, t), g.mq(k.c))
@@ -26273,7 +26273,7 @@ Arguments: [` + p + "]";
26273
26273
  m = !1;
26274
26274
  break;
26275
26275
  }
26276
- if (C = b[E], T = C.b, !T.gco() && T.gcH(T) !== "GROUP_LIMIT_REACHED" && (R = g.C(w.h(0, C.a), T.gcH(T)), S = g.wt(k.c, new e.nd(T)), !R && S)) {
26276
+ if (C = b[E], T = C.b, !T.gco() && T.gcH(T) !== "GROUP_LIMIT_REACHED" && (M = g.C(w.h(0, C.a), T.gcH(T)), S = g.wt(k.c, new e.nd(T)), !M && S)) {
26277
26277
  b = i.gag(), k.sbU(n.a(b ?? e.D(h, p))), k.sbU(n.a(k.je(k.b))), m = !0;
26278
26278
  break;
26279
26279
  }
@@ -26483,8 +26483,8 @@ Arguments: [` + p + "]";
26483
26483
  $S: 183
26484
26484
  }, e.v7.prototype = {
26485
26485
  $1(n) {
26486
- var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D, Y, U, B, _, J, ae, Ce, Ae = null;
26487
- return u.B.a(n), t = n.gb1(n), r = n.gV(), i = n.gI(), o = n.gaJ(), l = n.ga4(n), f = n.gZ(), h = n.gba(), p = n.gbR(), m = n.gbd(), b = n.ga3(), y = n.gaD(), w = n.gbL(), E = n.gdK(), C = n.gdJ(), T = n.gdS(), R = n.gdT(), S = n.gdU(), k = n.gdR(), D = n.gbD(), Y = n.gaT(), U = n.gdq(), B = n.gau(), _ = n.gbf(), J = n.gdi(), ae = n.gd8(), Ce = n.gcQ(), e.Dx(ae, n.gd9(), r, J, Ae, Ae, D, Y, U, Ce, this.a.a, h, e.D(u.N, u.O), Ae, B, Ae, Ae, Ae, Ae, l, o, b, C, E, w, y, Ae, Ae, Ae, t, _, f, i, m, p, k, T, R, S);
26486
+ var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D, Y, U, B, _, J, ae, Ce, Ae = null;
26487
+ return u.B.a(n), t = n.gb1(n), r = n.gV(), i = n.gI(), o = n.gaJ(), l = n.ga4(n), f = n.gZ(), h = n.gba(), p = n.gbR(), m = n.gbd(), b = n.ga3(), y = n.gaD(), w = n.gbL(), E = n.gdK(), C = n.gdJ(), T = n.gdS(), M = n.gdT(), S = n.gdU(), k = n.gdR(), D = n.gbD(), Y = n.gaT(), U = n.gdq(), B = n.gau(), _ = n.gbf(), J = n.gdi(), ae = n.gd8(), Ce = n.gcQ(), e.Dx(ae, n.gd9(), r, J, Ae, Ae, D, Y, U, Ce, this.a.a, h, e.D(u.N, u.O), Ae, B, Ae, Ae, Ae, Ae, l, o, b, C, E, w, y, Ae, Ae, Ae, t, _, f, i, m, p, k, T, M, S);
26488
26488
  },
26489
26489
  $S: 276
26490
26490
  }, e.va.prototype = {
@@ -27056,8 +27056,8 @@ Arguments: [` + p + "]";
27056
27056
  $S: 239
27057
27057
  }, e.v2.prototype = {
27058
27058
  $2(n, t) {
27059
- var r, i, o, l, f, h, p, m, b, y, w, E, C, T, R = null;
27060
- return u.C.a(n), u.jy.a(t), r = t.gc4(t), r == null && (r = ""), i = t.gI(), o = t.gaJ(), l = t.ga4(t), f = t.gba(), h = t.gbR(), p = t.gcc(t), m = t.gZ(), b = t.gbd(), y = t.ga3(), w = t.gaD(), E = t.gbD(), C = t.gaT(), T = t.gbf(), n.A(0, r, e.qL(R, R, e.D(u.N, u.F), R, R, R, E, C, R, R, f, R, R, e.T(R).gm(0), p, R, R, R, l, o, y, R, R, R, w, R, R, R, a.z, T, m, i, b, h, R, R, R, R)), n;
27059
+ var r, i, o, l, f, h, p, m, b, y, w, E, C, T, M = null;
27060
+ return u.C.a(n), u.jy.a(t), r = t.gc4(t), r == null && (r = ""), i = t.gI(), o = t.gaJ(), l = t.ga4(t), f = t.gba(), h = t.gbR(), p = t.gcc(t), m = t.gZ(), b = t.gbd(), y = t.ga3(), w = t.gaD(), E = t.gbD(), C = t.gaT(), T = t.gbf(), n.A(0, r, e.qL(M, M, e.D(u.N, u.F), M, M, M, E, C, M, M, f, M, M, e.T(M).gm(0), p, M, M, M, l, o, y, M, M, M, w, M, M, M, a.z, T, m, i, b, h, M, M, M, M)), n;
27061
27061
  },
27062
27062
  $S: 240
27063
27063
  }, e.eI.prototype = {}, e.ew.prototype = {}, e.vu.prototype = {
@@ -27499,10 +27499,10 @@ Arguments: [` + p + "]";
27499
27499
  return n == 1 / 0 || n == -1 / 0 ? A.wr() : a.f.aP(n);
27500
27500
  },
27501
27501
  d0(n) {
27502
- var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, R, S, k, D = this, Y = D.as, U = n == 1 / 0 || n == -1 / 0;
27502
+ var t, r, i, o, l, f, h, p, m, b, y, w, E, C, T, M, S, k, D = this, Y = D.as, U = n == 1 / 0 || n == -1 / 0;
27503
27503
  if (U ? (t = a.f.F(n), r = 0, i = 0, o = 0) : (t = D.i3(n), l = n - t, a.f.F(l) !== 0 && (t = n, l = 0), o = e.ab(Math.pow(10, Y)), f = o * D.CW, h = a.f.F(D.io(l * f)), h >= f && (++t, h -= f), i = a.e.bg(h, o), r = a.e.al(h, o)), U = A.wr(), t > U ? (p = a.f.eT(Math.log(t) / A.xC()) - A.AJ(), m = a.f.aP(Math.pow(10, p)), m === 0 && (m = Math.pow(10, p)), b = a.i.b0("0", a.e.F(p)), t = a.f.F(t / m)) : b = "", y = i === 0 ? "" : a.e.k(i), w = D.ib(t), E = w + (w.length === 0 ? y : a.i.bb(y, D.cx, "0")) + b, C = E.length, Y > 0 ? T = D.at > 0 || r > 0 : T = !1, C !== 0 || D.Q > 0)
27504
- for (E = a.i.b0("0", D.Q - C) + E, C = E.length, U = D.fy, R = D.id, S = 0; S < C; ++S)
27505
- k = e.aM(E.charCodeAt(S) + R), U.a += k, D.i7(C, S);
27504
+ for (E = a.i.b0("0", D.Q - C) + E, C = E.length, U = D.fy, M = D.id, S = 0; S < C; ++S)
27505
+ k = e.aM(E.charCodeAt(S) + M), U.a += k, D.i7(C, S);
27506
27506
  else T || (D.fy.a += D.dx.e);
27507
27507
  (D.r || T) && (D.fy.a += D.dx.b), D.i5(a.e.k(r + o));
27508
27508
  },
@@ -28315,14 +28315,14 @@ Arguments: [` + p + "]";
28315
28315
  return i.message;
28316
28316
  }
28317
28317
  }())), t(A, "Ih", "AV", () => e.Cn(e.Ep(e.w([-2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -1, -2, -2, -2, -2, -2, 62, -2, 62, -2, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -2, -2, -2, -1, -2, -2, -2, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -2, -2, -2, -2, 63, -2, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -2, -2, -2, -2, -2], u.Cw)))), r(A, "Ig", "AU", () => e.yv(0)), t(A, "In", "cx", () => e.kI(0)), t(A, "Il", "fr", () => e.kI(1)), t(A, "Im", "AY", () => e.kI(2)), t(A, "Ik", "xz", () => A.fr().aL(0)), t(A, "Ii", "AW", () => e.kI(1e4)), t(A, "Ij", "AX", () => e.yv(8)), t(A, "HU", "AH", () => e.bj("^([+-]?\\d{4,6})-?(\\d\\d)-?(\\d\\d)(?:[ T](\\d\\d)(?::?(\\d\\d)(?::?(\\d\\d)(?:[.,](\\d+))?)?)?( ?[zZ]| ?([-+])(\\d\\d)(?::?(\\d\\d))?)?)?$")), t(A, "IG", "b7", () => e.mk(a.i_)), t(A, "Iz", "B1", () => new e.a0()), t(A, "IM", "mn", () => e.a3(ve.c)), t(A, "IN", "av", () => e.a3(ve.c)), t(A, "IO", "Bd", () => e.a3(ve.c)), t(A, "IW", "mm", () => e.a3(ve.c)), t(A, "IX", "jc", () => e.a3(ve.c)), t(A, "IY", "q", () => e.a3(ve.c)), t(A, "IZ", "jd", () => e.a3(ve.c)), t(A, "J_", "bm", () => e.a3(ve.c)), t(A, "J0", "dA", () => e.a3(ve.c)), t(A, "J1", "aA", () => e.a3(ve.c)), t(A, "J2", "dB", () => e.a3(ve.c)), t(A, "IP", "Ba", () => e.a3(ve.c)), t(A, "IQ", "cy", () => e.a3(ve.c)), t(A, "IR", "b_", () => e.a3(ve.c)), t(A, "IS", "d2", () => e.a3(ve.c)), t(A, "IT", "Bb", () => e.a3(ve.c)), t(A, "IU", "Bc", () => e.a3(ve.c)), t(A, "IV", "cz", () => e.a3(ve.c)), r(A, "HN", "AF", () => a.d.gbq(a.eA)), r(A, "HR", "aT", () => new e.rU(e.eH(a.B))), t(A, "I1", "AI", () => {
28318
- var i = "A", o = "B", l = "C", f = "D", h = "E", p = "F", m = "G", b = "H", y = "Operation of terminal facilities", w = "I", E = "J", C = "K", T = "L", R = "M", S = "N", k = "O", D = "P", Y = "Q", U = "R", B = "S";
28319
- return e.v(["00000", e.a("00000", "NOT APPLICABLE", ""), "01111", e.a("01111", "Growing of maize", i), "01112", e.a("01112", "Growing of leguminous crops", i), "01113", e.a("01113", "Growing of oil seeds", i), "01119", e.a("01119", "Growing of other cereals n.e.c.", i), "01120", e.a("01120", "Growing of paddy", i), "01131", e.a("01131", "Growing of leafy or stem vegetables", i), "01132", e.a("01132", "Growing of fruits bearing vegetables", i), "01133", e.a("01133", "Growing of melons", i), "01134", e.a("01134", "Growing of mushrooms and truffles", i), "01135", e.a("01135", "Growing of vegetables seeds, except beet seeds", i), "01136", e.a("01136", "Growing of other vegetables", i), "01137", e.a("01137", "Growing of sugar beet", i), "01138", e.a("01138", "Growing of roots, tubers, bulb or tuberous vegetables", i), "01140", e.a("01140", "Growing of sugar cane", i), "01150", e.a("01150", "Growing of tobacco", i), "01160", e.a("01160", "Growing of fibre crops", i), "01191", e.a("01191", "Growing of flowers", i), "01192", e.a("01192", "Growing of flower seeds", i), "01193", e.a("01193", "Growing of sago (rumbia)", i), "01199", e.a("01199", "Growing of other non-perennial crops n.e.c.", i), "01210", e.a("01210", "Growing of grapes", i), "01221", e.a("01221", "Growing of banana", i), "01222", e.a("01222", "Growing of mango", i), "01223", e.a("01223", "Growing of durian", i), "01224", e.a("01224", "Growing of rambutan", i), "01225", e.a("01225", "Growing of star fruit", i), "01226", e.a("01226", "Growing of papaya", i), "01227", e.a("01227", "Growing of pineapple", i), "01228", e.a("01228", "Growing of pitaya (dragon fruit)", i), "01229", e.a("01229", "Growing of other tropical and subtropical fruits n.e.c.", i), "01231", e.a("01231", "Growing of pomelo", i), "01232", e.a("01232", "Growing of lemon and limes", i), "01233", e.a("01233", "Growing of tangerines and mandarin", i), "01239", e.a("01239", "Growing of other citrus fruits n.e.c.", i), "01241", e.a("01241", "Growing of guava", i), "01249", e.a("01249", "Growing of other pome fruits and stones fruits n.e.c.", i), "01251", e.a("01251", "Growing of berries", i), "01252", e.a("01252", "Growing of fruit seeds", i), "01253", e.a("01253", "Growing of edible nuts", i), "01259", e.a("01259", "Growing of other tree and bush fruits", i), "01261", e.a("01261", "Growing of oil palm (estate)", i), "01262", e.a("01262", "Growing of oil palm (smallholdings)", i), "01263", e.a("01263", "Growing of coconut (estate and smallholdings)", i), "01269", e.a("01269", "Growing of other oleaginous fruits n.e.c.", i), "01271", e.a("01271", "Growing of coffee", i), "01272", e.a("01272", "Growing of tea", i), "01273", e.a("01273", "Growing of cocoa", i), "01279", e.a("01279", "Growing of other beverage crops n.e.c.", i), "01281", e.a("01281", "Growing of pepper (piper nigrum)", i), "01282", e.a("01282", "Growing of chilies and pepper (capsicum spp.)", i), "01283", e.a("01283", "Growing of nutmeg", i), "01284", e.a("01284", "Growing of ginger", i), "01285", e.a("01285", "Growing of plants used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes", i), "01289", e.a("01289", "Growing of other spices and aromatic crops n.e.c.", i), "01291", e.a("01291", "Growing of rubber trees (estate)", i), "01292", e.a("01292", "Growing of rubber trees (smallholdings)", i), "01293", e.a("01293", "Growing of trees for extraction of sap", i), "01294", e.a("01294", "Growing of nipa palm", i), "01295", e.a("01295", "Growing of areca", i), "01296", e.a("01296", "Growing of roselle", i), "01299", e.a("01299", "Growing of other perennial crops n.e.c.", i), "01301", e.a("01301", "Growing of plants for planting", i), "01302", e.a("01302", "Growing of plants for ornamental purposes", i), "01303", e.a("01303", "Growing of live plants for bulbs, tubers and roots; cuttings and slips; mushroom spawn", i), "01304", e.a("01304", "Operation of tree nurseries", i), "01411", e.a("01411", "Raising, breeding and production of cattle or buffaloes", i), "01412", e.a("01412", "Production of raw milk from cows or buffaloes", i), "01413", e.a("01413", "Production of bovine semen", i), "01420", e.a("01420", "Raising and breeding of horses, asses, mules or hinnes", i), "01430", e.a("01430", "Raising and breeding of camels (dromedary) and camelids", i), "01441", e.a("01441", "Raising, breeding and production of sheep and goats", i), "01442", e.a("01442", "Production of raw sheep or goat’s milk", i), "01443", e.a("01443", "Production of raw wool", i), "01450", e.a("01450", "Raising, breeding and production of swine/pigs", i), "01461", e.a("01461", "Raising, breeding and production of chicken, broiler", i), "01462", e.a("01462", "Raising, breeding and production of ducks", i), "01463", e.a("01463", "Raising, breeding and production of geese", i), "01464", e.a("01464", "Raising, breeding and production of quails", i), "01465", e.a("01465", "Raising and breeding of other poultry n.e.c.", i), "01466", e.a("01466", "Production of chicken eggs", i), "01467", e.a("01467", "Production of duck eggs", i), "01468", e.a("01468", "Production of other poultry eggs n.e.c.", i), "01469", e.a("01469", "Operation of poultry hatcheries", i), "01491", e.a("01491", "Raising, breeding and production of semi-domesticated", i), "01492", e.a("01492", "Production of fur skins, reptile or bird’s skin from ranching operation", i), "01493", e.a("01493", "Operation of worm farms, land mollusc farms, snail farms", i), "01494", e.a("01494", "Raising of silk worms and production of silk worm cocoons", i), "01495", e.a("01495", "Bee keeping and production of honey and beeswax", i), "01496", e.a("01496", "Raising and breeding of pet animals", i), "01497", e.a("01497", "Raising and breeding of swiflet", i), "01499", e.a("01499", "Raising of diverse/other animals n.e.c.", i), "01500", e.a("01500", "Mixed Farming", i), "01610", e.a("01610", "Agricultural activities for crops production on a fee or contract basis", i), "01620", e.a("01620", "Agricultural activities for animal production on a fee or contract basis", i), "01631", e.a("01631", "Preparation of crops for primary markets", i), "01632", e.a("01632", "Preparation of tobacco leaves", i), "01633", e.a("01633", "Preparation of cocoa beans", i), "01634", e.a("01634", "Sun-drying of fruits and vegetables", i), "01640", e.a("01640", "Seed processing for propagation", i), "01701", e.a("01701", "Hunting and trapping on a commercial basis", i), "01702", e.a("01702", "Taking of animals (dead or alive)", i), "02101", e.a("02101", "Planting, replanting, transplanting, thinning and conserving of forests and timber tracts", i), "02102", e.a("02102", "Growing of coppice, pulpwood and fire wood", i), "02103", e.a("02103", "Operation of forest tree nurseries", i), "02104", e.a("02104", "Collection and raising of wildings (peat swamp forest tree species)", i), "02105", e.a("02105", "Forest plantation", i), "02201", e.a("02201", "Production of round wood for forest-based manufacturing industries", i), "02202", e.a("02202", "Production of round wood used in an unprocessed form", i), "02203", e.a("02203", "Production of charcoal in the forest (using traditional methods)", i), "02204", e.a("02204", "Rubber wood logging", i), "02301", e.a("02301", "Collection of rattan, bamboo", i), "02302", e.a("02302", "Bird’s nest collection", i), "02303", e.a("02303", "Wild sago palm collection", i), "02309", e.a("02309", "Gathering of non-wood forest products n.e.c.", i), "02401", e.a("02401", "Carrying out part of the forestry and forest plantation operation on a fee or contract basis for forestry service activities", i), "02402", e.a("02402", "Carrying out part of the forestry operation on a fee or contract basis for logging service activities", i), "03111", e.a("03111", "Fishing on a commercial basis in ocean and coastal waters", i), "03112", e.a("03112", "Collection of marine crustaceans and molluscs", i), "03113", e.a("03113", "Taking of aquatic animals: sea squirts, tunicates, sea urchins", i), "03114", e.a("03114", "Activities of vessels engaged both in fishing and in processing and preserving of fish", i), "03115", e.a("03115", "Gathering of other marine organisms and materials (natural pearls, sponges, coral and algae)", i), "03119", e.a("03119", "Marine fishing n.e.c.", i), "03121", e.a("03121", "Fishing on a commercial basis in inland waters", i), "03122", e.a("03122", "Taking of freshwater crustaceans and molluscs", i), "03123", e.a("03123", "Taking of freshwater aquatic animals", i), "03124", e.a("03124", "Gathering of freshwater flora and fauna", i), "03129", e.a("03129", "Freshwater fishing n.e.c.", i), "03211", e.a("03211", "Fish farming in sea water", i), "03212", e.a("03212", "Production of bivalve spat (oyster, mussel), lobster lings, shrimp post-larvae, fish fry and fingerlings", i), "03213", e.a("03213", "Growing of laver and other edible seaweeds", i), "03214", e.a("03214", "Culture of crustaceans, bivalves, other molluscs and other aquatic animals in sea water", i), "03215", e.a("03215", "Aquaculture activities in brackish water", i), "03216", e.a("03216", "Aquaculture activities in salt water filled tanks or reservoirs", i), "03217", e.a("03217", "Operation of hatcheries (marine)", i), "03218", e.a("03218", "Operation of marine worm farms for fish feed", i), "03219", e.a("03219", "Marine aquaculture n.e.c.", i), "03221", e.a("03221", "Fish farming in freshwater", i), "03222", e.a("03222", "Shrimp farming in freshwater", i), "03223", e.a("03223", "Culture of freshwater crustaceans, bivalves, other molluscs and other aquatic animals", i), "03224", e.a("03224", "Operation of hatcheries (freshwater)", i), "03225", e.a("03225", "Farming of frogs", i), "03229", e.a("03229", "Freshwater aquaculture n.e.c.", i), "05100", e.a("05100", "Mining of hard coal", o), "05200", e.a("05200", "Mining of lignite (brown coal)", o), "06101", e.a("06101", "Extraction of crude petroleum oils", o), "06102", e.a("06102", "Extraction of bituminous or oil shale and tar sand", o), "06103", e.a("06103", "Production of crude petroleum from bituminous shale and sand", o), "06104", e.a("06104", "Processes to obtain crude oils", o), "06201", e.a("06201", "Production of crude gaseous hydrocarbon (natural gas)", o), "06202", e.a("06202", "Extraction of condensates", o), "06203", e.a("06203", "Draining and separation of liquid hydrocarbon fractions", o), "06204", e.a("06204", "Gas desulphurization", o), "06205", e.a("06205", "Mining of hydrocarbon liquids, obtain through liquefaction or pyrolysis", o), "07101", e.a("07101", "Mining of ores valued chiefly for iron content", o), "07102", e.a("07102", "Beneficiation and agglomeration of iron ores", o), "07210", e.a("07210", "Mining of uranium and thorium ores", o), "07291", e.a("07291", "Mining of tin ores", o), "07292", e.a("07292", "Mining of copper", o), "07293", e.a("07293", "Mining of bauxite (aluminium)", o), "07294", e.a("07294", "Mining of ilmenite", o), "07295", e.a("07295", "Mining of gold", o), "07296", e.a("07296", "Mining of silver", o), "07297", e.a("07297", "Mining of platinum", o), "07298", e.a("07298", "Amang retreatment", o), "07299", e.a("07299", "Mining of other non-ferrous metal ores n.e.c.", o), "08101", e.a("08101", "Quarrying, rough trimming and sawing of monumental and building stone such as marble, granite (dimension stone), sandstone", o), "08102", e.a("08102", "Quarrying, crushing and breaking of limestone", o), "08103", e.a("08103", "Mining of gypsum and anhydrite", o), "08104", e.a("08104", "Mining of chalk and uncalcined dolomite", o), "08105", e.a("08105", "Extraction and dredging of industrial sand, sand for construction and gravel", o), "08106", e.a("08106", "Breaking and crushing of stone and gravel", o), "08107", e.a("08107", "Quarrying of sand", o), "08108", e.a("08108", "Mining of clays, refractory clays and kaolin", o), "08109", e.a("08109", "Quarrying, crushing and breaking of granite", o), "08911", e.a("08911", "Mining of natural phosphates", o), "08912", e.a("08912", "Mining of natural potassium salts", o), "08913", e.a("08913", "Mining of native sulphur", o), "08914", e.a("08914", "Extraction and preparation of pyrites and pyrrhotite, except roasting", o), "08915", e.a("08915", "Mining of natural barium sulphate and carbonate (barytes and witherite)", o), "08916", e.a("08916", "Mining of natural borates, natural magnesium sulphates (kieserite)", o), "08917", e.a("08917", "Mining of earth colours, fluorspar and other minerals valued chiefly as a source of chemicals", o), "08918", e.a("08918", "Guano mining", o), "08921", e.a("08921", "Peat digging", o), "08922", e.a("08922", "Peat agglomeration", o), "08923", e.a("08923", "Preparation of peat to improve quality or facilitate transport or storage", o), "08931", e.a("08931", "Extraction of salt from underground", o), "08932", e.a("08932", "Salt production by evaporation of sea water or other saline waters", o), "08933", e.a("08933", "Crushing, purification and refining of salt by the producer", o), "08991", e.a("08991", "Mining and quarrying of abrasive materials", o), "08992", e.a("08992", "Mining and quarrying of asbestos", o), "08993", e.a("08993", "Mining and quarrying of siliceous fossil meals", o), "08994", e.a("08994", "Mining and quarrying of natural graphite", o), "08995", e.a("08995", "Mining and quarrying of steatite (talc)", o), "08996", e.a("08996", "Mining and quarrying of gemstones", o), "08999", e.a("08999", "Other mining and quarrying n.e.c.", o), "09101", e.a("09101", "Oil and gas extraction service activities provided on a fee or contract basis", o), "09102", e.a("09102", "Oil and gas field fire fighting services", o), "09900", e.a("09900", "Support activities for other mining and quarrying", o), "10101", e.a("10101", "Processing and preserving of meat and production of meat products", l), "10102", e.a("10102", "Processing and preserving of poultry and poultry products", l), "10103", e.a("10103", "Production of hides and skins originating from slaughterhouses", l), "10104", e.a("10104", "Operation of slaughterhouses engaged in killing, houses dressing or packing meat", l), "10109", e.a("10109", "Processing and preserving of meat n.e.c.", l), "10201", e.a("10201", "Canning of fish, crustaceans and mollusks", l), "10202", e.a("10202", "Processing, curing and preserving of fish, crustacean and molluscs", l), "10203", e.a("10203", "Production of fish meals for human consumption or animal feed", l), "10204", e.a("10204", "Production of keropok including keropok lekor", l), "10205", e.a("10205", "Processing of seaweed", l), "10301", e.a("10301", "Manufacture of fruits and vegetable food products", l), "10302", e.a("10302", "Manufacture of fruit and vegetable juices", l), "10303", e.a("10303", "Pineapple canning", l), "10304", e.a("10304", "Manufacture of jams, marmalades and table jellies", l), "10305", e.a("10305", "Manufacture of nuts and nut products", l), "10306", e.a("10306", "Manufacture of bean curd products", l), "10401", e.a("10401", "Manufacture of crude palm oil", l), "10402", e.a("10402", "Manufacture of refined palm oil", l), "10403", e.a("10403", "Manufacture of palm kernel oil", l), "10404", e.a("10404", "Manufacture of crude and refined vegetable oil", l), "10405", e.a("10405", "Manufacture of coconut oil", l), "10406", e.a("10406", "Manufacture of compound cooking fats", l), "10407", e.a("10407", "Manufacture of animal oils and fats", l), "10501", e.a("10501", "Manufacture of ice cream and other edible ice such as sorbet", l), "10502", e.a("10502", "Manufacture of condensed, powdered and evaporated milk", l), "10509", e.a("10509", "Manufacture of other dairy products n.e.c.", l), "10611", e.a("10611", "Rice milling", l), "10612", e.a("10612", "Provision of milling services", l), "10613", e.a("10613", "Flour milling", l), "10619", e.a("10619", "Manufacture of grain mill products n.e.c.", l), "10621", e.a("10621", "Manufacture of starches and starch products", l), "10622", e.a("10622", "Manufacture of glucose, glucose syrup, maltose, inulin", l), "10623", e.a("10623", "Manufacture of sago and tapioca flour/products", l), "10711", e.a("10711", "Manufacture of biscuits and cookies", l), "10712", e.a("10712", "Manufacture of bread, cakes and other bakery products", l), "10713", e.a("10713", "Manufacture of snack products", l), "10714", e.a("10714", "Manufacture of frozen bakery products", l), "10721", e.a("10721", "Manufacture of sugar", l), "10722", e.a("10722", "Manufacture of sugar products", l), "10731", e.a("10731", "Manufacture of cocoa products", l), "10732", e.a("10732", "Manufacture of chocolate and chocolate products", l), "10733", e.a("10733", "Manufacture of sugar confectionery", l), "10741", e.a("10741", "Manufacture of meehoon, noodles and other related products", l), "10742", e.a("10742", "Manufacture of pastas", l), "10750", e.a("10750", "Manufacture of prepared meals and dishes", l), "10791", e.a("10791", "Manufacture of coffee", l), "10792", e.a("10792", "Manufacture of tea", l), "10793", e.a("10793", "Manufacture of sauces and condiments", l), "10794", e.a("10794", "Manufacture of spices and curry powder", l), "10795", e.a("10795", "Manufacture of egg products", l), "10799", e.a("10799", "Manufacture of other food products n.e.c.", l), "10800", e.a("10800", "Manufacture of prepared animal feeds", l), "11010", e.a("11010", "Distilling, rectifying and blending of spirits", l), "11020", e.a("11020", "Manufacture of wines", l), "11030", e.a("11030", "Manufacture of malt liquors and malt", l), "11041", e.a("11041", "Manufacture of soft drinks", l), "11042", e.a("11042", "Production of natural mineral water and other bottled water", l), "12000", e.a("12000", "MANUFACTURE OF TOBACCO PRODUCTS", l), "13110", e.a("13110", "Preparation and spinning of textile fibres", l), "13120", e.a("13120", "Weaving of textiles", l), "13131", e.a("13131", "Batik making", l), "13132", e.a("13132", "Dyeing, bleaching, printing and finishing of yarns and fabrics", l), "13139", e.a("13139", "Other finishing textiles", l), "13910", e.a("13910", "Manufacture of knitted and crocheted fabrics", l), "13921", e.a("13921", "Manufacture of made-up articles of any textile materials, including of knitted or crocheted fabrics", l), "13922", e.a("13922", "Manufacture of made-up furnishing articles", l), "13930", e.a("13930", "Manufacture of carpets and rugs", l), "13940", e.a("13940", "Manufacture of cordage, rope, twine and netting", l), "13990", e.a("13990", "Manufacture of other textiles n.e.c.", l), "14101", e.a("14101", "Manufacture of specific wearing apparel", l), "14102", e.a("14102", "Manufacture of clothings", l), "14103", e.a("14103", "Custom tailoring", l), "14109", e.a("14109", "Manufacture of other clothing accessories", l), "14200", e.a("14200", "Manufacture of articles made of fur skins", l), "14300", e.a("14300", "Manufacture of knitted and crocheted apparel", l), "15110", e.a("15110", "Tanning and dressing of leather; dressing and dyeing of fur", l), "15120", e.a("15120", "Manufacture of luggage, handbags and the like, saddlery and harness", l), "15201", e.a("15201", "Manufacture of leather footwear", l), "15202", e.a("15202", "Manufacture of plastic footwear", l), "15203", e.a("15203", "Manufacture of rubber footwear", l), "15209", e.a("15209", "Manufacture of other footwear n.e.c.", l), "16100", e.a("16100", "Sawmilling and planning of wood", l), "16211", e.a("16211", "Manufacture of veneer sheets and plywood", l), "16212", e.a("16212", "Manufacture of particle board and fibreboard", l), "16221", e.a("16221", "Manufacture of builders' carpentry", l), "16222", e.a("16222", "Manufacture of joinery wood products", l), "16230", e.a("16230", "Manufacture of wooden containers", l), "16291", e.a("16291", "Manufacture of wood charcoal", l), "16292", e.a("16292", "Manufacture of other products of wood, cane, articles of cork, straw and plaiting materials", l), "17010", e.a("17010", "Manufacture of pulp, paper and paperboard", l), "17020", e.a("17020", "Manufacture of corrugated paper and paperboard and of containers of paper and paperboard", l), "17091", e.a("17091", "Manufacture of envelopes and letter-card", l), "17092", e.a("17092", "Manufacture of household and personal hygiene paper", l), "17093", e.a("17093", "Manufacture of gummed or adhesive paper in strips or rolls and labels and wall paper", l), "17094", e.a("17094", "Manufacture of effigies, funeral paper goods, joss paper", l), "17099", e.a("17099", "Manufacture of other articles of paper and paperboard n.e.c.", l), "18110", e.a("18110", "Printing", l), "18120", e.a("18120", "Service activities related to printing", l), "18200", e.a("18200", "Reproduction of recorded media", l), "19100", e.a("19100", "Manufacture of coke oven products", l), "19201", e.a("19201", "Manufacture of refined petroleum products", l), "19202", e.a("19202", "Manufacture of bio-diesel products", l), "20111", e.a("20111", "Manufacture of liquefied or compressed inorganic industrial or medical gases", l), "20112", e.a("20112", "Manufacture of basic organic chemicals", l), "20113", e.a("20113", "Manufacture of inorganic compounds", l), "20119", e.a("20119", "Manufacture of other basic chemicals n.e.c.", l), "20121", e.a("20121", "Manufacture of fertilizers", l), "20129", e.a("20129", "Manufacture of associated nitrogen products", l), "20131", e.a("20131", "Manufacture of plastic in primary forms", l), "20132", e.a("20132", "Manufacture of synthetic rubber in primary forms: synthetic rubber, factice", l), "20133", e.a("20133", "Manufacture of mixtures of synthetic rubber and natural rubber or rubber - like gums", l), "20210", e.a("20210", "Manufacture of pesticides and other agrochemical products", l), "20221", e.a("20221", "Manufacture of paints, varnishes and similar coatings ink and mastics", l), "20222", e.a("20222", "Manufacture of printing ink", l), "20231", e.a("20231", "Manufacture of soap and detergents, cleaning and polishing preparations", l), "20232", e.a("20232", "Manufacture of perfumes and toilet preparations", l), "20291", e.a("20291", "Manufacture of photographic plates, films, sensitized paper and other sensitized unexposed materials", l), "20292", e.a("20292", "Manufacture of writing and drawing ink", l), "20299", e.a("20299", "Manufacture of other chemical products n.e.c.", l), "20300", e.a("20300", "Manufacture of man-made fibres", l), "21001", e.a("21001", "Manufacture of medicinal active substances to be used for their pharmacological properties in the manufacture of medicaments", l), "21002", e.a("21002", "Processing of blood", l), "21003", e.a("21003", "Manufacture of medicaments", l), "21004", e.a("21004", "Manufacture of chemical contraceptive products", l), "21005", e.a("21005", "Manufacture of medical diagnostic preparation", l), "21006", e.a("21006", "Manufacture of radioactive in-vivo diagnostic substances", l), "21007", e.a("21007", "Manufacture of biotech pharmaceuticals", l), "21009", e.a("21009", "Manufacture of other pharmaceuticals, medicinal chemical and botanical products n.e.c.", l), "22111", e.a("22111", "Manufacture of rubber tyres for vehicles", l), "22112", e.a("22112", "Manufacture of interchangeable tyre treads and retreading rubber tyres", l), "22191", e.a("22191", "Manufacture of other products of natural or synthetic rubber, unvulcanized, vulcanized or hardened", l), "22192", e.a("22192", "Manufacture of rubber gloves", l), "22193", e.a("22193", "Rubber remilling and latex processing", l), "22199", e.a("22199", "Manufacture of other rubber products n.e.c", l), "22201", e.a("22201", "Manufacture of semi-manufactures of plastic products", l), "22202", e.a("22202", "Manufacture of finished plastic products", l), "22203", e.a("22203", "Manufacture of plastic articles for the packing of goods", l), "22204", e.a("22204", "Manufacture of builders' plastics ware", l), "22205", e.a("22205", "Manufacture of plastic tableware, kitchenware and toilet articles", l), "22209", e.a("22209", "Manufacture of diverse plastic products n.e.c.", l), "23101", e.a("23101", "Manufacture of flat glass, including wired, coloured or tinted flat glass", l), "23102", e.a("23102", "Manufacture of laboratory, hygienic or pharmaceutical glassware", l), "23109", e.a("23109", "Manufacture of other glass products n.e.c.", l), "23911", e.a("23911", "Manufacture of refractory mortars and concretes", l), "23912", e.a("23912", "Manufacture of refractory ceramic goods", l), "23921", e.a("23921", "Manufacture of non-refractory ceramic", l), "23929", e.a("23929", "Manufacture of other clay building materials", l), "23930", e.a("23930", "Manufacture of other porcelain and ceramic products", l), "23941", e.a("23941", "Manufacture of hydraulic cement", l), "23942", e.a("23942", "Manufacture of lime and plaster", l), "23951", e.a("23951", "Manufacture of ready-mix and dry-mix concrete and mortars", l), "23952", e.a("23952", "Manufacture of precast concrete, cement or artificial stone articles for use in construction", l), "23953", e.a("23953", "Manufacture of prefabricated structural components for building or civil engineering of cement, concrete or artificial stone", l), "23959", e.a("23959", "Manufacture of other articles of concrete, cement and plaster n.e.c.", l), "23960", e.a("23960", "Cutting, shaping and finishing of stone", l), "23990", e.a("23990", "Manufacture of other non-metallic mineral products n.e.c.", l), "24101", e.a("24101", "Production of pig iron and spiegeleisen in pigs, blocks or other primary forms", l), "24102", e.a("24102", "Production of bars and rods of stainless steel or other alloy steel", l), "24103", e.a("24103", "Manufacture of seamless tubes, by hot rolling, hot extrusion or hot drawing, or by cold drawing or cold rolling", l), "24104", e.a("24104", "Manufacture of steel tube fittings", l), "24109", e.a("24109", "Manufacture of other basic iron and steel products n.e.c.", l), "24201", e.a("24201", "Tin smelting", l), "24202", e.a("24202", "Production of aluminium from alumina", l), "24209", e.a("24209", "Manufacture of other basic precious and other non-ferrous metals n.e.c.", l), "24311", e.a("24311", "Casting of iron", l), "24312", e.a("24312", "Casting of steel", l), "24320", e.a("24320", "Casting of non-ferrous metals", l), "25111", e.a("25111", "Manufacture of industrial frameworks in metal", l), "25112", e.a("25112", "Manufacture of prefabricated buildings mainly of metal", l), "25113", e.a("25113", "Manufacture of metal doors, windows and their frames, shutters and gates", l), "25119", e.a("25119", "Manufacture of other structural metal products", l), "25120", e.a("25120", "Manufacture of tanks, reservoirs and containers of metal", l), "25130", e.a("25130", "Manufacture of steam generators, except central heating hot water boilers", l), "25200", e.a("25200", "Manufacture of weapons and ammunition", l), "25910", e.a("25910", "Forging, pressing, stamping and roll-forming of metal; powder metallurgy", l), "25920", e.a("25920", "Treatment and coating of metals; machining", l), "25930", e.a("25930", "Manufacture of cutlery, hand tools and general hardware", l), "25991", e.a("25991", "Manufacture of tins and cans for food products, collapsible tubes and boxes", l), "25992", e.a("25992", "Manufacture of metal cable, plaited bands and similar articles", l), "25993", e.a("25993", "Manufacture of bolts, screws, nuts and similar threaded products", l), "25994", e.a("25994", "Manufacture of metal household articles", l), "25999", e.a("25999", "Manufacture of any other fabricated metal products n.e.c.", l), "26101", e.a("26101", "Manufacture of diodes, transistors and similar semiconductor devices", l), "26102", e.a("26102", "Manufacture electronic integrated circuits micro assemblies", l), "26103", e.a("26103", "Manufacture of electrical capacitors and resistors", l), "26104", e.a("26104", "Manufacture of printed circuit boards", l), "26105", e.a("26105", "Manufacture of display components", l), "26109", e.a("26109", "Manufacture of other components for electronic applications", l), "26201", e.a("26201", "Manufacture of computers", l), "26202", e.a("26202", "Manufacture of peripheral equipment", l), "26300", e.a("26300", "Manufacture of communication equipment", l), "26400", e.a("26400", "Manufacture of consumer electronics", l), "26511", e.a("26511", "Manufacture of measuring, testing, navigating and control equipment", l), "26512", e.a("26512", "Manufacture of industrial process control equipment", l), "26520", e.a("26520", "Manufacture of watches and clocks and parts", l), "26600", e.a("26600", "Manufacture of irradiation, electro medical and electrotherapeutic equipment", l), "26701", e.a("26701", "Manufacture of optical instruments and equipment", l), "26702", e.a("26702", "Manufacture of photographic equipment", l), "26800", e.a("26800", "Manufacture of magnetic and optical recording media", l), "27101", e.a("27101", "Manufacture of electric motors, generators and transformers", l), "27102", e.a("27102", "Manufacture of electricity distribution and control apparatus", l), "27200", e.a("27200", "Manufacture of batteries and accumulators", l), "27310", e.a("27310", "Manufacture of fibre optic cables", l), "27320", e.a("27320", "Manufacture of other electronic and electric wires and cables", l), "27330", e.a("27330", "Manufacture of current-carrying and non current-carrying wiring devices for electrical circuits regardless of material", l), "27400", e.a("27400", "Manufacture of electric lighting equipment", l), "27500", e.a("27500", "Manufacture of domestic appliances", l), "27900", e.a("27900", "Manufacture of miscellaneous electrical equipment other than motors, generators and transformers, batteries and accumulators, wires and wiring devices, lighting equipment or domestic appliances", l), "28110", e.a("28110", "Manufacture of engines and turbines, except aircraft, vehicle and cycle engines", l), "28120", e.a("28120", "Manufacture of fluid power equipment", l), "28130", e.a("28130", "Manufacture of other pumps, compressors, taps and valves", l), "28140", e.a("28140", "Manufacture of bearings, gears, gearing and driving elements", l), "28150", e.a("28150", "Manufacture of ovens, furnaces and furnace burners", l), "28160", e.a("28160", "Manufacture of lifting and handling equipment", l), "28170", e.a("28170", "Manufacture of office machinery and equipment (except computers and peripheral equipment)", l), "28180", e.a("28180", "Manufacture of power-driven hand tools with self-contained electric or non-electric motor or pneumatic drives", l), "28191", e.a("28191", "Manufacture of refrigerating or freezing industrial equipment", l), "28192", e.a("28192", "Manufacture of air-conditioning machines, including for motor vehicles", l), "28199", e.a("28199", "Manufacture of other general-purpose machinery n.e.c.", l), "28210", e.a("28210", "Manufacture of agricultural and forestry machinery", l), "28220", e.a("28220", "Manufacture of metal-forming machinery and machine tools", l), "28230", e.a("28230", "Manufacture of machinery for metallurgy", l), "28240", e.a("28240", "Manufacture of machinery for mining, quarrying and construction", l), "28250", e.a("28250", "Manufacture of machinery for food, beverage and tobacco processing", l), "28260", e.a("28260", "Manufacture of machinery for textile, apparel and leather production", l), "28290", e.a("28290", "Manufacture of other special-purpose machinery n.e.c.", l), "29101", e.a("29101", "Manufacture of passenger cars", l), "29102", e.a("29102", "Manufacture of commercial vehicles", l), "29200", e.a("29200", "Manufacture of bodies (coachwork) for motor vehicles; manufacture of trailers and semi- trailers", l), "29300", e.a("29300", "Manufacture of parts and accessories for motor vehicles", l), "30110", e.a("30110", "Building of ships and floating structures", l), "30120", e.a("30120", "Building of pleasure and sporting boats", l), "30200", e.a("30200", "Manufacture of railway locomotives and rolling stock", l), "30300", e.a("30300", "Manufacture of air and spacecraft and related machinery", l), "30400", e.a("30400", "Manufacture of military fighting vehicles", l), "30910", e.a("30910", "Manufacture of motorcycles", l), "30920", e.a("30920", "Manufacture of bicycles and invalid carriages", l), "30990", e.a("30990", "Manufacture of other transport equipments n.e.c.", l), "31001", e.a("31001", "Manufacture of wooden and cane furniture", l), "31002", e.a("31002", "Manufacture of metal furniture", l), "31003", e.a("31003", "Manufacture of mattress", l), "31009", e.a("31009", "Manufacture of other furniture, except of stone, concrete or ceramic", l), "32110", e.a("32110", "Manufacture of jewellery and related articles", l), "32120", e.a("32120", "Manufacture of imitation jewellery and related articles", l), "32200", e.a("32200", "Manufacture of musical instruments", l), "32300", e.a("32300", "Manufacture of sports goods", l), "32400", e.a("32400", "Manufacture of games and toys", l), "32500", e.a("32500", "Manufacture of medical and dental instrument and supplies", l), "32901", e.a("32901", "Manufacture of stationery", l), "32909", e.a("32909", "Other manufacturing n.e.c.", l), "33110", e.a("33110", "Repair of fabricated metal products", l), "33120", e.a("33120", "Repair and maintenance of industrial machinery and equipment", l), "33131", e.a("33131", "Repair and maintenance of the measuring, testing, navigating and control equipment", l), "33132", e.a("33132", "Repair and maintenance of irradiation, electro medical and electrotherapeutic equipment", l), "33133", e.a("33133", "Repair of optical instruments and photographic equipment", l), "33140", e.a("33140", "Repair and maintenance of electrical equipment except domestic appliances", l), "33150", e.a("33150", "Repair and maintenance of transport equipment except motorcycles and bicycles", l), "33190", e.a("33190", "Repair and maintenance of other equipment n.e.c.", l), "33200", e.a("33200", "Installation of industrial machinery and equipment", l), "35101", e.a("35101", "Operation of generation facilities that produce electric energy", f), "35102", e.a("35102", "Operation of transmission, distribution and sales of electricity", f), "35201", e.a("35201", "Manufacture of gaseous fuels with a specified calorific value, by purification, blending and other processes from gases of various types including natural gas", f), "35202", e.a("35202", "Transportation, distribution and supply of gaseous fuels of all kinds through a system of mains", f), "35203", e.a("35203", "Sale of gas to the user through mains", f), "35301", e.a("35301", "Production, collection and distribution of steam and hot water for heating, power and other purposes", f), "35302", e.a("35302", "Production and distribution of cooled air, chilled water for cooling purposes", f), "35303", e.a("35303", "Production of ice, including ice for food and non-food (e.g. cooling) purposes", f), "36001", e.a("36001", "Purification and distribution of water for water supply purposes", h), "36002", e.a("36002", "Desalting of sea or ground water to produce water as the principal product of interest", h), "37000", e.a("37000", "Sewerage and similar activities", h), "38111", e.a("38111", "Collection of non-hazardous solid waste (i.e. garbage) within a local area", h), "38112", e.a("38112", "Collection of recyclable materials", h), "38113", e.a("38113", "Collection of refuse in litter-bins in public places", h), "38114", e.a("38114", "Collection of construction and demolition waste", h), "38115", e.a("38115", "Operation of waste transfer stations for non-hazardous waste", h), "38121", e.a("38121", "Collection of hazardous waste", h), "38122", e.a("38122", "Operation of waste transfer stations for hazardous waste", h), "38210", e.a("38210", "Treatment and disposal of non-hazardous waste", h), "38220", e.a("38220", "Treatment and disposal of hazardous waste", h), "38301", e.a("38301", "Mechanical crushing of metal waste", h), "38302", e.a("38302", "Dismantling of automobiles, computers, televisions and other equipment for material recover", h), "38303", e.a("38303", "Reclaiming of rubber such as used tires to produce secondary raw material", h), "38304", e.a("38304", "Reuse of rubber products", h), "38309", e.a("38309", "Materials recovery n.e.c.", h), "39000", e.a("39000", "Remediation activities and other waste management services", h), "41001", e.a("41001", "Residential buildings", p), "41002", e.a("41002", "Non-residential buildings", p), "41003", e.a("41003", "Assembly and erection of prefabricated constructions on the site", p), "41009", e.a("41009", "Construction of buildings n.e.c.", p), "42101", e.a("42101", "Construction of motorways, streets, roads, other vehicular and pedestrian ways", p), "42102", e.a("42102", "Surface work on streets, roads, highways, bridges or tunnels", p), "42103", e.a("42103", "Construction of bridges, including those for elevated highways", p), "42104", e.a("42104", "Construction of tunnels", p), "42105", e.a("42105", "Construction of railways and subways", p), "42106", e.a("42106", "Construction of airfield/airports runways", p), "42109", e.a("42109", "Construction of roads and railways n.e.c.", p), "42201", e.a("42201", "Long-distance pipelines, communication and power lines", p), "42202", e.a("42202", "Urban pipelines, urban communication and power lines; ancillary urban works", p), "42203", e.a("42203", "Water main and line construction", p), "42204", e.a("42204", "Reservoirs", p), "42205", e.a("42205", "Construction of irrigation systems (canals)", p), "42206", e.a("42206", "Construction of sewer systems (including repair) and sewage disposal plants", p), "42207", e.a("42207", "Construction of power plants", p), "42209", e.a("42209", "Construction of utility projects n.e.c.", p), "42901", e.a("42901", "Construction of refineries", p), "42902", e.a("42902", "Construction of waterways, harbour and river works, pleasure ports (marinas), locks", p), "42903", e.a("42903", "Construction of dams and dykes", p), "42904", e.a("42904", "Dredging of waterways", p), "42905", e.a("42905", "Outdoor sports facilities", p), "42906", e.a("42906", "Land subdivision with land improvement", p), "42909", e.a("42909", "Construction of other engineering projects n.e.c.", p), "43110", e.a("43110", "Demolition or wrecking of buildings and other structures", p), "43121", e.a("43121", "Clearing of building sites", p), "43122", e.a("43122", "Earth moving", p), "43123", e.a("43123", "Drilling, boring and core sampling for construction, geophysical, geological or similar purposes", p), "43124", e.a("43124", "Site preparation for mining", p), "43125", e.a("43125", "Drainage of agricultural or forestry land", p), "43126", e.a("43126", "Land reclamation work", p), "43129", e.a("43129", "Other site preparation activities n.e.c.", p), "43211", e.a("43211", "Electrical wiring and fittings", p), "43212", e.a("43212", "Telecommunications wiring", p), "43213", e.a("43213", "Computer network and cable television wiring", p), "43214", e.a("43214", "Satellite dishes", p), "43215", e.a("43215", "Lighting systems", p), "43216", e.a("43216", "Security systems", p), "43219", e.a("43219", "Electrical installation n.e.c.", p), "43221", e.a("43221", "Installation of heating systems (electric, gas and oil)", p), "43222", e.a("43222", "Installation of furnaces, cooling towers", p), "43223", e.a("43223", "Installation of non-electric solar energy collectors", p), "43224", e.a("43224", "Installation of plumbing and sanitary equipment", p), "43225", e.a("43225", "Installation of ventilation, refrigeration or air-conditioning equipment and ducts", p), "43226", e.a("43226", "Installation of gas fittings", p), "43227", e.a("43227", "Installation of fire and lawn sprinkler systems", p), "43228", e.a("43228", "Steam piping", p), "43229", e.a("43229", "Plumbing, heat and air-conditioning installation n.e.c.", p), "43291", e.a("43291", "Installation of elevators, escalators in buildings or other construction projects", p), "43292", e.a("43292", "Installation of automated and revolving doors in buildings or other construction projects", p), "43293", e.a("43293", "Installation of lighting conductors in buildings or other construction projects", p), "43294", e.a("43294", "Installation vacuum cleaning systems in buildings or other construction projects", p), "43295", e.a("43295", "Installation thermal, sound or vibration insulation in buildings or other construction projects", p), "43299", e.a("43299", "Other construction installation n.e.c.", p), "43301", e.a("43301", "Installation of doors, windows, door and window frames of wood or other materials, fitted kitchens, staircases, shop fittings and furniture", p), "43302", e.a("43302", "Laying, tiling, hanging or fitting in buildings or other construction projects of various types of materials", p), "43303", e.a("43303", "Interior and exterior painting of buildings", p), "43304", e.a("43304", "Painting of civil engineering structures", p), "43305", e.a("43305", "Installation of glass, mirrors", p), "43306", e.a("43306", "Interior completion", p), "43307", e.a("43307", "Cleaning of new buildings after construction", p), "43309", e.a("43309", "Other building completion and finishing work n.e.c.", p), "43901", e.a("43901", "Construction of foundations, including pile driving", p), "43902", e.a("43902", "Erection of non-self-manufactured steel elements", p), "43903", e.a("43903", "Scaffolds and work platform erecting and dismantling", p), "43904", e.a("43904", "Bricklaying and stone setting", p), "43905", e.a("43905", "Construction of outdoor swimming pools", p), "43906", e.a("43906", "Steam cleaning, sand blasting and similar activities for building exteriors", p), "43907", e.a("43907", "Renting of construction machinery and equipment with operator (e.g. cranes)", p), "43909", e.a("43909", "Other specialized construction activities, n.e.c.", p), "45101", e.a("45101", "Wholesale and retail of new motor vehicles", m), "45102", e.a("45102", "Wholesale and retail of used motor vehicles", m), "45103", e.a("45103", "Sale of industrial, commercial and agriculture vehicles – new", m), "45104", e.a("45104", "Sale of industrial, commercial and agriculture vehicles – used", m), "45105", e.a("45105", "Sale by commission agents", m), "45106", e.a("45106", "Car auctions", m), "45109", e.a("45109", "Sale of other motor vehicles n.e.c.", m), "45201", e.a("45201", "Maintenance and repair of motor vehicles", m), "45202", e.a("45202", "Spraying and painting", m), "45203", e.a("45203", "Washing and polishing (car wash)", m), "45204", e.a("45204", "Repair of motor vehicle seats", m), "45205", e.a("45205", "Installation of parts and accessories not as part of the manufacturing process", m), "45300", e.a("45300", "Wholesale and retail sale of all kinds of parts, components, supplies, tools and accessories for motor vehicles", m), "45401", e.a("45401", "Wholesale and retail sale of motorcycles", m), "45402", e.a("45402", "Wholesale and retail sale of parts and accessories for motorcycles", m), "45403", e.a("45403", "Repair and maintenance of motorcycles", m), "46100", e.a("46100", "Wholesale on a fee or contract basis", m), "46201", e.a("46201", "Wholesale of rubber", m), "46202", e.a("46202", "Wholesale of palm oil", m), "46203", e.a("46203", "Wholesale of lumber and timber", m), "46204", e.a("46204", "Wholesale of flowers and plants", m), "46205", e.a("46205", "Wholesale of livestock", m), "46209", e.a("46209", "Wholesale of agricultural raw material and live animal n.e.c.", m), "46311", e.a("46311", "Wholesale of meat, poultry and eggs", m), "46312", e.a("46312", "Wholesale of fish and other seafood", m), "46313", e.a("46313", "Wholesale of fruits", m), "46314", e.a("46314", "Wholesale of vegetables", m), "46319", e.a("46319", "Wholesale of meat, fish, fruits and vegetables n.e.c.", m), "46321", e.a("46321", "Wholesale of rice, other grains, flour and sugars", m), "46322", e.a("46322", "Wholesale of dairy products", m), "46323", e.a("46323", "Wholesale of confectionary", m), "46324", e.a("46324", "Wholesale of biscuits, cakes, breads and other bakery products", m), "46325", e.a("46325", "Wholesale of coffee, tea, cocoa and other beverages", m), "46326", e.a("46326", "Wholesale of beer, wine and spirits", m), "46327", e.a("46327", "Wholesale of tobacco, cigar, cigarettes", m), "46329", e.a("46329", "Wholesale of other foodstuffs", m), "46411", e.a("46411", "Wholesale of yarn and fabrics", m), "46412", e.a("46412", "Wholesale of household linen, towels, blankets", m), "46413", e.a("46413", "Wholesale of clothing", m), "46414", e.a("46414", "Wholesale of clothing accessories", m), "46415", e.a("46415", "Wholesale of fur articles", m), "46416", e.a("46416", "Wholesale of footwear", m), "46417", e.a("46417", "Wholesale of haberdashery", m), "46419", e.a("46419", "Wholesale of textiles, clothing n.e.c.", m), "46421", e.a("46421", "Wholesale of pharmaceutical and medical goods", m), "46422", e.a("46422", "Wholesale of perfumeries, cosmetics, soap and toiletries", m), "46431", e.a("46431", "Wholesale of bicycles and their parts and accessories", m), "46432", e.a("46432", "Wholesale of photographic and optical goods", m), "46433", e.a("46433", "Wholesale of leather goods and travel accessories", m), "46434", e.a("46434", "Wholesale of musical instruments, games and toys, sports goods", m), "46441", e.a("46441", "Wholesale of handicrafts and artificial flowers", m), "46442", e.a("46442", "Wholesale of cut flowers and plants", m), "46443", e.a("46443", "Wholesale of watches and clocks", m), "46444", e.a("46444", "Wholesale of jewellery", m), "46491", e.a("46491", "Wholesale of household furniture", m), "46492", e.a("46492", "Wholesale of household appliances", m), "46493", e.a("46493", "Wholesale of lighting equipment", m), "46494", e.a("46494", "Wholesale of household utensils and cutlery, crockery, glassware, chinaware and pottery", m), "46495", e.a("46495", "Wholesale of woodenware, wickerwork and corkware", m), "46496", e.a("46496", "Wholesale of electrical and electronic goods", m), "46497", e.a("46497", "Wholesale of stationery, books, magazines and newspapers", m), "46499", e.a("46499", "Wholesale of other household goods n.e.c.", m), "46510", e.a("46510", "Wholesale of computer hardware, software and peripherals", m), "46521", e.a("46521", "Wholesale of telephone and telecommunications equipment, cell phones, pagers", m), "46522", e.a("46522", "Wholesale of electronic components and wiring accessories", m), "46531", e.a("46531", "Wholesale of agricultural machinery, equipment and supplies", m), "46532", e.a("46532", "Wholesale of lawn mowers however operated", m), "46591", e.a("46591", "Wholesale of office machinery and business equipment, except computers and computer peripheral equipment", m), "46592", e.a("46592", "Wholesale of office furniture", m), "46593", e.a("46593", "Wholesale of computer-controlled machines tools", m), "46594", e.a("46594", "Wholesale of industrial machinery, equipment and supplies", m), "46595", e.a("46595", "Wholesale of construction and civil engineering machinery and equipment", m), "46596", e.a("46596", "Wholesale of lift escalators, air-conditioning, security and fire fighting equipment", m), "46599", e.a("46599", "Wholesale of other machinery for use in industry, trade and navigation and other services n.e.c.", m), "46611", e.a("46611", "Wholesale of petrol, diesel, lubricants", m), "46612", e.a("46612", "Wholesale of liquefied petroleum gas", m), "46619", e.a("46619", "Wholesale of other solid, liquid and gaseous fuels and related products n.e.c.", m), "46621", e.a("46621", "Wholesale of ferrous and non-ferrous metal ores and metals", m), "46622", e.a("46622", "Wholesale of ferrous and non-ferrous semi-finished metal ores and products n.e.c.", m), "46631", e.a("46631", "Wholesale of logs, sawn timber, plywood, veneer and related products", m), "46632", e.a("46632", "Wholesale of paints and varnish", m), "46633", e.a("46633", "Wholesale of construction materials", m), "46634", e.a("46634", "Wholesale of fittings and fixtures", m), "46635", e.a("46635", "Wholesale of hot water heaters", m), "46636", e.a("46636", "Wholesale of sanitary installation and equipment", m), "46637", e.a("46637", "Wholesale of tools", m), "46639", e.a("46639", "Wholesale of other construction materials, hardware, plumbing and heating equipment and supplies n.e.c.", m), "46691", e.a("46691", "Wholesale of industrial chemicals", m), "46692", e.a("46692", "Wholesale of fertilizers and agrochemical products", m), "46693", e.a("46693", "Wholesale of plastic materials in primary forms", m), "46694", e.a("46694", "Wholesale of rubber scrap", m), "46695", e.a("46695", "Wholesale of textile fibres", m), "46696", e.a("46696", "Wholesale of paper in bulk, packaging materials", m), "46697", e.a("46697", "Wholesale of precious stones", m), "46698", e.a("46698", "Wholesale of metal and non-metal waste and scrap and materials for recycling", m), "46699", e.a("46699", "Dismantling of automobiles, computer, televisions and other equipment to obtain and re-sell usable parts", m), "46901", e.a("46901", "Wholesale of aquarium fishes, pet birds and animals", m), "46902", e.a("46902", "Wholesale of animal/pet food", m), "46909", e.a("46909", "Wholesale of a variety of goods without any particular specialization n.e.c.", m), "47111", e.a("47111", "Provision stores", m), "47112", e.a("47112", "Supermarket", m), "47113", e.a("47113", "Mini market", m), "47114", e.a("47114", "Convenience stores", m), "47191", e.a("47191", "Department stores", m), "47192", e.a("47192", "Department stores and supermarket", m), "47193", e.a("47193", "Hypermarket", m), "47194", e.a("47194", "News agent and miscellaneous goods store", m), "47199", e.a("47199", "Other retail sale in non-specialized stores n.e.c.", m), "47211", e.a("47211", "Retail sale of rice, flour, other grains and sugars", m), "47212", e.a("47212", "Retail sale of fresh or preserved vegetables and fruits", m), "47213", e.a("47213", "Retail sale of dairy products and eggs", m), "47214", e.a("47214", "Retail sale of meat and meat products (including poultry)", m), "47215", e.a("47215", "Retail sale of fish, other seafood and products thereof", m), "47216", e.a("47216", "Retail sale of bakery products and sugar confectionery", m), "47217", e.a("47217", "Retail sale of mee, kuey teow, mee hoon, wantan skins and other food products made from flour or soya", m), "47219", e.a("47219", "Retail sale of other food products n.e.c.", m), "47221", e.a("47221", "Retail sale of beer, wine and spirits", m), "47222", e.a("47222", "Retail sale of tea, coffee, soft drinks, mineral water and other beverages", m), "47230", e.a("47230", "Retail sale of tobacco products in specialized store", m), "47300", e.a("47300", "Retail sale of automotive fuel in specialized stores", m), "47411", e.a("47411", "Retail sale of computers, computer equipment and supplies", m), "47412", e.a("47412", "Retail sale of video game consoles and non-customized software", m), "47413", e.a("47413", "Retail sale of telecommunication equipment", m), "47420", e.a("47420", "Retail sale of audio and video equipment in specialized store", m), "47510", e.a("47510", "Retail sale of textiles in specialized stores", m), "47520", e.a("47520", "Retail sale of construction materials, hardware, paints and glass", m), "47531", e.a("47531", "Retail sale of carpets and rugs", m), "47532", e.a("47532", "Retail sale of curtains and net curtains", m), "47533", e.a("47533", "Retail sale of wallpaper and floor coverings", m), "47591", e.a("47591", "Retail sale of household furniture", m), "47592", e.a("47592", "Retail sale of articles for lighting", m), "47593", e.a("47593", "Retail sale of household utensils and cutlery, crockery, glassware, chinaware and pottery", m), "47594", e.a("47594", "Retail sale of wood, cork goods and wickerwork goods", m), "47595", e.a("47595", "Retail sale of household appliances", m), "47596", e.a("47596", "Retail sale of musical instruments and scores", m), "47597", e.a("47597", "Retail sale of security systems", m), "47598", e.a("47598", "Retail sale of household articles and equipment n.e.c.", m), "47611", e.a("47611", "Retail sale of office supplies and equipment", m), "47612", e.a("47612", "Retail sale of books, newspapers and stationary", m), "47620", e.a("47620", "Retail sale of musical records, audio tapes, compact discs , cassettes, video tapes, VCDs and DVDs, blank tapes and discs", m), "47631", e.a("47631", "Retail sale of sports goods and equipments", m), "47632", e.a("47632", "Retail sale of fishing equipment", m), "47633", e.a("47633", "Retail sale of camping goods", m), "47634", e.a("47634", "Retail sale of boats and equipments", m), "47635", e.a("47635", "Retail sale of bicycles and related parts and accessories", m), "47640", e.a("47640", "Retail sale of games and toys, made of all materials", m), "47711", e.a("47711", "Retail sale of articles of clothing, articles of fur and clothing accessories", m), "47712", e.a("47712", "Retail sale of footwear", m), "47713", e.a("47713", "Retail sale of leather goods, accessories of leather and leather substitutes", m), "47721", e.a("47721", "Stores specialized in retail sale of pharmaceuticals, medical and orthopaedic goods", m), "47722", e.a("47722", "Stores specialized in retail sale of perfumery, cosmetic and toilet articles", m), "47731", e.a("47731", "Retail sale of photographic and precision equipment", m), "47732", e.a("47732", "Retail sale of watches and clocks", m), "47733", e.a("47733", "Retail sale of jewellery", m), "47734", e.a("47734", "Retail sale of flowers, plants, seeds, fertilizers", m), "47735", e.a("47735", "Retail sale of souvenirs, craftwork and religious articles", m), "47736", e.a("47736", "Retail sale of household fuel oil, cooking gas, coal and fuel wood", m), "47737", e.a("47737", "Retail sale of spectacles and other optical goods", m), "47738", e.a("47738", "Retail sale of aquarium fishes, pet animals and pet food", m), "47739", e.a("47739", "Other retail sale of new goods in specialized stores n.e.c.", m), "47741", e.a("47741", "Retail sale of second-hand books", m), "47742", e.a("47742", "Retail sale of second-hand electrical and electronic goods", m), "47743", e.a("47743", "Retail sale of antiques", m), "47744", e.a("47744", "Activities of auctioning houses (retail)", m), "47749", e.a("47749", "Retail sale of second-hand goods n.e.c.", m), "47810", e.a("47810", "Retail sale of food, beverages and tobacco products via stalls or markets", m), "47820", e.a("47820", "Retail sale of textiles, clothing and footwear via stalls or markets", m), "47891", e.a("47891", "Retail sale of carpets and rugs via stalls or markets", m), "47892", e.a("47892", "Retail sale of books via stalls or markets", m), "47893", e.a("47893", "Retail sale of games and toys via stalls or markets", m), "47894", e.a("47894", "Retail sale of household appliances and consumer electronics via stall or markets", m), "47895", e.a("47895", "Retail sale of music and video recordings via stall or markets", m), "47911", e.a("47911", "Retail sale of any kind of product by mail order", m), "47912", e.a("47912", "Retail sale of any kind of product over the Internet", m), "47913", e.a("47913", "Direct sale via television, radio and telephone", m), "47914", e.a("47914", "Internet retail auctions", m), "47991", e.a("47991", "Retail sale of any kind of product by direct sales or door-to-door sales persons", m), "47992", e.a("47992", "Retail sale of any kind of product through vending machines", m), "47999", e.a("47999", "Other retail sale not in stores, stalls or markets n.e.c.", m), "49110", e.a("49110", "Passenger transport by inter-urban railways", b), "49120", e.a("49120", "Freight transport by inter-urban, suburban and urban railways", b), "49211", e.a("49211", "City bus services", b), "49212", e.a("49212", "Urban and suburban railway passenger transport service", b), "49221", e.a("49221", "Express bus services", b), "49222", e.a("49222", "Employees bus services", b), "49223", e.a("49223", "School bus services", b), "49224", e.a("49224", "Taxi operation and limousine services", b), "49225", e.a("49225", "Rental of cars with driver", b), "49229", e.a("49229", "Other passenger land transport n.e.c.", b), "49230", e.a("49230", "Freight transport by road", b), "49300", e.a("49300", "Transport via pipeline", b), "50111", e.a("50111", "Operation of excursion, cruise or sightseeing boats", b), "50112", e.a("50112", "Operation of ferries, water taxis", b), "50113", e.a("50113", "Rental of pleasure boats with crew for sea and coastal water transport", b), "50121", e.a("50121", "Transport of freight overseas and coastal waters, whether scheduled or not", b), "50122", e.a("50122", "Transport by towing or pushing of barges, oil rigs", b), "50211", e.a("50211", "Transport of passenger via rivers, canals, lakes and other inland waterways", b), "50212", e.a("50212", "Rental of pleasure boats with crew for inland water transport", b), "50220", e.a("50220", "Transport of freight via rivers, canals, lakes and other inland waterways", b), "51101", e.a("51101", "Transport of passengers by air over regular routes and on regular schedules", b), "51102", e.a("51102", "Non-scheduled transport of passenger by air", b), "51103", e.a("51103", "Renting of air-transport equipment with operator for the purpose of passenger transportation", b), "51201", e.a("51201", "Transport freight by air over regular routes and on regular schedules", b), "51202", e.a("51202", "Non-scheduled transport of freight by air", b), "51203", e.a("51203", "Renting of air-transport equipment with operator for the purpose of freight transportation", b), "52100", e.a("52100", "Warehousing and storage services", b), "52211", e.a("52211", y, b), "52212", e.a("52212", "Towing and road side assistance", b), "52213", e.a("52213", "Operation of parking facilities for motor vehicles (parking lots)", b), "52214", e.a("52214", "Highway, bridge and tunnel operation services", b), "52219", e.a("52219", "Other service activities incidental to land transportation n.e.c.", b), "52221", e.a("52221", "Port, harbours and piers operation services", b), "52222", e.a("52222", "Vessel salvage and refloating services", b), "52229", e.a("52229", "Other service activities incidental to water transportation n.e.c.", b), "52231", e.a("52231", y, b), "52232", e.a("52232", "Airport and air-traffic-control activities", b), "52233", e.a("52233", "Ground service activities on airfields", b), "52234", e.a("52234", "Fire fighting and fire-prevention services at airports", b), "52239", e.a("52239", "Other service activities incidental to air transportation n.e.c.", b), "52241", e.a("52241", "Stevedoring services", b), "52249", e.a("52249", "Other cargo handling activities n.e.c.", b), "52291", e.a("52291", "Forwarding of freight", b), "52292", e.a("52292", "Brokerage for ship and aircraft space", b), "52299", e.a("52299", "Other transportation support activities n.e.c.", b), "53100", e.a("53100", "National postal services", b), "53200", e.a("53200", "Courier activities other than national post activities", b), "55101", e.a("55101", "Hotels and resort hotels", w), "55102", e.a("55102", "Motels", w), "55103", e.a("55103", "Apartment hotels", w), "55104", e.a("55104", "Chalets", w), "55105", e.a("55105", "Rest house/guest house", w), "55106", e.a("55106", "Bed and breakfast units", w), "55107", e.a("55107", "Hostels", w), "55108", e.a("55108", "Home stay", w), "55109", e.a("55109", "Other short term accommodation activities n.e.c.", w), "55200", e.a("55200", "Camping grounds, recreational vehicle parks and trailer parks", w), "55900", e.a("55900", "Other accommodation", w), "56101", e.a("56101", "Restaurants and restaurant cum night clubs", w), "56102", e.a("56102", "Cafeterias/canteens", w), "56103", e.a("56103", "Fast-food restaurants", w), "56104", e.a("56104", "Ice cream truck vendors and parlours", w), "56105", e.a("56105", "Mobile food carts", w), "56106", e.a("56106", "Food stalls/hawkers", w), "56107", e.a("56107", "Food or beverage, food and beverage preparation in market stalls/hawkers", w), "56210", e.a("56210", "Event/food caterers", w), "56290", e.a("56290", "Other food service activities", w), "56301", e.a("56301", "Pubs, bars, discotheques, coffee houses, cocktail lounges and karaoke", w), "56302", e.a("56302", "Coffee shops", w), "56303", e.a("56303", "Drink stalls/hawkers", w), "56304", e.a("56304", "Mobile beverage", w), "56309", e.a("56309", "Others drinking places n.e.c.", w), "58110", e.a("58110", "Publishing of books, brochures and other publications", E), "58120", e.a("58120", "Publishing of mailing lists, telephone book, other directories", E), "58130", e.a("58130", "Publishing of newspapers, journals, magazines and periodicals in print or electronic form", E), "58190", e.a("58190", "Publishing of catalogues, photos, engraving and postcards, greeting cards, forms, posters, reproduction of works of art, advertising material and other printed matter n.e.c.", E), "58201", e.a("58201", "Business and other applications", E), "58202", e.a("58202", "Computer games for all platforms", E), "58203", e.a("58203", "Operating systems", E), "59110", e.a("59110", "Motion picture, video and television programme production activities", E), "59120", e.a("59120", "Motion picture, video and television programme post-production activities", E), "59130", e.a("59130", "Motion picture, video and television programme distribution activities", E), "59140", e.a("59140", "Motion picture projection activities", E), "59200", e.a("59200", "Sound recording and music publishing activities", E), "60100", e.a("60100", "Radio broadcasting", E), "60200", e.a("60200", "Television programming and broadcasting activities", E), "61101", e.a("61101", "Wired telecommunications services", E), "61102", e.a("61102", "Internet access providers by the operator of the wired infrastructure", E), "61201", e.a("61201", "Wireless telecommunications services", E), "61202", e.a("61202", "Internet access providers by the operator of the wireless infrastructure", E), "61300", e.a("61300", "Satellite telecommunications services", E), "61901", e.a("61901", "Provision of Internet access over networks between the client and the ISP not owned or controlled by the ISP", E), "61902", e.a("61902", "Provision of telecommunications services over existing telecom connection", E), "61903", e.a("61903", "Telecommunications resellers", E), "61904", e.a("61904", "Provision of telecommunications services over existing telecom connections VOIP (Voice Over Internet Protocol) provision", E), "61905", e.a("61905", "Provision of specialized telecommunications applications", E), "61909", e.a("61909", "Other telecommunications activities n.e.c.", E), "62010", e.a("62010", "Computer programming activities", E), "62021", e.a("62021", "Computer consultancy", E), "62022", e.a("62022", "Computer facilities management activities", E), "62091", e.a("62091", "Information Communication Technology (ICT) system security", E), "62099", e.a("62099", "Other information technology service activities n.e.c.", E), "63111", e.a("63111", "Activities of providing infrastructure for hosting, data processing services and related activities", E), "63112", e.a("63112", "Data processing activities", E), "63120", e.a("63120", "Web portals", E), "63910", e.a("63910", "News syndicate and news agency activities", E), "63990", e.a("63990", "Other information service activities n.e.c.", E), "64110", e.a("64110", "Central banking", C), "64191", e.a("64191", "Commercial Banks", C), "64192", e.a("64192", "Islamic Banks", C), "64193", e.a("64193", "Offshore Banks", C), "64194", e.a("64194", "Investment Banks", C), "64195", e.a("64195", "Development financial institutions (with deposit taking functions)", C), "64199", e.a("64199", "Other monetary intermediation (with deposit taking functions) n.e.c.", C), "64200", e.a("64200", "Activities of holding companies", C), "64301", e.a("64301", "Venture capital companies", C), "64302", e.a("64302", "Unit trust fund excludes REITs", C), "64303", e.a("64303", "Property unit trust (REITs)", C), "64304", e.a("64304", "Other administration of trusts accounts", C), "64309", e.a("64309", "Trusts, funds and similar financial entities n.e.c.", C), "64910", e.a("64910", "Financial leasing activities", C), "64921", e.a("64921", "Development financial institutions (without deposit taking functions)", C), "64922", e.a("64922", "Credit card services", C), "64923", e.a("64923", "Licensed money lending activities", C), "64924", e.a("64924", "Pawnshops and pawnbrokers includes Ar-Rahnu", C), "64925", e.a("64925", "Co-operative with credits functions", C), "64929", e.a("64929", "Other credit granting n.e.c.", C), "64991", e.a("64991", "Factoring companies", C), "64992", e.a("64992", "Representative office of foreign banks", C), "64993", e.a("64993", "Nominee companies", C), "64999", e.a("64999", "Other financial service activities, except insurance/takaful and pension funding n.e.c.", C), "65111", e.a("65111", "Life insurance", C), "65112", e.a("65112", "Family takaful", C), "65121", e.a("65121", "General insurance", C), "65122", e.a("65122", "General takaful", C), "65123", e.a("65123", "Composite insurance", C), "65124", e.a("65124", "Offshore insurance", C), "65125", e.a("65125", "Offshore takaful", C), "65201", e.a("65201", "Life reinsurance", C), "65202", e.a("65202", "Family retakaful", C), "65203", e.a("65203", "General reinsurance", C), "65204", e.a("65204", "General retakaful", C), "65205", e.a("65205", "Composite retakaful", C), "65206", e.a("65206", "Offshore reinsurance", C), "65207", e.a("65207", "Offshore retakaful", C), "65301", e.a("65301", "Pension funding", C), "65302", e.a("65302", "Provident funding", C), "66111", e.a("66111", "Stock exchanges", C), "66112", e.a("66112", "Exchanges for commodity contracts", C), "66113", e.a("66113", "Securities exchange", C), "66114", e.a("66114", "Exchanges for commodity futures contracts", C), "66119", e.a("66119", "Administration of financial markets n.e.c.", C), "66121", e.a("66121", "Stock, share and bond brokers", C), "66122", e.a("66122", "Commodity brokers and dealers", C), "66123", e.a("66123", "Gold bullion dealers", C), "66124", e.a("66124", "Foreign exchange broker and dealers (Bureaux de change)", C), "66125", e.a("66125", "Money-changing services", C), "66129", e.a("66129", "Other financial and commodity futures brokers and dealers", C), "66191", e.a("66191", "Investment advisory services", C), "66192", e.a("66192", "Financial consultancy services", C), "66199", e.a("66199", "Activities auxiliary to finance n.e.c.", C), "66211", e.a("66211", "Insurance adjusting service", C), "66212", e.a("66212", "Takaful adjusting service", C), "66221", e.a("66221", "Insurance agents", C), "66222", e.a("66222", "Takaful agents", C), "66223", e.a("66223", "Insurance brokers", C), "66224", e.a("66224", "Takaful brokers", C), "66290", e.a("66290", "Other activities auxiliary to insurance, takaful and pension funding", C), "66301", e.a("66301", "Management of pension funds", C), "66302", e.a("66302", "Assets/portfolio management", C), "66303", e.a("66303", "Unit trust management companies", C), "68101", e.a("68101", "Buying, selling, renting and operating of self-owned or leased real estate – residential buildings", T), "68102", e.a("68102", "Buying, selling, renting and operating of self-owned or leased real estate – non-residential buildings", T), "68103", e.a("68103", "Buying, selling, renting and operating of self-owned or leased real estate – land", T), "68104", e.a("68104", "Development of building projects for own operation, i.e. for renting of space in these buildings", T), "68109", e.a("68109", "Real estate activities with own or leased property n.e.c.", T), "68201", e.a("68201", "Activities of real estate agents and brokers for buying, selling and renting of real estate", T), "68202", e.a("68202", "Management of real estate on a fee or contract basis", T), "68203", e.a("68203", "Appraisal services for real estate", T), "68209", e.a("68209", "Real estate activities on a fee or contract basis n.e.c.", T), "69100", e.a("69100", "Legal activities", R), "69200", e.a("69200", "Accounting, bookkeeping and auditing activities; tax consultancy", R), "70100", e.a("70100", "Activities of head offices", R), "70201", e.a("70201", "Business management consultancy services", R), "70202", e.a("70202", "Human resource consultancy services", R), "70203", e.a("70203", "Consultancy services in public relation and communications", R), "70209", e.a("70209", "Other management consultancy activities n.e.c", R), "71101", e.a("71101", "Architectural services", R), "71102", e.a("71102", "Engineering services", R), "71103", e.a("71103", "Land surveying services", R), "71109", e.a("71109", "Other architectural and engineering activities and related technical consultancy n.e.c.", R), "71200", e.a("71200", "Technical testing and analysis", R), "72101", e.a("72101", "Research and development on natural sciences", R), "72102", e.a("72102", "Research and development on engineering and technology", R), "72103", e.a("72103", "Research and development on medical sciences", R), "72104", e.a("72104", "Research and development on biotechnology", R), "72105", e.a("72105", "Research and development on agricultural sciences", R), "72106", e.a("72106", "Research and development on Information Communication Technology (ICT)", R), "72109", e.a("72109", "Research and development on other natural science and engineering n.e.c.", R), "72201", e.a("72201", "Research and development on social sciences", R), "72202", e.a("72202", "Research and development on humanities", R), "72209", e.a("72209", "Research and development of other social sciences and humanities n.e.c.", R), "73100", e.a("73100", "Advertising", R), "73200", e.a("73200", "Market research and public opinion polling", R), "74101", e.a("74101", "Activities of interior decorators", R), "74102", e.a("74102", "Services of graphic designers", R), "74103", e.a("74103", "Fashion design services", R), "74109", e.a("74109", "Specialized design activities n.e.c.", R), "74200", e.a("74200", "Photographic activities", R), "74901", e.a("74901", "Translation and interpretation activities", R), "74902", e.a("74902", "Business brokerage activities", R), "74903", e.a("74903", "Security consulting", R), "74904", e.a("74904", "Activities of quantity surveyors", R), "74905", e.a("74905", "Activities of consultants other than architecture, engineering and management consultants", R), "74909", e.a("74909", "Any other professional, scientific and technical activities n.e.c.", R), "75000", e.a("75000", "VETERINARY ACTIVITIES", R), "77101", e.a("77101", "Renting and operational leasing of passenger cars (without driver)", S), "77102", e.a("77102", "Renting and operational leasing of trucks, utility trailers and recreational vehicles", S), "77211", e.a("77211", "Renting and leasing of pleasure boats, canoes, sailboats", S), "77212", e.a("77212", "Renting and leasing of bicycles", S), "77213", e.a("77213", "Renting and leasing of beach chairs and umbrellas", S), "77219", e.a("77219", "Renting and leasing of other sports equipment n.e.c.", S), "77220", e.a("77220", "Renting of video tapes, records, CDs, DVDs", S), "77291", e.a("77291", "Renting and leasing of textiles, wearing apparel and footwear", S), "77292", e.a("77292", "Renting and leasing of furniture, pottery and glass, kitchen and tableware, electrical appliances and house wares", S), "77293", e.a("77293", "Renting and leasing of jewellery, musical instruments, scenery and costumes", S), "77294", e.a("77294", "Renting and leasing of books, journals and magazines", S), "77295", e.a("77295", "Renting and leasing of machinery and equipment used by amateurs or as a hobby", S), "77296", e.a("77296", "Renting of flowers and plants", S), "77297", e.a("77297", "Renting and leasing of electronic equipment for household use", S), "77299", e.a("77299", "Renting and leasing of other personal and household goods n.e.c.", S), "77301", e.a("77301", "Renting and operational leasing, without operator, of other machinery and equipment that are generally used as capital goods by industries", S), "77302", e.a("77302", "Renting and operational leasing of land-transport equipment (other than motor vehicles) without drivers", S), "77303", e.a("77303", "Renting and operational leasing of water-transport equipment without operator", S), "77304", e.a("77304", "Renting and operational leasing of air transport equipment without operator", S), "77305", e.a("77305", "Renting and operational leasing of agricultural and forestry machinery and equipment without operator", S), "77306", e.a("77306", "Renting and operational leasing of construction and civil-engineering machinery and equipment without operator", S), "77307", e.a("77307", "Rental and operational leasing of office machinery and equipment without operator", S), "77309", e.a("77309", "Renting and leasing of other machinery, equipment and tangible goods n.e.c.", S), "77400", e.a("77400", "Leasing of intellectual property and similar products, except copyrighted works", S), "78100", e.a("78100", "Activities of employment placement agencies", S), "78200", e.a("78200", "Temporary employment agency activities", S), "78300", e.a("78300", "Provision of human resources for client businesses", S), "79110", e.a("79110", "Travel agency activities", S), "79120", e.a("79120", "Tour operator activities", S), "79900", e.a("79900", "Other reservation service and related activities", S), "80100", e.a("80100", "Private security activities", S), "80200", e.a("80200", "Security systems service activities", S), "80300", e.a("80300", "Investigation and detective activities", S), "81100", e.a("81100", "Combined facilities support activities", S), "81210", e.a("81210", "General cleaning of buildings", S), "81291", e.a("81291", "Cleaning of buildings of all types", S), "81292", e.a("81292", "Swimming pool cleaning and maintenance services", S), "81293", e.a("81293", "Cleaning of industrial machinery", S), "81294", e.a("81294", "Cleaning of trains, buses, planes", S), "81295", e.a("81295", "Cleaning of pest control services not in connection with agriculture", S), "81296", e.a("81296", "Disinfecting and exterminating activities", S), "81297", e.a("81297", "Cleaning of sea tankers", S), "81299", e.a("81299", "Other building and industrial cleaning activities, n.e.c.", S), "81300", e.a("81300", "Landscape care and maintenance service activities", S), "82110", e.a("82110", "Combined office administrative service activities", S), "82191", e.a("82191", "Document preparation, editing and/or proofreading", S), "82192", e.a("82192", "Typing, word processing or desktop publishing", S), "82193", e.a("82193", "Secretarial support services", S), "82194", e.a("82194", "Transcription of documents and other secretarial services", S), "82195", e.a("82195", "Provision of mailbox rental and other postal and mailing services", S), "82196", e.a("82196", "Photocopying, duplicating, blueprinting", S), "82199", e.a("82199", "Photocopying, document preparation and other specialized office support activities n.e.c.", S), "82200", e.a("82200", "Activities of call centres", S), "82301", e.a("82301", "Organization, promotions and/or management of event", S), "82302", e.a("82302", "Meeting, incentive, convention, exhibition (MICE)", S), "82910", e.a("82910", "Activities of collection agencies and credit bureaus", S), "82920", e.a("82920", "Packaging activities on a fee or contract basis, whether or not these involve an automated process", S), "82990", e.a("82990", "Other business support service activities n.e.c.", S), "84111", e.a("84111", "General (overall) public administration activities", k), "84112", e.a("84112", "Ancillary service activities for the government as a whole", k), "84121", e.a("84121", "Administrative educational services", k), "84122", e.a("84122", "Administrative health care services", k), "84123", e.a("84123", "Administrative housing and local government services", k), "84124", e.a("84124", "Administrative recreational, cultural, arts and sports services", k), "84125", e.a("84125", "Administrative religious affairs services", k), "84126", e.a("84126", "Administrative welfare services", k), "84129", e.a("84129", "Other community and social affairs services", k), "84131", e.a("84131", "Domestic and international trade affairs", k), "84132", e.a("84132", "Agriculture and rural development affairs", k), "84133", e.a("84133", "Primary industries affairs", k), "84134", e.a("84134", "Public works affairs", k), "84135", e.a("84135", "Transport affairs", k), "84136", e.a("84136", "Energy, telecommunication and postal affairs", k), "84137", e.a("84137", "Tourism affairs", k), "84138", e.a("84138", "Human resource affairs", k), "84139", e.a("84139", "Other regulation of and contribution to more efficient operation of businesses n.e.c.", k), "84210", e.a("84210", "Foreign affairs", k), "84220", e.a("84220", "Military and civil defence services", k), "84231", e.a("84231", "Police service", k), "84232", e.a("84232", "Prison service", k), "84233", e.a("84233", "Immigration service", k), "84234", e.a("84234", "National registration service", k), "84235", e.a("84235", "Judiciary and legal service", k), "84236", e.a("84236", "Firefighting and fire prevention", k), "84239", e.a("84239", "Other public order and safety affairs related services", k), "84300", e.a("84300", "Compulsory social security activities e.g. SOCSO", k), "85101", e.a("85101", "Pre-primary education (Public)", D), "85102", e.a("85102", "Pre-primary education (Private)", D), "85103", e.a("85103", "Primary education (Public)", D), "85104", e.a("85104", "Primary education (Private)", D), "85211", e.a("85211", "General school secondary education (Public)", D), "85212", e.a("85212", "General school secondary education (Private)", D), "85221", e.a("85221", "Technical and vocational education below the level of higher education (Public)", D), "85222", e.a("85222", "Technical and vocational education below the level of higher education (Private)", D), "85301", e.a("85301", "College and university education (Public)", D), "85302", e.a("85302", "College and university education (Private)", D), "85411", e.a("85411", "Sports instruction", D), "85412", e.a("85412", "Martial arts instruction", D), "85419", e.a("85419", "Any other sports and recreation education n.e.c", D), "85421", e.a("85421", "Music and dancing school", D), "85429", e.a("85429", "Any other cultural education n.e.c.", D), "85491", e.a("85491", "Tuition centre", D), "85492", e.a("85492", "Driving school", D), "85493", e.a("85493", "Religious instruction", D), "85494", e.a("85494", "Computer training", D), "85499", e.a("85499", "Others education n.e.c", D), "85500", e.a("85500", "Educational support services for provision of non-instructional services", D), "86101", e.a("86101", "Hospital activities", Y), "86102", e.a("86102", "Maternity home services (outside hospital)", Y), "86201", e.a("86201", "General medical services", Y), "86202", e.a("86202", "Specialized medical services", Y), "86203", e.a("86203", "Dental services", Y), "86901", e.a("86901", "Dialysis Centres", Y), "86902", e.a("86902", "Medical laboratories", Y), "86903", e.a("86903", "Physiotherapy and occupational therapy service", Y), "86904", e.a("86904", "Acupuncture services", Y), "86905", e.a("86905", "Herbalist and homeopathy services", Y), "86906", e.a("86906", "Ambulance services", Y), "86909", e.a("86909", "Other human health services n.e.c.", Y), "87101", e.a("87101", "Homes for the elderly with nursing care", Y), "87102", e.a("87102", "Nursing homes", Y), "87103", e.a("87103", "Palliative or hospices", Y), "87201", e.a("87201", "Drug rehabilitation centres", Y), "87209", e.a("87209", "Other residential care activities for mental retardation n.e.c.", Y), "87300", e.a("87300", "Residential care activities for the elderly and disabled", Y), "87901", e.a("87901", "Orphanages", Y), "87902", e.a("87902", "Welfare homes services", Y), "87909", e.a("87909", "Other residential care activities n.e.c.", Y), "88101", e.a("88101", "Day-care activities for the elderly or for handicapped adults", Y), "88109", e.a("88109", "Others social work activities without accommodation for the elderly and disabled", Y), "88901", e.a("88901", "Counselling service", Y), "88902", e.a("88902", "Child day-care activities", Y), "88909", e.a("88909", "Other social work activities without accommodation n.e.c.", Y), "90001", e.a("90001", "Theatrical producer, singer group band and orchestra entertainment services", U), "90002", e.a("90002", "Operation of concert and theatre halls and other arts facilities", U), "90003", e.a("90003", "Activities of sculptors, painters, cartoonists, engravers, etchers", U), "90004", e.a("90004", "Activities of individual writers, for all subjects", U), "90005", e.a("90005", "Activities of independent journalists", U), "90006", e.a("90006", "Restoring of works of art such as painting", U), "90007", e.a("90007", "Activities of producers or entrepreneurs of arts live events, with or without facilities", U), "90009", e.a("90009", "Creative, arts and entertainment activities n.e.c.", U), "91011", e.a("91011", "Documentation and information activities of libraries of all kinds", U), "91012", e.a("91012", "Stock photo libraries and services", U), "91021", e.a("91021", "Operation of museums of all kinds", U), "91022", e.a("91022", "Operation of historical sites and buildings", U), "91031", e.a("91031", "Operation of botanical and zoological gardens", U), "91032", e.a("91032", "Operation of nature reserves, including wildlife preservation", U), "92000", e.a("92000", "GAMBLING AND BETTING ACTIVITIES", U), "93111", e.a("93111", "Football, hockey, cricket, baseball, badminton, futsal, paintball", U), "93112", e.a("93112", "Racetracks for auto", U), "93113", e.a("93113", "Equestrian clubs", U), "93114", e.a("93114", "Swimming pools and stadiums, ice-skating arenas", U), "93115", e.a("93115", "Track and field stadium", U), "93116", e.a("93116", "Golf courses", U), "93117", e.a("93117", "Bowling centre", U), "93118", e.a("93118", "Fitness centres", U), "93119", e.a("93119", "Organization and operation of outdoor or indoor sports events for professionals or amateurs by organizations with own facilities", U), "93120", e.a("93120", "The operation of sports clubs such as football club, bowling club, swimming club", U), "93191", e.a("93191", "Activities of producers or promoters of sports events, with or without facilities", U), "93192", e.a("93192", "Activities of sports leagues and regulating bodies", U), "93193", e.a("93193", "Activities of related to promotion of sporting events", U), "93199", e.a("93199", "Other sports activities n.e.c.", U), "93210", e.a("93210", "Activities of amusement parks and theme parks", U), "93291", e.a("93291", "Activities of recreation parks and beaches", U), "93292", e.a("93292", "Operation of recreational transport facilities", U), "93293", e.a("93293", "Renting of leisure and pleasure equipment as an integral part of recreational facilities", U), "93294", e.a("93294", "Operation of fairs and shows of a recreational nature", U), "93295", e.a("93295", "Operation of discotheques and dance floors", U), "93296", e.a("93296", "Activities of producers or entrepreneurs of live events other than arts or sports events, with or without facilities", U), "93297", e.a("93297", "Cyber Café/Internet Centre", U), "93299", e.a("93299", "Any other amusement and recreation activities n.e.c.", U), "94110", e.a("94110", "Activities of business and employers membership organizations", B), "94120", e.a("94120", "Activities of professional membership organizations", B), "94200", e.a("94200", "Activities of trade unions", B), "94910", e.a("94910", "Activities of religious organizations", B), "94920", e.a("94920", "Activities of political organizations", B), "94990", e.a("94990", "Activities of other membership organizations n.e.c.", B), "95111", e.a("95111", "Repair of electronic equipment", B), "95112", e.a("95112", "Repair and maintenance of computer terminals", B), "95113", e.a("95113", "Repair and maintenance of hand-held computers (PDA's)", B), "95121", e.a("95121", "Repair and maintenance of cordless telephones", B), "95122", e.a("95122", "Repair and maintenance of cellular phones", B), "95123", e.a("95123", "Repair and maintenance of carrier equipment modems", B), "95124", e.a("95124", "Repair and maintenance of fax machines", B), "95125", e.a("95125", "Repair and maintenance of communications transmission equipment", B), "95126", e.a("95126", "Repair and maintenance of two-way radios", B), "95127", e.a("95127", "Repair and maintenance of commercial TV and video cameras", B), "95211", e.a("95211", "Repair and maintenance of television, radio receivers", B), "95212", e.a("95212", "Repair and maintenance of VCR/DVD/VCD", B), "95213", e.a("95213", "Repair and maintenance of CD players", B), "95214", e.a("95214", "Repair and maintenance of household-type video cameras", B), "95221", e.a("95221", "Repair and servicing of household appliances", B), "95222", e.a("95222", "Repair and servicing of home and garden equipment", B), "95230", e.a("95230", "Repair of footwear and leather goods", B), "95240", e.a("95240", "Repair of furniture and home furnishings", B), "95291", e.a("95291", "Repair of bicycles", B), "95292", e.a("95292", "Repair and alteration of clothing", B), "95293", e.a("95293", "Repair and alteration of jewellery", B), "95294", e.a("95294", "Repair of watches, clocks and their parts", B), "95295", e.a("95295", "Repair of sporting goods", B), "95296", e.a("95296", "Repair of musical instruments", B), "95299", e.a("95299", "Repair of other personal and household goods n.e.c.", B), "96011", e.a("96011", "Laundering and dry-cleaning, pressing", B), "96012", e.a("96012", "Carpet and rug shampooing, and drapery and curtain cleaning, whether on clients' premises or not", B), "96013", e.a("96013", "Provision of linens, work uniforms and related items by laundries", B), "96014", e.a("96014", "Diaper supply services", B), "96020", e.a("96020", "Hairdressing and other beauty treatment", B), "96031", e.a("96031", "Preparing the dead for burial or cremation and embalming and morticians' services", B), "96032", e.a("96032", "Providing burial or cremation services", B), "96033", e.a("96033", "Rental of equipped space in funeral parlours", B), "96034", e.a("96034", "Rental or sale of graves", B), "96035", e.a("96035", "Maintenance of graves and mausoleums", B), "96091", e.a("96091", "Activities of sauna, steam baths, massage salons", B), "96092", e.a("96092", "Astrological and spiritualists' activities", B), "96093", e.a("96093", "Social activities such as escort services, dating services, services of marriage bureaux", B), "96094", e.a("96094", "Pet care services", B), "96095", e.a("96095", "Genealogical organizations", B), "96096", e.a("96096", "Shoe shiners, porters, valet car parkers", B), "96097", e.a("96097", "Concession operation of coin-operated personal service machines", B), "96099", e.a("96099", "Other service activities n.e.c.", B), "97000", e.a("97000", "Activities of households as employers of domestic personnel", "T"), "98100", e.a("98100", "Undifferentiated goods-producing activities of private households for own use", "T"), "98200", e.a("98200", "Undifferentiated service-producing activities of private households for own use", "T"), "99000", e.a("99000", "Activities of extraterritorial organization and bodies", "U")], u.N, e.R("y4"));
28318
+ var i = "A", o = "B", l = "C", f = "D", h = "E", p = "F", m = "G", b = "H", y = "Operation of terminal facilities", w = "I", E = "J", C = "K", T = "L", M = "M", S = "N", k = "O", D = "P", Y = "Q", U = "R", B = "S";
28319
+ return e.v(["00000", e.a("00000", "NOT APPLICABLE", ""), "01111", e.a("01111", "Growing of maize", i), "01112", e.a("01112", "Growing of leguminous crops", i), "01113", e.a("01113", "Growing of oil seeds", i), "01119", e.a("01119", "Growing of other cereals n.e.c.", i), "01120", e.a("01120", "Growing of paddy", i), "01131", e.a("01131", "Growing of leafy or stem vegetables", i), "01132", e.a("01132", "Growing of fruits bearing vegetables", i), "01133", e.a("01133", "Growing of melons", i), "01134", e.a("01134", "Growing of mushrooms and truffles", i), "01135", e.a("01135", "Growing of vegetables seeds, except beet seeds", i), "01136", e.a("01136", "Growing of other vegetables", i), "01137", e.a("01137", "Growing of sugar beet", i), "01138", e.a("01138", "Growing of roots, tubers, bulb or tuberous vegetables", i), "01140", e.a("01140", "Growing of sugar cane", i), "01150", e.a("01150", "Growing of tobacco", i), "01160", e.a("01160", "Growing of fibre crops", i), "01191", e.a("01191", "Growing of flowers", i), "01192", e.a("01192", "Growing of flower seeds", i), "01193", e.a("01193", "Growing of sago (rumbia)", i), "01199", e.a("01199", "Growing of other non-perennial crops n.e.c.", i), "01210", e.a("01210", "Growing of grapes", i), "01221", e.a("01221", "Growing of banana", i), "01222", e.a("01222", "Growing of mango", i), "01223", e.a("01223", "Growing of durian", i), "01224", e.a("01224", "Growing of rambutan", i), "01225", e.a("01225", "Growing of star fruit", i), "01226", e.a("01226", "Growing of papaya", i), "01227", e.a("01227", "Growing of pineapple", i), "01228", e.a("01228", "Growing of pitaya (dragon fruit)", i), "01229", e.a("01229", "Growing of other tropical and subtropical fruits n.e.c.", i), "01231", e.a("01231", "Growing of pomelo", i), "01232", e.a("01232", "Growing of lemon and limes", i), "01233", e.a("01233", "Growing of tangerines and mandarin", i), "01239", e.a("01239", "Growing of other citrus fruits n.e.c.", i), "01241", e.a("01241", "Growing of guava", i), "01249", e.a("01249", "Growing of other pome fruits and stones fruits n.e.c.", i), "01251", e.a("01251", "Growing of berries", i), "01252", e.a("01252", "Growing of fruit seeds", i), "01253", e.a("01253", "Growing of edible nuts", i), "01259", e.a("01259", "Growing of other tree and bush fruits", i), "01261", e.a("01261", "Growing of oil palm (estate)", i), "01262", e.a("01262", "Growing of oil palm (smallholdings)", i), "01263", e.a("01263", "Growing of coconut (estate and smallholdings)", i), "01269", e.a("01269", "Growing of other oleaginous fruits n.e.c.", i), "01271", e.a("01271", "Growing of coffee", i), "01272", e.a("01272", "Growing of tea", i), "01273", e.a("01273", "Growing of cocoa", i), "01279", e.a("01279", "Growing of other beverage crops n.e.c.", i), "01281", e.a("01281", "Growing of pepper (piper nigrum)", i), "01282", e.a("01282", "Growing of chilies and pepper (capsicum spp.)", i), "01283", e.a("01283", "Growing of nutmeg", i), "01284", e.a("01284", "Growing of ginger", i), "01285", e.a("01285", "Growing of plants used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes", i), "01289", e.a("01289", "Growing of other spices and aromatic crops n.e.c.", i), "01291", e.a("01291", "Growing of rubber trees (estate)", i), "01292", e.a("01292", "Growing of rubber trees (smallholdings)", i), "01293", e.a("01293", "Growing of trees for extraction of sap", i), "01294", e.a("01294", "Growing of nipa palm", i), "01295", e.a("01295", "Growing of areca", i), "01296", e.a("01296", "Growing of roselle", i), "01299", e.a("01299", "Growing of other perennial crops n.e.c.", i), "01301", e.a("01301", "Growing of plants for planting", i), "01302", e.a("01302", "Growing of plants for ornamental purposes", i), "01303", e.a("01303", "Growing of live plants for bulbs, tubers and roots; cuttings and slips; mushroom spawn", i), "01304", e.a("01304", "Operation of tree nurseries", i), "01411", e.a("01411", "Raising, breeding and production of cattle or buffaloes", i), "01412", e.a("01412", "Production of raw milk from cows or buffaloes", i), "01413", e.a("01413", "Production of bovine semen", i), "01420", e.a("01420", "Raising and breeding of horses, asses, mules or hinnes", i), "01430", e.a("01430", "Raising and breeding of camels (dromedary) and camelids", i), "01441", e.a("01441", "Raising, breeding and production of sheep and goats", i), "01442", e.a("01442", "Production of raw sheep or goat’s milk", i), "01443", e.a("01443", "Production of raw wool", i), "01450", e.a("01450", "Raising, breeding and production of swine/pigs", i), "01461", e.a("01461", "Raising, breeding and production of chicken, broiler", i), "01462", e.a("01462", "Raising, breeding and production of ducks", i), "01463", e.a("01463", "Raising, breeding and production of geese", i), "01464", e.a("01464", "Raising, breeding and production of quails", i), "01465", e.a("01465", "Raising and breeding of other poultry n.e.c.", i), "01466", e.a("01466", "Production of chicken eggs", i), "01467", e.a("01467", "Production of duck eggs", i), "01468", e.a("01468", "Production of other poultry eggs n.e.c.", i), "01469", e.a("01469", "Operation of poultry hatcheries", i), "01491", e.a("01491", "Raising, breeding and production of semi-domesticated", i), "01492", e.a("01492", "Production of fur skins, reptile or bird’s skin from ranching operation", i), "01493", e.a("01493", "Operation of worm farms, land mollusc farms, snail farms", i), "01494", e.a("01494", "Raising of silk worms and production of silk worm cocoons", i), "01495", e.a("01495", "Bee keeping and production of honey and beeswax", i), "01496", e.a("01496", "Raising and breeding of pet animals", i), "01497", e.a("01497", "Raising and breeding of swiflet", i), "01499", e.a("01499", "Raising of diverse/other animals n.e.c.", i), "01500", e.a("01500", "Mixed Farming", i), "01610", e.a("01610", "Agricultural activities for crops production on a fee or contract basis", i), "01620", e.a("01620", "Agricultural activities for animal production on a fee or contract basis", i), "01631", e.a("01631", "Preparation of crops for primary markets", i), "01632", e.a("01632", "Preparation of tobacco leaves", i), "01633", e.a("01633", "Preparation of cocoa beans", i), "01634", e.a("01634", "Sun-drying of fruits and vegetables", i), "01640", e.a("01640", "Seed processing for propagation", i), "01701", e.a("01701", "Hunting and trapping on a commercial basis", i), "01702", e.a("01702", "Taking of animals (dead or alive)", i), "02101", e.a("02101", "Planting, replanting, transplanting, thinning and conserving of forests and timber tracts", i), "02102", e.a("02102", "Growing of coppice, pulpwood and fire wood", i), "02103", e.a("02103", "Operation of forest tree nurseries", i), "02104", e.a("02104", "Collection and raising of wildings (peat swamp forest tree species)", i), "02105", e.a("02105", "Forest plantation", i), "02201", e.a("02201", "Production of round wood for forest-based manufacturing industries", i), "02202", e.a("02202", "Production of round wood used in an unprocessed form", i), "02203", e.a("02203", "Production of charcoal in the forest (using traditional methods)", i), "02204", e.a("02204", "Rubber wood logging", i), "02301", e.a("02301", "Collection of rattan, bamboo", i), "02302", e.a("02302", "Bird’s nest collection", i), "02303", e.a("02303", "Wild sago palm collection", i), "02309", e.a("02309", "Gathering of non-wood forest products n.e.c.", i), "02401", e.a("02401", "Carrying out part of the forestry and forest plantation operation on a fee or contract basis for forestry service activities", i), "02402", e.a("02402", "Carrying out part of the forestry operation on a fee or contract basis for logging service activities", i), "03111", e.a("03111", "Fishing on a commercial basis in ocean and coastal waters", i), "03112", e.a("03112", "Collection of marine crustaceans and molluscs", i), "03113", e.a("03113", "Taking of aquatic animals: sea squirts, tunicates, sea urchins", i), "03114", e.a("03114", "Activities of vessels engaged both in fishing and in processing and preserving of fish", i), "03115", e.a("03115", "Gathering of other marine organisms and materials (natural pearls, sponges, coral and algae)", i), "03119", e.a("03119", "Marine fishing n.e.c.", i), "03121", e.a("03121", "Fishing on a commercial basis in inland waters", i), "03122", e.a("03122", "Taking of freshwater crustaceans and molluscs", i), "03123", e.a("03123", "Taking of freshwater aquatic animals", i), "03124", e.a("03124", "Gathering of freshwater flora and fauna", i), "03129", e.a("03129", "Freshwater fishing n.e.c.", i), "03211", e.a("03211", "Fish farming in sea water", i), "03212", e.a("03212", "Production of bivalve spat (oyster, mussel), lobster lings, shrimp post-larvae, fish fry and fingerlings", i), "03213", e.a("03213", "Growing of laver and other edible seaweeds", i), "03214", e.a("03214", "Culture of crustaceans, bivalves, other molluscs and other aquatic animals in sea water", i), "03215", e.a("03215", "Aquaculture activities in brackish water", i), "03216", e.a("03216", "Aquaculture activities in salt water filled tanks or reservoirs", i), "03217", e.a("03217", "Operation of hatcheries (marine)", i), "03218", e.a("03218", "Operation of marine worm farms for fish feed", i), "03219", e.a("03219", "Marine aquaculture n.e.c.", i), "03221", e.a("03221", "Fish farming in freshwater", i), "03222", e.a("03222", "Shrimp farming in freshwater", i), "03223", e.a("03223", "Culture of freshwater crustaceans, bivalves, other molluscs and other aquatic animals", i), "03224", e.a("03224", "Operation of hatcheries (freshwater)", i), "03225", e.a("03225", "Farming of frogs", i), "03229", e.a("03229", "Freshwater aquaculture n.e.c.", i), "05100", e.a("05100", "Mining of hard coal", o), "05200", e.a("05200", "Mining of lignite (brown coal)", o), "06101", e.a("06101", "Extraction of crude petroleum oils", o), "06102", e.a("06102", "Extraction of bituminous or oil shale and tar sand", o), "06103", e.a("06103", "Production of crude petroleum from bituminous shale and sand", o), "06104", e.a("06104", "Processes to obtain crude oils", o), "06201", e.a("06201", "Production of crude gaseous hydrocarbon (natural gas)", o), "06202", e.a("06202", "Extraction of condensates", o), "06203", e.a("06203", "Draining and separation of liquid hydrocarbon fractions", o), "06204", e.a("06204", "Gas desulphurization", o), "06205", e.a("06205", "Mining of hydrocarbon liquids, obtain through liquefaction or pyrolysis", o), "07101", e.a("07101", "Mining of ores valued chiefly for iron content", o), "07102", e.a("07102", "Beneficiation and agglomeration of iron ores", o), "07210", e.a("07210", "Mining of uranium and thorium ores", o), "07291", e.a("07291", "Mining of tin ores", o), "07292", e.a("07292", "Mining of copper", o), "07293", e.a("07293", "Mining of bauxite (aluminium)", o), "07294", e.a("07294", "Mining of ilmenite", o), "07295", e.a("07295", "Mining of gold", o), "07296", e.a("07296", "Mining of silver", o), "07297", e.a("07297", "Mining of platinum", o), "07298", e.a("07298", "Amang retreatment", o), "07299", e.a("07299", "Mining of other non-ferrous metal ores n.e.c.", o), "08101", e.a("08101", "Quarrying, rough trimming and sawing of monumental and building stone such as marble, granite (dimension stone), sandstone", o), "08102", e.a("08102", "Quarrying, crushing and breaking of limestone", o), "08103", e.a("08103", "Mining of gypsum and anhydrite", o), "08104", e.a("08104", "Mining of chalk and uncalcined dolomite", o), "08105", e.a("08105", "Extraction and dredging of industrial sand, sand for construction and gravel", o), "08106", e.a("08106", "Breaking and crushing of stone and gravel", o), "08107", e.a("08107", "Quarrying of sand", o), "08108", e.a("08108", "Mining of clays, refractory clays and kaolin", o), "08109", e.a("08109", "Quarrying, crushing and breaking of granite", o), "08911", e.a("08911", "Mining of natural phosphates", o), "08912", e.a("08912", "Mining of natural potassium salts", o), "08913", e.a("08913", "Mining of native sulphur", o), "08914", e.a("08914", "Extraction and preparation of pyrites and pyrrhotite, except roasting", o), "08915", e.a("08915", "Mining of natural barium sulphate and carbonate (barytes and witherite)", o), "08916", e.a("08916", "Mining of natural borates, natural magnesium sulphates (kieserite)", o), "08917", e.a("08917", "Mining of earth colours, fluorspar and other minerals valued chiefly as a source of chemicals", o), "08918", e.a("08918", "Guano mining", o), "08921", e.a("08921", "Peat digging", o), "08922", e.a("08922", "Peat agglomeration", o), "08923", e.a("08923", "Preparation of peat to improve quality or facilitate transport or storage", o), "08931", e.a("08931", "Extraction of salt from underground", o), "08932", e.a("08932", "Salt production by evaporation of sea water or other saline waters", o), "08933", e.a("08933", "Crushing, purification and refining of salt by the producer", o), "08991", e.a("08991", "Mining and quarrying of abrasive materials", o), "08992", e.a("08992", "Mining and quarrying of asbestos", o), "08993", e.a("08993", "Mining and quarrying of siliceous fossil meals", o), "08994", e.a("08994", "Mining and quarrying of natural graphite", o), "08995", e.a("08995", "Mining and quarrying of steatite (talc)", o), "08996", e.a("08996", "Mining and quarrying of gemstones", o), "08999", e.a("08999", "Other mining and quarrying n.e.c.", o), "09101", e.a("09101", "Oil and gas extraction service activities provided on a fee or contract basis", o), "09102", e.a("09102", "Oil and gas field fire fighting services", o), "09900", e.a("09900", "Support activities for other mining and quarrying", o), "10101", e.a("10101", "Processing and preserving of meat and production of meat products", l), "10102", e.a("10102", "Processing and preserving of poultry and poultry products", l), "10103", e.a("10103", "Production of hides and skins originating from slaughterhouses", l), "10104", e.a("10104", "Operation of slaughterhouses engaged in killing, houses dressing or packing meat", l), "10109", e.a("10109", "Processing and preserving of meat n.e.c.", l), "10201", e.a("10201", "Canning of fish, crustaceans and mollusks", l), "10202", e.a("10202", "Processing, curing and preserving of fish, crustacean and molluscs", l), "10203", e.a("10203", "Production of fish meals for human consumption or animal feed", l), "10204", e.a("10204", "Production of keropok including keropok lekor", l), "10205", e.a("10205", "Processing of seaweed", l), "10301", e.a("10301", "Manufacture of fruits and vegetable food products", l), "10302", e.a("10302", "Manufacture of fruit and vegetable juices", l), "10303", e.a("10303", "Pineapple canning", l), "10304", e.a("10304", "Manufacture of jams, marmalades and table jellies", l), "10305", e.a("10305", "Manufacture of nuts and nut products", l), "10306", e.a("10306", "Manufacture of bean curd products", l), "10401", e.a("10401", "Manufacture of crude palm oil", l), "10402", e.a("10402", "Manufacture of refined palm oil", l), "10403", e.a("10403", "Manufacture of palm kernel oil", l), "10404", e.a("10404", "Manufacture of crude and refined vegetable oil", l), "10405", e.a("10405", "Manufacture of coconut oil", l), "10406", e.a("10406", "Manufacture of compound cooking fats", l), "10407", e.a("10407", "Manufacture of animal oils and fats", l), "10501", e.a("10501", "Manufacture of ice cream and other edible ice such as sorbet", l), "10502", e.a("10502", "Manufacture of condensed, powdered and evaporated milk", l), "10509", e.a("10509", "Manufacture of other dairy products n.e.c.", l), "10611", e.a("10611", "Rice milling", l), "10612", e.a("10612", "Provision of milling services", l), "10613", e.a("10613", "Flour milling", l), "10619", e.a("10619", "Manufacture of grain mill products n.e.c.", l), "10621", e.a("10621", "Manufacture of starches and starch products", l), "10622", e.a("10622", "Manufacture of glucose, glucose syrup, maltose, inulin", l), "10623", e.a("10623", "Manufacture of sago and tapioca flour/products", l), "10711", e.a("10711", "Manufacture of biscuits and cookies", l), "10712", e.a("10712", "Manufacture of bread, cakes and other bakery products", l), "10713", e.a("10713", "Manufacture of snack products", l), "10714", e.a("10714", "Manufacture of frozen bakery products", l), "10721", e.a("10721", "Manufacture of sugar", l), "10722", e.a("10722", "Manufacture of sugar products", l), "10731", e.a("10731", "Manufacture of cocoa products", l), "10732", e.a("10732", "Manufacture of chocolate and chocolate products", l), "10733", e.a("10733", "Manufacture of sugar confectionery", l), "10741", e.a("10741", "Manufacture of meehoon, noodles and other related products", l), "10742", e.a("10742", "Manufacture of pastas", l), "10750", e.a("10750", "Manufacture of prepared meals and dishes", l), "10791", e.a("10791", "Manufacture of coffee", l), "10792", e.a("10792", "Manufacture of tea", l), "10793", e.a("10793", "Manufacture of sauces and condiments", l), "10794", e.a("10794", "Manufacture of spices and curry powder", l), "10795", e.a("10795", "Manufacture of egg products", l), "10799", e.a("10799", "Manufacture of other food products n.e.c.", l), "10800", e.a("10800", "Manufacture of prepared animal feeds", l), "11010", e.a("11010", "Distilling, rectifying and blending of spirits", l), "11020", e.a("11020", "Manufacture of wines", l), "11030", e.a("11030", "Manufacture of malt liquors and malt", l), "11041", e.a("11041", "Manufacture of soft drinks", l), "11042", e.a("11042", "Production of natural mineral water and other bottled water", l), "12000", e.a("12000", "MANUFACTURE OF TOBACCO PRODUCTS", l), "13110", e.a("13110", "Preparation and spinning of textile fibres", l), "13120", e.a("13120", "Weaving of textiles", l), "13131", e.a("13131", "Batik making", l), "13132", e.a("13132", "Dyeing, bleaching, printing and finishing of yarns and fabrics", l), "13139", e.a("13139", "Other finishing textiles", l), "13910", e.a("13910", "Manufacture of knitted and crocheted fabrics", l), "13921", e.a("13921", "Manufacture of made-up articles of any textile materials, including of knitted or crocheted fabrics", l), "13922", e.a("13922", "Manufacture of made-up furnishing articles", l), "13930", e.a("13930", "Manufacture of carpets and rugs", l), "13940", e.a("13940", "Manufacture of cordage, rope, twine and netting", l), "13990", e.a("13990", "Manufacture of other textiles n.e.c.", l), "14101", e.a("14101", "Manufacture of specific wearing apparel", l), "14102", e.a("14102", "Manufacture of clothings", l), "14103", e.a("14103", "Custom tailoring", l), "14109", e.a("14109", "Manufacture of other clothing accessories", l), "14200", e.a("14200", "Manufacture of articles made of fur skins", l), "14300", e.a("14300", "Manufacture of knitted and crocheted apparel", l), "15110", e.a("15110", "Tanning and dressing of leather; dressing and dyeing of fur", l), "15120", e.a("15120", "Manufacture of luggage, handbags and the like, saddlery and harness", l), "15201", e.a("15201", "Manufacture of leather footwear", l), "15202", e.a("15202", "Manufacture of plastic footwear", l), "15203", e.a("15203", "Manufacture of rubber footwear", l), "15209", e.a("15209", "Manufacture of other footwear n.e.c.", l), "16100", e.a("16100", "Sawmilling and planning of wood", l), "16211", e.a("16211", "Manufacture of veneer sheets and plywood", l), "16212", e.a("16212", "Manufacture of particle board and fibreboard", l), "16221", e.a("16221", "Manufacture of builders' carpentry", l), "16222", e.a("16222", "Manufacture of joinery wood products", l), "16230", e.a("16230", "Manufacture of wooden containers", l), "16291", e.a("16291", "Manufacture of wood charcoal", l), "16292", e.a("16292", "Manufacture of other products of wood, cane, articles of cork, straw and plaiting materials", l), "17010", e.a("17010", "Manufacture of pulp, paper and paperboard", l), "17020", e.a("17020", "Manufacture of corrugated paper and paperboard and of containers of paper and paperboard", l), "17091", e.a("17091", "Manufacture of envelopes and letter-card", l), "17092", e.a("17092", "Manufacture of household and personal hygiene paper", l), "17093", e.a("17093", "Manufacture of gummed or adhesive paper in strips or rolls and labels and wall paper", l), "17094", e.a("17094", "Manufacture of effigies, funeral paper goods, joss paper", l), "17099", e.a("17099", "Manufacture of other articles of paper and paperboard n.e.c.", l), "18110", e.a("18110", "Printing", l), "18120", e.a("18120", "Service activities related to printing", l), "18200", e.a("18200", "Reproduction of recorded media", l), "19100", e.a("19100", "Manufacture of coke oven products", l), "19201", e.a("19201", "Manufacture of refined petroleum products", l), "19202", e.a("19202", "Manufacture of bio-diesel products", l), "20111", e.a("20111", "Manufacture of liquefied or compressed inorganic industrial or medical gases", l), "20112", e.a("20112", "Manufacture of basic organic chemicals", l), "20113", e.a("20113", "Manufacture of inorganic compounds", l), "20119", e.a("20119", "Manufacture of other basic chemicals n.e.c.", l), "20121", e.a("20121", "Manufacture of fertilizers", l), "20129", e.a("20129", "Manufacture of associated nitrogen products", l), "20131", e.a("20131", "Manufacture of plastic in primary forms", l), "20132", e.a("20132", "Manufacture of synthetic rubber in primary forms: synthetic rubber, factice", l), "20133", e.a("20133", "Manufacture of mixtures of synthetic rubber and natural rubber or rubber - like gums", l), "20210", e.a("20210", "Manufacture of pesticides and other agrochemical products", l), "20221", e.a("20221", "Manufacture of paints, varnishes and similar coatings ink and mastics", l), "20222", e.a("20222", "Manufacture of printing ink", l), "20231", e.a("20231", "Manufacture of soap and detergents, cleaning and polishing preparations", l), "20232", e.a("20232", "Manufacture of perfumes and toilet preparations", l), "20291", e.a("20291", "Manufacture of photographic plates, films, sensitized paper and other sensitized unexposed materials", l), "20292", e.a("20292", "Manufacture of writing and drawing ink", l), "20299", e.a("20299", "Manufacture of other chemical products n.e.c.", l), "20300", e.a("20300", "Manufacture of man-made fibres", l), "21001", e.a("21001", "Manufacture of medicinal active substances to be used for their pharmacological properties in the manufacture of medicaments", l), "21002", e.a("21002", "Processing of blood", l), "21003", e.a("21003", "Manufacture of medicaments", l), "21004", e.a("21004", "Manufacture of chemical contraceptive products", l), "21005", e.a("21005", "Manufacture of medical diagnostic preparation", l), "21006", e.a("21006", "Manufacture of radioactive in-vivo diagnostic substances", l), "21007", e.a("21007", "Manufacture of biotech pharmaceuticals", l), "21009", e.a("21009", "Manufacture of other pharmaceuticals, medicinal chemical and botanical products n.e.c.", l), "22111", e.a("22111", "Manufacture of rubber tyres for vehicles", l), "22112", e.a("22112", "Manufacture of interchangeable tyre treads and retreading rubber tyres", l), "22191", e.a("22191", "Manufacture of other products of natural or synthetic rubber, unvulcanized, vulcanized or hardened", l), "22192", e.a("22192", "Manufacture of rubber gloves", l), "22193", e.a("22193", "Rubber remilling and latex processing", l), "22199", e.a("22199", "Manufacture of other rubber products n.e.c", l), "22201", e.a("22201", "Manufacture of semi-manufactures of plastic products", l), "22202", e.a("22202", "Manufacture of finished plastic products", l), "22203", e.a("22203", "Manufacture of plastic articles for the packing of goods", l), "22204", e.a("22204", "Manufacture of builders' plastics ware", l), "22205", e.a("22205", "Manufacture of plastic tableware, kitchenware and toilet articles", l), "22209", e.a("22209", "Manufacture of diverse plastic products n.e.c.", l), "23101", e.a("23101", "Manufacture of flat glass, including wired, coloured or tinted flat glass", l), "23102", e.a("23102", "Manufacture of laboratory, hygienic or pharmaceutical glassware", l), "23109", e.a("23109", "Manufacture of other glass products n.e.c.", l), "23911", e.a("23911", "Manufacture of refractory mortars and concretes", l), "23912", e.a("23912", "Manufacture of refractory ceramic goods", l), "23921", e.a("23921", "Manufacture of non-refractory ceramic", l), "23929", e.a("23929", "Manufacture of other clay building materials", l), "23930", e.a("23930", "Manufacture of other porcelain and ceramic products", l), "23941", e.a("23941", "Manufacture of hydraulic cement", l), "23942", e.a("23942", "Manufacture of lime and plaster", l), "23951", e.a("23951", "Manufacture of ready-mix and dry-mix concrete and mortars", l), "23952", e.a("23952", "Manufacture of precast concrete, cement or artificial stone articles for use in construction", l), "23953", e.a("23953", "Manufacture of prefabricated structural components for building or civil engineering of cement, concrete or artificial stone", l), "23959", e.a("23959", "Manufacture of other articles of concrete, cement and plaster n.e.c.", l), "23960", e.a("23960", "Cutting, shaping and finishing of stone", l), "23990", e.a("23990", "Manufacture of other non-metallic mineral products n.e.c.", l), "24101", e.a("24101", "Production of pig iron and spiegeleisen in pigs, blocks or other primary forms", l), "24102", e.a("24102", "Production of bars and rods of stainless steel or other alloy steel", l), "24103", e.a("24103", "Manufacture of seamless tubes, by hot rolling, hot extrusion or hot drawing, or by cold drawing or cold rolling", l), "24104", e.a("24104", "Manufacture of steel tube fittings", l), "24109", e.a("24109", "Manufacture of other basic iron and steel products n.e.c.", l), "24201", e.a("24201", "Tin smelting", l), "24202", e.a("24202", "Production of aluminium from alumina", l), "24209", e.a("24209", "Manufacture of other basic precious and other non-ferrous metals n.e.c.", l), "24311", e.a("24311", "Casting of iron", l), "24312", e.a("24312", "Casting of steel", l), "24320", e.a("24320", "Casting of non-ferrous metals", l), "25111", e.a("25111", "Manufacture of industrial frameworks in metal", l), "25112", e.a("25112", "Manufacture of prefabricated buildings mainly of metal", l), "25113", e.a("25113", "Manufacture of metal doors, windows and their frames, shutters and gates", l), "25119", e.a("25119", "Manufacture of other structural metal products", l), "25120", e.a("25120", "Manufacture of tanks, reservoirs and containers of metal", l), "25130", e.a("25130", "Manufacture of steam generators, except central heating hot water boilers", l), "25200", e.a("25200", "Manufacture of weapons and ammunition", l), "25910", e.a("25910", "Forging, pressing, stamping and roll-forming of metal; powder metallurgy", l), "25920", e.a("25920", "Treatment and coating of metals; machining", l), "25930", e.a("25930", "Manufacture of cutlery, hand tools and general hardware", l), "25991", e.a("25991", "Manufacture of tins and cans for food products, collapsible tubes and boxes", l), "25992", e.a("25992", "Manufacture of metal cable, plaited bands and similar articles", l), "25993", e.a("25993", "Manufacture of bolts, screws, nuts and similar threaded products", l), "25994", e.a("25994", "Manufacture of metal household articles", l), "25999", e.a("25999", "Manufacture of any other fabricated metal products n.e.c.", l), "26101", e.a("26101", "Manufacture of diodes, transistors and similar semiconductor devices", l), "26102", e.a("26102", "Manufacture electronic integrated circuits micro assemblies", l), "26103", e.a("26103", "Manufacture of electrical capacitors and resistors", l), "26104", e.a("26104", "Manufacture of printed circuit boards", l), "26105", e.a("26105", "Manufacture of display components", l), "26109", e.a("26109", "Manufacture of other components for electronic applications", l), "26201", e.a("26201", "Manufacture of computers", l), "26202", e.a("26202", "Manufacture of peripheral equipment", l), "26300", e.a("26300", "Manufacture of communication equipment", l), "26400", e.a("26400", "Manufacture of consumer electronics", l), "26511", e.a("26511", "Manufacture of measuring, testing, navigating and control equipment", l), "26512", e.a("26512", "Manufacture of industrial process control equipment", l), "26520", e.a("26520", "Manufacture of watches and clocks and parts", l), "26600", e.a("26600", "Manufacture of irradiation, electro medical and electrotherapeutic equipment", l), "26701", e.a("26701", "Manufacture of optical instruments and equipment", l), "26702", e.a("26702", "Manufacture of photographic equipment", l), "26800", e.a("26800", "Manufacture of magnetic and optical recording media", l), "27101", e.a("27101", "Manufacture of electric motors, generators and transformers", l), "27102", e.a("27102", "Manufacture of electricity distribution and control apparatus", l), "27200", e.a("27200", "Manufacture of batteries and accumulators", l), "27310", e.a("27310", "Manufacture of fibre optic cables", l), "27320", e.a("27320", "Manufacture of other electronic and electric wires and cables", l), "27330", e.a("27330", "Manufacture of current-carrying and non current-carrying wiring devices for electrical circuits regardless of material", l), "27400", e.a("27400", "Manufacture of electric lighting equipment", l), "27500", e.a("27500", "Manufacture of domestic appliances", l), "27900", e.a("27900", "Manufacture of miscellaneous electrical equipment other than motors, generators and transformers, batteries and accumulators, wires and wiring devices, lighting equipment or domestic appliances", l), "28110", e.a("28110", "Manufacture of engines and turbines, except aircraft, vehicle and cycle engines", l), "28120", e.a("28120", "Manufacture of fluid power equipment", l), "28130", e.a("28130", "Manufacture of other pumps, compressors, taps and valves", l), "28140", e.a("28140", "Manufacture of bearings, gears, gearing and driving elements", l), "28150", e.a("28150", "Manufacture of ovens, furnaces and furnace burners", l), "28160", e.a("28160", "Manufacture of lifting and handling equipment", l), "28170", e.a("28170", "Manufacture of office machinery and equipment (except computers and peripheral equipment)", l), "28180", e.a("28180", "Manufacture of power-driven hand tools with self-contained electric or non-electric motor or pneumatic drives", l), "28191", e.a("28191", "Manufacture of refrigerating or freezing industrial equipment", l), "28192", e.a("28192", "Manufacture of air-conditioning machines, including for motor vehicles", l), "28199", e.a("28199", "Manufacture of other general-purpose machinery n.e.c.", l), "28210", e.a("28210", "Manufacture of agricultural and forestry machinery", l), "28220", e.a("28220", "Manufacture of metal-forming machinery and machine tools", l), "28230", e.a("28230", "Manufacture of machinery for metallurgy", l), "28240", e.a("28240", "Manufacture of machinery for mining, quarrying and construction", l), "28250", e.a("28250", "Manufacture of machinery for food, beverage and tobacco processing", l), "28260", e.a("28260", "Manufacture of machinery for textile, apparel and leather production", l), "28290", e.a("28290", "Manufacture of other special-purpose machinery n.e.c.", l), "29101", e.a("29101", "Manufacture of passenger cars", l), "29102", e.a("29102", "Manufacture of commercial vehicles", l), "29200", e.a("29200", "Manufacture of bodies (coachwork) for motor vehicles; manufacture of trailers and semi- trailers", l), "29300", e.a("29300", "Manufacture of parts and accessories for motor vehicles", l), "30110", e.a("30110", "Building of ships and floating structures", l), "30120", e.a("30120", "Building of pleasure and sporting boats", l), "30200", e.a("30200", "Manufacture of railway locomotives and rolling stock", l), "30300", e.a("30300", "Manufacture of air and spacecraft and related machinery", l), "30400", e.a("30400", "Manufacture of military fighting vehicles", l), "30910", e.a("30910", "Manufacture of motorcycles", l), "30920", e.a("30920", "Manufacture of bicycles and invalid carriages", l), "30990", e.a("30990", "Manufacture of other transport equipments n.e.c.", l), "31001", e.a("31001", "Manufacture of wooden and cane furniture", l), "31002", e.a("31002", "Manufacture of metal furniture", l), "31003", e.a("31003", "Manufacture of mattress", l), "31009", e.a("31009", "Manufacture of other furniture, except of stone, concrete or ceramic", l), "32110", e.a("32110", "Manufacture of jewellery and related articles", l), "32120", e.a("32120", "Manufacture of imitation jewellery and related articles", l), "32200", e.a("32200", "Manufacture of musical instruments", l), "32300", e.a("32300", "Manufacture of sports goods", l), "32400", e.a("32400", "Manufacture of games and toys", l), "32500", e.a("32500", "Manufacture of medical and dental instrument and supplies", l), "32901", e.a("32901", "Manufacture of stationery", l), "32909", e.a("32909", "Other manufacturing n.e.c.", l), "33110", e.a("33110", "Repair of fabricated metal products", l), "33120", e.a("33120", "Repair and maintenance of industrial machinery and equipment", l), "33131", e.a("33131", "Repair and maintenance of the measuring, testing, navigating and control equipment", l), "33132", e.a("33132", "Repair and maintenance of irradiation, electro medical and electrotherapeutic equipment", l), "33133", e.a("33133", "Repair of optical instruments and photographic equipment", l), "33140", e.a("33140", "Repair and maintenance of electrical equipment except domestic appliances", l), "33150", e.a("33150", "Repair and maintenance of transport equipment except motorcycles and bicycles", l), "33190", e.a("33190", "Repair and maintenance of other equipment n.e.c.", l), "33200", e.a("33200", "Installation of industrial machinery and equipment", l), "35101", e.a("35101", "Operation of generation facilities that produce electric energy", f), "35102", e.a("35102", "Operation of transmission, distribution and sales of electricity", f), "35201", e.a("35201", "Manufacture of gaseous fuels with a specified calorific value, by purification, blending and other processes from gases of various types including natural gas", f), "35202", e.a("35202", "Transportation, distribution and supply of gaseous fuels of all kinds through a system of mains", f), "35203", e.a("35203", "Sale of gas to the user through mains", f), "35301", e.a("35301", "Production, collection and distribution of steam and hot water for heating, power and other purposes", f), "35302", e.a("35302", "Production and distribution of cooled air, chilled water for cooling purposes", f), "35303", e.a("35303", "Production of ice, including ice for food and non-food (e.g. cooling) purposes", f), "36001", e.a("36001", "Purification and distribution of water for water supply purposes", h), "36002", e.a("36002", "Desalting of sea or ground water to produce water as the principal product of interest", h), "37000", e.a("37000", "Sewerage and similar activities", h), "38111", e.a("38111", "Collection of non-hazardous solid waste (i.e. garbage) within a local area", h), "38112", e.a("38112", "Collection of recyclable materials", h), "38113", e.a("38113", "Collection of refuse in litter-bins in public places", h), "38114", e.a("38114", "Collection of construction and demolition waste", h), "38115", e.a("38115", "Operation of waste transfer stations for non-hazardous waste", h), "38121", e.a("38121", "Collection of hazardous waste", h), "38122", e.a("38122", "Operation of waste transfer stations for hazardous waste", h), "38210", e.a("38210", "Treatment and disposal of non-hazardous waste", h), "38220", e.a("38220", "Treatment and disposal of hazardous waste", h), "38301", e.a("38301", "Mechanical crushing of metal waste", h), "38302", e.a("38302", "Dismantling of automobiles, computers, televisions and other equipment for material recover", h), "38303", e.a("38303", "Reclaiming of rubber such as used tires to produce secondary raw material", h), "38304", e.a("38304", "Reuse of rubber products", h), "38309", e.a("38309", "Materials recovery n.e.c.", h), "39000", e.a("39000", "Remediation activities and other waste management services", h), "41001", e.a("41001", "Residential buildings", p), "41002", e.a("41002", "Non-residential buildings", p), "41003", e.a("41003", "Assembly and erection of prefabricated constructions on the site", p), "41009", e.a("41009", "Construction of buildings n.e.c.", p), "42101", e.a("42101", "Construction of motorways, streets, roads, other vehicular and pedestrian ways", p), "42102", e.a("42102", "Surface work on streets, roads, highways, bridges or tunnels", p), "42103", e.a("42103", "Construction of bridges, including those for elevated highways", p), "42104", e.a("42104", "Construction of tunnels", p), "42105", e.a("42105", "Construction of railways and subways", p), "42106", e.a("42106", "Construction of airfield/airports runways", p), "42109", e.a("42109", "Construction of roads and railways n.e.c.", p), "42201", e.a("42201", "Long-distance pipelines, communication and power lines", p), "42202", e.a("42202", "Urban pipelines, urban communication and power lines; ancillary urban works", p), "42203", e.a("42203", "Water main and line construction", p), "42204", e.a("42204", "Reservoirs", p), "42205", e.a("42205", "Construction of irrigation systems (canals)", p), "42206", e.a("42206", "Construction of sewer systems (including repair) and sewage disposal plants", p), "42207", e.a("42207", "Construction of power plants", p), "42209", e.a("42209", "Construction of utility projects n.e.c.", p), "42901", e.a("42901", "Construction of refineries", p), "42902", e.a("42902", "Construction of waterways, harbour and river works, pleasure ports (marinas), locks", p), "42903", e.a("42903", "Construction of dams and dykes", p), "42904", e.a("42904", "Dredging of waterways", p), "42905", e.a("42905", "Outdoor sports facilities", p), "42906", e.a("42906", "Land subdivision with land improvement", p), "42909", e.a("42909", "Construction of other engineering projects n.e.c.", p), "43110", e.a("43110", "Demolition or wrecking of buildings and other structures", p), "43121", e.a("43121", "Clearing of building sites", p), "43122", e.a("43122", "Earth moving", p), "43123", e.a("43123", "Drilling, boring and core sampling for construction, geophysical, geological or similar purposes", p), "43124", e.a("43124", "Site preparation for mining", p), "43125", e.a("43125", "Drainage of agricultural or forestry land", p), "43126", e.a("43126", "Land reclamation work", p), "43129", e.a("43129", "Other site preparation activities n.e.c.", p), "43211", e.a("43211", "Electrical wiring and fittings", p), "43212", e.a("43212", "Telecommunications wiring", p), "43213", e.a("43213", "Computer network and cable television wiring", p), "43214", e.a("43214", "Satellite dishes", p), "43215", e.a("43215", "Lighting systems", p), "43216", e.a("43216", "Security systems", p), "43219", e.a("43219", "Electrical installation n.e.c.", p), "43221", e.a("43221", "Installation of heating systems (electric, gas and oil)", p), "43222", e.a("43222", "Installation of furnaces, cooling towers", p), "43223", e.a("43223", "Installation of non-electric solar energy collectors", p), "43224", e.a("43224", "Installation of plumbing and sanitary equipment", p), "43225", e.a("43225", "Installation of ventilation, refrigeration or air-conditioning equipment and ducts", p), "43226", e.a("43226", "Installation of gas fittings", p), "43227", e.a("43227", "Installation of fire and lawn sprinkler systems", p), "43228", e.a("43228", "Steam piping", p), "43229", e.a("43229", "Plumbing, heat and air-conditioning installation n.e.c.", p), "43291", e.a("43291", "Installation of elevators, escalators in buildings or other construction projects", p), "43292", e.a("43292", "Installation of automated and revolving doors in buildings or other construction projects", p), "43293", e.a("43293", "Installation of lighting conductors in buildings or other construction projects", p), "43294", e.a("43294", "Installation vacuum cleaning systems in buildings or other construction projects", p), "43295", e.a("43295", "Installation thermal, sound or vibration insulation in buildings or other construction projects", p), "43299", e.a("43299", "Other construction installation n.e.c.", p), "43301", e.a("43301", "Installation of doors, windows, door and window frames of wood or other materials, fitted kitchens, staircases, shop fittings and furniture", p), "43302", e.a("43302", "Laying, tiling, hanging or fitting in buildings or other construction projects of various types of materials", p), "43303", e.a("43303", "Interior and exterior painting of buildings", p), "43304", e.a("43304", "Painting of civil engineering structures", p), "43305", e.a("43305", "Installation of glass, mirrors", p), "43306", e.a("43306", "Interior completion", p), "43307", e.a("43307", "Cleaning of new buildings after construction", p), "43309", e.a("43309", "Other building completion and finishing work n.e.c.", p), "43901", e.a("43901", "Construction of foundations, including pile driving", p), "43902", e.a("43902", "Erection of non-self-manufactured steel elements", p), "43903", e.a("43903", "Scaffolds and work platform erecting and dismantling", p), "43904", e.a("43904", "Bricklaying and stone setting", p), "43905", e.a("43905", "Construction of outdoor swimming pools", p), "43906", e.a("43906", "Steam cleaning, sand blasting and similar activities for building exteriors", p), "43907", e.a("43907", "Renting of construction machinery and equipment with operator (e.g. cranes)", p), "43909", e.a("43909", "Other specialized construction activities, n.e.c.", p), "45101", e.a("45101", "Wholesale and retail of new motor vehicles", m), "45102", e.a("45102", "Wholesale and retail of used motor vehicles", m), "45103", e.a("45103", "Sale of industrial, commercial and agriculture vehicles – new", m), "45104", e.a("45104", "Sale of industrial, commercial and agriculture vehicles – used", m), "45105", e.a("45105", "Sale by commission agents", m), "45106", e.a("45106", "Car auctions", m), "45109", e.a("45109", "Sale of other motor vehicles n.e.c.", m), "45201", e.a("45201", "Maintenance and repair of motor vehicles", m), "45202", e.a("45202", "Spraying and painting", m), "45203", e.a("45203", "Washing and polishing (car wash)", m), "45204", e.a("45204", "Repair of motor vehicle seats", m), "45205", e.a("45205", "Installation of parts and accessories not as part of the manufacturing process", m), "45300", e.a("45300", "Wholesale and retail sale of all kinds of parts, components, supplies, tools and accessories for motor vehicles", m), "45401", e.a("45401", "Wholesale and retail sale of motorcycles", m), "45402", e.a("45402", "Wholesale and retail sale of parts and accessories for motorcycles", m), "45403", e.a("45403", "Repair and maintenance of motorcycles", m), "46100", e.a("46100", "Wholesale on a fee or contract basis", m), "46201", e.a("46201", "Wholesale of rubber", m), "46202", e.a("46202", "Wholesale of palm oil", m), "46203", e.a("46203", "Wholesale of lumber and timber", m), "46204", e.a("46204", "Wholesale of flowers and plants", m), "46205", e.a("46205", "Wholesale of livestock", m), "46209", e.a("46209", "Wholesale of agricultural raw material and live animal n.e.c.", m), "46311", e.a("46311", "Wholesale of meat, poultry and eggs", m), "46312", e.a("46312", "Wholesale of fish and other seafood", m), "46313", e.a("46313", "Wholesale of fruits", m), "46314", e.a("46314", "Wholesale of vegetables", m), "46319", e.a("46319", "Wholesale of meat, fish, fruits and vegetables n.e.c.", m), "46321", e.a("46321", "Wholesale of rice, other grains, flour and sugars", m), "46322", e.a("46322", "Wholesale of dairy products", m), "46323", e.a("46323", "Wholesale of confectionary", m), "46324", e.a("46324", "Wholesale of biscuits, cakes, breads and other bakery products", m), "46325", e.a("46325", "Wholesale of coffee, tea, cocoa and other beverages", m), "46326", e.a("46326", "Wholesale of beer, wine and spirits", m), "46327", e.a("46327", "Wholesale of tobacco, cigar, cigarettes", m), "46329", e.a("46329", "Wholesale of other foodstuffs", m), "46411", e.a("46411", "Wholesale of yarn and fabrics", m), "46412", e.a("46412", "Wholesale of household linen, towels, blankets", m), "46413", e.a("46413", "Wholesale of clothing", m), "46414", e.a("46414", "Wholesale of clothing accessories", m), "46415", e.a("46415", "Wholesale of fur articles", m), "46416", e.a("46416", "Wholesale of footwear", m), "46417", e.a("46417", "Wholesale of haberdashery", m), "46419", e.a("46419", "Wholesale of textiles, clothing n.e.c.", m), "46421", e.a("46421", "Wholesale of pharmaceutical and medical goods", m), "46422", e.a("46422", "Wholesale of perfumeries, cosmetics, soap and toiletries", m), "46431", e.a("46431", "Wholesale of bicycles and their parts and accessories", m), "46432", e.a("46432", "Wholesale of photographic and optical goods", m), "46433", e.a("46433", "Wholesale of leather goods and travel accessories", m), "46434", e.a("46434", "Wholesale of musical instruments, games and toys, sports goods", m), "46441", e.a("46441", "Wholesale of handicrafts and artificial flowers", m), "46442", e.a("46442", "Wholesale of cut flowers and plants", m), "46443", e.a("46443", "Wholesale of watches and clocks", m), "46444", e.a("46444", "Wholesale of jewellery", m), "46491", e.a("46491", "Wholesale of household furniture", m), "46492", e.a("46492", "Wholesale of household appliances", m), "46493", e.a("46493", "Wholesale of lighting equipment", m), "46494", e.a("46494", "Wholesale of household utensils and cutlery, crockery, glassware, chinaware and pottery", m), "46495", e.a("46495", "Wholesale of woodenware, wickerwork and corkware", m), "46496", e.a("46496", "Wholesale of electrical and electronic goods", m), "46497", e.a("46497", "Wholesale of stationery, books, magazines and newspapers", m), "46499", e.a("46499", "Wholesale of other household goods n.e.c.", m), "46510", e.a("46510", "Wholesale of computer hardware, software and peripherals", m), "46521", e.a("46521", "Wholesale of telephone and telecommunications equipment, cell phones, pagers", m), "46522", e.a("46522", "Wholesale of electronic components and wiring accessories", m), "46531", e.a("46531", "Wholesale of agricultural machinery, equipment and supplies", m), "46532", e.a("46532", "Wholesale of lawn mowers however operated", m), "46591", e.a("46591", "Wholesale of office machinery and business equipment, except computers and computer peripheral equipment", m), "46592", e.a("46592", "Wholesale of office furniture", m), "46593", e.a("46593", "Wholesale of computer-controlled machines tools", m), "46594", e.a("46594", "Wholesale of industrial machinery, equipment and supplies", m), "46595", e.a("46595", "Wholesale of construction and civil engineering machinery and equipment", m), "46596", e.a("46596", "Wholesale of lift escalators, air-conditioning, security and fire fighting equipment", m), "46599", e.a("46599", "Wholesale of other machinery for use in industry, trade and navigation and other services n.e.c.", m), "46611", e.a("46611", "Wholesale of petrol, diesel, lubricants", m), "46612", e.a("46612", "Wholesale of liquefied petroleum gas", m), "46619", e.a("46619", "Wholesale of other solid, liquid and gaseous fuels and related products n.e.c.", m), "46621", e.a("46621", "Wholesale of ferrous and non-ferrous metal ores and metals", m), "46622", e.a("46622", "Wholesale of ferrous and non-ferrous semi-finished metal ores and products n.e.c.", m), "46631", e.a("46631", "Wholesale of logs, sawn timber, plywood, veneer and related products", m), "46632", e.a("46632", "Wholesale of paints and varnish", m), "46633", e.a("46633", "Wholesale of construction materials", m), "46634", e.a("46634", "Wholesale of fittings and fixtures", m), "46635", e.a("46635", "Wholesale of hot water heaters", m), "46636", e.a("46636", "Wholesale of sanitary installation and equipment", m), "46637", e.a("46637", "Wholesale of tools", m), "46639", e.a("46639", "Wholesale of other construction materials, hardware, plumbing and heating equipment and supplies n.e.c.", m), "46691", e.a("46691", "Wholesale of industrial chemicals", m), "46692", e.a("46692", "Wholesale of fertilizers and agrochemical products", m), "46693", e.a("46693", "Wholesale of plastic materials in primary forms", m), "46694", e.a("46694", "Wholesale of rubber scrap", m), "46695", e.a("46695", "Wholesale of textile fibres", m), "46696", e.a("46696", "Wholesale of paper in bulk, packaging materials", m), "46697", e.a("46697", "Wholesale of precious stones", m), "46698", e.a("46698", "Wholesale of metal and non-metal waste and scrap and materials for recycling", m), "46699", e.a("46699", "Dismantling of automobiles, computer, televisions and other equipment to obtain and re-sell usable parts", m), "46901", e.a("46901", "Wholesale of aquarium fishes, pet birds and animals", m), "46902", e.a("46902", "Wholesale of animal/pet food", m), "46909", e.a("46909", "Wholesale of a variety of goods without any particular specialization n.e.c.", m), "47111", e.a("47111", "Provision stores", m), "47112", e.a("47112", "Supermarket", m), "47113", e.a("47113", "Mini market", m), "47114", e.a("47114", "Convenience stores", m), "47191", e.a("47191", "Department stores", m), "47192", e.a("47192", "Department stores and supermarket", m), "47193", e.a("47193", "Hypermarket", m), "47194", e.a("47194", "News agent and miscellaneous goods store", m), "47199", e.a("47199", "Other retail sale in non-specialized stores n.e.c.", m), "47211", e.a("47211", "Retail sale of rice, flour, other grains and sugars", m), "47212", e.a("47212", "Retail sale of fresh or preserved vegetables and fruits", m), "47213", e.a("47213", "Retail sale of dairy products and eggs", m), "47214", e.a("47214", "Retail sale of meat and meat products (including poultry)", m), "47215", e.a("47215", "Retail sale of fish, other seafood and products thereof", m), "47216", e.a("47216", "Retail sale of bakery products and sugar confectionery", m), "47217", e.a("47217", "Retail sale of mee, kuey teow, mee hoon, wantan skins and other food products made from flour or soya", m), "47219", e.a("47219", "Retail sale of other food products n.e.c.", m), "47221", e.a("47221", "Retail sale of beer, wine and spirits", m), "47222", e.a("47222", "Retail sale of tea, coffee, soft drinks, mineral water and other beverages", m), "47230", e.a("47230", "Retail sale of tobacco products in specialized store", m), "47300", e.a("47300", "Retail sale of automotive fuel in specialized stores", m), "47411", e.a("47411", "Retail sale of computers, computer equipment and supplies", m), "47412", e.a("47412", "Retail sale of video game consoles and non-customized software", m), "47413", e.a("47413", "Retail sale of telecommunication equipment", m), "47420", e.a("47420", "Retail sale of audio and video equipment in specialized store", m), "47510", e.a("47510", "Retail sale of textiles in specialized stores", m), "47520", e.a("47520", "Retail sale of construction materials, hardware, paints and glass", m), "47531", e.a("47531", "Retail sale of carpets and rugs", m), "47532", e.a("47532", "Retail sale of curtains and net curtains", m), "47533", e.a("47533", "Retail sale of wallpaper and floor coverings", m), "47591", e.a("47591", "Retail sale of household furniture", m), "47592", e.a("47592", "Retail sale of articles for lighting", m), "47593", e.a("47593", "Retail sale of household utensils and cutlery, crockery, glassware, chinaware and pottery", m), "47594", e.a("47594", "Retail sale of wood, cork goods and wickerwork goods", m), "47595", e.a("47595", "Retail sale of household appliances", m), "47596", e.a("47596", "Retail sale of musical instruments and scores", m), "47597", e.a("47597", "Retail sale of security systems", m), "47598", e.a("47598", "Retail sale of household articles and equipment n.e.c.", m), "47611", e.a("47611", "Retail sale of office supplies and equipment", m), "47612", e.a("47612", "Retail sale of books, newspapers and stationary", m), "47620", e.a("47620", "Retail sale of musical records, audio tapes, compact discs , cassettes, video tapes, VCDs and DVDs, blank tapes and discs", m), "47631", e.a("47631", "Retail sale of sports goods and equipments", m), "47632", e.a("47632", "Retail sale of fishing equipment", m), "47633", e.a("47633", "Retail sale of camping goods", m), "47634", e.a("47634", "Retail sale of boats and equipments", m), "47635", e.a("47635", "Retail sale of bicycles and related parts and accessories", m), "47640", e.a("47640", "Retail sale of games and toys, made of all materials", m), "47711", e.a("47711", "Retail sale of articles of clothing, articles of fur and clothing accessories", m), "47712", e.a("47712", "Retail sale of footwear", m), "47713", e.a("47713", "Retail sale of leather goods, accessories of leather and leather substitutes", m), "47721", e.a("47721", "Stores specialized in retail sale of pharmaceuticals, medical and orthopaedic goods", m), "47722", e.a("47722", "Stores specialized in retail sale of perfumery, cosmetic and toilet articles", m), "47731", e.a("47731", "Retail sale of photographic and precision equipment", m), "47732", e.a("47732", "Retail sale of watches and clocks", m), "47733", e.a("47733", "Retail sale of jewellery", m), "47734", e.a("47734", "Retail sale of flowers, plants, seeds, fertilizers", m), "47735", e.a("47735", "Retail sale of souvenirs, craftwork and religious articles", m), "47736", e.a("47736", "Retail sale of household fuel oil, cooking gas, coal and fuel wood", m), "47737", e.a("47737", "Retail sale of spectacles and other optical goods", m), "47738", e.a("47738", "Retail sale of aquarium fishes, pet animals and pet food", m), "47739", e.a("47739", "Other retail sale of new goods in specialized stores n.e.c.", m), "47741", e.a("47741", "Retail sale of second-hand books", m), "47742", e.a("47742", "Retail sale of second-hand electrical and electronic goods", m), "47743", e.a("47743", "Retail sale of antiques", m), "47744", e.a("47744", "Activities of auctioning houses (retail)", m), "47749", e.a("47749", "Retail sale of second-hand goods n.e.c.", m), "47810", e.a("47810", "Retail sale of food, beverages and tobacco products via stalls or markets", m), "47820", e.a("47820", "Retail sale of textiles, clothing and footwear via stalls or markets", m), "47891", e.a("47891", "Retail sale of carpets and rugs via stalls or markets", m), "47892", e.a("47892", "Retail sale of books via stalls or markets", m), "47893", e.a("47893", "Retail sale of games and toys via stalls or markets", m), "47894", e.a("47894", "Retail sale of household appliances and consumer electronics via stall or markets", m), "47895", e.a("47895", "Retail sale of music and video recordings via stall or markets", m), "47911", e.a("47911", "Retail sale of any kind of product by mail order", m), "47912", e.a("47912", "Retail sale of any kind of product over the Internet", m), "47913", e.a("47913", "Direct sale via television, radio and telephone", m), "47914", e.a("47914", "Internet retail auctions", m), "47991", e.a("47991", "Retail sale of any kind of product by direct sales or door-to-door sales persons", m), "47992", e.a("47992", "Retail sale of any kind of product through vending machines", m), "47999", e.a("47999", "Other retail sale not in stores, stalls or markets n.e.c.", m), "49110", e.a("49110", "Passenger transport by inter-urban railways", b), "49120", e.a("49120", "Freight transport by inter-urban, suburban and urban railways", b), "49211", e.a("49211", "City bus services", b), "49212", e.a("49212", "Urban and suburban railway passenger transport service", b), "49221", e.a("49221", "Express bus services", b), "49222", e.a("49222", "Employees bus services", b), "49223", e.a("49223", "School bus services", b), "49224", e.a("49224", "Taxi operation and limousine services", b), "49225", e.a("49225", "Rental of cars with driver", b), "49229", e.a("49229", "Other passenger land transport n.e.c.", b), "49230", e.a("49230", "Freight transport by road", b), "49300", e.a("49300", "Transport via pipeline", b), "50111", e.a("50111", "Operation of excursion, cruise or sightseeing boats", b), "50112", e.a("50112", "Operation of ferries, water taxis", b), "50113", e.a("50113", "Rental of pleasure boats with crew for sea and coastal water transport", b), "50121", e.a("50121", "Transport of freight overseas and coastal waters, whether scheduled or not", b), "50122", e.a("50122", "Transport by towing or pushing of barges, oil rigs", b), "50211", e.a("50211", "Transport of passenger via rivers, canals, lakes and other inland waterways", b), "50212", e.a("50212", "Rental of pleasure boats with crew for inland water transport", b), "50220", e.a("50220", "Transport of freight via rivers, canals, lakes and other inland waterways", b), "51101", e.a("51101", "Transport of passengers by air over regular routes and on regular schedules", b), "51102", e.a("51102", "Non-scheduled transport of passenger by air", b), "51103", e.a("51103", "Renting of air-transport equipment with operator for the purpose of passenger transportation", b), "51201", e.a("51201", "Transport freight by air over regular routes and on regular schedules", b), "51202", e.a("51202", "Non-scheduled transport of freight by air", b), "51203", e.a("51203", "Renting of air-transport equipment with operator for the purpose of freight transportation", b), "52100", e.a("52100", "Warehousing and storage services", b), "52211", e.a("52211", y, b), "52212", e.a("52212", "Towing and road side assistance", b), "52213", e.a("52213", "Operation of parking facilities for motor vehicles (parking lots)", b), "52214", e.a("52214", "Highway, bridge and tunnel operation services", b), "52219", e.a("52219", "Other service activities incidental to land transportation n.e.c.", b), "52221", e.a("52221", "Port, harbours and piers operation services", b), "52222", e.a("52222", "Vessel salvage and refloating services", b), "52229", e.a("52229", "Other service activities incidental to water transportation n.e.c.", b), "52231", e.a("52231", y, b), "52232", e.a("52232", "Airport and air-traffic-control activities", b), "52233", e.a("52233", "Ground service activities on airfields", b), "52234", e.a("52234", "Fire fighting and fire-prevention services at airports", b), "52239", e.a("52239", "Other service activities incidental to air transportation n.e.c.", b), "52241", e.a("52241", "Stevedoring services", b), "52249", e.a("52249", "Other cargo handling activities n.e.c.", b), "52291", e.a("52291", "Forwarding of freight", b), "52292", e.a("52292", "Brokerage for ship and aircraft space", b), "52299", e.a("52299", "Other transportation support activities n.e.c.", b), "53100", e.a("53100", "National postal services", b), "53200", e.a("53200", "Courier activities other than national post activities", b), "55101", e.a("55101", "Hotels and resort hotels", w), "55102", e.a("55102", "Motels", w), "55103", e.a("55103", "Apartment hotels", w), "55104", e.a("55104", "Chalets", w), "55105", e.a("55105", "Rest house/guest house", w), "55106", e.a("55106", "Bed and breakfast units", w), "55107", e.a("55107", "Hostels", w), "55108", e.a("55108", "Home stay", w), "55109", e.a("55109", "Other short term accommodation activities n.e.c.", w), "55200", e.a("55200", "Camping grounds, recreational vehicle parks and trailer parks", w), "55900", e.a("55900", "Other accommodation", w), "56101", e.a("56101", "Restaurants and restaurant cum night clubs", w), "56102", e.a("56102", "Cafeterias/canteens", w), "56103", e.a("56103", "Fast-food restaurants", w), "56104", e.a("56104", "Ice cream truck vendors and parlours", w), "56105", e.a("56105", "Mobile food carts", w), "56106", e.a("56106", "Food stalls/hawkers", w), "56107", e.a("56107", "Food or beverage, food and beverage preparation in market stalls/hawkers", w), "56210", e.a("56210", "Event/food caterers", w), "56290", e.a("56290", "Other food service activities", w), "56301", e.a("56301", "Pubs, bars, discotheques, coffee houses, cocktail lounges and karaoke", w), "56302", e.a("56302", "Coffee shops", w), "56303", e.a("56303", "Drink stalls/hawkers", w), "56304", e.a("56304", "Mobile beverage", w), "56309", e.a("56309", "Others drinking places n.e.c.", w), "58110", e.a("58110", "Publishing of books, brochures and other publications", E), "58120", e.a("58120", "Publishing of mailing lists, telephone book, other directories", E), "58130", e.a("58130", "Publishing of newspapers, journals, magazines and periodicals in print or electronic form", E), "58190", e.a("58190", "Publishing of catalogues, photos, engraving and postcards, greeting cards, forms, posters, reproduction of works of art, advertising material and other printed matter n.e.c.", E), "58201", e.a("58201", "Business and other applications", E), "58202", e.a("58202", "Computer games for all platforms", E), "58203", e.a("58203", "Operating systems", E), "59110", e.a("59110", "Motion picture, video and television programme production activities", E), "59120", e.a("59120", "Motion picture, video and television programme post-production activities", E), "59130", e.a("59130", "Motion picture, video and television programme distribution activities", E), "59140", e.a("59140", "Motion picture projection activities", E), "59200", e.a("59200", "Sound recording and music publishing activities", E), "60100", e.a("60100", "Radio broadcasting", E), "60200", e.a("60200", "Television programming and broadcasting activities", E), "61101", e.a("61101", "Wired telecommunications services", E), "61102", e.a("61102", "Internet access providers by the operator of the wired infrastructure", E), "61201", e.a("61201", "Wireless telecommunications services", E), "61202", e.a("61202", "Internet access providers by the operator of the wireless infrastructure", E), "61300", e.a("61300", "Satellite telecommunications services", E), "61901", e.a("61901", "Provision of Internet access over networks between the client and the ISP not owned or controlled by the ISP", E), "61902", e.a("61902", "Provision of telecommunications services over existing telecom connection", E), "61903", e.a("61903", "Telecommunications resellers", E), "61904", e.a("61904", "Provision of telecommunications services over existing telecom connections VOIP (Voice Over Internet Protocol) provision", E), "61905", e.a("61905", "Provision of specialized telecommunications applications", E), "61909", e.a("61909", "Other telecommunications activities n.e.c.", E), "62010", e.a("62010", "Computer programming activities", E), "62021", e.a("62021", "Computer consultancy", E), "62022", e.a("62022", "Computer facilities management activities", E), "62091", e.a("62091", "Information Communication Technology (ICT) system security", E), "62099", e.a("62099", "Other information technology service activities n.e.c.", E), "63111", e.a("63111", "Activities of providing infrastructure for hosting, data processing services and related activities", E), "63112", e.a("63112", "Data processing activities", E), "63120", e.a("63120", "Web portals", E), "63910", e.a("63910", "News syndicate and news agency activities", E), "63990", e.a("63990", "Other information service activities n.e.c.", E), "64110", e.a("64110", "Central banking", C), "64191", e.a("64191", "Commercial Banks", C), "64192", e.a("64192", "Islamic Banks", C), "64193", e.a("64193", "Offshore Banks", C), "64194", e.a("64194", "Investment Banks", C), "64195", e.a("64195", "Development financial institutions (with deposit taking functions)", C), "64199", e.a("64199", "Other monetary intermediation (with deposit taking functions) n.e.c.", C), "64200", e.a("64200", "Activities of holding companies", C), "64301", e.a("64301", "Venture capital companies", C), "64302", e.a("64302", "Unit trust fund excludes REITs", C), "64303", e.a("64303", "Property unit trust (REITs)", C), "64304", e.a("64304", "Other administration of trusts accounts", C), "64309", e.a("64309", "Trusts, funds and similar financial entities n.e.c.", C), "64910", e.a("64910", "Financial leasing activities", C), "64921", e.a("64921", "Development financial institutions (without deposit taking functions)", C), "64922", e.a("64922", "Credit card services", C), "64923", e.a("64923", "Licensed money lending activities", C), "64924", e.a("64924", "Pawnshops and pawnbrokers includes Ar-Rahnu", C), "64925", e.a("64925", "Co-operative with credits functions", C), "64929", e.a("64929", "Other credit granting n.e.c.", C), "64991", e.a("64991", "Factoring companies", C), "64992", e.a("64992", "Representative office of foreign banks", C), "64993", e.a("64993", "Nominee companies", C), "64999", e.a("64999", "Other financial service activities, except insurance/takaful and pension funding n.e.c.", C), "65111", e.a("65111", "Life insurance", C), "65112", e.a("65112", "Family takaful", C), "65121", e.a("65121", "General insurance", C), "65122", e.a("65122", "General takaful", C), "65123", e.a("65123", "Composite insurance", C), "65124", e.a("65124", "Offshore insurance", C), "65125", e.a("65125", "Offshore takaful", C), "65201", e.a("65201", "Life reinsurance", C), "65202", e.a("65202", "Family retakaful", C), "65203", e.a("65203", "General reinsurance", C), "65204", e.a("65204", "General retakaful", C), "65205", e.a("65205", "Composite retakaful", C), "65206", e.a("65206", "Offshore reinsurance", C), "65207", e.a("65207", "Offshore retakaful", C), "65301", e.a("65301", "Pension funding", C), "65302", e.a("65302", "Provident funding", C), "66111", e.a("66111", "Stock exchanges", C), "66112", e.a("66112", "Exchanges for commodity contracts", C), "66113", e.a("66113", "Securities exchange", C), "66114", e.a("66114", "Exchanges for commodity futures contracts", C), "66119", e.a("66119", "Administration of financial markets n.e.c.", C), "66121", e.a("66121", "Stock, share and bond brokers", C), "66122", e.a("66122", "Commodity brokers and dealers", C), "66123", e.a("66123", "Gold bullion dealers", C), "66124", e.a("66124", "Foreign exchange broker and dealers (Bureaux de change)", C), "66125", e.a("66125", "Money-changing services", C), "66129", e.a("66129", "Other financial and commodity futures brokers and dealers", C), "66191", e.a("66191", "Investment advisory services", C), "66192", e.a("66192", "Financial consultancy services", C), "66199", e.a("66199", "Activities auxiliary to finance n.e.c.", C), "66211", e.a("66211", "Insurance adjusting service", C), "66212", e.a("66212", "Takaful adjusting service", C), "66221", e.a("66221", "Insurance agents", C), "66222", e.a("66222", "Takaful agents", C), "66223", e.a("66223", "Insurance brokers", C), "66224", e.a("66224", "Takaful brokers", C), "66290", e.a("66290", "Other activities auxiliary to insurance, takaful and pension funding", C), "66301", e.a("66301", "Management of pension funds", C), "66302", e.a("66302", "Assets/portfolio management", C), "66303", e.a("66303", "Unit trust management companies", C), "68101", e.a("68101", "Buying, selling, renting and operating of self-owned or leased real estate – residential buildings", T), "68102", e.a("68102", "Buying, selling, renting and operating of self-owned or leased real estate – non-residential buildings", T), "68103", e.a("68103", "Buying, selling, renting and operating of self-owned or leased real estate – land", T), "68104", e.a("68104", "Development of building projects for own operation, i.e. for renting of space in these buildings", T), "68109", e.a("68109", "Real estate activities with own or leased property n.e.c.", T), "68201", e.a("68201", "Activities of real estate agents and brokers for buying, selling and renting of real estate", T), "68202", e.a("68202", "Management of real estate on a fee or contract basis", T), "68203", e.a("68203", "Appraisal services for real estate", T), "68209", e.a("68209", "Real estate activities on a fee or contract basis n.e.c.", T), "69100", e.a("69100", "Legal activities", M), "69200", e.a("69200", "Accounting, bookkeeping and auditing activities; tax consultancy", M), "70100", e.a("70100", "Activities of head offices", M), "70201", e.a("70201", "Business management consultancy services", M), "70202", e.a("70202", "Human resource consultancy services", M), "70203", e.a("70203", "Consultancy services in public relation and communications", M), "70209", e.a("70209", "Other management consultancy activities n.e.c", M), "71101", e.a("71101", "Architectural services", M), "71102", e.a("71102", "Engineering services", M), "71103", e.a("71103", "Land surveying services", M), "71109", e.a("71109", "Other architectural and engineering activities and related technical consultancy n.e.c.", M), "71200", e.a("71200", "Technical testing and analysis", M), "72101", e.a("72101", "Research and development on natural sciences", M), "72102", e.a("72102", "Research and development on engineering and technology", M), "72103", e.a("72103", "Research and development on medical sciences", M), "72104", e.a("72104", "Research and development on biotechnology", M), "72105", e.a("72105", "Research and development on agricultural sciences", M), "72106", e.a("72106", "Research and development on Information Communication Technology (ICT)", M), "72109", e.a("72109", "Research and development on other natural science and engineering n.e.c.", M), "72201", e.a("72201", "Research and development on social sciences", M), "72202", e.a("72202", "Research and development on humanities", M), "72209", e.a("72209", "Research and development of other social sciences and humanities n.e.c.", M), "73100", e.a("73100", "Advertising", M), "73200", e.a("73200", "Market research and public opinion polling", M), "74101", e.a("74101", "Activities of interior decorators", M), "74102", e.a("74102", "Services of graphic designers", M), "74103", e.a("74103", "Fashion design services", M), "74109", e.a("74109", "Specialized design activities n.e.c.", M), "74200", e.a("74200", "Photographic activities", M), "74901", e.a("74901", "Translation and interpretation activities", M), "74902", e.a("74902", "Business brokerage activities", M), "74903", e.a("74903", "Security consulting", M), "74904", e.a("74904", "Activities of quantity surveyors", M), "74905", e.a("74905", "Activities of consultants other than architecture, engineering and management consultants", M), "74909", e.a("74909", "Any other professional, scientific and technical activities n.e.c.", M), "75000", e.a("75000", "VETERINARY ACTIVITIES", M), "77101", e.a("77101", "Renting and operational leasing of passenger cars (without driver)", S), "77102", e.a("77102", "Renting and operational leasing of trucks, utility trailers and recreational vehicles", S), "77211", e.a("77211", "Renting and leasing of pleasure boats, canoes, sailboats", S), "77212", e.a("77212", "Renting and leasing of bicycles", S), "77213", e.a("77213", "Renting and leasing of beach chairs and umbrellas", S), "77219", e.a("77219", "Renting and leasing of other sports equipment n.e.c.", S), "77220", e.a("77220", "Renting of video tapes, records, CDs, DVDs", S), "77291", e.a("77291", "Renting and leasing of textiles, wearing apparel and footwear", S), "77292", e.a("77292", "Renting and leasing of furniture, pottery and glass, kitchen and tableware, electrical appliances and house wares", S), "77293", e.a("77293", "Renting and leasing of jewellery, musical instruments, scenery and costumes", S), "77294", e.a("77294", "Renting and leasing of books, journals and magazines", S), "77295", e.a("77295", "Renting and leasing of machinery and equipment used by amateurs or as a hobby", S), "77296", e.a("77296", "Renting of flowers and plants", S), "77297", e.a("77297", "Renting and leasing of electronic equipment for household use", S), "77299", e.a("77299", "Renting and leasing of other personal and household goods n.e.c.", S), "77301", e.a("77301", "Renting and operational leasing, without operator, of other machinery and equipment that are generally used as capital goods by industries", S), "77302", e.a("77302", "Renting and operational leasing of land-transport equipment (other than motor vehicles) without drivers", S), "77303", e.a("77303", "Renting and operational leasing of water-transport equipment without operator", S), "77304", e.a("77304", "Renting and operational leasing of air transport equipment without operator", S), "77305", e.a("77305", "Renting and operational leasing of agricultural and forestry machinery and equipment without operator", S), "77306", e.a("77306", "Renting and operational leasing of construction and civil-engineering machinery and equipment without operator", S), "77307", e.a("77307", "Rental and operational leasing of office machinery and equipment without operator", S), "77309", e.a("77309", "Renting and leasing of other machinery, equipment and tangible goods n.e.c.", S), "77400", e.a("77400", "Leasing of intellectual property and similar products, except copyrighted works", S), "78100", e.a("78100", "Activities of employment placement agencies", S), "78200", e.a("78200", "Temporary employment agency activities", S), "78300", e.a("78300", "Provision of human resources for client businesses", S), "79110", e.a("79110", "Travel agency activities", S), "79120", e.a("79120", "Tour operator activities", S), "79900", e.a("79900", "Other reservation service and related activities", S), "80100", e.a("80100", "Private security activities", S), "80200", e.a("80200", "Security systems service activities", S), "80300", e.a("80300", "Investigation and detective activities", S), "81100", e.a("81100", "Combined facilities support activities", S), "81210", e.a("81210", "General cleaning of buildings", S), "81291", e.a("81291", "Cleaning of buildings of all types", S), "81292", e.a("81292", "Swimming pool cleaning and maintenance services", S), "81293", e.a("81293", "Cleaning of industrial machinery", S), "81294", e.a("81294", "Cleaning of trains, buses, planes", S), "81295", e.a("81295", "Cleaning of pest control services not in connection with agriculture", S), "81296", e.a("81296", "Disinfecting and exterminating activities", S), "81297", e.a("81297", "Cleaning of sea tankers", S), "81299", e.a("81299", "Other building and industrial cleaning activities, n.e.c.", S), "81300", e.a("81300", "Landscape care and maintenance service activities", S), "82110", e.a("82110", "Combined office administrative service activities", S), "82191", e.a("82191", "Document preparation, editing and/or proofreading", S), "82192", e.a("82192", "Typing, word processing or desktop publishing", S), "82193", e.a("82193", "Secretarial support services", S), "82194", e.a("82194", "Transcription of documents and other secretarial services", S), "82195", e.a("82195", "Provision of mailbox rental and other postal and mailing services", S), "82196", e.a("82196", "Photocopying, duplicating, blueprinting", S), "82199", e.a("82199", "Photocopying, document preparation and other specialized office support activities n.e.c.", S), "82200", e.a("82200", "Activities of call centres", S), "82301", e.a("82301", "Organization, promotions and/or management of event", S), "82302", e.a("82302", "Meeting, incentive, convention, exhibition (MICE)", S), "82910", e.a("82910", "Activities of collection agencies and credit bureaus", S), "82920", e.a("82920", "Packaging activities on a fee or contract basis, whether or not these involve an automated process", S), "82990", e.a("82990", "Other business support service activities n.e.c.", S), "84111", e.a("84111", "General (overall) public administration activities", k), "84112", e.a("84112", "Ancillary service activities for the government as a whole", k), "84121", e.a("84121", "Administrative educational services", k), "84122", e.a("84122", "Administrative health care services", k), "84123", e.a("84123", "Administrative housing and local government services", k), "84124", e.a("84124", "Administrative recreational, cultural, arts and sports services", k), "84125", e.a("84125", "Administrative religious affairs services", k), "84126", e.a("84126", "Administrative welfare services", k), "84129", e.a("84129", "Other community and social affairs services", k), "84131", e.a("84131", "Domestic and international trade affairs", k), "84132", e.a("84132", "Agriculture and rural development affairs", k), "84133", e.a("84133", "Primary industries affairs", k), "84134", e.a("84134", "Public works affairs", k), "84135", e.a("84135", "Transport affairs", k), "84136", e.a("84136", "Energy, telecommunication and postal affairs", k), "84137", e.a("84137", "Tourism affairs", k), "84138", e.a("84138", "Human resource affairs", k), "84139", e.a("84139", "Other regulation of and contribution to more efficient operation of businesses n.e.c.", k), "84210", e.a("84210", "Foreign affairs", k), "84220", e.a("84220", "Military and civil defence services", k), "84231", e.a("84231", "Police service", k), "84232", e.a("84232", "Prison service", k), "84233", e.a("84233", "Immigration service", k), "84234", e.a("84234", "National registration service", k), "84235", e.a("84235", "Judiciary and legal service", k), "84236", e.a("84236", "Firefighting and fire prevention", k), "84239", e.a("84239", "Other public order and safety affairs related services", k), "84300", e.a("84300", "Compulsory social security activities e.g. SOCSO", k), "85101", e.a("85101", "Pre-primary education (Public)", D), "85102", e.a("85102", "Pre-primary education (Private)", D), "85103", e.a("85103", "Primary education (Public)", D), "85104", e.a("85104", "Primary education (Private)", D), "85211", e.a("85211", "General school secondary education (Public)", D), "85212", e.a("85212", "General school secondary education (Private)", D), "85221", e.a("85221", "Technical and vocational education below the level of higher education (Public)", D), "85222", e.a("85222", "Technical and vocational education below the level of higher education (Private)", D), "85301", e.a("85301", "College and university education (Public)", D), "85302", e.a("85302", "College and university education (Private)", D), "85411", e.a("85411", "Sports instruction", D), "85412", e.a("85412", "Martial arts instruction", D), "85419", e.a("85419", "Any other sports and recreation education n.e.c", D), "85421", e.a("85421", "Music and dancing school", D), "85429", e.a("85429", "Any other cultural education n.e.c.", D), "85491", e.a("85491", "Tuition centre", D), "85492", e.a("85492", "Driving school", D), "85493", e.a("85493", "Religious instruction", D), "85494", e.a("85494", "Computer training", D), "85499", e.a("85499", "Others education n.e.c", D), "85500", e.a("85500", "Educational support services for provision of non-instructional services", D), "86101", e.a("86101", "Hospital activities", Y), "86102", e.a("86102", "Maternity home services (outside hospital)", Y), "86201", e.a("86201", "General medical services", Y), "86202", e.a("86202", "Specialized medical services", Y), "86203", e.a("86203", "Dental services", Y), "86901", e.a("86901", "Dialysis Centres", Y), "86902", e.a("86902", "Medical laboratories", Y), "86903", e.a("86903", "Physiotherapy and occupational therapy service", Y), "86904", e.a("86904", "Acupuncture services", Y), "86905", e.a("86905", "Herbalist and homeopathy services", Y), "86906", e.a("86906", "Ambulance services", Y), "86909", e.a("86909", "Other human health services n.e.c.", Y), "87101", e.a("87101", "Homes for the elderly with nursing care", Y), "87102", e.a("87102", "Nursing homes", Y), "87103", e.a("87103", "Palliative or hospices", Y), "87201", e.a("87201", "Drug rehabilitation centres", Y), "87209", e.a("87209", "Other residential care activities for mental retardation n.e.c.", Y), "87300", e.a("87300", "Residential care activities for the elderly and disabled", Y), "87901", e.a("87901", "Orphanages", Y), "87902", e.a("87902", "Welfare homes services", Y), "87909", e.a("87909", "Other residential care activities n.e.c.", Y), "88101", e.a("88101", "Day-care activities for the elderly or for handicapped adults", Y), "88109", e.a("88109", "Others social work activities without accommodation for the elderly and disabled", Y), "88901", e.a("88901", "Counselling service", Y), "88902", e.a("88902", "Child day-care activities", Y), "88909", e.a("88909", "Other social work activities without accommodation n.e.c.", Y), "90001", e.a("90001", "Theatrical producer, singer group band and orchestra entertainment services", U), "90002", e.a("90002", "Operation of concert and theatre halls and other arts facilities", U), "90003", e.a("90003", "Activities of sculptors, painters, cartoonists, engravers, etchers", U), "90004", e.a("90004", "Activities of individual writers, for all subjects", U), "90005", e.a("90005", "Activities of independent journalists", U), "90006", e.a("90006", "Restoring of works of art such as painting", U), "90007", e.a("90007", "Activities of producers or entrepreneurs of arts live events, with or without facilities", U), "90009", e.a("90009", "Creative, arts and entertainment activities n.e.c.", U), "91011", e.a("91011", "Documentation and information activities of libraries of all kinds", U), "91012", e.a("91012", "Stock photo libraries and services", U), "91021", e.a("91021", "Operation of museums of all kinds", U), "91022", e.a("91022", "Operation of historical sites and buildings", U), "91031", e.a("91031", "Operation of botanical and zoological gardens", U), "91032", e.a("91032", "Operation of nature reserves, including wildlife preservation", U), "92000", e.a("92000", "GAMBLING AND BETTING ACTIVITIES", U), "93111", e.a("93111", "Football, hockey, cricket, baseball, badminton, futsal, paintball", U), "93112", e.a("93112", "Racetracks for auto", U), "93113", e.a("93113", "Equestrian clubs", U), "93114", e.a("93114", "Swimming pools and stadiums, ice-skating arenas", U), "93115", e.a("93115", "Track and field stadium", U), "93116", e.a("93116", "Golf courses", U), "93117", e.a("93117", "Bowling centre", U), "93118", e.a("93118", "Fitness centres", U), "93119", e.a("93119", "Organization and operation of outdoor or indoor sports events for professionals or amateurs by organizations with own facilities", U), "93120", e.a("93120", "The operation of sports clubs such as football club, bowling club, swimming club", U), "93191", e.a("93191", "Activities of producers or promoters of sports events, with or without facilities", U), "93192", e.a("93192", "Activities of sports leagues and regulating bodies", U), "93193", e.a("93193", "Activities of related to promotion of sporting events", U), "93199", e.a("93199", "Other sports activities n.e.c.", U), "93210", e.a("93210", "Activities of amusement parks and theme parks", U), "93291", e.a("93291", "Activities of recreation parks and beaches", U), "93292", e.a("93292", "Operation of recreational transport facilities", U), "93293", e.a("93293", "Renting of leisure and pleasure equipment as an integral part of recreational facilities", U), "93294", e.a("93294", "Operation of fairs and shows of a recreational nature", U), "93295", e.a("93295", "Operation of discotheques and dance floors", U), "93296", e.a("93296", "Activities of producers or entrepreneurs of live events other than arts or sports events, with or without facilities", U), "93297", e.a("93297", "Cyber Café/Internet Centre", U), "93299", e.a("93299", "Any other amusement and recreation activities n.e.c.", U), "94110", e.a("94110", "Activities of business and employers membership organizations", B), "94120", e.a("94120", "Activities of professional membership organizations", B), "94200", e.a("94200", "Activities of trade unions", B), "94910", e.a("94910", "Activities of religious organizations", B), "94920", e.a("94920", "Activities of political organizations", B), "94990", e.a("94990", "Activities of other membership organizations n.e.c.", B), "95111", e.a("95111", "Repair of electronic equipment", B), "95112", e.a("95112", "Repair and maintenance of computer terminals", B), "95113", e.a("95113", "Repair and maintenance of hand-held computers (PDA's)", B), "95121", e.a("95121", "Repair and maintenance of cordless telephones", B), "95122", e.a("95122", "Repair and maintenance of cellular phones", B), "95123", e.a("95123", "Repair and maintenance of carrier equipment modems", B), "95124", e.a("95124", "Repair and maintenance of fax machines", B), "95125", e.a("95125", "Repair and maintenance of communications transmission equipment", B), "95126", e.a("95126", "Repair and maintenance of two-way radios", B), "95127", e.a("95127", "Repair and maintenance of commercial TV and video cameras", B), "95211", e.a("95211", "Repair and maintenance of television, radio receivers", B), "95212", e.a("95212", "Repair and maintenance of VCR/DVD/VCD", B), "95213", e.a("95213", "Repair and maintenance of CD players", B), "95214", e.a("95214", "Repair and maintenance of household-type video cameras", B), "95221", e.a("95221", "Repair and servicing of household appliances", B), "95222", e.a("95222", "Repair and servicing of home and garden equipment", B), "95230", e.a("95230", "Repair of footwear and leather goods", B), "95240", e.a("95240", "Repair of furniture and home furnishings", B), "95291", e.a("95291", "Repair of bicycles", B), "95292", e.a("95292", "Repair and alteration of clothing", B), "95293", e.a("95293", "Repair and alteration of jewellery", B), "95294", e.a("95294", "Repair of watches, clocks and their parts", B), "95295", e.a("95295", "Repair of sporting goods", B), "95296", e.a("95296", "Repair of musical instruments", B), "95299", e.a("95299", "Repair of other personal and household goods n.e.c.", B), "96011", e.a("96011", "Laundering and dry-cleaning, pressing", B), "96012", e.a("96012", "Carpet and rug shampooing, and drapery and curtain cleaning, whether on clients' premises or not", B), "96013", e.a("96013", "Provision of linens, work uniforms and related items by laundries", B), "96014", e.a("96014", "Diaper supply services", B), "96020", e.a("96020", "Hairdressing and other beauty treatment", B), "96031", e.a("96031", "Preparing the dead for burial or cremation and embalming and morticians' services", B), "96032", e.a("96032", "Providing burial or cremation services", B), "96033", e.a("96033", "Rental of equipped space in funeral parlours", B), "96034", e.a("96034", "Rental or sale of graves", B), "96035", e.a("96035", "Maintenance of graves and mausoleums", B), "96091", e.a("96091", "Activities of sauna, steam baths, massage salons", B), "96092", e.a("96092", "Astrological and spiritualists' activities", B), "96093", e.a("96093", "Social activities such as escort services, dating services, services of marriage bureaux", B), "96094", e.a("96094", "Pet care services", B), "96095", e.a("96095", "Genealogical organizations", B), "96096", e.a("96096", "Shoe shiners, porters, valet car parkers", B), "96097", e.a("96097", "Concession operation of coin-operated personal service machines", B), "96099", e.a("96099", "Other service activities n.e.c.", B), "97000", e.a("97000", "Activities of households as employers of domestic personnel", "T"), "98100", e.a("98100", "Undifferentiated goods-producing activities of private households for own use", "T"), "98200", e.a("98200", "Undifferentiated service-producing activities of private households for own use", "T"), "99000", e.a("99000", "Activities of extraterritorial organization and bodies", "U")], u.N, e.R("y4"));
28320
28320
  }), t(A, "Ja", "Bi", () => {
28321
28321
  var i = u.N;
28322
28322
  return e.v(["00", "All States", "01", "Johor", "02", "Kedah", "03", "Kelantan", "04", "Melaka", "05", "Negeri Sembilan", "06", "Pahang", "07", "Pulau Pinang", "08", "Perak", "09", "Perlis", "10", "Selangor", "11", "Terengganu", "12", "Sabah", "13", "Sarawak", "14", "Wilayah Persekutuan Kuala Lumpur", "15", "Wilayah Persekutuan Labuan", "16", "Wilayah Persekutuan Putrajaya", "17", "Not Applicable"], i, i);
28323
28323
  }), t(A, "IH", "xB", () => e.w([e.x4(0, "bill"), e.x4(1, "counter"), e.x4(2, "memberStorePurchase")], e.R("Z<ew>"))), r(A, "Jb", "Bj", () => new e.fw("en_US", a.ht, a.hC, a.eB, a.eB, a.eF, a.eF, a.eE, a.eE, a.eL, a.eL, a.eC, a.eC, a.hN, a.hD, a.hx, a.hs)), r(A, "Jc", "xE", () => {
28324
- var i = ",", o = " ", l = "%", f = "0", h = "+", p = "-", m = "E", b = "‰", y = "∞", w = "NaN", E = "#,##0.###", C = "#E0", T = "#,##0%", R = "¤#,##0.00", S = ".", k = "‎+", D = "‎-", Y = "ليس رقمًا", U = "¤ #,##0.00", B = "#,##0.00 ¤", _ = "#,##0 %", J = "#,##,##0.###", ae = "EUR", Ce = "USD", Ae = "¤ #,##0.00;¤-#,##0.00", Ee = "CHF", De = "#,##,##0%", Fe = "¤ #,##,##0.00", Oe = "INR", Ne = "−", xe = "×10^", Pe = "[#E0]", Ie = "¤#,##,##0.00", Ye = "‏#,##0.00 ¤;‏-#,##0.00 ¤";
28325
- return e.v(["af", e.B(R, E, i, "ZAR", m, o, y, p, "af", w, l, T, b, h, C, f), "am", e.B(R, E, S, "ETB", m, i, y, p, "am", w, l, T, b, h, C, f), "ar", e.B(U, E, S, "EGP", m, i, y, D, "ar", Y, "‎%‎", T, b, k, C, f), "ar_DZ", e.B(U, E, i, "DZD", m, S, y, D, "ar_DZ", Y, "‎%‎", T, b, k, C, f), "ar_EG", e.B(B, E, "٫", "EGP", "اس", "٬", y, "؜-", "ar_EG", "ليس رقم", "٪؜", T, "؉", "؜+", C, "٠"), "az", e.B(B, E, i, "AZN", m, S, y, p, "az", w, l, T, b, h, C, f), "be", e.B(B, E, i, "BYN", m, o, y, p, "be", w, l, _, b, h, C, f), "bg", e.B("0.00 ¤", E, i, "BGN", m, o, y, p, "bg", w, l, T, b, h, C, f), "bn", e.B("#,##,##0.00¤", J, S, "BDT", m, i, y, p, "bn", w, l, T, b, h, C, "০"), "br", e.B(B, E, i, ae, m, o, y, p, "br", w, l, _, b, h, C, f), "bs", e.B(B, E, i, "BAM", m, S, y, p, "bs", w, l, _, b, h, C, f), "ca", e.B(B, E, i, ae, m, S, y, p, "ca", w, l, T, b, h, C, f), "chr", e.B(R, E, S, Ce, m, i, y, p, "chr", w, l, T, b, h, C, f), "cs", e.B(B, E, i, "CZK", m, o, y, p, "cs", w, l, _, b, h, C, f), "cy", e.B(R, E, S, "GBP", m, i, y, p, "cy", w, l, T, b, h, C, f), "da", e.B(B, E, i, "DKK", m, S, y, p, "da", w, l, _, b, h, C, f), "de", e.B(B, E, i, ae, m, S, y, p, "de", w, l, _, b, h, C, f), "de_AT", e.B(U, E, i, ae, m, o, y, p, "de_AT", w, l, _, b, h, C, f), "de_CH", e.B(Ae, E, S, Ee, m, "’", y, p, "de_CH", w, l, T, b, h, C, f), "el", e.B(B, E, i, ae, "e", S, y, p, "el", w, l, T, b, h, C, f), "en", e.B(R, E, S, Ce, m, i, y, p, "en", w, l, T, b, h, C, f), "en_AU", e.B(R, E, S, "AUD", "e", i, y, p, "en_AU", w, l, T, b, h, C, f), "en_CA", e.B(R, E, S, "CAD", "e", i, y, p, "en_CA", w, l, T, b, h, C, f), "en_GB", e.B(R, E, S, "GBP", m, i, y, p, "en_GB", w, l, T, b, h, C, f), "en_IE", e.B(R, E, S, ae, m, i, y, p, "en_IE", w, l, T, b, h, C, f), "en_IN", e.B(Fe, J, S, Oe, m, i, y, p, "en_IN", w, l, De, b, h, C, f), "en_MY", e.B(R, E, S, "MYR", m, i, y, p, "en_MY", w, l, T, b, h, C, f), "en_SG", e.B(R, E, S, "SGD", m, i, y, p, "en_SG", w, l, T, b, h, C, f), "en_US", e.B(R, E, S, Ce, m, i, y, p, "en_US", w, l, T, b, h, C, f), "en_ZA", e.B(R, E, i, "ZAR", m, o, y, p, "en_ZA", w, l, T, b, h, C, f), "es", e.B(B, E, i, ae, m, S, y, p, "es", w, l, _, b, h, C, f), "es_419", e.B(R, E, S, "MXN", m, i, y, p, "es_419", w, l, _, b, h, C, f), "es_ES", e.B(B, E, i, ae, m, S, y, p, "es_ES", w, l, _, b, h, C, f), "es_MX", e.B(R, E, S, "MXN", m, i, y, p, "es_MX", w, l, _, b, h, C, f), "es_US", e.B(R, E, S, Ce, m, i, y, p, "es_US", w, l, _, b, h, C, f), "et", e.B(B, E, i, ae, xe, o, y, Ne, "et", w, l, T, b, h, C, f), "eu", e.B(B, E, i, ae, m, S, y, Ne, "eu", w, l, "% #,##0", b, h, C, f), "fa", e.B("‎¤#,##0.00", E, "٫", "IRR", "×۱۰^", "٬", y, "‎−", "fa", "ناعدد", "٪", T, "؉", k, C, "۰"), "fi", e.B(B, E, i, ae, m, o, y, Ne, "fi", "epäluku", l, _, b, h, C, f), "fil", e.B(R, E, S, "PHP", m, i, y, p, "fil", w, l, T, b, h, C, f), "fr", e.B(B, E, i, ae, m, " ", y, p, "fr", w, l, _, b, h, C, f), "fr_CA", e.B(B, E, i, "CAD", m, o, y, p, "fr_CA", w, l, _, b, h, C, f), "fr_CH", e.B(B, E, i, Ee, m, " ", y, p, "fr_CH", w, l, T, b, h, C, f), "ga", e.B(R, E, S, ae, m, i, y, p, "ga", w, l, T, b, h, C, f), "gl", e.B(B, E, i, ae, m, S, y, p, "gl", w, l, _, b, h, C, f), "gsw", e.B(B, E, S, Ee, m, "’", y, Ne, "gsw", w, l, _, b, h, C, f), "gu", e.B(Ie, J, S, Oe, m, i, y, p, "gu", w, l, De, b, h, Pe, f), "haw", e.B(R, E, S, Ce, m, i, y, p, "haw", w, l, T, b, h, C, f), "he", e.B(Ye, E, S, "ILS", m, i, y, D, "he", w, l, T, b, k, C, f), "hi", e.B(Ie, J, S, Oe, m, i, y, p, "hi", w, l, De, b, h, Pe, f), "hr", e.B(B, E, i, "HRK", m, S, y, p, "hr", w, l, _, b, h, C, f), "hu", e.B(B, E, i, "HUF", m, o, y, p, "hu", w, l, T, b, h, C, f), "hy", e.B(B, E, i, "AMD", m, o, y, p, "hy", "ՈչԹ", l, T, b, h, C, f), "id", e.B(R, E, i, "IDR", m, S, y, p, "id", w, l, T, b, h, C, f), "in", e.B(R, E, i, "IDR", m, S, y, p, "in", w, l, T, b, h, C, f), "is", e.B(B, E, i, "ISK", m, S, y, p, "is", w, l, T, b, h, C, f), "it", e.B(B, E, i, ae, m, S, y, p, "it", w, l, T, b, h, C, f), "it_CH", e.B(Ae, E, S, Ee, m, "’", y, p, "it_CH", w, l, T, b, h, C, f), "iw", e.B(Ye, E, S, "ILS", m, i, y, D, "iw", w, l, T, b, k, C, f), "ja", e.B(R, E, S, "JPY", m, i, y, p, "ja", w, l, T, b, h, C, f), "ka", e.B(B, E, i, "GEL", m, o, y, p, "ka", "არ არის რიცხვი", l, T, b, h, C, f), "kk", e.B(B, E, i, "KZT", m, o, y, p, "kk", "сан емес", l, T, b, h, C, f), "km", e.B("#,##0.00¤", E, i, "KHR", m, S, y, p, "km", w, l, T, b, h, C, f), "kn", e.B(R, E, S, Oe, m, i, y, p, "kn", w, l, T, b, h, C, f), "ko", e.B(R, E, S, "KRW", m, i, y, p, "ko", w, l, T, b, h, C, f), "ky", e.B(B, E, i, "KGS", m, o, y, p, "ky", "сан эмес", l, T, b, h, C, f), "ln", e.B(B, E, i, "CDF", m, S, y, p, "ln", w, l, T, b, h, C, f), "lo", e.B("¤#,##0.00;¤-#,##0.00", E, i, "LAK", m, S, y, p, "lo", "ບໍ່​ແມ່ນ​ໂຕ​ເລກ", l, T, b, h, "#", f), "lt", e.B(B, E, i, ae, xe, o, y, Ne, "lt", w, l, _, b, h, C, f), "lv", e.B(B, E, i, ae, m, o, y, p, "lv", "NS", l, T, b, h, C, f), "mk", e.B(B, E, i, "MKD", m, S, y, p, "mk", w, l, T, b, h, C, f), "ml", e.B(R, J, S, Oe, m, i, y, p, "ml", w, l, T, b, h, C, f), "mn", e.B(U, E, S, "MNT", m, i, y, p, "mn", w, l, T, b, h, C, f), "mr", e.B(R, J, S, Oe, m, i, y, p, "mr", w, l, T, b, h, Pe, "०"), "ms", e.B(R, E, S, "MYR", m, i, y, p, "ms", w, l, T, b, h, C, f), "mt", e.B(R, E, S, ae, m, i, y, p, "mt", w, l, T, b, h, C, f), "my", e.B(B, E, S, "MMK", m, i, y, p, "my", "ဂဏန်းမဟုတ်သော", l, T, b, h, C, "၀"), "nb", e.B(U, E, i, "NOK", m, o, y, Ne, "nb", w, l, _, b, h, C, f), "ne", e.B(U, E, S, "NPR", m, i, y, p, "ne", w, l, T, b, h, C, "०"), "nl", e.B("¤ #,##0.00;¤ -#,##0.00", E, i, ae, m, S, y, p, "nl", w, l, T, b, h, C, f), "no", e.B(U, E, i, "NOK", m, o, y, Ne, "no", w, l, _, b, h, C, f), "no_NO", e.B(U, E, i, "NOK", m, o, y, Ne, "no_NO", w, l, _, b, h, C, f), "or", e.B(R, J, S, Oe, m, i, y, p, "or", w, l, T, b, h, C, f), "pa", e.B(Fe, J, S, Oe, m, i, y, p, "pa", w, l, De, b, h, Pe, f), "pl", e.B(B, E, i, "PLN", m, o, y, p, "pl", w, l, T, b, h, C, f), "ps", e.B(B, E, "٫", "AFN", "×۱۰^", "٬", y, "‎-‎", "ps", w, "٪", T, "؉", "‎+‎", C, "۰"), "pt", e.B(U, E, i, "BRL", m, S, y, p, "pt", w, l, T, b, h, C, f), "pt_BR", e.B(U, E, i, "BRL", m, S, y, p, "pt_BR", w, l, T, b, h, C, f), "pt_PT", e.B(B, E, i, ae, m, o, y, p, "pt_PT", w, l, T, b, h, C, f), "ro", e.B(B, E, i, "RON", m, S, y, p, "ro", w, l, _, b, h, C, f), "ru", e.B(B, E, i, "RUB", m, o, y, p, "ru", "не число", l, _, b, h, C, f), "si", e.B(R, E, S, "LKR", m, i, y, p, "si", w, l, T, b, h, "#", f), "sk", e.B(B, E, i, ae, "e", o, y, p, "sk", w, l, _, b, h, C, f), "sl", e.B(B, E, i, ae, "e", S, y, Ne, "sl", w, l, _, b, h, C, f), "sq", e.B(B, E, i, "ALL", m, o, y, p, "sq", w, l, T, b, h, C, f), "sr", e.B(B, E, i, "RSD", m, S, y, p, "sr", w, l, T, b, h, C, f), "sr_Latn", e.B(B, E, i, "RSD", m, S, y, p, "sr_Latn", w, l, T, b, h, C, f), "sv", e.B(B, E, i, "SEK", xe, o, y, Ne, "sv", w, l, _, b, h, C, f), "sw", e.B(U, E, S, "TZS", m, i, y, p, "sw", w, l, T, b, h, C, f), "ta", e.B(Fe, J, S, Oe, m, i, y, p, "ta", w, l, De, b, h, C, f), "te", e.B(Ie, J, S, Oe, m, i, y, p, "te", w, l, T, b, h, C, f), "th", e.B(R, E, S, "THB", m, i, y, p, "th", w, l, T, b, h, C, f), "tl", e.B(R, E, S, "PHP", m, i, y, p, "tl", w, l, T, b, h, C, f), "tr", e.B(R, E, i, "TRY", m, S, y, p, "tr", w, l, "%#,##0", b, h, C, f), "uk", e.B(B, E, i, "UAH", "Е", o, y, p, "uk", w, l, T, b, h, C, f), "ur", e.B(U, E, S, "PKR", m, i, y, D, "ur", w, l, T, b, k, C, f), "uz", e.B(B, E, i, "UZS", m, o, y, p, "uz", "son emas", l, T, b, h, C, f), "vi", e.B(B, E, i, "VND", m, S, y, p, "vi", w, l, T, b, h, C, f), "zh", e.B(R, E, S, "CNY", m, i, y, p, "zh", w, l, T, b, h, C, f), "zh_CN", e.B(R, E, S, "CNY", m, i, y, p, "zh_CN", w, l, T, b, h, C, f), "zh_HK", e.B(R, E, S, "HKD", m, i, y, p, "zh_HK", "非數值", l, T, b, h, C, f), "zh_TW", e.B(R, E, S, "TWD", m, i, y, p, "zh_TW", "非數值", l, T, b, h, C, f), "zu", e.B(R, E, S, "ZAR", m, i, y, p, "zu", w, l, T, b, h, C, f)], u.N, u.jM);
28324
+ var i = ",", o = " ", l = "%", f = "0", h = "+", p = "-", m = "E", b = "‰", y = "∞", w = "NaN", E = "#,##0.###", C = "#E0", T = "#,##0%", M = "¤#,##0.00", S = ".", k = "‎+", D = "‎-", Y = "ليس رقمًا", U = "¤ #,##0.00", B = "#,##0.00 ¤", _ = "#,##0 %", J = "#,##,##0.###", ae = "EUR", Ce = "USD", Ae = "¤ #,##0.00;¤-#,##0.00", Ee = "CHF", De = "#,##,##0%", Fe = "¤ #,##,##0.00", Oe = "INR", Ne = "−", xe = "×10^", Pe = "[#E0]", Ie = "¤#,##,##0.00", Ye = "‏#,##0.00 ¤;‏-#,##0.00 ¤";
28325
+ return e.v(["af", e.B(M, E, i, "ZAR", m, o, y, p, "af", w, l, T, b, h, C, f), "am", e.B(M, E, S, "ETB", m, i, y, p, "am", w, l, T, b, h, C, f), "ar", e.B(U, E, S, "EGP", m, i, y, D, "ar", Y, "‎%‎", T, b, k, C, f), "ar_DZ", e.B(U, E, i, "DZD", m, S, y, D, "ar_DZ", Y, "‎%‎", T, b, k, C, f), "ar_EG", e.B(B, E, "٫", "EGP", "اس", "٬", y, "؜-", "ar_EG", "ليس رقم", "٪؜", T, "؉", "؜+", C, "٠"), "az", e.B(B, E, i, "AZN", m, S, y, p, "az", w, l, T, b, h, C, f), "be", e.B(B, E, i, "BYN", m, o, y, p, "be", w, l, _, b, h, C, f), "bg", e.B("0.00 ¤", E, i, "BGN", m, o, y, p, "bg", w, l, T, b, h, C, f), "bn", e.B("#,##,##0.00¤", J, S, "BDT", m, i, y, p, "bn", w, l, T, b, h, C, "০"), "br", e.B(B, E, i, ae, m, o, y, p, "br", w, l, _, b, h, C, f), "bs", e.B(B, E, i, "BAM", m, S, y, p, "bs", w, l, _, b, h, C, f), "ca", e.B(B, E, i, ae, m, S, y, p, "ca", w, l, T, b, h, C, f), "chr", e.B(M, E, S, Ce, m, i, y, p, "chr", w, l, T, b, h, C, f), "cs", e.B(B, E, i, "CZK", m, o, y, p, "cs", w, l, _, b, h, C, f), "cy", e.B(M, E, S, "GBP", m, i, y, p, "cy", w, l, T, b, h, C, f), "da", e.B(B, E, i, "DKK", m, S, y, p, "da", w, l, _, b, h, C, f), "de", e.B(B, E, i, ae, m, S, y, p, "de", w, l, _, b, h, C, f), "de_AT", e.B(U, E, i, ae, m, o, y, p, "de_AT", w, l, _, b, h, C, f), "de_CH", e.B(Ae, E, S, Ee, m, "’", y, p, "de_CH", w, l, T, b, h, C, f), "el", e.B(B, E, i, ae, "e", S, y, p, "el", w, l, T, b, h, C, f), "en", e.B(M, E, S, Ce, m, i, y, p, "en", w, l, T, b, h, C, f), "en_AU", e.B(M, E, S, "AUD", "e", i, y, p, "en_AU", w, l, T, b, h, C, f), "en_CA", e.B(M, E, S, "CAD", "e", i, y, p, "en_CA", w, l, T, b, h, C, f), "en_GB", e.B(M, E, S, "GBP", m, i, y, p, "en_GB", w, l, T, b, h, C, f), "en_IE", e.B(M, E, S, ae, m, i, y, p, "en_IE", w, l, T, b, h, C, f), "en_IN", e.B(Fe, J, S, Oe, m, i, y, p, "en_IN", w, l, De, b, h, C, f), "en_MY", e.B(M, E, S, "MYR", m, i, y, p, "en_MY", w, l, T, b, h, C, f), "en_SG", e.B(M, E, S, "SGD", m, i, y, p, "en_SG", w, l, T, b, h, C, f), "en_US", e.B(M, E, S, Ce, m, i, y, p, "en_US", w, l, T, b, h, C, f), "en_ZA", e.B(M, E, i, "ZAR", m, o, y, p, "en_ZA", w, l, T, b, h, C, f), "es", e.B(B, E, i, ae, m, S, y, p, "es", w, l, _, b, h, C, f), "es_419", e.B(M, E, S, "MXN", m, i, y, p, "es_419", w, l, _, b, h, C, f), "es_ES", e.B(B, E, i, ae, m, S, y, p, "es_ES", w, l, _, b, h, C, f), "es_MX", e.B(M, E, S, "MXN", m, i, y, p, "es_MX", w, l, _, b, h, C, f), "es_US", e.B(M, E, S, Ce, m, i, y, p, "es_US", w, l, _, b, h, C, f), "et", e.B(B, E, i, ae, xe, o, y, Ne, "et", w, l, T, b, h, C, f), "eu", e.B(B, E, i, ae, m, S, y, Ne, "eu", w, l, "% #,##0", b, h, C, f), "fa", e.B("‎¤#,##0.00", E, "٫", "IRR", "×۱۰^", "٬", y, "‎−", "fa", "ناعدد", "٪", T, "؉", k, C, "۰"), "fi", e.B(B, E, i, ae, m, o, y, Ne, "fi", "epäluku", l, _, b, h, C, f), "fil", e.B(M, E, S, "PHP", m, i, y, p, "fil", w, l, T, b, h, C, f), "fr", e.B(B, E, i, ae, m, " ", y, p, "fr", w, l, _, b, h, C, f), "fr_CA", e.B(B, E, i, "CAD", m, o, y, p, "fr_CA", w, l, _, b, h, C, f), "fr_CH", e.B(B, E, i, Ee, m, " ", y, p, "fr_CH", w, l, T, b, h, C, f), "ga", e.B(M, E, S, ae, m, i, y, p, "ga", w, l, T, b, h, C, f), "gl", e.B(B, E, i, ae, m, S, y, p, "gl", w, l, _, b, h, C, f), "gsw", e.B(B, E, S, Ee, m, "’", y, Ne, "gsw", w, l, _, b, h, C, f), "gu", e.B(Ie, J, S, Oe, m, i, y, p, "gu", w, l, De, b, h, Pe, f), "haw", e.B(M, E, S, Ce, m, i, y, p, "haw", w, l, T, b, h, C, f), "he", e.B(Ye, E, S, "ILS", m, i, y, D, "he", w, l, T, b, k, C, f), "hi", e.B(Ie, J, S, Oe, m, i, y, p, "hi", w, l, De, b, h, Pe, f), "hr", e.B(B, E, i, "HRK", m, S, y, p, "hr", w, l, _, b, h, C, f), "hu", e.B(B, E, i, "HUF", m, o, y, p, "hu", w, l, T, b, h, C, f), "hy", e.B(B, E, i, "AMD", m, o, y, p, "hy", "ՈչԹ", l, T, b, h, C, f), "id", e.B(M, E, i, "IDR", m, S, y, p, "id", w, l, T, b, h, C, f), "in", e.B(M, E, i, "IDR", m, S, y, p, "in", w, l, T, b, h, C, f), "is", e.B(B, E, i, "ISK", m, S, y, p, "is", w, l, T, b, h, C, f), "it", e.B(B, E, i, ae, m, S, y, p, "it", w, l, T, b, h, C, f), "it_CH", e.B(Ae, E, S, Ee, m, "’", y, p, "it_CH", w, l, T, b, h, C, f), "iw", e.B(Ye, E, S, "ILS", m, i, y, D, "iw", w, l, T, b, k, C, f), "ja", e.B(M, E, S, "JPY", m, i, y, p, "ja", w, l, T, b, h, C, f), "ka", e.B(B, E, i, "GEL", m, o, y, p, "ka", "არ არის რიცხვი", l, T, b, h, C, f), "kk", e.B(B, E, i, "KZT", m, o, y, p, "kk", "сан емес", l, T, b, h, C, f), "km", e.B("#,##0.00¤", E, i, "KHR", m, S, y, p, "km", w, l, T, b, h, C, f), "kn", e.B(M, E, S, Oe, m, i, y, p, "kn", w, l, T, b, h, C, f), "ko", e.B(M, E, S, "KRW", m, i, y, p, "ko", w, l, T, b, h, C, f), "ky", e.B(B, E, i, "KGS", m, o, y, p, "ky", "сан эмес", l, T, b, h, C, f), "ln", e.B(B, E, i, "CDF", m, S, y, p, "ln", w, l, T, b, h, C, f), "lo", e.B("¤#,##0.00;¤-#,##0.00", E, i, "LAK", m, S, y, p, "lo", "ບໍ່​ແມ່ນ​ໂຕ​ເລກ", l, T, b, h, "#", f), "lt", e.B(B, E, i, ae, xe, o, y, Ne, "lt", w, l, _, b, h, C, f), "lv", e.B(B, E, i, ae, m, o, y, p, "lv", "NS", l, T, b, h, C, f), "mk", e.B(B, E, i, "MKD", m, S, y, p, "mk", w, l, T, b, h, C, f), "ml", e.B(M, J, S, Oe, m, i, y, p, "ml", w, l, T, b, h, C, f), "mn", e.B(U, E, S, "MNT", m, i, y, p, "mn", w, l, T, b, h, C, f), "mr", e.B(M, J, S, Oe, m, i, y, p, "mr", w, l, T, b, h, Pe, "०"), "ms", e.B(M, E, S, "MYR", m, i, y, p, "ms", w, l, T, b, h, C, f), "mt", e.B(M, E, S, ae, m, i, y, p, "mt", w, l, T, b, h, C, f), "my", e.B(B, E, S, "MMK", m, i, y, p, "my", "ဂဏန်းမဟုတ်သော", l, T, b, h, C, "၀"), "nb", e.B(U, E, i, "NOK", m, o, y, Ne, "nb", w, l, _, b, h, C, f), "ne", e.B(U, E, S, "NPR", m, i, y, p, "ne", w, l, T, b, h, C, "०"), "nl", e.B("¤ #,##0.00;¤ -#,##0.00", E, i, ae, m, S, y, p, "nl", w, l, T, b, h, C, f), "no", e.B(U, E, i, "NOK", m, o, y, Ne, "no", w, l, _, b, h, C, f), "no_NO", e.B(U, E, i, "NOK", m, o, y, Ne, "no_NO", w, l, _, b, h, C, f), "or", e.B(M, J, S, Oe, m, i, y, p, "or", w, l, T, b, h, C, f), "pa", e.B(Fe, J, S, Oe, m, i, y, p, "pa", w, l, De, b, h, Pe, f), "pl", e.B(B, E, i, "PLN", m, o, y, p, "pl", w, l, T, b, h, C, f), "ps", e.B(B, E, "٫", "AFN", "×۱۰^", "٬", y, "‎-‎", "ps", w, "٪", T, "؉", "‎+‎", C, "۰"), "pt", e.B(U, E, i, "BRL", m, S, y, p, "pt", w, l, T, b, h, C, f), "pt_BR", e.B(U, E, i, "BRL", m, S, y, p, "pt_BR", w, l, T, b, h, C, f), "pt_PT", e.B(B, E, i, ae, m, o, y, p, "pt_PT", w, l, T, b, h, C, f), "ro", e.B(B, E, i, "RON", m, S, y, p, "ro", w, l, _, b, h, C, f), "ru", e.B(B, E, i, "RUB", m, o, y, p, "ru", "не число", l, _, b, h, C, f), "si", e.B(M, E, S, "LKR", m, i, y, p, "si", w, l, T, b, h, "#", f), "sk", e.B(B, E, i, ae, "e", o, y, p, "sk", w, l, _, b, h, C, f), "sl", e.B(B, E, i, ae, "e", S, y, Ne, "sl", w, l, _, b, h, C, f), "sq", e.B(B, E, i, "ALL", m, o, y, p, "sq", w, l, T, b, h, C, f), "sr", e.B(B, E, i, "RSD", m, S, y, p, "sr", w, l, T, b, h, C, f), "sr_Latn", e.B(B, E, i, "RSD", m, S, y, p, "sr_Latn", w, l, T, b, h, C, f), "sv", e.B(B, E, i, "SEK", xe, o, y, Ne, "sv", w, l, _, b, h, C, f), "sw", e.B(U, E, S, "TZS", m, i, y, p, "sw", w, l, T, b, h, C, f), "ta", e.B(Fe, J, S, Oe, m, i, y, p, "ta", w, l, De, b, h, C, f), "te", e.B(Ie, J, S, Oe, m, i, y, p, "te", w, l, T, b, h, C, f), "th", e.B(M, E, S, "THB", m, i, y, p, "th", w, l, T, b, h, C, f), "tl", e.B(M, E, S, "PHP", m, i, y, p, "tl", w, l, T, b, h, C, f), "tr", e.B(M, E, i, "TRY", m, S, y, p, "tr", w, l, "%#,##0", b, h, C, f), "uk", e.B(B, E, i, "UAH", "Е", o, y, p, "uk", w, l, T, b, h, C, f), "ur", e.B(U, E, S, "PKR", m, i, y, D, "ur", w, l, T, b, k, C, f), "uz", e.B(B, E, i, "UZS", m, o, y, p, "uz", "son emas", l, T, b, h, C, f), "vi", e.B(B, E, i, "VND", m, S, y, p, "vi", w, l, T, b, h, C, f), "zh", e.B(M, E, S, "CNY", m, i, y, p, "zh", w, l, T, b, h, C, f), "zh_CN", e.B(M, E, S, "CNY", m, i, y, p, "zh_CN", w, l, T, b, h, C, f), "zh_HK", e.B(M, E, S, "HKD", m, i, y, p, "zh_HK", "非數值", l, T, b, h, C, f), "zh_TW", e.B(M, E, S, "TWD", m, i, y, p, "zh_TW", "非數值", l, T, b, h, C, f), "zu", e.B(M, E, S, "ZAR", m, i, y, p, "zu", w, l, T, b, h, C, f)], u.N, u.jM);
28326
28326
  }), r(A, "IC", "xA", () => e.yG("initializeDateFormatting(<locale>)", A.Bj(), e.R("fw"))), r(A, "J8", "xD", () => e.yG("initializeDateFormatting(<locale>)", a.hQ, e.R("f<b,b>"))), t(A, "J6", "mo", () => 48), t(A, "HT", "AG", () => e.w([e.bj("^'(?:[^']|'')*'"), e.bj("^(?:G+|y+|M+|k+|S+|E+|a+|h+|K+|H+|c+|L+|Q+|d+|D+|m+|s+|v+|z+|Z+)"), e.bj("^[^'GyMkSEahKHcLQdDmsvzZ]+")], e.R("Z<eY>"))), t(A, "Io", "AZ", () => e.bj("''")), t(A, "I3", "wr", () => e.Ho(2, 52)), t(A, "I2", "AJ", () => a.f.eT(e.vD(A.wr()) / e.vD(10))), t(A, "II", "xC", () => e.vD(10)), t(A, "IJ", "B7", () => e.vD(10)), t(A, "J5", "Bg", () => e.bj("^\\d+")), r(A, "Iw", "ws", () => e.v(["en", e.dE(a.j), "en_us", e.dE(a.j), "en_sg", e.dE(a.j), "en_au", e.dE(a.j), "en_ca", e.dE(a.j), "en_gb", e.dE(a.k), "en_ie", e.dE(a.k), "en_il", e.dE(a.j), "en_nz", e.dE(a.j), "es", e.wA(a.k), "es_do", e.wA(a.k), "es_us", e.wA(a.j), "fr", e.wD(a.k), "fr_ch", e.wD(a.k), "fr_ca", e.wD(a.j), "zh", e.yJ(a.j), "zh_cn", e.yJ(a.j), "zh_hk", e.yK(a.j), "zh_tw", e.yK(a.j), "de", e.n5(a.k), "de_de", e.n5(a.k), "de_at", e.n5(a.k), "de_ch", e.n5(a.k), "it", e.yg(a.k), "it_ch", e.yg(a.k), "ar", e.xM(!0, a.w), "ar_ly", e.xM(!1, a.w), "ar_dz", e.jh(!1, a.j), "ar_kw", e.jh(!1, a.j), "ar_sa", e.jh(!0, a.j), "ar_ma", e.jh(!1, a.w), "ar_tn", e.jh(!1, a.w), "az", new e.jk(a.k), "id", new e.jM(a.j), "ja", new e.jV(a.j), "ko", new e.k_(a.j), "ru", new e.kl(a.k), "uk", new e.kv(a.k), "hi", new e.jL(a.j), "pt", e.yA(a.k), "pt_br", e.yA(a.j), "pl", new e.kf(a.k), "tr", new e.ku(a.k), "sv", new e.kr(a.k), "nb", new e.k7(a.k), "fa", new e.jw(!0, a.w), "bn", new e.jl(a.j), "nl", new e.k8(a.k), "th", new e.kt(a.j)], u.N, e.R("am"))), t(A, "Jd", "Bk", () => e.bj("^(\\d+)\\.(\\d+)\\.(\\d+)(-([0-9A-Za-z-]+(\\.[0-9A-Za-z-]+)*))?(\\+([0-9A-Za-z-]+(\\.[0-9A-Za-z-]+)*))?")), t(A, "J7", "Bh", () => e.bj(A.Bk().a + "$")), t(A, "Ix", "B_", () => {
28327
28327
  var i = u.Y;
28328
28328
  return { recalculate: e.P(e.Gz(), i), populateBillItemsTax: e.P(e.Gx(), i), populateInHouseDeliveryTax: e.P(e.Gy(), i), collectItems: e.P(e.G4(), i), getCalculatorVersion: e.P(e.Gg(), i), getBillNumber: e.P(e.Gf(), i), generator: { bill: e.P(e.Gp(), i), billItem: e.P(e.Gq(), i), billSubItem: e.P(e.Gs(), i), billItemRef: e.P(e.Gr(), i) } };
@@ -28419,9 +28419,9 @@ Tn.clone = I0;
28419
28419
  Tn.randomString = j0;
28420
28420
  Tn.encode = S0;
28421
28421
  Tn.decode = O0;
28422
- Tn.hexStringToBase64 = R0;
28423
- Tn.base64ToHexString = M0;
28424
- const Ri = P0(es);
28422
+ Tn.hexStringToBase64 = M0;
28423
+ Tn.base64ToHexString = R0;
28424
+ const Mi = P0(es);
28425
28425
  function I0(s) {
28426
28426
  return JSON.parse(JSON.stringify(s));
28427
28427
  }
@@ -28433,16 +28433,16 @@ function j0(s = 10) {
28433
28433
  return c;
28434
28434
  }
28435
28435
  function S0(s) {
28436
- return Ri.default.Util.encode(s);
28436
+ return Mi.default.Util.encode(s);
28437
28437
  }
28438
28438
  function O0(s) {
28439
- return Ri.default.Util.decode(s);
28440
- }
28441
- function R0(s) {
28442
- return Ri.default.Util.hexStringToBase64(s);
28439
+ return Mi.default.Util.decode(s);
28443
28440
  }
28444
28441
  function M0(s) {
28445
- return Ri.default.Util.base64ToHexString(s);
28442
+ return Mi.default.Util.hexStringToBase64(s);
28443
+ }
28444
+ function R0(s) {
28445
+ return Mi.default.Util.base64ToHexString(s);
28446
28446
  }
28447
28447
  var k0 = Ke && Ke.__createBinding || (Object.create ? function(s, c, d, v) {
28448
28448
  v === void 0 && (v = d);
@@ -28495,7 +28495,7 @@ const V0 = { class: "h-full flex flex-col" }, L0 = { class: "flex flex-col gap-y
28495
28495
  show: V,
28496
28496
  hide: Z
28497
28497
  });
28498
- const M = d;
28498
+ const R = d;
28499
28499
  function V(L, te) {
28500
28500
  z.value = et.utils.clone(L), F.value = te, I.value = !0, v.value = !0;
28501
28501
  }
@@ -28508,7 +28508,7 @@ const V0 = { class: "h-full flex flex-col" }, L0 = { class: "flex flex-col gap-y
28508
28508
  };
28509
28509
  }
28510
28510
  function ue() {
28511
- Z(), M("onComplete", z.value);
28511
+ Z(), R("onComplete", z.value);
28512
28512
  }
28513
28513
  const G = sr(), ee = Xe(() => {
28514
28514
  const L = G.exemptedTax;
@@ -28522,10 +28522,10 @@ const V0 = { class: "h-full flex flex-col" }, L0 = { class: "flex flex-col gap-y
28522
28522
  "dismiss-away": "",
28523
28523
  "max-width": 560
28524
28524
  }, {
28525
- "side-sheet-header": Re(() => [...te[4] || (te[4] = [
28525
+ "side-sheet-header": Me(() => [...te[4] || (te[4] = [
28526
28526
  K("span", { class: "fm-typo-en-title-md-800" }, "Item settings", -1)
28527
28527
  ])]),
28528
- "side-sheet-footer": Re(() => [
28528
+ "side-sheet-footer": Me(() => [
28529
28529
  K("div", Z0, [
28530
28530
  se(de, {
28531
28531
  variant: "primary",
@@ -28541,7 +28541,7 @@ const V0 = { class: "h-full flex flex-col" }, L0 = { class: "flex flex-col gap-y
28541
28541
  })
28542
28542
  ])
28543
28543
  ]),
28544
- default: Re(() => [
28544
+ default: Me(() => [
28545
28545
  K("div", V0, [
28546
28546
  K("div", L0, [
28547
28547
  K("div", H0, [
@@ -28610,7 +28610,7 @@ const V0 = { class: "h-full flex flex-col" }, L0 = { class: "flex flex-col gap-y
28610
28610
  show: V,
28611
28611
  hide: Z
28612
28612
  });
28613
- const v = d, z = sr(), F = ke(!1), j = ke(), I = ke(), N = cn(), M = ke(!1);
28613
+ const v = d, z = sr(), F = ke(!1), j = ke(), I = ke(), N = cn(), R = ke(!1);
28614
28614
  function V(re) {
28615
28615
  I.value = re, oe(), F.value = !0;
28616
28616
  }
@@ -28636,7 +28636,7 @@ const V0 = { class: "h-full flex flex-col" }, L0 = { class: "flex flex-col gap-y
28636
28636
  }
28637
28637
  async function fe() {
28638
28638
  var H, X;
28639
- M.value = !0;
28639
+ R.value = !0;
28640
28640
  let re = [];
28641
28641
  try {
28642
28642
  I.value && ((H = G.value) != null && H.length) && (re = await pt.copyProfile(
@@ -28653,7 +28653,7 @@ const V0 = { class: "h-full flex flex-col" }, L0 = { class: "flex flex-col gap-y
28653
28653
  type: "error"
28654
28654
  });
28655
28655
  } finally {
28656
- M.value = !1;
28656
+ R.value = !1;
28657
28657
  }
28658
28658
  }
28659
28659
  return (re, H) => {
@@ -28664,24 +28664,24 @@ const V0 = { class: "h-full flex flex-col" }, L0 = { class: "flex flex-col gap-y
28664
28664
  "dismiss-away": "",
28665
28665
  "max-width": 560
28666
28666
  }, {
28667
- "side-sheet-header": Re(() => [...H[2] || (H[2] = [
28667
+ "side-sheet-header": Me(() => [...H[2] || (H[2] = [
28668
28668
  K("span", { class: "fm-typo-en-title-md-800" }, "Copy profile", -1)
28669
28669
  ])]),
28670
- "side-sheet-footer": Re(() => [
28670
+ "side-sheet-footer": Me(() => [
28671
28671
  K("div", rh, [
28672
28672
  se(we, {
28673
28673
  variant: "primary",
28674
28674
  size: "lg",
28675
28675
  label: "Copy profile",
28676
- disabled: M.value,
28676
+ disabled: R.value,
28677
28677
  onClick: H[0] || (H[0] = () => fe())
28678
28678
  }, null, 8, ["disabled"])
28679
28679
  ])
28680
28680
  ]),
28681
- default: Re(() => {
28681
+ default: Me(() => {
28682
28682
  var Ue;
28683
28683
  return [
28684
- M.value ? (ze(), We("div", Q0, [
28684
+ R.value ? (ze(), We("div", Q0, [
28685
28685
  se(X, { size: "xxl" }),
28686
28686
  H[3] || (H[3] = K("div", null, "Copying profile", -1))
28687
28687
  ])) : rt("", !0),
@@ -28694,7 +28694,7 @@ const V0 = { class: "h-full flex flex-col" }, L0 = { class: "flex flex-col gap-y
28694
28694
  ref_key: "formRef",
28695
28695
  ref: j
28696
28696
  }, {
28697
- default: Re(() => [
28697
+ default: Me(() => [
28698
28698
  K("div", $0, [
28699
28699
  H[5] || (H[5] = K("div", { class: "fm-typo-en-body-lg-600" }, "To", -1)),
28700
28700
  K("div", J0, [
@@ -28970,16 +28970,16 @@ const ph = {
28970
28970
  })), j = Object.values(et.EInvoice.msicList()).map((g) => ({
28971
28971
  label: `${g.code} ${g.description}`,
28972
28972
  value: g.code
28973
- })), I = ke(!1), N = ke(), M = ke(), V = ke();
28973
+ })), I = ke(!1), N = ke(), R = ke(), V = ke();
28974
28974
  function Z(g) {
28975
28975
  V.value = g, oe(), I.value = !0;
28976
28976
  }
28977
28977
  function oe() {
28978
- M.value = et.utils.clone(V.value), L();
28978
+ R.value = et.utils.clone(V.value), L();
28979
28979
  }
28980
28980
  const ue = bo(), G = ke(!1);
28981
28981
  async function ee() {
28982
- const g = M.value;
28982
+ const g = R.value;
28983
28983
  g != null && g.tinNo && (g != null && g.regNo) ? ue.open({
28984
28984
  title: "Create Zero Sales Submission",
28985
28985
  primaryActions: { text: "Submit", close: !0 },
@@ -29022,39 +29022,39 @@ ${e}`,
29022
29022
  });
29023
29023
  }
29024
29024
  function L() {
29025
- if (!M.value) return;
29026
- M.value.msicCode || (M.value.msicCode = j[0].value);
29027
- const g = M.value.address.state.trim();
29025
+ if (!R.value) return;
29026
+ R.value.msicCode || (R.value.msicCode = j[0].value);
29027
+ const g = R.value.address.state.trim();
29028
29028
  F.find(
29029
29029
  (a) => a.label.toLowerCase().includes(g.toLowerCase())
29030
- ) || (M.value.address.state = F[1].value), M.value.address.country = "MALAYSIA", (!M.value.schedule || M.value.schedule.day < 2 || M.value.schedule.day > 7) && (M.value.schedule = { day: 2, hour: 1 });
29030
+ ) || (R.value.address.state = F[1].value), R.value.address.country = "MALAYSIA", (!R.value.schedule || R.value.schedule.day < 2 || R.value.schedule.day > 7) && (R.value.schedule = { day: 2, hour: 1 });
29031
29031
  }
29032
29032
  function te(g) {
29033
29033
  var e;
29034
- M.value && (M.value.active = g ? ((e = V.value) == null ? void 0 : e.active) || Je().startOf("day").toISOString() : null);
29034
+ R.value && (R.value.active = g ? ((e = V.value) == null ? void 0 : e.active) || Je().startOf("day").toISOString() : null);
29035
29035
  }
29036
29036
  function fe(g) {
29037
- M.value && (M.value.active = Je(g, "YYYY-MM-DD").startOf("day").toISOString());
29037
+ R.value && (R.value.active = Je(g, "YYYY-MM-DD").startOf("day").toISOString());
29038
29038
  }
29039
29039
  function re(g) {
29040
- M.value && (M.value.schedule = { day: g, hour: 1 });
29040
+ R.value && (R.value.schedule = { day: g, hour: 1 });
29041
29041
  }
29042
29042
  const H = Xe(() => {
29043
29043
  var g;
29044
- return Je((g = M.value) == null ? void 0 : g.active).format("YYYY-MM-DD");
29044
+ return Je((g = R.value) == null ? void 0 : g.active).format("YYYY-MM-DD");
29045
29045
  });
29046
29046
  function X() {
29047
29047
  I.value = !1;
29048
29048
  }
29049
29049
  const de = ke(!1), ge = Xe(() => de.value ? "Saving profile" : "Save profile"), we = Xe(() => {
29050
29050
  var g;
29051
- return !(((g = M.value) == null ? void 0 : g._id) ?? "").length;
29051
+ return !(((g = R.value) == null ? void 0 : g._id) ?? "").length;
29052
29052
  });
29053
29053
  async function Ze() {
29054
- if (M.value) {
29054
+ if (R.value) {
29055
29055
  de.value = !0;
29056
29056
  try {
29057
- M.value = we.value ? await pt.createProfile(M.value) : await pt.updateProfile(M.value), v("onCompleted"), z.open({
29057
+ R.value = we.value ? await pt.createProfile(R.value) : await pt.updateProfile(R.value), v("onCompleted"), z.open({
29058
29058
  title: "Profile saved",
29059
29059
  type: "success"
29060
29060
  }), X();
@@ -29071,13 +29071,13 @@ ${e}`,
29071
29071
  }
29072
29072
  const Ue = Xe(() => {
29073
29073
  var ve, u;
29074
- const g = (ve = M.value) == null ? void 0 : ve.active;
29074
+ const g = (ve = R.value) == null ? void 0 : ve.active;
29075
29075
  if (g == null)
29076
29076
  return null;
29077
29077
  const e = /* @__PURE__ */ new Date(), a = new Date(g), me = vu({
29078
29078
  today: e,
29079
29079
  activationDate: a,
29080
- schedule: ((u = M.value) == null ? void 0 : u.schedule) ?? { day: 2, hour: 1 }
29080
+ schedule: ((u = R.value) == null ? void 0 : u.schedule) ?? { day: 2, hour: 1 }
29081
29081
  }), A = yu({
29082
29082
  submissionDate: me,
29083
29083
  activationDate: a
@@ -29103,10 +29103,10 @@ ${e}`,
29103
29103
  "dismiss-away": "",
29104
29104
  "max-width": 560
29105
29105
  }, {
29106
- "side-sheet-header": Re(() => [...e[17] || (e[17] = [
29106
+ "side-sheet-header": Me(() => [...e[17] || (e[17] = [
29107
29107
  K("span", { class: "fm-typo-en-title-md-800" }, "Update profile", -1)
29108
29108
  ])]),
29109
- "side-sheet-footer": Re(() => [
29109
+ "side-sheet-footer": Me(() => [
29110
29110
  K("div", Ch, [
29111
29111
  se(r, {
29112
29112
  variant: "primary",
@@ -29129,17 +29129,17 @@ ${e}`,
29129
29129
  }, null, 8, ["loading", "disabled"]))
29130
29130
  ])
29131
29131
  ]),
29132
- default: Re(() => [
29132
+ default: Me(() => [
29133
29133
  de.value ? (ze(), We("div", ph, [
29134
29134
  se(a, { size: "xxl" }),
29135
29135
  e[18] || (e[18] = K("div", null, "Saving profile", -1))
29136
- ])) : M.value ? (ze(), _e(t, {
29136
+ ])) : R.value ? (ze(), _e(t, {
29137
29137
  key: 1,
29138
29138
  ref_key: "formRef",
29139
29139
  ref: N,
29140
29140
  onValidationSuccess: Ze
29141
29141
  }, {
29142
- default: Re(() => {
29142
+ default: Me(() => {
29143
29143
  var o, l, f, h, p;
29144
29144
  return [
29145
29145
  K("div", gh, [
@@ -29155,7 +29155,7 @@ ${e}`,
29155
29155
  K("div", bh, [
29156
29156
  K("div", null, [
29157
29157
  se(A, {
29158
- "model-value": !!M.value.active,
29158
+ "model-value": !!R.value.active,
29159
29159
  value: !0,
29160
29160
  disabled: !be.value,
29161
29161
  "onUpdate:modelValue": te
@@ -29163,15 +29163,15 @@ ${e}`,
29163
29163
  ]),
29164
29164
  K("div", vh, [
29165
29165
  e[19] || (e[19] = K("div", { class: "fm-typo-en-body-lg-600" }, "Start consolidate submission", -1)),
29166
- M.value.active ? (ze(), _e(le, {
29166
+ R.value.active ? (ze(), _e(le, {
29167
29167
  key: 0,
29168
29168
  disabled: !be.value,
29169
29169
  "model-value": H.value,
29170
29170
  "onUpdate:modelValue": fe
29171
29171
  }, null, 8, ["disabled", "model-value"])) : rt("", !0),
29172
- M.value.active ? (ze(), _e(ve, {
29172
+ R.value.active ? (ze(), _e(ve, {
29173
29173
  key: 1,
29174
- "model-value": ((l = (o = M.value) == null ? void 0 : o.schedule) == null ? void 0 : l.day) ?? 2,
29174
+ "model-value": ((l = (o = R.value) == null ? void 0 : o.schedule) == null ? void 0 : l.day) ?? 2,
29175
29175
  disabled: !be.value,
29176
29176
  label: "Every month on",
29177
29177
  items: [
@@ -29187,50 +29187,50 @@ ${e}`,
29187
29187
  ],
29188
29188
  "onUpdate:modelValue": e[0] || (e[0] = (m) => re(m))
29189
29189
  }, null, 8, ["model-value", "disabled", "rules"])) : rt("", !0),
29190
- M.value.active ? (ze(), We("div", yh, [
29190
+ R.value.active ? (ze(), We("div", yh, [
29191
29191
  K("div", null, " Next valid submission date: " + lt((f = Ue.value) == null ? void 0 : f.nextSubmissionDate), 1),
29192
29192
  K("div", null, " Submission sales range: " + lt((h = Ue.value) == null ? void 0 : h.salesDateRange.startDate) + " - " + lt((p = Ue.value) == null ? void 0 : p.salesDateRange.endDate), 1)
29193
29193
  ])) : rt("", !0)
29194
29194
  ])
29195
29195
  ])
29196
29196
  ]),
29197
- M.value ? (ze(), We("div", wh, [
29197
+ R.value ? (ze(), We("div", wh, [
29198
29198
  e[21] || (e[21] = K("div", { class: "fm-typo-en-title-sm-800" }, "General Info", -1)),
29199
29199
  se(u, {
29200
- modelValue: M.value.name,
29201
- "onUpdate:modelValue": e[1] || (e[1] = (m) => M.value.name = m),
29200
+ modelValue: R.value.name,
29201
+ "onUpdate:modelValue": e[1] || (e[1] = (m) => R.value.name = m),
29202
29202
  label: "Restaurant Name",
29203
29203
  "label-mark": "required",
29204
29204
  rules: [nt(pu)()]
29205
29205
  }, null, 8, ["modelValue", "rules"]),
29206
29206
  se(n, {
29207
- "model-value": M.value.phoneNo || "",
29207
+ "model-value": R.value.phoneNo || "",
29208
29208
  "default-country": "MY",
29209
29209
  "extra-country-codes": je.value,
29210
29210
  label: "Phone no",
29211
29211
  "label-mark": "required",
29212
- "onUpdate:modelValue": e[2] || (e[2] = (m) => M.value.phoneNo = nt(hu)(m)),
29212
+ "onUpdate:modelValue": e[2] || (e[2] = (m) => R.value.phoneNo = nt(hu)(m)),
29213
29213
  rules: [nt(gu)()]
29214
29214
  }, null, 8, ["model-value", "extra-country-codes", "rules"]),
29215
29215
  se(u, {
29216
- "model-value": M.value.email,
29216
+ "model-value": R.value.email,
29217
29217
  label: "Email",
29218
29218
  type: "email",
29219
29219
  inputmode: "email",
29220
- "onUpdate:modelValue": e[3] || (e[3] = (m) => M.value.email = nt(ns)(m)),
29220
+ "onUpdate:modelValue": e[3] || (e[3] = (m) => R.value.email = nt(ns)(m)),
29221
29221
  rules: [nt(rs)()]
29222
29222
  }, null, 8, ["model-value", "rules"]),
29223
29223
  se(u, {
29224
- modelValue: M.value.tinNo,
29225
- "onUpdate:modelValue": e[4] || (e[4] = (m) => M.value.tinNo = m),
29224
+ modelValue: R.value.tinNo,
29225
+ "onUpdate:modelValue": e[4] || (e[4] = (m) => R.value.tinNo = m),
29226
29226
  label: "TIN no.",
29227
29227
  "label-mark": "required",
29228
29228
  "helper-text": "e.g. IG115002000 (Sole prop TIN), C20880050010 (Company TIN)",
29229
29229
  rules: [nt(hh)()]
29230
29230
  }, null, 8, ["modelValue", "rules"]),
29231
29231
  se(ve, {
29232
- modelValue: M.value.msicCode,
29233
- "onUpdate:modelValue": e[5] || (e[5] = (m) => M.value.msicCode = m),
29232
+ modelValue: R.value.msicCode,
29233
+ "onUpdate:modelValue": e[5] || (e[5] = (m) => R.value.msicCode = m),
29234
29234
  label: "MSIC code",
29235
29235
  searchable: "",
29236
29236
  "search-target": "label",
@@ -29238,8 +29238,8 @@ ${e}`,
29238
29238
  items: nt(j)
29239
29239
  }, null, 8, ["modelValue", "items"]),
29240
29240
  se(u, {
29241
- modelValue: M.value.regNo,
29242
- "onUpdate:modelValue": e[6] || (e[6] = (m) => M.value.regNo = m),
29241
+ modelValue: R.value.regNo,
29242
+ "onUpdate:modelValue": e[6] || (e[6] = (m) => R.value.regNo = m),
29243
29243
  label: "Register no.",
29244
29244
  "label-mark": "required",
29245
29245
  rules: [
@@ -29247,8 +29247,8 @@ ${e}`,
29247
29247
  ]
29248
29248
  }, null, 8, ["modelValue", "rules"]),
29249
29249
  se(u, {
29250
- modelValue: M.value.sstRegNo,
29251
- "onUpdate:modelValue": e[7] || (e[7] = (m) => M.value.sstRegNo = m),
29250
+ modelValue: R.value.sstRegNo,
29251
+ "onUpdate:modelValue": e[7] || (e[7] = (m) => R.value.sstRegNo = m),
29252
29252
  label: "SST Register no.",
29253
29253
  "helper-text": "e.g. A01-2345-67891012;A01-2345-67891012",
29254
29254
  rules: [nt(fh)()]
@@ -29257,46 +29257,46 @@ ${e}`,
29257
29257
  K("div", zh, [
29258
29258
  e[22] || (e[22] = K("div", { class: "fm-typo-en-title-sm-800" }, "Address", -1)),
29259
29259
  se(u, {
29260
- modelValue: M.value.address.line1,
29261
- "onUpdate:modelValue": e[8] || (e[8] = (m) => M.value.address.line1 = m),
29260
+ modelValue: R.value.address.line1,
29261
+ "onUpdate:modelValue": e[8] || (e[8] = (m) => R.value.address.line1 = m),
29262
29262
  label: "Line 1",
29263
29263
  "label-mark": "required",
29264
29264
  rules: [nt(Ua)(!0)]
29265
29265
  }, null, 8, ["modelValue", "rules"]),
29266
29266
  se(u, {
29267
- modelValue: M.value.address.line2,
29268
- "onUpdate:modelValue": e[9] || (e[9] = (m) => M.value.address.line2 = m),
29267
+ modelValue: R.value.address.line2,
29268
+ "onUpdate:modelValue": e[9] || (e[9] = (m) => R.value.address.line2 = m),
29269
29269
  label: "Line 2",
29270
29270
  rules: [nt(Ua)(!1)]
29271
29271
  }, null, 8, ["modelValue", "rules"]),
29272
29272
  K("div", Eh, [
29273
29273
  se(u, {
29274
- modelValue: M.value.address.city,
29275
- "onUpdate:modelValue": e[10] || (e[10] = (m) => M.value.address.city = m),
29274
+ modelValue: R.value.address.city,
29275
+ "onUpdate:modelValue": e[10] || (e[10] = (m) => R.value.address.city = m),
29276
29276
  label: "City",
29277
29277
  class: "grow",
29278
29278
  "label-mark": "required",
29279
29279
  rules: [nt(Au)()]
29280
29280
  }, null, 8, ["modelValue", "rules"]),
29281
29281
  se(u, {
29282
- "model-value": M.value.address.postcode,
29282
+ "model-value": R.value.address.postcode,
29283
29283
  label: "Postcode",
29284
29284
  "label-mark": "required",
29285
- "onUpdate:modelValue": e[11] || (e[11] = (m) => M.value.address.postcode = nt(mu)(m)),
29286
- rules: [nt(bu)(M.value.address.country)]
29285
+ "onUpdate:modelValue": e[11] || (e[11] = (m) => R.value.address.postcode = nt(mu)(m)),
29286
+ rules: [nt(bu)(R.value.address.country)]
29287
29287
  }, null, 8, ["model-value", "rules"])
29288
29288
  ]),
29289
29289
  se(ve, {
29290
- modelValue: M.value.address.state,
29291
- "onUpdate:modelValue": e[12] || (e[12] = (m) => M.value.address.state = m),
29290
+ modelValue: R.value.address.state,
29291
+ "onUpdate:modelValue": e[12] || (e[12] = (m) => R.value.address.state = m),
29292
29292
  label: "State",
29293
29293
  "label-mark": "required",
29294
29294
  items: nt(F),
29295
29295
  rules: [(m) => !!m || "State is required"]
29296
29296
  }, null, 8, ["modelValue", "items", "rules"]),
29297
29297
  se(u, {
29298
- modelValue: M.value.address.country,
29299
- "onUpdate:modelValue": e[13] || (e[13] = (m) => M.value.address.country = m),
29298
+ modelValue: R.value.address.country,
29299
+ "onUpdate:modelValue": e[13] || (e[13] = (m) => R.value.address.country = m),
29300
29300
  label: "Country",
29301
29301
  disabled: "",
29302
29302
  rules: [(m) => !!m || "Country is required"]
@@ -29312,7 +29312,7 @@ ${e}`,
29312
29312
  }, 8, ["modelValue"]);
29313
29313
  };
29314
29314
  }
29315
- }), Th = { class: "mb-40" }, Ph = { class: "mb-40 flex flex-col" }, Ih = { class: "grow" }, jh = { class: "fm-typo-en-body-sm-400 text-fm-color-typo-secondary" }, Sh = { class: "flex items-end space-x-16" }, Oh = { class: "grow" }, Rh = { class: "fm-typo-en-body-sm-400 text-fm-color-typo-secondary" }, Mh = { class: "flex flex-col items-end" }, kh = { class: "flex flex-col items-end" }, Dh = { class: "flex flex-col items-end" }, Nh = /* @__PURE__ */ It({
29315
+ }), Th = { class: "mb-40" }, Ph = { class: "mb-40 flex flex-col" }, Ih = { class: "grow" }, jh = { class: "fm-typo-en-body-sm-400 text-fm-color-typo-secondary" }, Sh = { class: "flex items-end space-x-16" }, Oh = { class: "grow" }, Mh = { class: "fm-typo-en-body-sm-400 text-fm-color-typo-secondary" }, Rh = { class: "flex flex-col items-end" }, kh = { class: "flex flex-col items-end" }, Dh = { class: "flex flex-col items-end" }, Nh = /* @__PURE__ */ It({
29316
29316
  __name: "MalaysiaSettingDialog",
29317
29317
  setup(s, { expose: c }) {
29318
29318
  c({
@@ -29324,7 +29324,7 @@ ${e}`,
29324
29324
  }
29325
29325
  });
29326
29326
  const d = ke(!1), v = ke(), z = ke(), F = sr(), j = Xe(() => F.restaurants), I = Xe(() => F.marketing), N = cn();
29327
- async function M() {
29327
+ async function R() {
29328
29328
  let H = "";
29329
29329
  try {
29330
29330
  H = N.open({
@@ -29404,10 +29404,10 @@ ${e}`,
29404
29404
  "dismiss-away": "",
29405
29405
  "max-width": 560
29406
29406
  }, {
29407
- "side-sheet-header": Re(() => [...X[2] || (X[2] = [
29407
+ "side-sheet-header": Me(() => [...X[2] || (X[2] = [
29408
29408
  K("span", { class: "fm-typo-en-title-md-800" }, "E-invoice integration", -1)
29409
29409
  ])]),
29410
- default: Re(() => [
29410
+ default: Me(() => [
29411
29411
  K("div", Th, [
29412
29412
  se(de, {
29413
29413
  description: "We will consolidate your sales and submit e-invoice every month.",
@@ -29421,14 +29421,14 @@ ${e}`,
29421
29421
  class: "w-full",
29422
29422
  separator: ""
29423
29423
  }, {
29424
- default: Re(() => [
29424
+ default: Me(() => [
29425
29425
  (ze(!0), We(mt, null, yt(j.value, (je) => (ze(), _e(Ze, {
29426
29426
  key: je.id,
29427
29427
  label: je.name,
29428
29428
  tag: "label",
29429
29429
  onClick: () => Z(je)
29430
29430
  }, {
29431
- prepend: Re(() => [
29431
+ prepend: Me(() => [
29432
29432
  je.thumbnail ? (ze(), _e(ge, {
29433
29433
  key: 0,
29434
29434
  src: je.thumbnail,
@@ -29439,7 +29439,7 @@ ${e}`,
29439
29439
  size: "lg"
29440
29440
  }, null, 8, ["name"]))
29441
29441
  ]),
29442
- default: Re(() => [
29442
+ default: Me(() => [
29443
29443
  K("div", Ih, [
29444
29444
  K("div", null, lt(je.name), 1),
29445
29445
  K("div", jh, lt(je.profile.active ? "Activated" : "Not activated"), 1)
@@ -29461,18 +29461,18 @@ ${e}`,
29461
29461
  tag: "label",
29462
29462
  onClick: X[0] || (X[0] = () => Z(I.value))
29463
29463
  }, {
29464
- prepend: Re(() => [
29464
+ prepend: Me(() => [
29465
29465
  se(ge, {
29466
29466
  name: "Marketing store",
29467
29467
  size: "lg"
29468
29468
  })
29469
29469
  ]),
29470
- default: Re(() => [
29470
+ default: Me(() => [
29471
29471
  K("div", Oh, [
29472
29472
  X[3] || (X[3] = K("div", null, "Marketing store", -1)),
29473
- K("div", Rh, lt(I.value.profile.active ? "Activated" : "Not activated"), 1)
29473
+ K("div", Mh, lt(I.value.profile.active ? "Activated" : "Not activated"), 1)
29474
29474
  ]),
29475
- K("div", Mh, [
29475
+ K("div", Rh, [
29476
29476
  se(we, { name: "edit" })
29477
29477
  ])
29478
29478
  ]),
@@ -29489,19 +29489,19 @@ ${e}`,
29489
29489
  class: "w-full",
29490
29490
  separator: ""
29491
29491
  }, {
29492
- default: Re(() => [
29492
+ default: Me(() => [
29493
29493
  se(Ze, {
29494
29494
  label: "Menu items",
29495
29495
  tag: "label",
29496
29496
  onClick: ee
29497
29497
  }, {
29498
- prepend: Re(() => [
29498
+ prepend: Me(() => [
29499
29499
  se(ge, {
29500
29500
  name: "Marketing store",
29501
29501
  size: "lg"
29502
29502
  })
29503
29503
  ]),
29504
- default: Re(() => [
29504
+ default: Me(() => [
29505
29505
  X[6] || (X[6] = K("div", { class: "grow" }, [
29506
29506
  K("div", null, "Menu items"),
29507
29507
  K("div", { class: "fm-typo-en-body-sm-400 text-fm-color-typo-secondary" }, " Configure exempted tax reason for your menu items ")
@@ -29518,13 +29518,13 @@ ${e}`,
29518
29518
  tag: "label",
29519
29519
  onClick: L
29520
29520
  }, {
29521
- prepend: Re(() => [
29521
+ prepend: Me(() => [
29522
29522
  se(ge, {
29523
29523
  name: "Marketing bundle",
29524
29524
  size: "lg"
29525
29525
  })
29526
29526
  ]),
29527
- default: Re(() => [
29527
+ default: Me(() => [
29528
29528
  X[7] || (X[7] = K("div", { class: "grow" }, [
29529
29529
  K("div", null, "Marketing bundle"),
29530
29530
  K("div", { class: "fm-typo-en-body-sm-400 text-fm-color-typo-secondary" }, " Configure exempted tax reason for your marketing bundles ")
@@ -29545,7 +29545,7 @@ ${e}`,
29545
29545
  se(Fh, {
29546
29546
  ref_key: "eInvoiceSettingDialogRef",
29547
29547
  ref: v,
29548
- onOnCompleted: M
29548
+ onOnCompleted: R
29549
29549
  }, null, 512),
29550
29550
  se(ts, {
29551
29551
  ref_key: "eInvoiceCopyDialogRef",
@@ -29641,7 +29641,7 @@ function Vh(s) {
29641
29641
  title: "Documents",
29642
29642
  value: `${((L = s == null ? void 0 : s.pf_documents) == null ? void 0 : L.length) ?? 0}`
29643
29643
  }
29644
- ], { name: v, regNo: z, tinNo: F, phoneNo: j, email: I, address: N } = s.merchant, M = [
29644
+ ], { name: v, regNo: z, tinNo: F, phoneNo: j, email: I, address: N } = s.merchant, R = [
29645
29645
  {
29646
29646
  title: "Name",
29647
29647
  value: v
@@ -29676,7 +29676,7 @@ function Vh(s) {
29676
29676
  raw: s,
29677
29677
  submissionSummary: c,
29678
29678
  submissionDetails: d,
29679
- merchant: M,
29679
+ merchant: R,
29680
29680
  customer: V,
29681
29681
  formatDocuments: () => (s.pf_documents ?? []).map((te) => xh(te)),
29682
29682
  sendEmail: (te) => {
@@ -29921,8 +29921,8 @@ function cr(s) {
29921
29921
  return /[,\n\r"]/.test(d) ? `"${d}"` : d;
29922
29922
  }
29923
29923
  function Gh(s) {
29924
- var I, N, M;
29925
- const c = ((I = s.formatDocuments) == null ? void 0 : I.call(s)) ?? [], d = (((M = (N = c[0]) == null ? void 0 : N.bills) == null ? void 0 : M[0]) ?? []).map((V) => cr(V.title)).join(","), v = c.reduce((V, { bills: Z }) => [
29924
+ var I, N, R;
29925
+ const c = ((I = s.formatDocuments) == null ? void 0 : I.call(s)) ?? [], d = (((R = (N = c[0]) == null ? void 0 : N.bills) == null ? void 0 : R[0]) ?? []).map((V) => cr(V.title)).join(","), v = c.reduce((V, { bills: Z }) => [
29926
29926
  ...V,
29927
29927
  ...(Z ?? []).map(
29928
29928
  (oe) => oe.map((ue) => cr(ue.value)).join(",")
@@ -29977,28 +29977,28 @@ const wu = new Xh(), Yh = {
29977
29977
  show: Z,
29978
29978
  hide: G
29979
29979
  });
29980
- const v = d, z = cn(), { enabledCountries: F, currentCountry: j } = At(), I = ke(!1), N = ke(), M = ke(), V = ke();
29980
+ const v = d, z = cn(), { enabledCountries: F, currentCountry: j } = At(), I = ke(!1), N = ke(), R = ke(), V = ke();
29981
29981
  function Z(re) {
29982
29982
  V.value = re, oe(), I.value = !0;
29983
29983
  }
29984
29984
  function oe() {
29985
- M.value = et.utils.clone(V.value), ue();
29985
+ R.value = et.utils.clone(V.value), ue();
29986
29986
  }
29987
29987
  function ue() {
29988
- M.value && (M.value.address.country = "THAILAND");
29988
+ R.value && (R.value.address.country = "THAILAND");
29989
29989
  }
29990
29990
  function G() {
29991
29991
  I.value = !1;
29992
29992
  }
29993
29993
  const ee = ke(!1), L = Xe(() => ee.value ? "Saving profile" : "Save profile"), te = Xe(() => {
29994
29994
  var re;
29995
- return !(((re = M.value) == null ? void 0 : re._id) ?? "").length;
29995
+ return !(((re = R.value) == null ? void 0 : re._id) ?? "").length;
29996
29996
  });
29997
29997
  async function fe() {
29998
- if (M.value) {
29998
+ if (R.value) {
29999
29999
  ee.value = !0;
30000
30000
  try {
30001
- M.value = te.value ? await pt.createProfile(M.value) : await pt.updateProfile(M.value), v("onCompleted"), z.open({
30001
+ R.value = te.value ? await pt.createProfile(R.value) : await pt.updateProfile(R.value), v("onCompleted"), z.open({
30002
30002
  title: "Profile saved",
30003
30003
  type: "success"
30004
30004
  }), G();
@@ -30021,10 +30021,10 @@ const wu = new Xh(), Yh = {
30021
30021
  "dismiss-away": "",
30022
30022
  "max-width": 560
30023
30023
  }, {
30024
- "side-sheet-header": Re(() => [...H[13] || (H[13] = [
30024
+ "side-sheet-header": Me(() => [...H[13] || (H[13] = [
30025
30025
  K("span", { class: "fm-typo-en-title-md-800" }, "Update profile", -1)
30026
30026
  ])]),
30027
- "side-sheet-footer": Re(() => [
30027
+ "side-sheet-footer": Me(() => [
30028
30028
  K("div", _h, [
30029
30029
  se(Ze, {
30030
30030
  variant: "primary",
@@ -30038,50 +30038,50 @@ const wu = new Xh(), Yh = {
30038
30038
  }, null, 8, ["label", "disabled"])
30039
30039
  ])
30040
30040
  ]),
30041
- default: Re(() => [
30041
+ default: Me(() => [
30042
30042
  ee.value ? (ze(), We("div", Yh, [
30043
30043
  se(X, { size: "xxl" }),
30044
30044
  H[14] || (H[14] = K("div", null, "Saving profile", -1))
30045
- ])) : M.value ? (ze(), _e(we, {
30045
+ ])) : R.value ? (ze(), _e(we, {
30046
30046
  key: 1,
30047
30047
  ref_key: "formRef",
30048
30048
  ref: N,
30049
30049
  onValidationSuccess: fe
30050
30050
  }, {
30051
- default: Re(() => [
30051
+ default: Me(() => [
30052
30052
  K("div", Zh, [
30053
- M.value ? (ze(), We("div", Wh, [
30053
+ R.value ? (ze(), We("div", Wh, [
30054
30054
  H[15] || (H[15] = K("div", { class: "fm-typo-en-title-sm-800" }, "General Info", -1)),
30055
30055
  se(de, {
30056
- modelValue: M.value.name,
30057
- "onUpdate:modelValue": H[0] || (H[0] = (ie) => M.value.name = ie),
30056
+ modelValue: R.value.name,
30057
+ "onUpdate:modelValue": H[0] || (H[0] = (ie) => R.value.name = ie),
30058
30058
  label: "Name",
30059
30059
  "label-mark": "required",
30060
30060
  rules: [(ie) => !!ie || "Name is required"]
30061
30061
  }, null, 8, ["modelValue", "rules"]),
30062
30062
  se(ge, {
30063
- "model-value": M.value.phoneNo || "",
30063
+ "model-value": R.value.phoneNo || "",
30064
30064
  label: "Phone no",
30065
- "onUpdate:modelValue": H[1] || (H[1] = (ie) => M.value.phoneNo = ie),
30065
+ "onUpdate:modelValue": H[1] || (H[1] = (ie) => R.value.phoneNo = ie),
30066
30066
  "extra-country-codes": nt(F),
30067
30067
  "default-country": nt(j)
30068
30068
  }, null, 8, ["model-value", "extra-country-codes", "default-country"]),
30069
30069
  se(de, {
30070
- "model-value": M.value.email,
30070
+ "model-value": R.value.email,
30071
30071
  label: "Email",
30072
30072
  type: "email",
30073
- "onUpdate:modelValue": H[2] || (H[2] = (ie) => M.value.email = ie)
30073
+ "onUpdate:modelValue": H[2] || (H[2] = (ie) => R.value.email = ie)
30074
30074
  }, null, 8, ["model-value"]),
30075
30075
  se(de, {
30076
- modelValue: M.value.regNo,
30077
- "onUpdate:modelValue": H[3] || (H[3] = (ie) => M.value.regNo = ie),
30076
+ modelValue: R.value.regNo,
30077
+ "onUpdate:modelValue": H[3] || (H[3] = (ie) => R.value.regNo = ie),
30078
30078
  label: "Tax Register no. (VAT no.)",
30079
30079
  "label-mark": "required",
30080
30080
  rules: [(ie) => !!ie || "Tax Register no. is required"]
30081
30081
  }, null, 8, ["modelValue", "rules"]),
30082
30082
  se(de, {
30083
- modelValue: M.value.branchCode,
30084
- "onUpdate:modelValue": H[4] || (H[4] = (ie) => M.value.branchCode = ie),
30083
+ modelValue: R.value.branchCode,
30084
+ "onUpdate:modelValue": H[4] || (H[4] = (ie) => R.value.branchCode = ie),
30085
30085
  label: "Branch Code",
30086
30086
  "label-mark": "required",
30087
30087
  rules: [
@@ -30092,44 +30092,44 @@ const wu = new Xh(), Yh = {
30092
30092
  K("div", Qh, [
30093
30093
  H[16] || (H[16] = K("div", { class: "fm-typo-en-title-sm-800" }, "Address", -1)),
30094
30094
  se(de, {
30095
- modelValue: M.value.address.line1,
30096
- "onUpdate:modelValue": H[5] || (H[5] = (ie) => M.value.address.line1 = ie),
30095
+ modelValue: R.value.address.line1,
30096
+ "onUpdate:modelValue": H[5] || (H[5] = (ie) => R.value.address.line1 = ie),
30097
30097
  label: "Line 1",
30098
30098
  "label-mark": "required",
30099
30099
  rules: [(ie) => !!ie || "Line 1 is required"]
30100
30100
  }, null, 8, ["modelValue", "rules"]),
30101
30101
  se(de, {
30102
- modelValue: M.value.address.line2,
30103
- "onUpdate:modelValue": H[6] || (H[6] = (ie) => M.value.address.line2 = ie),
30102
+ modelValue: R.value.address.line2,
30103
+ "onUpdate:modelValue": H[6] || (H[6] = (ie) => R.value.address.line2 = ie),
30104
30104
  label: "Line 2"
30105
30105
  }, null, 8, ["modelValue"]),
30106
30106
  K("div", Kh, [
30107
30107
  se(de, {
30108
- modelValue: M.value.address.city,
30109
- "onUpdate:modelValue": H[7] || (H[7] = (ie) => M.value.address.city = ie),
30108
+ modelValue: R.value.address.city,
30109
+ "onUpdate:modelValue": H[7] || (H[7] = (ie) => R.value.address.city = ie),
30110
30110
  label: "City",
30111
30111
  class: "grow",
30112
30112
  "label-mark": "required",
30113
30113
  rules: [(ie) => !!ie || "City is required"]
30114
30114
  }, null, 8, ["modelValue", "rules"]),
30115
30115
  se(de, {
30116
- modelValue: M.value.address.postcode,
30117
- "onUpdate:modelValue": H[8] || (H[8] = (ie) => M.value.address.postcode = ie),
30116
+ modelValue: R.value.address.postcode,
30117
+ "onUpdate:modelValue": H[8] || (H[8] = (ie) => R.value.address.postcode = ie),
30118
30118
  label: "Postcode",
30119
30119
  "label-mark": "required",
30120
30120
  rules: [(ie) => !!ie || "Postcode is required"]
30121
30121
  }, null, 8, ["modelValue", "rules"])
30122
30122
  ]),
30123
30123
  se(de, {
30124
- modelValue: M.value.address.state,
30125
- "onUpdate:modelValue": H[9] || (H[9] = (ie) => M.value.address.state = ie),
30124
+ modelValue: R.value.address.state,
30125
+ "onUpdate:modelValue": H[9] || (H[9] = (ie) => R.value.address.state = ie),
30126
30126
  label: "State",
30127
30127
  "label-mark": "required",
30128
30128
  rules: [(ie) => !!ie || "State is required"]
30129
30129
  }, null, 8, ["modelValue", "rules"]),
30130
30130
  se(de, {
30131
- modelValue: M.value.address.country,
30132
- "onUpdate:modelValue": H[10] || (H[10] = (ie) => M.value.address.country = ie),
30131
+ modelValue: R.value.address.country,
30132
+ "onUpdate:modelValue": H[10] || (H[10] = (ie) => R.value.address.country = ie),
30133
30133
  label: "Country",
30134
30134
  disabled: "",
30135
30135
  rules: [(ie) => !!ie || "Country is required"]
@@ -30156,7 +30156,7 @@ const wu = new Xh(), Yh = {
30156
30156
  }
30157
30157
  });
30158
30158
  const d = ke(!1), v = ke(), z = ke(), F = sr(), j = Xe(() => F.restaurants), I = Xe(() => F.marketing), N = cn();
30159
- async function M() {
30159
+ async function R() {
30160
30160
  let ee = "";
30161
30161
  try {
30162
30162
  ee = N.open({
@@ -30200,24 +30200,24 @@ const wu = new Xh(), Yh = {
30200
30200
  "dismiss-away": "",
30201
30201
  "max-width": 560
30202
30202
  }, {
30203
- "side-sheet-header": Re(() => [...L[2] || (L[2] = [
30203
+ "side-sheet-header": Me(() => [...L[2] || (L[2] = [
30204
30204
  K("span", { class: "fm-typo-en-title-md-800" }, "E-invoice integration", -1)
30205
30205
  ])]),
30206
- default: Re(() => [
30206
+ default: Me(() => [
30207
30207
  K("div", Jh, [
30208
30208
  L[4] || (L[4] = K("div", { class: "mb-16" }, " To get started, configure your restaurant and marketing profiles ", -1)),
30209
30209
  se(H, {
30210
30210
  class: "w-full",
30211
30211
  separator: ""
30212
30212
  }, {
30213
- default: Re(() => [
30213
+ default: Me(() => [
30214
30214
  (ze(!0), We(mt, null, yt(j.value, (de) => (ze(), _e(re, {
30215
30215
  key: de.id,
30216
30216
  label: de.name,
30217
30217
  tag: "label",
30218
30218
  onClick: () => Z(de)
30219
30219
  }, {
30220
- prepend: Re(() => [
30220
+ prepend: Me(() => [
30221
30221
  de.thumbnail ? (ze(), _e(te, {
30222
30222
  key: 0,
30223
30223
  src: de.thumbnail,
@@ -30228,7 +30228,7 @@ const wu = new Xh(), Yh = {
30228
30228
  size: "lg"
30229
30229
  }, null, 8, ["name"]))
30230
30230
  ]),
30231
- default: Re(() => [
30231
+ default: Me(() => [
30232
30232
  K("div", em, [
30233
30233
  K("div", null, lt(de.name), 1),
30234
30234
  K("div", tm, lt(de.profile._id.length ? "Activated" : "Not activated"), 1)
@@ -30250,13 +30250,13 @@ const wu = new Xh(), Yh = {
30250
30250
  tag: "label",
30251
30251
  onClick: L[0] || (L[0] = () => Z(I.value))
30252
30252
  }, {
30253
- prepend: Re(() => [
30253
+ prepend: Me(() => [
30254
30254
  se(te, {
30255
30255
  name: "Marketing store",
30256
30256
  size: "lg"
30257
30257
  })
30258
30258
  ]),
30259
- default: Re(() => [
30259
+ default: Me(() => [
30260
30260
  K("div", rm, [
30261
30261
  L[3] || (L[3] = K("div", null, "Marketing store", -1)),
30262
30262
  K("div", am, lt(I.value.profile._id.length ? "Activated" : "Not activated"), 1)
@@ -30277,7 +30277,7 @@ const wu = new Xh(), Yh = {
30277
30277
  se($h, {
30278
30278
  ref_key: "eInvoiceSettingDialogRef",
30279
30279
  ref: v,
30280
- onOnCompleted: M
30280
+ onOnCompleted: R
30281
30281
  }, null, 512),
30282
30282
  se(ts, {
30283
30283
  ref_key: "eInvoiceCopyDialogRef",
@@ -30362,7 +30362,7 @@ function um(s) {
30362
30362
  title: "Total",
30363
30363
  value: et.Dinero.fromFdoDinero(s.bill.nettTotal).toFormat()
30364
30364
  }
30365
- ], { name: v, regNo: z, tinNo: F, phoneNo: j, email: I, address: N } = s.merchant, M = [
30365
+ ], { name: v, regNo: z, tinNo: F, phoneNo: j, email: I, address: N } = s.merchant, R = [
30366
30366
  {
30367
30367
  title: "Name",
30368
30368
  value: v
@@ -30387,7 +30387,7 @@ function um(s) {
30387
30387
  {
30388
30388
  title: "Address",
30389
30389
  class: "col-span-2",
30390
- value: Mi(N)
30390
+ value: Ri(N)
30391
30391
  }
30392
30392
  ], V = s.customer ? s.customer.type == Pt.F_E_INVOICE_PROFILE_TYPE.Enum.individual ? cm(
30393
30393
  s.customer
@@ -30398,7 +30398,7 @@ function um(s) {
30398
30398
  raw: s,
30399
30399
  submissionSummary: d,
30400
30400
  submissionDetails: c,
30401
- merchant: M,
30401
+ merchant: R,
30402
30402
  customer: V,
30403
30403
  formatDocuments: () => [hm(s)],
30404
30404
  sendEmail: void 0,
@@ -30407,12 +30407,12 @@ function um(s) {
30407
30407
  }
30408
30408
  async function dm(s, c) {
30409
30409
  if (!(s != null && s.length)) return;
30410
- const d = s[0].merchant, v = Mi(d.address), z = d.branchCode || "-", F = d.tinNo || "-", j = Je(c.startDate).format("DD/MM/YYYY"), I = Je(c.endDate).format("DD/MM/YYYY"), N = Je().format("DD/MM/YYYY"), M = Je().format("HH:mm"), V = (ge) => et.Dinero.fromFdoDinero(ge).toFormat(), Z = "Tax Summary Report", oe = `Date: ${j} to ${I}`, ue = [
30410
+ const d = s[0].merchant, v = Ri(d.address), z = d.branchCode || "-", F = d.tinNo || "-", j = Je(c.startDate).format("DD/MM/YYYY"), I = Je(c.endDate).format("DD/MM/YYYY"), N = Je().format("DD/MM/YYYY"), R = Je().format("HH:mm"), V = (ge) => et.Dinero.fromFdoDinero(ge).toFormat(), Z = "Tax Summary Report", oe = `Date: ${j} to ${I}`, ue = [
30411
30411
  `Company Name: ${d.name}`,
30412
30412
  `Company Address: ${v}`,
30413
30413
  `TAX ID: ${F}`,
30414
30414
  `Branch No.: ${z}`,
30415
- `Print Date: ${N} Print Time: ${M}`
30415
+ `Print Date: ${N} Print Time: ${R}`
30416
30416
  ];
30417
30417
  let G = 0;
30418
30418
  const ee = s.map((ge) => {
@@ -30463,7 +30463,7 @@ async function dm(s, c) {
30463
30463
  ), de = document.createElement("a");
30464
30464
  de.href = X, de.setAttribute("download", decodeURIComponent(`${re}.pdf`)), document.body.appendChild(de), de.click(), de.remove();
30465
30465
  }
30466
- function Mi(s) {
30466
+ function Ri(s) {
30467
30467
  const { line1: c, line2: d, postcode: v, city: z, state: F, country: j } = s;
30468
30468
  return [c, d || "", v, z, F, j].map((I) => I.replace(/,\s*$/, "")).filter((I) => !!I.trim()).join(", ");
30469
30469
  }
@@ -30484,7 +30484,7 @@ function cm(s) {
30484
30484
  }), c.push({
30485
30485
  title: "Address",
30486
30486
  class: "col-span-2",
30487
- value: Mi(s.address)
30487
+ value: Ri(s.address)
30488
30488
  }), c;
30489
30489
  }
30490
30490
  function fm(s) {
@@ -30504,7 +30504,7 @@ function fm(s) {
30504
30504
  }), c.push({
30505
30505
  title: "Address",
30506
30506
  class: "col-span-2",
30507
- value: Mi(s.address)
30507
+ value: Ri(s.address)
30508
30508
  }), c.push({
30509
30509
  title: "Branch Code",
30510
30510
  value: s.branchCode
@@ -30564,22 +30564,24 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30564
30564
  const s = ke({}), c = ke(null), d = ke(null), v = ke([]), z = ke([]), F = Xe(() => At().currentCountry.value === Pt.F_COUNTRY.enum.TH ? zu : wu), j = Xe(() => [
30565
30565
  ...Object.values(s.value),
30566
30566
  ...c.value ? [c.value] : []
30567
- ]), I = Xe(() => {
30568
- const L = At().currentCountry.value;
30569
- return (L ? et.Country.getCountryFlattenTaxes(L) : []).reduce(
30570
- (fe, re) => (fe[`${re.systemCode}/${re.taxCode}`] = re, fe),
30571
- {}
30572
- );
30573
- }), N = Xe(() => {
30567
+ ]), I = Xe(
30568
+ () => {
30569
+ const L = At().currentCountry.value;
30570
+ return (L ? et.Country.getCountryFlattenTaxes(L) : []).reduce(
30571
+ (fe, re) => (fe[`${re.systemCode}/${re.taxCode}`] = re, fe),
30572
+ {}
30573
+ );
30574
+ }
30575
+ ), N = Xe(() => {
30574
30576
  const L = At().currentCountry.value;
30575
30577
  return L ? et.Country.getCountryDefaultExemptedTax(L) : null;
30576
30578
  });
30577
- async function M() {
30579
+ async function R() {
30578
30580
  const { restaurants: L, currentBusiness: te } = At();
30579
30581
  if (L.value.length === 0)
30580
30582
  return s.value;
30581
30583
  const fe = await pt.getProfiles(te.value._id);
30582
- let re = L.value.map((H) => {
30584
+ let re = L.value.filter((H) => H.managable).map((H) => {
30583
30585
  const X = fe.find(
30584
30586
  (de) => de.type === Pt.F_E_INVOICE_MERCHANT_TYPE.enum.restaurant && de.restaurantId === H._id
30585
30587
  );
@@ -30670,7 +30672,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30670
30672
  locations: j,
30671
30673
  countryTaxes: I,
30672
30674
  exemptedTax: N,
30673
- getRestaurants: M,
30675
+ getRestaurants: R,
30674
30676
  setRestaurant: V,
30675
30677
  getMarketing: Z,
30676
30678
  getSettings: oe,
@@ -30735,7 +30737,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30735
30737
  return (z, F) => {
30736
30738
  const j = Te("FmTextField"), I = Te("FmForm");
30737
30739
  return ze(), _e(I, null, {
30738
- default: Re(() => [
30740
+ default: Me(() => [
30739
30741
  se(j, {
30740
30742
  label: "Email",
30741
30743
  "model-value": v.value,
@@ -30773,7 +30775,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30773
30775
  }, Cm = { class: "grid sm:grid-cols-1 grid-cols-3 sm:gap-y-16 sm:gap-x-0 gap-x-16" }, Fm = { class: "flex-1 border-2 p-16 fm-corner-radius-lg" }, Tm = { class: "grid grid-cols gap-16" }, Pm = { class: "fm-typo-en-body-lg-400 text-fm-color-typo-secondary" }, Im = { class: "grid grid-cols-2 gap-16" }, jm = { class: "fm-typo-en-body-lg-400 text-fm-color-typo-secondary" }, Sm = { class: "break-words" }, Om = {
30774
30776
  key: 0,
30775
30777
  class: "flex-1 border-2 p-16 fm-corner-radius-lg"
30776
- }, Rm = { class: "grid grid-cols-2 gap-16" }, Mm = { class: "fm-typo-en-body-lg-400 text-fm-color-typo-secondary" }, km = { class: "break-words" }, Dm = { class: "flex justify-end gap-16" }, Nm = { class: "table-group" }, qm = /* @__PURE__ */ It({
30778
+ }, Mm = { class: "grid grid-cols-2 gap-16" }, Rm = { class: "fm-typo-en-body-lg-400 text-fm-color-typo-secondary" }, km = { class: "break-words" }, Dm = { class: "flex justify-end gap-16" }, Nm = { class: "table-group" }, qm = /* @__PURE__ */ It({
30777
30779
  __name: "EInvoiceSubmission",
30778
30780
  setup(s, { expose: c }) {
30779
30781
  const d = ke(), v = ke("");
@@ -30793,7 +30795,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30793
30795
  }), I = Xe(() => !!j.value), N = Xe(() => {
30794
30796
  var re;
30795
30797
  return (re = d.value) == null ? void 0 : re.submissionDetails;
30796
- }), M = Xe(() => {
30798
+ }), R = Xe(() => {
30797
30799
  var re;
30798
30800
  return (re = d.value) != null && re.formatDocuments ? d.value.formatDocuments() : [];
30799
30801
  }), V = Xe(() => {
@@ -30802,7 +30804,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30802
30804
  label: H.replace(/[-_]/g, " ").toLowerCase().replace(/^\w/, (X) => X.toUpperCase()),
30803
30805
  value: H
30804
30806
  }));
30805
- }), Z = Xe(() => M.value.reduce((re, H) => {
30807
+ }), Z = Xe(() => R.value.reduce((re, H) => {
30806
30808
  var ge;
30807
30809
  if (H.fields.map((we) => we.value).join(" ").toLowerCase().includes(v.value.toLowerCase()))
30808
30810
  return re.push(H), re;
@@ -30853,8 +30855,8 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30853
30855
  return (re, H) => {
30854
30856
  const X = Te("FmButton"), de = Te("FmSearch"), ge = Te("FmMenuItem"), we = Te("FmMenu"), Ze = Te("FmIcon"), Ue = Te("FmForm");
30855
30857
  return ze(), _e(Ou, { to: "body" }, [
30856
- se(Ru, { name: "fade" }, {
30857
- default: Re(() => [
30858
+ se(Mu, { name: "fade" }, {
30859
+ default: Me(() => [
30858
30860
  d.value ? (ze(), _e(Ue, {
30859
30861
  key: 0,
30860
30862
  "blame-form-child-on-validation-failed": "",
@@ -30865,9 +30867,9 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30865
30867
  "bg-fm-color-neutral-white"
30866
30868
  ]),
30867
30869
  tabindex: "-1",
30868
- onKeyup: H[2] || (H[2] = Mu(() => z(), ["esc"]))
30870
+ onKeyup: H[2] || (H[2] = Ru(() => z(), ["esc"]))
30869
30871
  }, {
30870
- default: Re(() => [
30872
+ default: Me(() => [
30871
30873
  K("div", vm, [
30872
30874
  H[3] || (H[3] = K("p", { class: "fm-typo-en-title-sm-600 mr-auto" }, "Submission Detail", -1)),
30873
30875
  se(X, {
@@ -30913,12 +30915,12 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30913
30915
  H[6] || (H[6] = K("div", { class: "flex items-center mb-16" }, [
30914
30916
  K("div", { class: "fm-typo-en-title-sm-600" }, " Customer profile ")
30915
30917
  ], -1)),
30916
- K("div", Rm, [
30918
+ K("div", Mm, [
30917
30919
  (ze(!0), We(mt, null, yt(j.value, (ie, je) => (ze(), We("div", {
30918
30920
  key: je,
30919
30921
  class: _t(ie.class)
30920
30922
  }, [
30921
- K("div", Mm, lt(ie.title), 1),
30923
+ K("div", Rm, lt(ie.title), 1),
30922
30924
  K("div", km, lt(ie.value || "Not provided"), 1)
30923
30925
  ], 2))), 128))
30924
30926
  ])
@@ -30943,7 +30945,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30943
30945
  key: 1,
30944
30946
  trigger: "hover"
30945
30947
  }, {
30946
- "menu-button": Re(() => [
30948
+ "menu-button": Me(() => [
30947
30949
  se(X, {
30948
30950
  variant: "primary",
30949
30951
  size: "lg",
@@ -30951,7 +30953,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30951
30953
  "prepend-icon": "download"
30952
30954
  })
30953
30955
  ]),
30954
- default: Re(() => [
30956
+ default: Me(() => [
30955
30957
  (ze(!0), We(mt, null, yt(V.value, (ie) => (ze(), _e(ge, {
30956
30958
  key: ie.value,
30957
30959
  label: ie.label,
@@ -30964,7 +30966,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30964
30966
  ]),
30965
30967
  K("div", null, [
30966
30968
  se(Eu, {
30967
- fields: M.value[0].fields
30969
+ fields: R.value[0].fields
30968
30970
  }, null, 8, ["fields"]),
30969
30971
  (ze(!0), We(mt, null, yt(Z.value, (ie, je) => (ze(), We("div", { key: je }, [
30970
30972
  K("div", Nm, [
@@ -30973,7 +30975,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
30973
30975
  onClick: () => L(je),
30974
30976
  class: "cursor-pointer"
30975
30977
  }, {
30976
- default: Re(() => {
30978
+ default: Me(() => {
30977
30979
  var be;
30978
30980
  return [
30979
30981
  (be = ie.bills) != null && be.length ? (ze(), _e(Ze, {
@@ -31019,7 +31021,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31019
31021
  show: V,
31020
31022
  hide: Z
31021
31023
  });
31022
- const M = d;
31024
+ const R = d;
31023
31025
  function V(L, te) {
31024
31026
  z.value = et.utils.clone(L), F.value = te, I.value = !0, v.value = !0;
31025
31027
  }
@@ -31032,7 +31034,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31032
31034
  };
31033
31035
  }
31034
31036
  function ue() {
31035
- Z(), M("onComplete", z.value);
31037
+ Z(), R("onComplete", z.value);
31036
31038
  }
31037
31039
  const G = sr(), ee = Xe(() => {
31038
31040
  const L = G.exemptedTax;
@@ -31046,10 +31048,10 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31046
31048
  "dismiss-away": "",
31047
31049
  "max-width": 560
31048
31050
  }, {
31049
- "side-sheet-header": Re(() => [...te[4] || (te[4] = [
31051
+ "side-sheet-header": Me(() => [...te[4] || (te[4] = [
31050
31052
  K("span", { class: "fm-typo-en-title-md-800" }, "Item settings", -1)
31051
31053
  ])]),
31052
- "side-sheet-footer": Re(() => [
31054
+ "side-sheet-footer": Me(() => [
31053
31055
  K("div", Ym, [
31054
31056
  se(de, {
31055
31057
  variant: "primary",
@@ -31065,7 +31067,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31065
31067
  })
31066
31068
  ])
31067
31069
  ]),
31068
- default: Re(() => [
31070
+ default: Me(() => [
31069
31071
  K("div", Bm, [
31070
31072
  K("div", Vm, [
31071
31073
  K("div", Lm, [
@@ -31134,11 +31136,11 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31134
31136
  emits: ["onCompleted"],
31135
31137
  setup(s, { expose: c, emit: d }) {
31136
31138
  c({
31137
- show: M,
31139
+ show: R,
31138
31140
  hide: oe
31139
31141
  });
31140
31142
  const v = d, z = cn(), F = ke(!1), j = ke(), I = ke(), N = ke();
31141
- function M(H) {
31143
+ function R(H) {
31142
31144
  N.value = H, V(), F.value = !0;
31143
31145
  }
31144
31146
  function V() {
@@ -31215,10 +31217,10 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31215
31217
  "dismiss-away": "",
31216
31218
  "max-width": 560
31217
31219
  }, {
31218
- "side-sheet-header": Re(() => [...X[17] || (X[17] = [
31220
+ "side-sheet-header": Me(() => [...X[17] || (X[17] = [
31219
31221
  K("span", { class: "fm-typo-en-title-md-800" }, "Update profile", -1)
31220
31222
  ])]),
31221
- "side-sheet-footer": Re(() => [
31223
+ "side-sheet-footer": Me(() => [
31222
31224
  K("div", Jm, [
31223
31225
  se(ie, {
31224
31226
  variant: "primary",
@@ -31232,7 +31234,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31232
31234
  }, null, 8, ["label", "disabled"])
31233
31235
  ])
31234
31236
  ]),
31235
- default: Re(() => [
31237
+ default: Me(() => [
31236
31238
  ue.value ? (ze(), We("div", Wm, [
31237
31239
  se(de, { size: "xxl" }),
31238
31240
  X[18] || (X[18] = K("div", null, "Saving profile", -1))
@@ -31242,7 +31244,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31242
31244
  ref: j,
31243
31245
  onValidationSuccess: L
31244
31246
  }, {
31245
- default: Re(() => [
31247
+ default: Me(() => [
31246
31248
  K("div", Qm, [
31247
31249
  I.value ? (ze(), We("div", Km, [
31248
31250
  X[19] || (X[19] = K("div", { class: "fm-typo-en-title-sm-800" }, "General Info", -1)),
@@ -31306,7 +31308,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31306
31308
  "helper-text": "This is the password for misa meInvoice",
31307
31309
  rules: [(be) => !!be || "password is required"]
31308
31310
  }, {
31309
- append: Re(() => [
31311
+ append: Me(() => [
31310
31312
  se(Ze, {
31311
31313
  name: "Visibility",
31312
31314
  class: "cursor-pointer",
@@ -31393,7 +31395,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31393
31395
  }
31394
31396
  });
31395
31397
  const d = ke(!1), v = ke(), z = ke(), F = sr(), j = Xe(() => F.restaurants), I = Xe(() => F.marketing), N = cn();
31396
- async function M() {
31398
+ async function R() {
31397
31399
  let H = "";
31398
31400
  try {
31399
31401
  H = N.open({
@@ -31473,10 +31475,10 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31473
31475
  "dismiss-away": "",
31474
31476
  "max-width": 560
31475
31477
  }, {
31476
- "side-sheet-header": Re(() => [...X[2] || (X[2] = [
31478
+ "side-sheet-header": Me(() => [...X[2] || (X[2] = [
31477
31479
  K("span", { class: "fm-typo-en-title-md-800" }, "E-invoice integration", -1)
31478
31480
  ])]),
31479
- default: Re(() => [
31481
+ default: Me(() => [
31480
31482
  K("div", t2, [
31481
31483
  X[4] || (X[4] = K("div", { class: "fm-typo-en-title-sm-800 mb-8" }, "Profiles", -1)),
31482
31484
  X[5] || (X[5] = K("div", { class: "mb-16" }, " To get started, configure your restaurant and marketing profiles ", -1)),
@@ -31484,14 +31486,14 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31484
31486
  class: "w-full",
31485
31487
  separator: ""
31486
31488
  }, {
31487
- default: Re(() => [
31489
+ default: Me(() => [
31488
31490
  (ze(!0), We(mt, null, yt(j.value, (ie) => (ze(), _e(we, {
31489
31491
  key: ie.id,
31490
31492
  label: ie.name,
31491
31493
  tag: "label",
31492
31494
  onClick: () => Z(ie)
31493
31495
  }, {
31494
- prepend: Re(() => [
31496
+ prepend: Me(() => [
31495
31497
  ie.thumbnail ? (ze(), _e(de, {
31496
31498
  key: 0,
31497
31499
  src: ie.thumbnail,
@@ -31502,7 +31504,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31502
31504
  size: "lg"
31503
31505
  }, null, 8, ["name"]))
31504
31506
  ]),
31505
- default: Re(() => [
31507
+ default: Me(() => [
31506
31508
  K("div", n2, [
31507
31509
  K("div", null, lt(ie.name), 1),
31508
31510
  K("div", r2, lt(ie.profile.active ? "Activated" : "Not activated"), 1)
@@ -31524,13 +31526,13 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31524
31526
  tag: "label",
31525
31527
  onClick: X[0] || (X[0] = () => Z(I.value))
31526
31528
  }, {
31527
- prepend: Re(() => [
31529
+ prepend: Me(() => [
31528
31530
  se(de, {
31529
31531
  name: "Marketing store",
31530
31532
  size: "lg"
31531
31533
  })
31532
31534
  ]),
31533
- default: Re(() => [
31535
+ default: Me(() => [
31534
31536
  K("div", i2, [
31535
31537
  X[3] || (X[3] = K("div", null, "Marketing store", -1)),
31536
31538
  K("div", o2, lt(I.value.profile.active ? "Activated" : "Not activated"), 1)
@@ -31552,19 +31554,19 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31552
31554
  class: "w-full",
31553
31555
  separator: ""
31554
31556
  }, {
31555
- default: Re(() => [
31557
+ default: Me(() => [
31556
31558
  se(we, {
31557
31559
  label: "Menu items",
31558
31560
  tag: "label",
31559
31561
  onClick: ee
31560
31562
  }, {
31561
- prepend: Re(() => [
31563
+ prepend: Me(() => [
31562
31564
  se(de, {
31563
31565
  name: "Marketing store",
31564
31566
  size: "lg"
31565
31567
  })
31566
31568
  ]),
31567
- default: Re(() => [
31569
+ default: Me(() => [
31568
31570
  X[6] || (X[6] = K("div", { class: "grow" }, [
31569
31571
  K("div", null, "Menu items"),
31570
31572
  K("div", { class: "fm-typo-en-body-sm-400 text-fm-color-typo-secondary" }, " Configure exempted tax reason for your menu items ")
@@ -31581,13 +31583,13 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31581
31583
  tag: "label",
31582
31584
  onClick: L
31583
31585
  }, {
31584
- prepend: Re(() => [
31586
+ prepend: Me(() => [
31585
31587
  se(de, {
31586
31588
  name: "Marketing bundle",
31587
31589
  size: "lg"
31588
31590
  })
31589
31591
  ]),
31590
- default: Re(() => [
31592
+ default: Me(() => [
31591
31593
  X[7] || (X[7] = K("div", { class: "grow" }, [
31592
31594
  K("div", null, "Marketing bundle"),
31593
31595
  K("div", { class: "fm-typo-en-body-sm-400 text-fm-color-typo-secondary" }, " Configure exempted tax reason for your marketing bundles ")
@@ -31608,7 +31610,7 @@ const zu = new mm(), sr = Du("mf-e-invoice-app", () => {
31608
31610
  se(e2, {
31609
31611
  ref_key: "eInvoiceSettingDialogRef",
31610
31612
  ref: v,
31611
- onOnCompleted: M
31613
+ onOnCompleted: R
31612
31614
  }, null, 512),
31613
31615
  se(ts, {
31614
31616
  ref_key: "eInvoiceCopyDialogRef",
@@ -31712,7 +31714,7 @@ function h2(s) {
31712
31714
  s.status
31713
31715
  )
31714
31716
  }
31715
- ], d = [...c], { name: v, regNo: z, tinNo: F, phoneNo: j, email: I, address: N } = s.merchant, M = [
31717
+ ], d = [...c], { name: v, regNo: z, tinNo: F, phoneNo: j, email: I, address: N } = s.merchant, R = [
31716
31718
  {
31717
31719
  title: "Name",
31718
31720
  value: v
@@ -31747,7 +31749,7 @@ function h2(s) {
31747
31749
  raw: s,
31748
31750
  submissionSummary: c,
31749
31751
  submissionDetails: d,
31750
- merchant: M,
31752
+ merchant: R,
31751
31753
  customer: V,
31752
31754
  formatDocuments: () => [g2(s)],
31753
31755
  sendEmail: (G) => {
@@ -31912,8 +31914,8 @@ function fr(s) {
31912
31914
  return /[,\n\r"]/.test(d) ? `"${d}"` : d;
31913
31915
  }
31914
31916
  function A2(s) {
31915
- var I, N, M;
31916
- const c = ((I = s.formatDocuments) == null ? void 0 : I.call(s)) ?? [], d = (((M = (N = c[0]) == null ? void 0 : N.bills) == null ? void 0 : M[0]) ?? []).map((V) => fr(V.title)).join(","), v = c.reduce((V, { bills: Z }) => [
31917
+ var I, N, R;
31918
+ const c = ((I = s.formatDocuments) == null ? void 0 : I.call(s)) ?? [], d = (((R = (N = c[0]) == null ? void 0 : N.bills) == null ? void 0 : R[0]) ?? []).map((V) => fr(V.title)).join(","), v = c.reduce((V, { bills: Z }) => [
31917
31919
  ...V,
31918
31920
  ...(Z ?? []).map(
31919
31921
  (oe) => oe.map((ue) => fr(ue.value)).join(",")
@@ -31970,8 +31972,8 @@ async function b2(s, c) {
31970
31972
  };
31971
31973
  }), j = `tax-summary-${d.name}-${d.regNo}-${Je(c.startDate).format("YYYYMMDD")}-${Je(c.endDate).format("YYYYMMDD")}.xlsx`, I = await pt.getDownloadFile({ data: F, type: "excel" }), N = window.URL.createObjectURL(
31972
31974
  new Blob([new Uint8Array(I).buffer])
31973
- ), M = document.createElement("a");
31974
- M.href = N, M.setAttribute("download", decodeURIComponent(j)), document.body.appendChild(M), M.click(), M.remove();
31975
+ ), R = document.createElement("a");
31976
+ R.href = N, R.setAttribute("download", decodeURIComponent(j)), document.body.appendChild(R), R.click(), R.remove();
31975
31977
  }
31976
31978
  class v2 extends Jo {
31977
31979
  get settingDialogComponent() {
@@ -32013,7 +32015,7 @@ const y2 = new v2(), w2 = { class: "h-full w-full" }, z2 = { class: "flex items-
32013
32015
  __name: "EInvoice",
32014
32016
  setup(s) {
32015
32017
  var a;
32016
- const c = ke(), d = ke(), v = cn(), { restaurants: z, currentBusiness: F, sessionUser: j, currentCountry: I } = ss(At()), N = sr(), { locations: M, marketing: V } = ss(N);
32018
+ const c = ke(), d = ke(), v = cn(), { restaurants: z, currentBusiness: F, sessionUser: j, currentCountry: I } = ss(At()), N = sr(), { locations: R, marketing: V } = ss(N);
32017
32019
  let Z = ke("");
32018
32020
  async function oe() {
32019
32021
  var me;
@@ -32023,8 +32025,8 @@ const y2 = new v2(), w2 = { class: "h-full w-full" }, z2 = { class: "flex items-
32023
32025
  type: "info",
32024
32026
  dismissable: !1
32025
32027
  }), await N.getRestaurants();
32026
- const A = M.value.map((le) => le.id);
32027
- (!L.value || !A.includes(L.value)) && (L.value = (me = M.value[0]) == null ? void 0 : me.id);
32028
+ const A = R.value.map((le) => le.id);
32029
+ (!L.value || !A.includes(L.value)) && (L.value = (me = R.value[0]) == null ? void 0 : me.id);
32028
32030
  } catch (A) {
32029
32031
  console.error(A), v.open({
32030
32032
  title: "Error",
@@ -32077,7 +32079,7 @@ const y2 = new v2(), w2 = { class: "h-full w-full" }, z2 = { class: "flex items-
32077
32079
  Bs(async () => {
32078
32080
  await oe(), await ee(), await G();
32079
32081
  });
32080
- const L = ke((a = M.value[0]) == null ? void 0 : a.id), te = ke([]), fe = ke([]), re = ke(""), H = Xe(() => fe.value.reduce((me, A) => (A.submissionSummary.map((ve) => ve.value).join(" ").toLowerCase().includes(re.value.toLowerCase()) && me.push(A), me), [])), X = ke(""), de = Xe(() => {
32082
+ const L = ke((a = R.value[0]) == null ? void 0 : a.id), te = ke([]), fe = ke([]), re = ke(""), H = Xe(() => fe.value.reduce((me, A) => (A.submissionSummary.map((ve) => ve.value).join(" ").toLowerCase().includes(re.value.toLowerCase()) && me.push(A), me), [])), X = ke(""), de = Xe(() => {
32081
32083
  switch (I.value) {
32082
32084
  case Pt.F_COUNTRY.enum.TH:
32083
32085
  return zu;
@@ -32086,7 +32088,7 @@ const y2 = new v2(), w2 = { class: "h-full w-full" }, z2 = { class: "flex items-
32086
32088
  default:
32087
32089
  return wu;
32088
32090
  }
32089
- }), ge = ke(de.value.getDate()), we = Xe(() => `${ge.value.startDate ?? "Start"} - ${ge.value.endDate ?? "End"}`), Ze = Xe(() => M.value.find((me) => me.id === L.value));
32091
+ }), ge = ke(de.value.getDate()), we = Xe(() => `${ge.value.startDate ?? "Start"} - ${ge.value.endDate ?? "End"}`), Ze = Xe(() => R.value.find((me) => me.id === L.value));
32090
32092
  async function Ue() {
32091
32093
  var me;
32092
32094
  if (!X.value)
@@ -32154,7 +32156,7 @@ const y2 = new v2(), w2 = { class: "h-full w-full" }, z2 = { class: "flex items-
32154
32156
  }
32155
32157
  return Pa(() => z.value, oe), Pa(() => F, G), Pa(
32156
32158
  [
32157
- () => M.value,
32159
+ () => R.value,
32158
32160
  () => L.value,
32159
32161
  () => ge.value
32160
32162
  ],
@@ -32182,14 +32184,14 @@ const y2 = new v2(), w2 = { class: "h-full w-full" }, z2 = { class: "flex items-
32182
32184
  se(F0, {
32183
32185
  modelValue: L.value,
32184
32186
  "onUpdate:modelValue": A[0] || (A[0] = (o) => L.value = o),
32185
- locations: nt(M)
32187
+ locations: nt(R)
32186
32188
  }, null, 8, ["modelValue", "locations"]),
32187
32189
  se(n, {
32188
32190
  modelValue: ge.value,
32189
32191
  "onUpdate:modelValue": A[1] || (A[1] = (o) => ge.value = o),
32190
32192
  "show-predefined-range": ""
32191
32193
  }, {
32192
- "trigger-button": Re(() => [
32194
+ "trigger-button": Me(() => [
32193
32195
  se(u, {
32194
32196
  label: we.value,
32195
32197
  icon: "date_range"
@@ -32222,7 +32224,7 @@ const y2 = new v2(), w2 = { class: "h-full w-full" }, z2 = { class: "flex items-
32222
32224
  ]),
32223
32225
  variant: "outlined"
32224
32226
  }, {
32225
- default: Re(() => [
32227
+ default: Me(() => [
32226
32228
  K("img", {
32227
32229
  src: nt(w0),
32228
32230
  alt: "No submissions",