karrio-server-pricing 2025.5rc1__py3-none-any.whl

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.
Files changed (77) hide show
  1. karrio/server/pricing/__init__.py +1 -0
  2. karrio/server/pricing/admin.py +55 -0
  3. karrio/server/pricing/apps.py +12 -0
  4. karrio/server/pricing/migrations/0001_initial.py +974 -0
  5. karrio/server/pricing/migrations/0002_auto_20201127_0721.py +855 -0
  6. karrio/server/pricing/migrations/0003_auto_20201230_0820.py +939 -0
  7. karrio/server/pricing/migrations/0004_auto_20201231_1402.py +940 -0
  8. karrio/server/pricing/migrations/0005_auto_20210204_1725.py +923 -0
  9. karrio/server/pricing/migrations/0006_auto_20210217_1109.py +1224 -0
  10. karrio/server/pricing/migrations/0007_auto_20210218_1202.py +955 -0
  11. karrio/server/pricing/migrations/0008_auto_20210418_0504.py +1010 -0
  12. karrio/server/pricing/migrations/0009_auto_20210603_2149.py +1043 -0
  13. karrio/server/pricing/migrations/0010_auto_20210612_1608.py +1070 -0
  14. karrio/server/pricing/migrations/0011_auto_20210615_1601.py +1109 -0
  15. karrio/server/pricing/migrations/0012_surcharge_carrier_accounts.py +23 -0
  16. karrio/server/pricing/migrations/0013_alter_surcharge_services.py +1086 -0
  17. karrio/server/pricing/migrations/0014_auto_20211013_1520.py +12 -0
  18. karrio/server/pricing/migrations/0015_auto_20211204_1350.py +1124 -0
  19. karrio/server/pricing/migrations/0016_auto_20211220_1500.py +1126 -0
  20. karrio/server/pricing/migrations/0017_alter_surcharge_services.py +1093 -0
  21. karrio/server/pricing/migrations/0018_alter_surcharge_services.py +1100 -0
  22. karrio/server/pricing/migrations/0019_alter_surcharge_services.py +1093 -0
  23. karrio/server/pricing/migrations/0020_auto_20220412_1215.py +3175 -0
  24. karrio/server/pricing/migrations/0021_auto_20220413_0959.py +3179 -0
  25. karrio/server/pricing/migrations/0022_alter_surcharge_services.py +3144 -0
  26. karrio/server/pricing/migrations/0023_auto_20220504_1335.py +3175 -0
  27. karrio/server/pricing/migrations/0024_auto_20220808_0803.py +3180 -0
  28. karrio/server/pricing/migrations/0025_alter_surcharge_carriers.py +51 -0
  29. karrio/server/pricing/migrations/0026_auto_20220828_0158.py +3199 -0
  30. karrio/server/pricing/migrations/0027_alter_surcharge_services.py +3170 -0
  31. karrio/server/pricing/migrations/0028_surcharge_markup_carriers_surcharge_markup_services.py +3016 -0
  32. karrio/server/pricing/migrations/0029_alter_surcharge_services.py +2939 -0
  33. karrio/server/pricing/migrations/0030_alter_surcharge_services.py +2940 -0
  34. karrio/server/pricing/migrations/0031_alter_surcharge_carriers.py +52 -0
  35. karrio/server/pricing/migrations/0032_alter_surcharge_services.py +2963 -0
  36. karrio/server/pricing/migrations/0033_alter_surcharge_services.py +2964 -0
  37. karrio/server/pricing/migrations/0034_alter_surcharge_carriers_alter_surcharge_services.py +3009 -0
  38. karrio/server/pricing/migrations/0035_alter_surcharge_carriers.py +56 -0
  39. karrio/server/pricing/migrations/0036_alter_surcharge_carriers_alter_surcharge_services.py +3022 -0
  40. karrio/server/pricing/migrations/0037_alter_surcharge_carriers_alter_surcharge_services.py +3078 -0
  41. karrio/server/pricing/migrations/0038_alter_surcharge_carriers_alter_surcharge_services.py +3093 -0
  42. karrio/server/pricing/migrations/0039_alter_surcharge_carriers_alter_surcharge_services.py +3095 -0
  43. karrio/server/pricing/migrations/0040_alter_surcharge_services.py +3058 -0
  44. karrio/server/pricing/migrations/0041_alter_surcharge_services.py +3061 -0
  45. karrio/server/pricing/migrations/0042_alter_surcharge_carriers_alter_surcharge_services.py +3128 -0
  46. karrio/server/pricing/migrations/0043_alter_surcharge_services.py +3090 -0
  47. karrio/server/pricing/migrations/0044_alter_surcharge_carriers.py +62 -0
  48. karrio/server/pricing/migrations/0045_alter_surcharge_carriers.py +63 -0
  49. karrio/server/pricing/migrations/0046_alter_surcharge_services.py +3100 -0
  50. karrio/server/pricing/migrations/0047_alter_surcharge_services.py +3171 -0
  51. karrio/server/pricing/migrations/0048_alter_surcharge_services.py +3195 -0
  52. karrio/server/pricing/migrations/0049_alter_surcharge_carriers_alter_surcharge_services.py +3246 -0
  53. karrio/server/pricing/migrations/0050_alter_surcharge_carriers.py +64 -0
  54. karrio/server/pricing/migrations/0051_alter_surcharge_carriers_alter_surcharge_services.py +2956 -0
  55. karrio/server/pricing/migrations/0052_alter_surcharge_carriers_alter_surcharge_services.py +3547 -0
  56. karrio/server/pricing/migrations/0053_alter_surcharge_carriers_alter_surcharge_services.py +3561 -0
  57. karrio/server/pricing/migrations/0054_alter_surcharge_services.py +3409 -0
  58. karrio/server/pricing/migrations/0055_alter_surcharge_services.py +3455 -0
  59. karrio/server/pricing/migrations/0056_alter_surcharge_carriers_alter_surcharge_services.py +3609 -0
  60. karrio/server/pricing/migrations/0057_alter_surcharge_carriers_alter_surcharge_services.py +4384 -0
  61. karrio/server/pricing/migrations/0058_alter_surcharge_services.py +4321 -0
  62. karrio/server/pricing/migrations/0059_alter_surcharge_carriers_alter_surcharge_services.py +4892 -0
  63. karrio/server/pricing/migrations/0060_alter_surcharge_services.py +4894 -0
  64. karrio/server/pricing/migrations/0061_alter_surcharge_services.py +4888 -0
  65. karrio/server/pricing/migrations/0062_alter_surcharge_carriers_alter_surcharge_services.py +4704 -0
  66. karrio/server/pricing/migrations/0063_alter_surcharge_carriers_alter_surcharge_services.py +34 -0
  67. karrio/server/pricing/migrations/0064_alter_surcharge_carriers_alter_surcharge_services.py +4669 -0
  68. karrio/server/pricing/migrations/__init__.py +0 -0
  69. karrio/server/pricing/models.py +143 -0
  70. karrio/server/pricing/serializers.py +18 -0
  71. karrio/server/pricing/signals.py +35 -0
  72. karrio/server/pricing/tests.py +301 -0
  73. karrio/server/pricing/views.py +3 -0
  74. karrio_server_pricing-2025.5rc1.dist-info/METADATA +27 -0
  75. karrio_server_pricing-2025.5rc1.dist-info/RECORD +77 -0
  76. karrio_server_pricing-2025.5rc1.dist-info/WHEEL +5 -0
  77. karrio_server_pricing-2025.5rc1.dist-info/top_level.txt +2 -0
@@ -0,0 +1,4384 @@
1
+ # Generated by Django 4.2.15 on 2024-08-18 07:28
2
+
3
+ from django.db import migrations
4
+ import karrio.server.core.fields
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("pricing", "0056_alter_surcharge_carriers_alter_surcharge_services"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="surcharge",
16
+ name="carriers",
17
+ field=karrio.server.core.fields.MultiChoiceField(
18
+ blank=True,
19
+ choices=[
20
+ ("allied_express", "allied_express"),
21
+ ("allied_express_local", "allied_express_local"),
22
+ ("amazon_shipping", "amazon_shipping"),
23
+ ("aramex", "aramex"),
24
+ ("asendia_us", "asendia_us"),
25
+ ("australiapost", "australiapost"),
26
+ ("boxknight", "boxknight"),
27
+ ("bpost", "bpost"),
28
+ ("canadapost", "canadapost"),
29
+ ("canpar", "canpar"),
30
+ ("chronopost", "chronopost"),
31
+ ("colissimo", "colissimo"),
32
+ ("dhl_express", "dhl_express"),
33
+ ("dhl_parcel_de", "dhl_parcel_de"),
34
+ ("dhl_poland", "dhl_poland"),
35
+ ("dhl_universal", "dhl_universal"),
36
+ ("dicom", "dicom"),
37
+ ("dpd", "dpd"),
38
+ ("dpdhl", "dpdhl"),
39
+ ("easypost", "easypost"),
40
+ ("eshipper", "eshipper"),
41
+ ("fedex", "fedex"),
42
+ ("fedex_ws", "fedex_ws"),
43
+ ("freightcom", "freightcom"),
44
+ ("generic", "generic"),
45
+ ("geodis", "geodis"),
46
+ ("hay_post", "hay_post"),
47
+ ("laposte", "laposte"),
48
+ ("locate2u", "locate2u"),
49
+ ("nationex", "nationex"),
50
+ ("purolator", "purolator"),
51
+ ("roadie", "roadie"),
52
+ ("royalmail", "royalmail"),
53
+ ("sapient", "sapient"),
54
+ ("sendle", "sendle"),
55
+ ("tge", "tge"),
56
+ ("tnt", "tnt"),
57
+ ("ups", "ups"),
58
+ ("usps", "usps"),
59
+ ("usps_international", "usps_international"),
60
+ ("usps_wt", "usps_wt"),
61
+ ("usps_wt_international", "usps_wt_international"),
62
+ ("zoom2u", "zoom2u"),
63
+ ],
64
+ help_text="\n The list of carriers you want to apply the surcharge to.\n <br/>\n Note that by default, the surcharge is applied to all carriers\n ",
65
+ null=True,
66
+ ),
67
+ ),
68
+ migrations.AlterField(
69
+ model_name="surcharge",
70
+ name="services",
71
+ field=karrio.server.core.fields.MultiChoiceField(
72
+ blank=True,
73
+ choices=[
74
+ ("allied_road_service", "allied_road_service"),
75
+ ("allied_parcel_service", "allied_parcel_service"),
76
+ (
77
+ "allied_standard_pallet_service",
78
+ "allied_standard_pallet_service",
79
+ ),
80
+ (
81
+ "allied_oversized_pallet_service",
82
+ "allied_oversized_pallet_service",
83
+ ),
84
+ ("allied_road_service", "allied_road_service"),
85
+ ("allied_parcel_service", "allied_parcel_service"),
86
+ (
87
+ "allied_standard_pallet_service",
88
+ "allied_standard_pallet_service",
89
+ ),
90
+ (
91
+ "allied_oversized_pallet_service",
92
+ "allied_oversized_pallet_service",
93
+ ),
94
+ ("allied_local_normal_service", "allied_local_normal_service"),
95
+ ("allied_local_vip_service", "allied_local_vip_service"),
96
+ (
97
+ "allied_local_executive_service",
98
+ "allied_local_executive_service",
99
+ ),
100
+ ("allied_local_gold_service", "allied_local_gold_service"),
101
+ ("amazon_shipping_ground", "amazon_shipping_ground"),
102
+ ("amazon_shipping_standard", "amazon_shipping_standard"),
103
+ ("amazon_shipping_premium", "amazon_shipping_premium"),
104
+ ("asendia_us_e_com_tracked_ddp", "asendia_us_e_com_tracked_ddp"),
105
+ ("asendia_us_fully_tracked", "asendia_us_fully_tracked"),
106
+ ("asendia_us_country_tracked", "asendia_us_country_tracked"),
107
+ ("australiapost_parcel_post", "australiapost_parcel_post"),
108
+ ("australiapost_express_post", "australiapost_express_post"),
109
+ (
110
+ "australiapost_parcel_post_signature",
111
+ "australiapost_parcel_post_signature",
112
+ ),
113
+ (
114
+ "australiapost_express_post_signature",
115
+ "australiapost_express_post_signature",
116
+ ),
117
+ (
118
+ "australiapost_intl_standard_pack_track",
119
+ "australiapost_intl_standard_pack_track",
120
+ ),
121
+ (
122
+ "australiapost_intl_standard_with_signature",
123
+ "australiapost_intl_standard_with_signature",
124
+ ),
125
+ (
126
+ "australiapost_intl_express_merch",
127
+ "australiapost_intl_express_merch",
128
+ ),
129
+ (
130
+ "australiapost_intl_express_docs",
131
+ "australiapost_intl_express_docs",
132
+ ),
133
+ (
134
+ "australiapost_eparcel_post_returns",
135
+ "australiapost_eparcel_post_returns",
136
+ ),
137
+ (
138
+ "australiapost_express_eparcel_post_returns",
139
+ "australiapost_express_eparcel_post_returns",
140
+ ),
141
+ ("boxknight_sameday", "boxknight_sameday"),
142
+ ("boxknight_nextday", "boxknight_nextday"),
143
+ ("boxknight_scheduled", "boxknight_scheduled"),
144
+ ("bpack_24h_pro", "bpack_24h_pro"),
145
+ ("bpack_24h_business", "bpack_24h_business"),
146
+ ("bpack_bus", "bpack_bus"),
147
+ ("bpack_pallet", "bpack_pallet"),
148
+ ("bpack_easy_retour", "bpack_easy_retour"),
149
+ ("bpack_xl", "bpack_xl"),
150
+ ("bpack_bpost", "bpack_bpost"),
151
+ ("bpack_24_7", "bpack_24_7"),
152
+ ("bpack_world_business", "bpack_world_business"),
153
+ ("bpack_world_express_pro", "bpack_world_express_pro"),
154
+ ("bpack_europe_business", "bpack_europe_business"),
155
+ ("bpack_world_easy_return", "bpack_world_easy_return"),
156
+ ("bpack_bpost_international", "bpack_bpost_international"),
157
+ ("bpack_24_7_international", "bpack_24_7_international"),
158
+ ("canadapost_regular_parcel", "canadapost_regular_parcel"),
159
+ ("canadapost_expedited_parcel", "canadapost_expedited_parcel"),
160
+ ("canadapost_xpresspost", "canadapost_xpresspost"),
161
+ (
162
+ "canadapost_xpresspost_certified",
163
+ "canadapost_xpresspost_certified",
164
+ ),
165
+ ("canadapost_priority", "canadapost_priority"),
166
+ ("canadapost_library_books", "canadapost_library_books"),
167
+ (
168
+ "canadapost_expedited_parcel_usa",
169
+ "canadapost_expedited_parcel_usa",
170
+ ),
171
+ (
172
+ "canadapost_priority_worldwide_envelope_usa",
173
+ "canadapost_priority_worldwide_envelope_usa",
174
+ ),
175
+ (
176
+ "canadapost_priority_worldwide_pak_usa",
177
+ "canadapost_priority_worldwide_pak_usa",
178
+ ),
179
+ (
180
+ "canadapost_priority_worldwide_parcel_usa",
181
+ "canadapost_priority_worldwide_parcel_usa",
182
+ ),
183
+ (
184
+ "canadapost_small_packet_usa_air",
185
+ "canadapost_small_packet_usa_air",
186
+ ),
187
+ ("canadapost_tracked_packet_usa", "canadapost_tracked_packet_usa"),
188
+ (
189
+ "canadapost_tracked_packet_usa_lvm",
190
+ "canadapost_tracked_packet_usa_lvm",
191
+ ),
192
+ ("canadapost_xpresspost_usa", "canadapost_xpresspost_usa"),
193
+ (
194
+ "canadapost_xpresspost_international",
195
+ "canadapost_xpresspost_international",
196
+ ),
197
+ (
198
+ "canadapost_international_parcel_air",
199
+ "canadapost_international_parcel_air",
200
+ ),
201
+ (
202
+ "canadapost_international_parcel_surface",
203
+ "canadapost_international_parcel_surface",
204
+ ),
205
+ (
206
+ "canadapost_priority_worldwide_envelope_intl",
207
+ "canadapost_priority_worldwide_envelope_intl",
208
+ ),
209
+ (
210
+ "canadapost_priority_worldwide_pak_intl",
211
+ "canadapost_priority_worldwide_pak_intl",
212
+ ),
213
+ (
214
+ "canadapost_priority_worldwide_parcel_intl",
215
+ "canadapost_priority_worldwide_parcel_intl",
216
+ ),
217
+ (
218
+ "canadapost_small_packet_international_air",
219
+ "canadapost_small_packet_international_air",
220
+ ),
221
+ (
222
+ "canadapost_small_packet_international_surface",
223
+ "canadapost_small_packet_international_surface",
224
+ ),
225
+ (
226
+ "canadapost_tracked_packet_international",
227
+ "canadapost_tracked_packet_international",
228
+ ),
229
+ ("chronopost_retrait_bureau", "chronopost_retrait_bureau"),
230
+ ("chronopost_13", "chronopost_13"),
231
+ ("chronopost_10", "chronopost_10"),
232
+ ("chronopost_18", "chronopost_18"),
233
+ ("chronopost_relais", "chronopost_relais"),
234
+ (
235
+ "chronopost_express_international",
236
+ "chronopost_express_international",
237
+ ),
238
+ (
239
+ "chronopost_premium_international",
240
+ "chronopost_premium_international",
241
+ ),
242
+ (
243
+ "chronopost_classic_international",
244
+ "chronopost_classic_international",
245
+ ),
246
+ (
247
+ "colissimo_home_without_signature",
248
+ "colissimo_home_without_signature",
249
+ ),
250
+ ("colissimo_home_with_signature", "colissimo_home_with_signature"),
251
+ ("colissimo_eco_france", "colissimo_eco_france"),
252
+ ("colissimo_return_france", "colissimo_return_france"),
253
+ (
254
+ "colissimo_flash_without_signature",
255
+ "colissimo_flash_without_signature",
256
+ ),
257
+ (
258
+ "colissimo_flash_with_signature",
259
+ "colissimo_flash_with_signature",
260
+ ),
261
+ (
262
+ "colissimo_oversea_home_without_signature",
263
+ "colissimo_oversea_home_without_signature",
264
+ ),
265
+ (
266
+ "colissimo_oversea_home_with_signature",
267
+ "colissimo_oversea_home_with_signature",
268
+ ),
269
+ (
270
+ "colissimo_eco_om_without_signature",
271
+ "colissimo_eco_om_without_signature",
272
+ ),
273
+ (
274
+ "colissimo_eco_om_with_signature",
275
+ "colissimo_eco_om_with_signature",
276
+ ),
277
+ ("colissimo_retour_om", "colissimo_retour_om"),
278
+ (
279
+ "colissimo_return_international_from_france",
280
+ "colissimo_return_international_from_france",
281
+ ),
282
+ (
283
+ "colissimo_economical_big_export_offer",
284
+ "colissimo_economical_big_export_offer",
285
+ ),
286
+ (
287
+ "colissimo_out_of_home_national_international",
288
+ "colissimo_out_of_home_national_international",
289
+ ),
290
+ ("dhl_logistics_services", "dhl_logistics_services"),
291
+ ("dhl_domestic_express_12_00", "dhl_domestic_express_12_00"),
292
+ ("dhl_express_choice", "dhl_express_choice"),
293
+ ("dhl_express_choice_nondoc", "dhl_express_choice_nondoc"),
294
+ ("dhl_jetline", "dhl_jetline"),
295
+ ("dhl_sprintline", "dhl_sprintline"),
296
+ ("dhl_air_capacity_sales", "dhl_air_capacity_sales"),
297
+ ("dhl_express_easy", "dhl_express_easy"),
298
+ ("dhl_express_easy_nondoc", "dhl_express_easy_nondoc"),
299
+ ("dhl_parcel_product", "dhl_parcel_product"),
300
+ ("dhl_accounting", "dhl_accounting"),
301
+ ("dhl_breakbulk_express", "dhl_breakbulk_express"),
302
+ ("dhl_medical_express", "dhl_medical_express"),
303
+ ("dhl_express_worldwide_doc", "dhl_express_worldwide_doc"),
304
+ ("dhl_express_9_00_nondoc", "dhl_express_9_00_nondoc"),
305
+ ("dhl_freight_worldwide_nondoc", "dhl_freight_worldwide_nondoc"),
306
+ ("dhl_economy_select_domestic", "dhl_economy_select_domestic"),
307
+ ("dhl_economy_select_nondoc", "dhl_economy_select_nondoc"),
308
+ ("dhl_express_domestic_9_00", "dhl_express_domestic_9_00"),
309
+ ("dhl_jumbo_box_nondoc", "dhl_jumbo_box_nondoc"),
310
+ ("dhl_express_9_00", "dhl_express_9_00"),
311
+ ("dhl_express_10_30", "dhl_express_10_30"),
312
+ ("dhl_express_10_30_nondoc", "dhl_express_10_30_nondoc"),
313
+ ("dhl_express_domestic", "dhl_express_domestic"),
314
+ ("dhl_express_domestic_10_30", "dhl_express_domestic_10_30"),
315
+ ("dhl_express_worldwide_nondoc", "dhl_express_worldwide_nondoc"),
316
+ ("dhl_medical_express_nondoc", "dhl_medical_express_nondoc"),
317
+ ("dhl_globalmail", "dhl_globalmail"),
318
+ ("dhl_same_day", "dhl_same_day"),
319
+ ("dhl_express_12_00", "dhl_express_12_00"),
320
+ ("dhl_express_worldwide", "dhl_express_worldwide"),
321
+ ("dhl_parcel_product_nondoc", "dhl_parcel_product_nondoc"),
322
+ ("dhl_economy_select", "dhl_economy_select"),
323
+ ("dhl_express_envelope", "dhl_express_envelope"),
324
+ ("dhl_express_12_00_nondoc", "dhl_express_12_00_nondoc"),
325
+ ("dhl_destination_charges", "dhl_destination_charges"),
326
+ ("dhl_express_all", "dhl_express_all"),
327
+ ("dhl_parcel_de_paket", "dhl_parcel_de_paket"),
328
+ ("dhl_parcel_de_warenpost", "dhl_parcel_de_warenpost"),
329
+ ("dhl_parcel_de_europaket", "dhl_parcel_de_europaket"),
330
+ (
331
+ "dhl_parcel_de_paket_international",
332
+ "dhl_parcel_de_paket_international",
333
+ ),
334
+ (
335
+ "dhl_parcel_de_warenpost_international",
336
+ "dhl_parcel_de_warenpost_international",
337
+ ),
338
+ ("dhl_poland_premium", "dhl_poland_premium"),
339
+ ("dhl_poland_polska", "dhl_poland_polska"),
340
+ ("dhl_poland_09", "dhl_poland_09"),
341
+ ("dhl_poland_12", "dhl_poland_12"),
342
+ ("dhl_poland_connect", "dhl_poland_connect"),
343
+ ("dhl_poland_international", "dhl_poland_international"),
344
+ ("dpd_cl", "dpd_cl"),
345
+ ("dpd_express_10h", "dpd_express_10h"),
346
+ ("dpd_express_12h", "dpd_express_12h"),
347
+ ("dpd_express_18h_guarantee", "dpd_express_18h_guarantee"),
348
+ ("dpd_express_b2b_predict", "dpd_express_b2b_predict"),
349
+ ("dpdhl_paket", "dpdhl_paket"),
350
+ ("dpdhl_paket_international", "dpdhl_paket_international"),
351
+ ("dpdhl_europaket", "dpdhl_europaket"),
352
+ ("dpdhl_paket_connect", "dpdhl_paket_connect"),
353
+ ("dpdhl_warenpost", "dpdhl_warenpost"),
354
+ ("dpdhl_warenpost_international", "dpdhl_warenpost_international"),
355
+ ("dpdhl_retoure", "dpdhl_retoure"),
356
+ ("easypost_amazonmws_ups_rates", "easypost_amazonmws_ups_rates"),
357
+ ("easypost_amazonmws_usps_rates", "easypost_amazonmws_usps_rates"),
358
+ (
359
+ "easypost_amazonmws_fedex_rates",
360
+ "easypost_amazonmws_fedex_rates",
361
+ ),
362
+ ("easypost_amazonmws_ups_labels", "easypost_amazonmws_ups_labels"),
363
+ (
364
+ "easypost_amazonmws_usps_labels",
365
+ "easypost_amazonmws_usps_labels",
366
+ ),
367
+ (
368
+ "easypost_amazonmws_fedex_labels",
369
+ "easypost_amazonmws_fedex_labels",
370
+ ),
371
+ (
372
+ "easypost_amazonmws_ups_tracking",
373
+ "easypost_amazonmws_ups_tracking",
374
+ ),
375
+ (
376
+ "easypost_amazonmws_usps_tracking",
377
+ "easypost_amazonmws_usps_tracking",
378
+ ),
379
+ (
380
+ "easypost_amazonmws_fedex_tracking",
381
+ "easypost_amazonmws_fedex_tracking",
382
+ ),
383
+ (
384
+ "easypost_apc_parcel_connect_book_service",
385
+ "easypost_apc_parcel_connect_book_service",
386
+ ),
387
+ (
388
+ "easypost_apc_parcel_connect_expedited_ddp",
389
+ "easypost_apc_parcel_connect_expedited_ddp",
390
+ ),
391
+ (
392
+ "easypost_apc_parcel_connect_expedited_ddu",
393
+ "easypost_apc_parcel_connect_expedited_ddu",
394
+ ),
395
+ (
396
+ "easypost_apc_parcel_connect_priority_ddp",
397
+ "easypost_apc_parcel_connect_priority_ddp",
398
+ ),
399
+ (
400
+ "easypost_apc_parcel_connect_priority_ddp_delcon",
401
+ "easypost_apc_parcel_connect_priority_ddp_delcon",
402
+ ),
403
+ (
404
+ "easypost_apc_parcel_connect_priority_ddu",
405
+ "easypost_apc_parcel_connect_priority_ddu",
406
+ ),
407
+ (
408
+ "easypost_apc_parcel_connect_priority_ddu_delcon",
409
+ "easypost_apc_parcel_connect_priority_ddu_delcon",
410
+ ),
411
+ (
412
+ "easypost_apc_parcel_connect_priority_ddupqw",
413
+ "easypost_apc_parcel_connect_priority_ddupqw",
414
+ ),
415
+ (
416
+ "easypost_apc_parcel_connect_standard_ddu",
417
+ "easypost_apc_parcel_connect_standard_ddu",
418
+ ),
419
+ (
420
+ "easypost_apc_parcel_connect_standard_ddupqw",
421
+ "easypost_apc_parcel_connect_standard_ddupqw",
422
+ ),
423
+ (
424
+ "easypost_apc_parcel_connect_packet_ddu",
425
+ "easypost_apc_parcel_connect_packet_ddu",
426
+ ),
427
+ ("easypost_asendia_pmi", "easypost_asendia_pmi"),
428
+ ("easypost_asendia_e_packet", "easypost_asendia_e_packet"),
429
+ ("easypost_asendia_ipa", "easypost_asendia_ipa"),
430
+ ("easypost_asendia_isal", "easypost_asendia_isal"),
431
+ ("easypost_asendia_us_ads", "easypost_asendia_us_ads"),
432
+ (
433
+ "easypost_asendia_us_air_freight_inbound",
434
+ "easypost_asendia_us_air_freight_inbound",
435
+ ),
436
+ (
437
+ "easypost_asendia_us_air_freight_outbound",
438
+ "easypost_asendia_us_air_freight_outbound",
439
+ ),
440
+ (
441
+ "easypost_asendia_us_domestic_bound_printer_matter_expedited",
442
+ "easypost_asendia_us_domestic_bound_printer_matter_expedited",
443
+ ),
444
+ (
445
+ "easypost_asendia_us_domestic_bound_printer_matter_ground",
446
+ "easypost_asendia_us_domestic_bound_printer_matter_ground",
447
+ ),
448
+ (
449
+ "easypost_asendia_us_domestic_flats_expedited",
450
+ "easypost_asendia_us_domestic_flats_expedited",
451
+ ),
452
+ (
453
+ "easypost_asendia_us_domestic_flats_ground",
454
+ "easypost_asendia_us_domestic_flats_ground",
455
+ ),
456
+ (
457
+ "easypost_asendia_us_domestic_parcel_ground_over1lb",
458
+ "easypost_asendia_us_domestic_parcel_ground_over1lb",
459
+ ),
460
+ (
461
+ "easypost_asendia_us_domestic_parcel_ground_under1lb",
462
+ "easypost_asendia_us_domestic_parcel_ground_under1lb",
463
+ ),
464
+ (
465
+ "easypost_asendia_us_domestic_parcel_max_over1lb",
466
+ "easypost_asendia_us_domestic_parcel_max_over1lb",
467
+ ),
468
+ (
469
+ "easypost_asendia_us_domestic_parcel_max_under1lb",
470
+ "easypost_asendia_us_domestic_parcel_max_under1lb",
471
+ ),
472
+ (
473
+ "easypost_asendia_us_domestic_parcel_over1lb_expedited",
474
+ "easypost_asendia_us_domestic_parcel_over1lb_expedited",
475
+ ),
476
+ (
477
+ "easypost_asendia_us_domestic_parcel_under1lb_expedited",
478
+ "easypost_asendia_us_domestic_parcel_under1lb_expedited",
479
+ ),
480
+ (
481
+ "easypost_asendia_us_domestic_promo_parcel_expedited",
482
+ "easypost_asendia_us_domestic_promo_parcel_expedited",
483
+ ),
484
+ (
485
+ "easypost_asendia_us_domestic_promo_parcel_ground",
486
+ "easypost_asendia_us_domestic_promo_parcel_ground",
487
+ ),
488
+ (
489
+ "easypost_asendia_us_bulk_freight",
490
+ "easypost_asendia_us_bulk_freight",
491
+ ),
492
+ (
493
+ "easypost_asendia_us_business_mail_canada_lettermail",
494
+ "easypost_asendia_us_business_mail_canada_lettermail",
495
+ ),
496
+ (
497
+ "easypost_asendia_us_business_mail_canada_lettermail_machineable",
498
+ "easypost_asendia_us_business_mail_canada_lettermail_machineable",
499
+ ),
500
+ (
501
+ "easypost_asendia_us_business_mail_economy",
502
+ "easypost_asendia_us_business_mail_economy",
503
+ ),
504
+ (
505
+ "easypost_asendia_us_business_mail_economy_lp_wholesale",
506
+ "easypost_asendia_us_business_mail_economy_lp_wholesale",
507
+ ),
508
+ (
509
+ "easypost_asendia_us_business_mail_economy_sp_wholesale",
510
+ "easypost_asendia_us_business_mail_economy_sp_wholesale",
511
+ ),
512
+ (
513
+ "easypost_asendia_us_business_mail_ipa",
514
+ "easypost_asendia_us_business_mail_ipa",
515
+ ),
516
+ (
517
+ "easypost_asendia_us_business_mail_isal",
518
+ "easypost_asendia_us_business_mail_isal",
519
+ ),
520
+ (
521
+ "easypost_asendia_us_business_mail_priority",
522
+ "easypost_asendia_us_business_mail_priority",
523
+ ),
524
+ (
525
+ "easypost_asendia_us_business_mail_priority_lp_wholesale",
526
+ "easypost_asendia_us_business_mail_priority_lp_wholesale",
527
+ ),
528
+ (
529
+ "easypost_asendia_us_business_mail_priority_sp_wholesale",
530
+ "easypost_asendia_us_business_mail_priority_sp_wholesale",
531
+ ),
532
+ (
533
+ "easypost_asendia_us_marketing_mail_canada_personalized_lcp",
534
+ "easypost_asendia_us_marketing_mail_canada_personalized_lcp",
535
+ ),
536
+ (
537
+ "easypost_asendia_us_marketing_mail_canada_personalized_machineable",
538
+ "easypost_asendia_us_marketing_mail_canada_personalized_machineable",
539
+ ),
540
+ (
541
+ "easypost_asendia_us_marketing_mail_canada_personalized_ndg",
542
+ "easypost_asendia_us_marketing_mail_canada_personalized_ndg",
543
+ ),
544
+ (
545
+ "easypost_asendia_us_marketing_mail_economy",
546
+ "easypost_asendia_us_marketing_mail_economy",
547
+ ),
548
+ (
549
+ "easypost_asendia_us_marketing_mail_ipa",
550
+ "easypost_asendia_us_marketing_mail_ipa",
551
+ ),
552
+ (
553
+ "easypost_asendia_us_marketing_mail_isal",
554
+ "easypost_asendia_us_marketing_mail_isal",
555
+ ),
556
+ (
557
+ "easypost_asendia_us_marketing_mail_priority",
558
+ "easypost_asendia_us_marketing_mail_priority",
559
+ ),
560
+ (
561
+ "easypost_asendia_us_publications_canada_lcp",
562
+ "easypost_asendia_us_publications_canada_lcp",
563
+ ),
564
+ (
565
+ "easypost_asendia_us_publications_canada_ndg",
566
+ "easypost_asendia_us_publications_canada_ndg",
567
+ ),
568
+ (
569
+ "easypost_asendia_us_publications_economy",
570
+ "easypost_asendia_us_publications_economy",
571
+ ),
572
+ (
573
+ "easypost_asendia_us_publications_ipa",
574
+ "easypost_asendia_us_publications_ipa",
575
+ ),
576
+ (
577
+ "easypost_asendia_us_publications_isal",
578
+ "easypost_asendia_us_publications_isal",
579
+ ),
580
+ (
581
+ "easypost_asendia_us_publications_priority",
582
+ "easypost_asendia_us_publications_priority",
583
+ ),
584
+ (
585
+ "easypost_asendia_us_epaq_elite",
586
+ "easypost_asendia_us_epaq_elite",
587
+ ),
588
+ (
589
+ "easypost_asendia_us_epaq_elite_custom",
590
+ "easypost_asendia_us_epaq_elite_custom",
591
+ ),
592
+ (
593
+ "easypost_asendia_us_epaq_elite_dap",
594
+ "easypost_asendia_us_epaq_elite_dap",
595
+ ),
596
+ (
597
+ "easypost_asendia_us_epaq_elite_ddp",
598
+ "easypost_asendia_us_epaq_elite_ddp",
599
+ ),
600
+ (
601
+ "easypost_asendia_us_epaq_elite_ddp_oversized",
602
+ "easypost_asendia_us_epaq_elite_ddp_oversized",
603
+ ),
604
+ (
605
+ "easypost_asendia_us_epaq_elite_dpd",
606
+ "easypost_asendia_us_epaq_elite_dpd",
607
+ ),
608
+ (
609
+ "easypost_asendia_us_epaq_elite_direct_access_canada_ddp",
610
+ "easypost_asendia_us_epaq_elite_direct_access_canada_ddp",
611
+ ),
612
+ (
613
+ "easypost_asendia_us_epaq_elite_oversized",
614
+ "easypost_asendia_us_epaq_elite_oversized",
615
+ ),
616
+ ("easypost_asendia_us_epaq_plus", "easypost_asendia_us_epaq_plus"),
617
+ (
618
+ "easypost_asendia_us_epaq_plus_custom",
619
+ "easypost_asendia_us_epaq_plus_custom",
620
+ ),
621
+ (
622
+ "easypost_asendia_us_epaq_plus_customs_prepaid",
623
+ "easypost_asendia_us_epaq_plus_customs_prepaid",
624
+ ),
625
+ (
626
+ "easypost_asendia_us_epaq_plus_dap",
627
+ "easypost_asendia_us_epaq_plus_dap",
628
+ ),
629
+ (
630
+ "easypost_asendia_us_epaq_plus_ddp",
631
+ "easypost_asendia_us_epaq_plus_ddp",
632
+ ),
633
+ (
634
+ "easypost_asendia_us_epaq_plus_economy",
635
+ "easypost_asendia_us_epaq_plus_economy",
636
+ ),
637
+ (
638
+ "easypost_asendia_us_epaq_plus_wholesale",
639
+ "easypost_asendia_us_epaq_plus_wholesale",
640
+ ),
641
+ (
642
+ "easypost_asendia_us_epaq_pluse_packet",
643
+ "easypost_asendia_us_epaq_pluse_packet",
644
+ ),
645
+ (
646
+ "easypost_asendia_us_epaq_pluse_packet_canada_customs_pre_paid",
647
+ "easypost_asendia_us_epaq_pluse_packet_canada_customs_pre_paid",
648
+ ),
649
+ (
650
+ "easypost_asendia_us_epaq_pluse_packet_canada_ddp",
651
+ "easypost_asendia_us_epaq_pluse_packet_canada_ddp",
652
+ ),
653
+ (
654
+ "easypost_asendia_us_epaq_returns_domestic",
655
+ "easypost_asendia_us_epaq_returns_domestic",
656
+ ),
657
+ (
658
+ "easypost_asendia_us_epaq_returns_international",
659
+ "easypost_asendia_us_epaq_returns_international",
660
+ ),
661
+ (
662
+ "easypost_asendia_us_epaq_select",
663
+ "easypost_asendia_us_epaq_select",
664
+ ),
665
+ (
666
+ "easypost_asendia_us_epaq_select_custom",
667
+ "easypost_asendia_us_epaq_select_custom",
668
+ ),
669
+ (
670
+ "easypost_asendia_us_epaq_select_customs_prepaid_by_shopper",
671
+ "easypost_asendia_us_epaq_select_customs_prepaid_by_shopper",
672
+ ),
673
+ (
674
+ "easypost_asendia_us_epaq_select_dap",
675
+ "easypost_asendia_us_epaq_select_dap",
676
+ ),
677
+ (
678
+ "easypost_asendia_us_epaq_select_ddp",
679
+ "easypost_asendia_us_epaq_select_ddp",
680
+ ),
681
+ (
682
+ "easypost_asendia_us_epaq_select_ddp_direct_access",
683
+ "easypost_asendia_us_epaq_select_ddp_direct_access",
684
+ ),
685
+ (
686
+ "easypost_asendia_us_epaq_select_direct_access",
687
+ "easypost_asendia_us_epaq_select_direct_access",
688
+ ),
689
+ (
690
+ "easypost_asendia_us_epaq_select_direct_access_canada_ddp",
691
+ "easypost_asendia_us_epaq_select_direct_access_canada_ddp",
692
+ ),
693
+ (
694
+ "easypost_asendia_us_epaq_select_economy",
695
+ "easypost_asendia_us_epaq_select_economy",
696
+ ),
697
+ (
698
+ "easypost_asendia_us_epaq_select_oversized",
699
+ "easypost_asendia_us_epaq_select_oversized",
700
+ ),
701
+ (
702
+ "easypost_asendia_us_epaq_select_oversized_ddp",
703
+ "easypost_asendia_us_epaq_select_oversized_ddp",
704
+ ),
705
+ (
706
+ "easypost_asendia_us_epaq_select_pmei",
707
+ "easypost_asendia_us_epaq_select_pmei",
708
+ ),
709
+ (
710
+ "easypost_asendia_us_epaq_select_pmei_canada_customs_pre_paid",
711
+ "easypost_asendia_us_epaq_select_pmei_canada_customs_pre_paid",
712
+ ),
713
+ (
714
+ "easypost_asendia_us_epaq_select_pmeipc_postage",
715
+ "easypost_asendia_us_epaq_select_pmeipc_postage",
716
+ ),
717
+ (
718
+ "easypost_asendia_us_epaq_select_pmi",
719
+ "easypost_asendia_us_epaq_select_pmi",
720
+ ),
721
+ (
722
+ "easypost_asendia_us_epaq_select_pmi_canada_customs_prepaid",
723
+ "easypost_asendia_us_epaq_select_pmi_canada_customs_prepaid",
724
+ ),
725
+ (
726
+ "easypost_asendia_us_epaq_select_pmi_canada_ddp",
727
+ "easypost_asendia_us_epaq_select_pmi_canada_ddp",
728
+ ),
729
+ (
730
+ "easypost_asendia_us_epaq_select_pmi_non_presort",
731
+ "easypost_asendia_us_epaq_select_pmi_non_presort",
732
+ ),
733
+ (
734
+ "easypost_asendia_us_epaq_select_pmipc_postage",
735
+ "easypost_asendia_us_epaq_select_pmipc_postage",
736
+ ),
737
+ (
738
+ "easypost_asendia_us_epaq_standard",
739
+ "easypost_asendia_us_epaq_standard",
740
+ ),
741
+ (
742
+ "easypost_asendia_us_epaq_standard_custom",
743
+ "easypost_asendia_us_epaq_standard_custom",
744
+ ),
745
+ (
746
+ "easypost_asendia_us_epaq_standard_economy",
747
+ "easypost_asendia_us_epaq_standard_economy",
748
+ ),
749
+ (
750
+ "easypost_asendia_us_epaq_standard_ipa",
751
+ "easypost_asendia_us_epaq_standard_ipa",
752
+ ),
753
+ (
754
+ "easypost_asendia_us_epaq_standard_isal",
755
+ "easypost_asendia_us_epaq_standard_isal",
756
+ ),
757
+ (
758
+ "easypost_asendia_us_epaq_select_pmei_non_presort",
759
+ "easypost_asendia_us_epaq_select_pmei_non_presort",
760
+ ),
761
+ (
762
+ "easypost_australiapost_express_post",
763
+ "easypost_australiapost_express_post",
764
+ ),
765
+ (
766
+ "easypost_australiapost_express_post_signature",
767
+ "easypost_australiapost_express_post_signature",
768
+ ),
769
+ (
770
+ "easypost_australiapost_parcel_post",
771
+ "easypost_australiapost_parcel_post",
772
+ ),
773
+ (
774
+ "easypost_australiapost_parcel_post_signature",
775
+ "easypost_australiapost_parcel_post_signature",
776
+ ),
777
+ (
778
+ "easypost_australiapost_parcel_post_extra",
779
+ "easypost_australiapost_parcel_post_extra",
780
+ ),
781
+ (
782
+ "easypost_australiapost_parcel_post_wine_plus_signature",
783
+ "easypost_australiapost_parcel_post_wine_plus_signature",
784
+ ),
785
+ ("easypost_axlehire_delivery", "easypost_axlehire_delivery"),
786
+ (
787
+ "easypost_better_trucks_next_day",
788
+ "easypost_better_trucks_next_day",
789
+ ),
790
+ ("easypost_bond_standard", "easypost_bond_standard"),
791
+ (
792
+ "easypost_canadapost_regular_parcel",
793
+ "easypost_canadapost_regular_parcel",
794
+ ),
795
+ (
796
+ "easypost_canadapost_expedited_parcel",
797
+ "easypost_canadapost_expedited_parcel",
798
+ ),
799
+ (
800
+ "easypost_canadapost_xpresspost",
801
+ "easypost_canadapost_xpresspost",
802
+ ),
803
+ (
804
+ "easypost_canadapost_xpresspost_certified",
805
+ "easypost_canadapost_xpresspost_certified",
806
+ ),
807
+ ("easypost_canadapost_priority", "easypost_canadapost_priority"),
808
+ (
809
+ "easypost_canadapost_library_books",
810
+ "easypost_canadapost_library_books",
811
+ ),
812
+ (
813
+ "easypost_canadapost_expedited_parcel_usa",
814
+ "easypost_canadapost_expedited_parcel_usa",
815
+ ),
816
+ (
817
+ "easypost_canadapost_priority_worldwide_envelope_usa",
818
+ "easypost_canadapost_priority_worldwide_envelope_usa",
819
+ ),
820
+ (
821
+ "easypost_canadapost_priority_worldwide_pak_usa",
822
+ "easypost_canadapost_priority_worldwide_pak_usa",
823
+ ),
824
+ (
825
+ "easypost_canadapost_priority_worldwide_parcel_usa",
826
+ "easypost_canadapost_priority_worldwide_parcel_usa",
827
+ ),
828
+ (
829
+ "easypost_canadapost_small_packet_usa_air",
830
+ "easypost_canadapost_small_packet_usa_air",
831
+ ),
832
+ (
833
+ "easypost_canadapost_tracked_packet_usa",
834
+ "easypost_canadapost_tracked_packet_usa",
835
+ ),
836
+ (
837
+ "easypost_canadapost_tracked_packet_usalvm",
838
+ "easypost_canadapost_tracked_packet_usalvm",
839
+ ),
840
+ (
841
+ "easypost_canadapost_xpresspost_usa",
842
+ "easypost_canadapost_xpresspost_usa",
843
+ ),
844
+ (
845
+ "easypost_canadapost_xpresspost_international",
846
+ "easypost_canadapost_xpresspost_international",
847
+ ),
848
+ (
849
+ "easypost_canadapost_international_parcel_air",
850
+ "easypost_canadapost_international_parcel_air",
851
+ ),
852
+ (
853
+ "easypost_canadapost_international_parcel_surface",
854
+ "easypost_canadapost_international_parcel_surface",
855
+ ),
856
+ (
857
+ "easypost_canadapost_priority_worldwide_envelope_intl",
858
+ "easypost_canadapost_priority_worldwide_envelope_intl",
859
+ ),
860
+ (
861
+ "easypost_canadapost_priority_worldwide_pak_intl",
862
+ "easypost_canadapost_priority_worldwide_pak_intl",
863
+ ),
864
+ (
865
+ "easypost_canadapost_priority_worldwide_parcel_intl",
866
+ "easypost_canadapost_priority_worldwide_parcel_intl",
867
+ ),
868
+ (
869
+ "easypost_canadapost_small_packet_international_air",
870
+ "easypost_canadapost_small_packet_international_air",
871
+ ),
872
+ (
873
+ "easypost_canadapost_small_packet_international_surface",
874
+ "easypost_canadapost_small_packet_international_surface",
875
+ ),
876
+ (
877
+ "easypost_canadapost_tracked_packet_international",
878
+ "easypost_canadapost_tracked_packet_international",
879
+ ),
880
+ ("easypost_canpar_ground", "easypost_canpar_ground"),
881
+ ("easypost_canpar_select_letter", "easypost_canpar_select_letter"),
882
+ ("easypost_canpar_select_pak", "easypost_canpar_select_pak"),
883
+ ("easypost_canpar_select", "easypost_canpar_select"),
884
+ (
885
+ "easypost_canpar_overnight_letter",
886
+ "easypost_canpar_overnight_letter",
887
+ ),
888
+ ("easypost_canpar_overnight_pak", "easypost_canpar_overnight_pak"),
889
+ ("easypost_canpar_overnight", "easypost_canpar_overnight"),
890
+ ("easypost_canpar_select_usa", "easypost_canpar_select_usa"),
891
+ ("easypost_canpar_usa_pak", "easypost_canpar_usa_pak"),
892
+ ("easypost_canpar_usa_letter", "easypost_canpar_usa_letter"),
893
+ ("easypost_canpar_usa", "easypost_canpar_usa"),
894
+ ("easypost_canpar_international", "easypost_canpar_international"),
895
+ ("easypost_cdl_distribution", "easypost_cdl_distribution"),
896
+ ("easypost_cdl_same_day", "easypost_cdl_same_day"),
897
+ (
898
+ "easypost_courier_express_basic_parcel",
899
+ "easypost_courier_express_basic_parcel",
900
+ ),
901
+ (
902
+ "easypost_couriersplease_domestic_priority_signature",
903
+ "easypost_couriersplease_domestic_priority_signature",
904
+ ),
905
+ (
906
+ "easypost_couriersplease_domestic_priority",
907
+ "easypost_couriersplease_domestic_priority",
908
+ ),
909
+ (
910
+ "easypost_couriersplease_domestic_off_peak_signature",
911
+ "easypost_couriersplease_domestic_off_peak_signature",
912
+ ),
913
+ (
914
+ "easypost_couriersplease_domestic_off_peak",
915
+ "easypost_couriersplease_domestic_off_peak",
916
+ ),
917
+ (
918
+ "easypost_couriersplease_gold_domestic_signature",
919
+ "easypost_couriersplease_gold_domestic_signature",
920
+ ),
921
+ (
922
+ "easypost_couriersplease_gold_domestic",
923
+ "easypost_couriersplease_gold_domestic",
924
+ ),
925
+ (
926
+ "easypost_couriersplease_australian_city_express_signature",
927
+ "easypost_couriersplease_australian_city_express_signature",
928
+ ),
929
+ (
930
+ "easypost_couriersplease_australian_city_express",
931
+ "easypost_couriersplease_australian_city_express",
932
+ ),
933
+ (
934
+ "easypost_couriersplease_domestic_saver_signature",
935
+ "easypost_couriersplease_domestic_saver_signature",
936
+ ),
937
+ (
938
+ "easypost_couriersplease_domestic_saver",
939
+ "easypost_couriersplease_domestic_saver",
940
+ ),
941
+ (
942
+ "easypost_couriersplease_road_express",
943
+ "easypost_couriersplease_road_express",
944
+ ),
945
+ (
946
+ "easypost_couriersplease_5_kg_satchel",
947
+ "easypost_couriersplease_5_kg_satchel",
948
+ ),
949
+ (
950
+ "easypost_couriersplease_3_kg_satchel",
951
+ "easypost_couriersplease_3_kg_satchel",
952
+ ),
953
+ (
954
+ "easypost_couriersplease_1_kg_satchel",
955
+ "easypost_couriersplease_1_kg_satchel",
956
+ ),
957
+ (
958
+ "easypost_couriersplease_5_kg_satchel_atl",
959
+ "easypost_couriersplease_5_kg_satchel_atl",
960
+ ),
961
+ (
962
+ "easypost_couriersplease_3_kg_satchel_atl",
963
+ "easypost_couriersplease_3_kg_satchel_atl",
964
+ ),
965
+ (
966
+ "easypost_couriersplease_1_kg_satchel_atl",
967
+ "easypost_couriersplease_1_kg_satchel_atl",
968
+ ),
969
+ (
970
+ "easypost_couriersplease_500_gram_satchel",
971
+ "easypost_couriersplease_500_gram_satchel",
972
+ ),
973
+ (
974
+ "easypost_couriersplease_500_gram_satchel_atl",
975
+ "easypost_couriersplease_500_gram_satchel_atl",
976
+ ),
977
+ (
978
+ "easypost_couriersplease_25_kg_parcel",
979
+ "easypost_couriersplease_25_kg_parcel",
980
+ ),
981
+ (
982
+ "easypost_couriersplease_10_kg_parcel",
983
+ "easypost_couriersplease_10_kg_parcel",
984
+ ),
985
+ (
986
+ "easypost_couriersplease_5_kg_parcel",
987
+ "easypost_couriersplease_5_kg_parcel",
988
+ ),
989
+ (
990
+ "easypost_couriersplease_3_kg_parcel",
991
+ "easypost_couriersplease_3_kg_parcel",
992
+ ),
993
+ (
994
+ "easypost_couriersplease_1_kg_parcel",
995
+ "easypost_couriersplease_1_kg_parcel",
996
+ ),
997
+ (
998
+ "easypost_couriersplease_500_gram_parcel",
999
+ "easypost_couriersplease_500_gram_parcel",
1000
+ ),
1001
+ (
1002
+ "easypost_couriersplease_500_gram_parcel_atl",
1003
+ "easypost_couriersplease_500_gram_parcel_atl",
1004
+ ),
1005
+ (
1006
+ "easypost_couriersplease_express_international_priority",
1007
+ "easypost_couriersplease_express_international_priority",
1008
+ ),
1009
+ (
1010
+ "easypost_couriersplease_international_saver",
1011
+ "easypost_couriersplease_international_saver",
1012
+ ),
1013
+ (
1014
+ "easypost_couriersplease_international_express_import",
1015
+ "easypost_couriersplease_international_express_import",
1016
+ ),
1017
+ (
1018
+ "easypost_couriersplease_domestic_tracked",
1019
+ "easypost_couriersplease_domestic_tracked",
1020
+ ),
1021
+ (
1022
+ "easypost_couriersplease_international_economy",
1023
+ "easypost_couriersplease_international_economy",
1024
+ ),
1025
+ (
1026
+ "easypost_couriersplease_international_standard",
1027
+ "easypost_couriersplease_international_standard",
1028
+ ),
1029
+ (
1030
+ "easypost_couriersplease_international_express",
1031
+ "easypost_couriersplease_international_express",
1032
+ ),
1033
+ (
1034
+ "easypost_deutschepost_packet_plus",
1035
+ "easypost_deutschepost_packet_plus",
1036
+ ),
1037
+ (
1038
+ "easypost_deutschepost_uk_priority_packet_plus",
1039
+ "easypost_deutschepost_uk_priority_packet_plus",
1040
+ ),
1041
+ (
1042
+ "easypost_deutschepost_uk_priority_packet",
1043
+ "easypost_deutschepost_uk_priority_packet",
1044
+ ),
1045
+ (
1046
+ "easypost_deutschepost_uk_priority_packet_tracked",
1047
+ "easypost_deutschepost_uk_priority_packet_tracked",
1048
+ ),
1049
+ (
1050
+ "easypost_deutschepost_uk_business_mail_registered",
1051
+ "easypost_deutschepost_uk_business_mail_registered",
1052
+ ),
1053
+ (
1054
+ "easypost_deutschepost_uk_standard_packet",
1055
+ "easypost_deutschepost_uk_standard_packet",
1056
+ ),
1057
+ (
1058
+ "easypost_deutschepost_uk_business_mail_standard",
1059
+ "easypost_deutschepost_uk_business_mail_standard",
1060
+ ),
1061
+ ("easypost_dhl_ecom_asia_packet", "easypost_dhl_ecom_asia_packet"),
1062
+ (
1063
+ "easypost_dhl_ecom_asia_parcel_direct",
1064
+ "easypost_dhl_ecom_asia_parcel_direct",
1065
+ ),
1066
+ (
1067
+ "easypost_dhl_ecom_asia_parcel_direct_expedited",
1068
+ "easypost_dhl_ecom_asia_parcel_direct_expedited",
1069
+ ),
1070
+ (
1071
+ "easypost_dhl_ecom_parcel_expedited",
1072
+ "easypost_dhl_ecom_parcel_expedited",
1073
+ ),
1074
+ (
1075
+ "easypost_dhl_ecom_parcel_expedited_max",
1076
+ "easypost_dhl_ecom_parcel_expedited_max",
1077
+ ),
1078
+ (
1079
+ "easypost_dhl_ecom_parcel_ground",
1080
+ "easypost_dhl_ecom_parcel_ground",
1081
+ ),
1082
+ (
1083
+ "easypost_dhl_ecom_bpm_expedited",
1084
+ "easypost_dhl_ecom_bpm_expedited",
1085
+ ),
1086
+ ("easypost_dhl_ecom_bpm_ground", "easypost_dhl_ecom_bpm_ground"),
1087
+ (
1088
+ "easypost_dhl_ecom_parcel_international_direct",
1089
+ "easypost_dhl_ecom_parcel_international_direct",
1090
+ ),
1091
+ (
1092
+ "easypost_dhl_ecom_parcel_international_standard",
1093
+ "easypost_dhl_ecom_parcel_international_standard",
1094
+ ),
1095
+ (
1096
+ "easypost_dhl_ecom_packet_international",
1097
+ "easypost_dhl_ecom_packet_international",
1098
+ ),
1099
+ (
1100
+ "easypost_dhl_ecom_parcel_international_direct_priority",
1101
+ "easypost_dhl_ecom_parcel_international_direct_priority",
1102
+ ),
1103
+ (
1104
+ "easypost_dhl_ecom_parcel_international_direct_standard",
1105
+ "easypost_dhl_ecom_parcel_international_direct_standard",
1106
+ ),
1107
+ (
1108
+ "easypost_dhl_express_break_bulk_economy",
1109
+ "easypost_dhl_express_break_bulk_economy",
1110
+ ),
1111
+ (
1112
+ "easypost_dhl_express_break_bulk_express",
1113
+ "easypost_dhl_express_break_bulk_express",
1114
+ ),
1115
+ (
1116
+ "easypost_dhl_express_domestic_economy_select",
1117
+ "easypost_dhl_express_domestic_economy_select",
1118
+ ),
1119
+ (
1120
+ "easypost_dhl_express_domestic_express",
1121
+ "easypost_dhl_express_domestic_express",
1122
+ ),
1123
+ (
1124
+ "easypost_dhl_express_domestic_express1030",
1125
+ "easypost_dhl_express_domestic_express1030",
1126
+ ),
1127
+ (
1128
+ "easypost_dhl_express_domestic_express1200",
1129
+ "easypost_dhl_express_domestic_express1200",
1130
+ ),
1131
+ (
1132
+ "easypost_dhl_express_economy_select",
1133
+ "easypost_dhl_express_economy_select",
1134
+ ),
1135
+ (
1136
+ "easypost_dhl_express_economy_select_non_doc",
1137
+ "easypost_dhl_express_economy_select_non_doc",
1138
+ ),
1139
+ (
1140
+ "easypost_dhl_express_euro_pack",
1141
+ "easypost_dhl_express_euro_pack",
1142
+ ),
1143
+ (
1144
+ "easypost_dhl_express_europack_non_doc",
1145
+ "easypost_dhl_express_europack_non_doc",
1146
+ ),
1147
+ (
1148
+ "easypost_dhl_express_express1030",
1149
+ "easypost_dhl_express_express1030",
1150
+ ),
1151
+ (
1152
+ "easypost_dhl_express_express1030_non_doc",
1153
+ "easypost_dhl_express_express1030_non_doc",
1154
+ ),
1155
+ (
1156
+ "easypost_dhl_express_express1200_non_doc",
1157
+ "easypost_dhl_express_express1200_non_doc",
1158
+ ),
1159
+ (
1160
+ "easypost_dhl_express_express1200",
1161
+ "easypost_dhl_express_express1200",
1162
+ ),
1163
+ (
1164
+ "easypost_dhl_express_express900",
1165
+ "easypost_dhl_express_express900",
1166
+ ),
1167
+ (
1168
+ "easypost_dhl_express_express900_non_doc",
1169
+ "easypost_dhl_express_express900_non_doc",
1170
+ ),
1171
+ (
1172
+ "easypost_dhl_express_express_easy",
1173
+ "easypost_dhl_express_express_easy",
1174
+ ),
1175
+ (
1176
+ "easypost_dhl_express_express_easy_non_doc",
1177
+ "easypost_dhl_express_express_easy_non_doc",
1178
+ ),
1179
+ (
1180
+ "easypost_dhl_express_express_envelope",
1181
+ "easypost_dhl_express_express_envelope",
1182
+ ),
1183
+ (
1184
+ "easypost_dhl_express_express_worldwide",
1185
+ "easypost_dhl_express_express_worldwide",
1186
+ ),
1187
+ (
1188
+ "easypost_dhl_express_express_worldwide_b2_c",
1189
+ "easypost_dhl_express_express_worldwide_b2_c",
1190
+ ),
1191
+ (
1192
+ "easypost_dhl_express_express_worldwide_b2_c_non_doc",
1193
+ "easypost_dhl_express_express_worldwide_b2_c_non_doc",
1194
+ ),
1195
+ (
1196
+ "easypost_dhl_express_express_worldwide_ecx",
1197
+ "easypost_dhl_express_express_worldwide_ecx",
1198
+ ),
1199
+ (
1200
+ "easypost_dhl_express_express_worldwide_non_doc",
1201
+ "easypost_dhl_express_express_worldwide_non_doc",
1202
+ ),
1203
+ (
1204
+ "easypost_dhl_express_freight_worldwide",
1205
+ "easypost_dhl_express_freight_worldwide",
1206
+ ),
1207
+ (
1208
+ "easypost_dhl_express_globalmail_business",
1209
+ "easypost_dhl_express_globalmail_business",
1210
+ ),
1211
+ ("easypost_dhl_express_jet_line", "easypost_dhl_express_jet_line"),
1212
+ (
1213
+ "easypost_dhl_express_jumbo_box",
1214
+ "easypost_dhl_express_jumbo_box",
1215
+ ),
1216
+ (
1217
+ "easypost_dhl_express_logistics_services",
1218
+ "easypost_dhl_express_logistics_services",
1219
+ ),
1220
+ ("easypost_dhl_express_same_day", "easypost_dhl_express_same_day"),
1221
+ (
1222
+ "easypost_dhl_express_secure_line",
1223
+ "easypost_dhl_express_secure_line",
1224
+ ),
1225
+ (
1226
+ "easypost_dhl_express_sprint_line",
1227
+ "easypost_dhl_express_sprint_line",
1228
+ ),
1229
+ ("easypost_dpd_classic", "easypost_dpd_classic"),
1230
+ ("easypost_dpd_8_30", "easypost_dpd_8_30"),
1231
+ ("easypost_dpd_10_00", "easypost_dpd_10_00"),
1232
+ ("easypost_dpd_12_00", "easypost_dpd_12_00"),
1233
+ ("easypost_dpd_18_00", "easypost_dpd_18_00"),
1234
+ ("easypost_dpd_express", "easypost_dpd_express"),
1235
+ ("easypost_dpd_parcelletter", "easypost_dpd_parcelletter"),
1236
+ ("easypost_dpd_parcelletterplus", "easypost_dpd_parcelletterplus"),
1237
+ (
1238
+ "easypost_dpd_internationalmail",
1239
+ "easypost_dpd_internationalmail",
1240
+ ),
1241
+ (
1242
+ "easypost_dpd_uk_air_express_international_air",
1243
+ "easypost_dpd_uk_air_express_international_air",
1244
+ ),
1245
+ (
1246
+ "easypost_dpd_uk_air_classic_international_air",
1247
+ "easypost_dpd_uk_air_classic_international_air",
1248
+ ),
1249
+ ("easypost_dpd_uk_parcel_sunday", "easypost_dpd_uk_parcel_sunday"),
1250
+ (
1251
+ "easypost_dpd_uk_freight_parcel_sunday",
1252
+ "easypost_dpd_uk_freight_parcel_sunday",
1253
+ ),
1254
+ ("easypost_dpd_uk_pallet_sunday", "easypost_dpd_uk_pallet_sunday"),
1255
+ (
1256
+ "easypost_dpd_uk_pallet_dpd_classic",
1257
+ "easypost_dpd_uk_pallet_dpd_classic",
1258
+ ),
1259
+ (
1260
+ "easypost_dpd_uk_expresspak_dpd_classic",
1261
+ "easypost_dpd_uk_expresspak_dpd_classic",
1262
+ ),
1263
+ (
1264
+ "easypost_dpd_uk_expresspak_sunday",
1265
+ "easypost_dpd_uk_expresspak_sunday",
1266
+ ),
1267
+ (
1268
+ "easypost_dpd_uk_parcel_dpd_classic",
1269
+ "easypost_dpd_uk_parcel_dpd_classic",
1270
+ ),
1271
+ (
1272
+ "easypost_dpd_uk_parcel_dpd_two_day",
1273
+ "easypost_dpd_uk_parcel_dpd_two_day",
1274
+ ),
1275
+ (
1276
+ "easypost_dpd_uk_parcel_dpd_next_day",
1277
+ "easypost_dpd_uk_parcel_dpd_next_day",
1278
+ ),
1279
+ ("easypost_dpd_uk_parcel_dpd12", "easypost_dpd_uk_parcel_dpd12"),
1280
+ ("easypost_dpd_uk_parcel_dpd10", "easypost_dpd_uk_parcel_dpd10"),
1281
+ (
1282
+ "easypost_dpd_uk_parcel_return_to_shop",
1283
+ "easypost_dpd_uk_parcel_return_to_shop",
1284
+ ),
1285
+ (
1286
+ "easypost_dpd_uk_parcel_saturday",
1287
+ "easypost_dpd_uk_parcel_saturday",
1288
+ ),
1289
+ (
1290
+ "easypost_dpd_uk_parcel_saturday12",
1291
+ "easypost_dpd_uk_parcel_saturday12",
1292
+ ),
1293
+ (
1294
+ "easypost_dpd_uk_parcel_saturday10",
1295
+ "easypost_dpd_uk_parcel_saturday10",
1296
+ ),
1297
+ (
1298
+ "easypost_dpd_uk_parcel_sunday12",
1299
+ "easypost_dpd_uk_parcel_sunday12",
1300
+ ),
1301
+ (
1302
+ "easypost_dpd_uk_freight_parcel_dpd_classic",
1303
+ "easypost_dpd_uk_freight_parcel_dpd_classic",
1304
+ ),
1305
+ (
1306
+ "easypost_dpd_uk_freight_parcel_sunday12",
1307
+ "easypost_dpd_uk_freight_parcel_sunday12",
1308
+ ),
1309
+ (
1310
+ "easypost_dpd_uk_expresspak_dpd_next_day",
1311
+ "easypost_dpd_uk_expresspak_dpd_next_day",
1312
+ ),
1313
+ (
1314
+ "easypost_dpd_uk_expresspak_dpd12",
1315
+ "easypost_dpd_uk_expresspak_dpd12",
1316
+ ),
1317
+ (
1318
+ "easypost_dpd_uk_expresspak_dpd10",
1319
+ "easypost_dpd_uk_expresspak_dpd10",
1320
+ ),
1321
+ (
1322
+ "easypost_dpd_uk_expresspak_saturday",
1323
+ "easypost_dpd_uk_expresspak_saturday",
1324
+ ),
1325
+ (
1326
+ "easypost_dpd_uk_expresspak_saturday12",
1327
+ "easypost_dpd_uk_expresspak_saturday12",
1328
+ ),
1329
+ (
1330
+ "easypost_dpd_uk_expresspak_saturday10",
1331
+ "easypost_dpd_uk_expresspak_saturday10",
1332
+ ),
1333
+ (
1334
+ "easypost_dpd_uk_expresspak_sunday12",
1335
+ "easypost_dpd_uk_expresspak_sunday12",
1336
+ ),
1337
+ (
1338
+ "easypost_dpd_uk_pallet_sunday12",
1339
+ "easypost_dpd_uk_pallet_sunday12",
1340
+ ),
1341
+ (
1342
+ "easypost_dpd_uk_pallet_dpd_two_day",
1343
+ "easypost_dpd_uk_pallet_dpd_two_day",
1344
+ ),
1345
+ (
1346
+ "easypost_dpd_uk_pallet_dpd_next_day",
1347
+ "easypost_dpd_uk_pallet_dpd_next_day",
1348
+ ),
1349
+ ("easypost_dpd_uk_pallet_dpd12", "easypost_dpd_uk_pallet_dpd12"),
1350
+ ("easypost_dpd_uk_pallet_dpd10", "easypost_dpd_uk_pallet_dpd10"),
1351
+ (
1352
+ "easypost_dpd_uk_pallet_saturday",
1353
+ "easypost_dpd_uk_pallet_saturday",
1354
+ ),
1355
+ (
1356
+ "easypost_dpd_uk_pallet_saturday12",
1357
+ "easypost_dpd_uk_pallet_saturday12",
1358
+ ),
1359
+ (
1360
+ "easypost_dpd_uk_pallet_saturday10",
1361
+ "easypost_dpd_uk_pallet_saturday10",
1362
+ ),
1363
+ (
1364
+ "easypost_dpd_uk_freight_parcel_dpd_two_day",
1365
+ "easypost_dpd_uk_freight_parcel_dpd_two_day",
1366
+ ),
1367
+ (
1368
+ "easypost_dpd_uk_freight_parcel_dpd_next_day",
1369
+ "easypost_dpd_uk_freight_parcel_dpd_next_day",
1370
+ ),
1371
+ (
1372
+ "easypost_dpd_uk_freight_parcel_dpd12",
1373
+ "easypost_dpd_uk_freight_parcel_dpd12",
1374
+ ),
1375
+ (
1376
+ "easypost_dpd_uk_freight_parcel_dpd10",
1377
+ "easypost_dpd_uk_freight_parcel_dpd10",
1378
+ ),
1379
+ (
1380
+ "easypost_dpd_uk_freight_parcel_saturday",
1381
+ "easypost_dpd_uk_freight_parcel_saturday",
1382
+ ),
1383
+ (
1384
+ "easypost_dpd_uk_freight_parcel_saturday12",
1385
+ "easypost_dpd_uk_freight_parcel_saturday12",
1386
+ ),
1387
+ (
1388
+ "easypost_dpd_uk_freight_parcel_saturday10",
1389
+ "easypost_dpd_uk_freight_parcel_saturday10",
1390
+ ),
1391
+ (
1392
+ "easypost_epost_courier_service_ddp",
1393
+ "easypost_epost_courier_service_ddp",
1394
+ ),
1395
+ (
1396
+ "easypost_epost_courier_service_ddu",
1397
+ "easypost_epost_courier_service_ddu",
1398
+ ),
1399
+ (
1400
+ "easypost_epost_domestic_economy_parcel",
1401
+ "easypost_epost_domestic_economy_parcel",
1402
+ ),
1403
+ (
1404
+ "easypost_epost_domestic_parcel_bpm",
1405
+ "easypost_epost_domestic_parcel_bpm",
1406
+ ),
1407
+ (
1408
+ "easypost_epost_domestic_priority_parcel",
1409
+ "easypost_epost_domestic_priority_parcel",
1410
+ ),
1411
+ (
1412
+ "easypost_epost_domestic_priority_parcel_bpm",
1413
+ "easypost_epost_domestic_priority_parcel_bpm",
1414
+ ),
1415
+ ("easypost_epost_emi_service", "easypost_epost_emi_service"),
1416
+ (
1417
+ "easypost_epost_economy_parcel_service",
1418
+ "easypost_epost_economy_parcel_service",
1419
+ ),
1420
+ ("easypost_epost_ipa_service", "easypost_epost_ipa_service"),
1421
+ ("easypost_epost_isal_service", "easypost_epost_isal_service"),
1422
+ ("easypost_epost_pmi_service", "easypost_epost_pmi_service"),
1423
+ (
1424
+ "easypost_epost_priority_parcel_ddp",
1425
+ "easypost_epost_priority_parcel_ddp",
1426
+ ),
1427
+ (
1428
+ "easypost_epost_priority_parcel_ddu",
1429
+ "easypost_epost_priority_parcel_ddu",
1430
+ ),
1431
+ (
1432
+ "easypost_epost_priority_parcel_delivery_confirmation_ddp",
1433
+ "easypost_epost_priority_parcel_delivery_confirmation_ddp",
1434
+ ),
1435
+ (
1436
+ "easypost_epost_priority_parcel_delivery_confirmation_ddu",
1437
+ "easypost_epost_priority_parcel_delivery_confirmation_ddu",
1438
+ ),
1439
+ (
1440
+ "easypost_epost_epacket_service",
1441
+ "easypost_epost_epacket_service",
1442
+ ),
1443
+ (
1444
+ "easypost_estafeta_next_day_by930",
1445
+ "easypost_estafeta_next_day_by930",
1446
+ ),
1447
+ (
1448
+ "easypost_estafeta_next_day_by1130",
1449
+ "easypost_estafeta_next_day_by1130",
1450
+ ),
1451
+ ("easypost_estafeta_next_day", "easypost_estafeta_next_day"),
1452
+ ("easypost_estafeta_two_day", "easypost_estafeta_two_day"),
1453
+ ("easypost_estafeta_ltl", "easypost_estafeta_ltl"),
1454
+ ("easypost_fastway_parcel", "easypost_fastway_parcel"),
1455
+ ("easypost_fastway_satchel", "easypost_fastway_satchel"),
1456
+ ("easypost_fedex_ground", "easypost_fedex_ground"),
1457
+ ("easypost_fedex_2_day", "easypost_fedex_2_day"),
1458
+ ("easypost_fedex_2_day_am", "easypost_fedex_2_day_am"),
1459
+ ("easypost_fedex_express_saver", "easypost_fedex_express_saver"),
1460
+ (
1461
+ "easypost_fedex_standard_overnight",
1462
+ "easypost_fedex_standard_overnight",
1463
+ ),
1464
+ (
1465
+ "easypost_fedex_first_overnight",
1466
+ "easypost_fedex_first_overnight",
1467
+ ),
1468
+ (
1469
+ "easypost_fedex_priority_overnight",
1470
+ "easypost_fedex_priority_overnight",
1471
+ ),
1472
+ (
1473
+ "easypost_fedex_international_economy",
1474
+ "easypost_fedex_international_economy",
1475
+ ),
1476
+ (
1477
+ "easypost_fedex_international_first",
1478
+ "easypost_fedex_international_first",
1479
+ ),
1480
+ (
1481
+ "easypost_fedex_international_priority",
1482
+ "easypost_fedex_international_priority",
1483
+ ),
1484
+ (
1485
+ "easypost_fedex_ground_home_delivery",
1486
+ "easypost_fedex_ground_home_delivery",
1487
+ ),
1488
+ (
1489
+ "easypost_fedex_crossborder_cbec",
1490
+ "easypost_fedex_crossborder_cbec",
1491
+ ),
1492
+ (
1493
+ "easypost_fedex_crossborder_cbecl",
1494
+ "easypost_fedex_crossborder_cbecl",
1495
+ ),
1496
+ (
1497
+ "easypost_fedex_crossborder_cbecp",
1498
+ "easypost_fedex_crossborder_cbecp",
1499
+ ),
1500
+ (
1501
+ "easypost_fedex_sameday_city_economy_service",
1502
+ "easypost_fedex_sameday_city_economy_service",
1503
+ ),
1504
+ (
1505
+ "easypost_fedex_sameday_city_standard_service",
1506
+ "easypost_fedex_sameday_city_standard_service",
1507
+ ),
1508
+ (
1509
+ "easypost_fedex_sameday_city_priority_service",
1510
+ "easypost_fedex_sameday_city_priority_service",
1511
+ ),
1512
+ (
1513
+ "easypost_fedex_sameday_city_last_mile",
1514
+ "easypost_fedex_sameday_city_last_mile",
1515
+ ),
1516
+ ("easypost_fedex_smart_post", "easypost_fedex_smart_post"),
1517
+ ("easypost_globegistics_pmei", "easypost_globegistics_pmei"),
1518
+ (
1519
+ "easypost_globegistics_ecom_domestic",
1520
+ "easypost_globegistics_ecom_domestic",
1521
+ ),
1522
+ (
1523
+ "easypost_globegistics_ecom_europe",
1524
+ "easypost_globegistics_ecom_europe",
1525
+ ),
1526
+ (
1527
+ "easypost_globegistics_ecom_express",
1528
+ "easypost_globegistics_ecom_express",
1529
+ ),
1530
+ (
1531
+ "easypost_globegistics_ecom_extra",
1532
+ "easypost_globegistics_ecom_extra",
1533
+ ),
1534
+ (
1535
+ "easypost_globegistics_ecom_ipa",
1536
+ "easypost_globegistics_ecom_ipa",
1537
+ ),
1538
+ (
1539
+ "easypost_globegistics_ecom_isal",
1540
+ "easypost_globegistics_ecom_isal",
1541
+ ),
1542
+ (
1543
+ "easypost_globegistics_ecom_pmei_duty_paid",
1544
+ "easypost_globegistics_ecom_pmei_duty_paid",
1545
+ ),
1546
+ (
1547
+ "easypost_globegistics_ecom_pmi_duty_paid",
1548
+ "easypost_globegistics_ecom_pmi_duty_paid",
1549
+ ),
1550
+ (
1551
+ "easypost_globegistics_ecom_packet",
1552
+ "easypost_globegistics_ecom_packet",
1553
+ ),
1554
+ (
1555
+ "easypost_globegistics_ecom_packet_ddp",
1556
+ "easypost_globegistics_ecom_packet_ddp",
1557
+ ),
1558
+ (
1559
+ "easypost_globegistics_ecom_priority",
1560
+ "easypost_globegistics_ecom_priority",
1561
+ ),
1562
+ (
1563
+ "easypost_globegistics_ecom_standard",
1564
+ "easypost_globegistics_ecom_standard",
1565
+ ),
1566
+ (
1567
+ "easypost_globegistics_ecom_tracked_ddp",
1568
+ "easypost_globegistics_ecom_tracked_ddp",
1569
+ ),
1570
+ (
1571
+ "easypost_globegistics_ecom_tracked_ddu",
1572
+ "easypost_globegistics_ecom_tracked_ddu",
1573
+ ),
1574
+ (
1575
+ "easypost_gso_early_priority_overnight",
1576
+ "easypost_gso_early_priority_overnight",
1577
+ ),
1578
+ (
1579
+ "easypost_gso_priority_overnight",
1580
+ "easypost_gso_priority_overnight",
1581
+ ),
1582
+ (
1583
+ "easypost_gso_california_parcel_service",
1584
+ "easypost_gso_california_parcel_service",
1585
+ ),
1586
+ (
1587
+ "easypost_gso_saturday_delivery_service",
1588
+ "easypost_gso_saturday_delivery_service",
1589
+ ),
1590
+ (
1591
+ "easypost_gso_early_saturday_service",
1592
+ "easypost_gso_early_saturday_service",
1593
+ ),
1594
+ (
1595
+ "easypost_hermes_domestic_delivery",
1596
+ "easypost_hermes_domestic_delivery",
1597
+ ),
1598
+ (
1599
+ "easypost_hermes_domestic_delivery_signed",
1600
+ "easypost_hermes_domestic_delivery_signed",
1601
+ ),
1602
+ (
1603
+ "easypost_hermes_international_delivery",
1604
+ "easypost_hermes_international_delivery",
1605
+ ),
1606
+ (
1607
+ "easypost_hermes_international_delivery_signed",
1608
+ "easypost_hermes_international_delivery_signed",
1609
+ ),
1610
+ (
1611
+ "easypost_interlink_air_classic_international_air",
1612
+ "easypost_interlink_air_classic_international_air",
1613
+ ),
1614
+ (
1615
+ "easypost_interlink_air_express_international_air",
1616
+ "easypost_interlink_air_express_international_air",
1617
+ ),
1618
+ (
1619
+ "easypost_interlink_expresspak1_by10_30",
1620
+ "easypost_interlink_expresspak1_by10_30",
1621
+ ),
1622
+ (
1623
+ "easypost_interlink_expresspak1_by12",
1624
+ "easypost_interlink_expresspak1_by12",
1625
+ ),
1626
+ (
1627
+ "easypost_interlink_expresspak1_next_day",
1628
+ "easypost_interlink_expresspak1_next_day",
1629
+ ),
1630
+ (
1631
+ "easypost_interlink_expresspak1_saturday",
1632
+ "easypost_interlink_expresspak1_saturday",
1633
+ ),
1634
+ (
1635
+ "easypost_interlink_expresspak1_saturday_by10_30",
1636
+ "easypost_interlink_expresspak1_saturday_by10_30",
1637
+ ),
1638
+ (
1639
+ "easypost_interlink_expresspak1_saturday_by12",
1640
+ "easypost_interlink_expresspak1_saturday_by12",
1641
+ ),
1642
+ (
1643
+ "easypost_interlink_expresspak1_sunday",
1644
+ "easypost_interlink_expresspak1_sunday",
1645
+ ),
1646
+ (
1647
+ "easypost_interlink_expresspak1_sunday_by12",
1648
+ "easypost_interlink_expresspak1_sunday_by12",
1649
+ ),
1650
+ (
1651
+ "easypost_interlink_expresspak5_by10",
1652
+ "easypost_interlink_expresspak5_by10",
1653
+ ),
1654
+ (
1655
+ "easypost_interlink_expresspak5_by10_30",
1656
+ "easypost_interlink_expresspak5_by10_30",
1657
+ ),
1658
+ (
1659
+ "easypost_interlink_expresspak5_by12",
1660
+ "easypost_interlink_expresspak5_by12",
1661
+ ),
1662
+ (
1663
+ "easypost_interlink_expresspak5_next_day",
1664
+ "easypost_interlink_expresspak5_next_day",
1665
+ ),
1666
+ (
1667
+ "easypost_interlink_expresspak5_saturday",
1668
+ "easypost_interlink_expresspak5_saturday",
1669
+ ),
1670
+ (
1671
+ "easypost_interlink_expresspak5_saturday_by10",
1672
+ "easypost_interlink_expresspak5_saturday_by10",
1673
+ ),
1674
+ (
1675
+ "easypost_interlink_expresspak5_saturday_by10_30",
1676
+ "easypost_interlink_expresspak5_saturday_by10_30",
1677
+ ),
1678
+ (
1679
+ "easypost_interlink_expresspak5_saturday_by12",
1680
+ "easypost_interlink_expresspak5_saturday_by12",
1681
+ ),
1682
+ (
1683
+ "easypost_interlink_expresspak5_sunday",
1684
+ "easypost_interlink_expresspak5_sunday",
1685
+ ),
1686
+ (
1687
+ "easypost_interlink_expresspak5_sunday_by12",
1688
+ "easypost_interlink_expresspak5_sunday_by12",
1689
+ ),
1690
+ (
1691
+ "easypost_interlink_freight_by10",
1692
+ "easypost_interlink_freight_by10",
1693
+ ),
1694
+ (
1695
+ "easypost_interlink_freight_by12",
1696
+ "easypost_interlink_freight_by12",
1697
+ ),
1698
+ (
1699
+ "easypost_interlink_freight_next_day",
1700
+ "easypost_interlink_freight_next_day",
1701
+ ),
1702
+ (
1703
+ "easypost_interlink_freight_saturday",
1704
+ "easypost_interlink_freight_saturday",
1705
+ ),
1706
+ (
1707
+ "easypost_interlink_freight_saturday_by10",
1708
+ "easypost_interlink_freight_saturday_by10",
1709
+ ),
1710
+ (
1711
+ "easypost_interlink_freight_saturday_by12",
1712
+ "easypost_interlink_freight_saturday_by12",
1713
+ ),
1714
+ (
1715
+ "easypost_interlink_freight_sunday",
1716
+ "easypost_interlink_freight_sunday",
1717
+ ),
1718
+ (
1719
+ "easypost_interlink_freight_sunday_by12",
1720
+ "easypost_interlink_freight_sunday_by12",
1721
+ ),
1722
+ (
1723
+ "easypost_interlink_parcel_by10",
1724
+ "easypost_interlink_parcel_by10",
1725
+ ),
1726
+ (
1727
+ "easypost_interlink_parcel_by10_30",
1728
+ "easypost_interlink_parcel_by10_30",
1729
+ ),
1730
+ (
1731
+ "easypost_interlink_parcel_by12",
1732
+ "easypost_interlink_parcel_by12",
1733
+ ),
1734
+ (
1735
+ "easypost_interlink_parcel_dpd_europe_by_road",
1736
+ "easypost_interlink_parcel_dpd_europe_by_road",
1737
+ ),
1738
+ (
1739
+ "easypost_interlink_parcel_next_day",
1740
+ "easypost_interlink_parcel_next_day",
1741
+ ),
1742
+ (
1743
+ "easypost_interlink_parcel_return",
1744
+ "easypost_interlink_parcel_return",
1745
+ ),
1746
+ (
1747
+ "easypost_interlink_parcel_return_to_shop",
1748
+ "easypost_interlink_parcel_return_to_shop",
1749
+ ),
1750
+ (
1751
+ "easypost_interlink_parcel_saturday",
1752
+ "easypost_interlink_parcel_saturday",
1753
+ ),
1754
+ (
1755
+ "easypost_interlink_parcel_saturday_by10",
1756
+ "easypost_interlink_parcel_saturday_by10",
1757
+ ),
1758
+ (
1759
+ "easypost_interlink_parcel_saturday_by10_30",
1760
+ "easypost_interlink_parcel_saturday_by10_30",
1761
+ ),
1762
+ (
1763
+ "easypost_interlink_parcel_saturday_by12",
1764
+ "easypost_interlink_parcel_saturday_by12",
1765
+ ),
1766
+ (
1767
+ "easypost_interlink_parcel_ship_to_shop",
1768
+ "easypost_interlink_parcel_ship_to_shop",
1769
+ ),
1770
+ (
1771
+ "easypost_interlink_parcel_sunday",
1772
+ "easypost_interlink_parcel_sunday",
1773
+ ),
1774
+ (
1775
+ "easypost_interlink_parcel_sunday_by12",
1776
+ "easypost_interlink_parcel_sunday_by12",
1777
+ ),
1778
+ (
1779
+ "easypost_interlink_parcel_two_day",
1780
+ "easypost_interlink_parcel_two_day",
1781
+ ),
1782
+ (
1783
+ "easypost_interlink_pickup_parcel_dpd_europe_by_road",
1784
+ "easypost_interlink_pickup_parcel_dpd_europe_by_road",
1785
+ ),
1786
+ ("easypost_lasership_weekend", "easypost_lasership_weekend"),
1787
+ ("easypost_loomis_ground", "easypost_loomis_ground"),
1788
+ ("easypost_loomis_express1800", "easypost_loomis_express1800"),
1789
+ ("easypost_loomis_express1200", "easypost_loomis_express1200"),
1790
+ ("easypost_loomis_express900", "easypost_loomis_express900"),
1791
+ ("easypost_lso_ground_early", "easypost_lso_ground_early"),
1792
+ ("easypost_lso_ground_basic", "easypost_lso_ground_basic"),
1793
+ ("easypost_lso_priority_basic", "easypost_lso_priority_basic"),
1794
+ ("easypost_lso_priority_early", "easypost_lso_priority_early"),
1795
+ (
1796
+ "easypost_lso_priority_saturday",
1797
+ "easypost_lso_priority_saturday",
1798
+ ),
1799
+ ("easypost_lso_priority2nd_day", "easypost_lso_priority2nd_day"),
1800
+ (
1801
+ "easypost_newgistics_parcel_select",
1802
+ "easypost_newgistics_parcel_select",
1803
+ ),
1804
+ (
1805
+ "easypost_newgistics_parcel_select_lightweight",
1806
+ "easypost_newgistics_parcel_select_lightweight",
1807
+ ),
1808
+ ("easypost_newgistics_express", "easypost_newgistics_express"),
1809
+ (
1810
+ "easypost_newgistics_first_class_mail",
1811
+ "easypost_newgistics_first_class_mail",
1812
+ ),
1813
+ (
1814
+ "easypost_newgistics_priority_mail",
1815
+ "easypost_newgistics_priority_mail",
1816
+ ),
1817
+ (
1818
+ "easypost_newgistics_bound_printed_matter",
1819
+ "easypost_newgistics_bound_printed_matter",
1820
+ ),
1821
+ ("easypost_ontrac_sunrise", "easypost_ontrac_sunrise"),
1822
+ ("easypost_ontrac_gold", "easypost_ontrac_gold"),
1823
+ (
1824
+ "easypost_ontrac_on_trac_ground",
1825
+ "easypost_ontrac_on_trac_ground",
1826
+ ),
1827
+ (
1828
+ "easypost_ontrac_palletized_freight",
1829
+ "easypost_ontrac_palletized_freight",
1830
+ ),
1831
+ ("easypost_osm_first", "easypost_osm_first"),
1832
+ ("easypost_osm_expedited", "easypost_osm_expedited"),
1833
+ ("easypost_osm_bpm", "easypost_osm_bpm"),
1834
+ ("easypost_osm_media_mail", "easypost_osm_media_mail"),
1835
+ ("easypost_osm_marketing_parcel", "easypost_osm_marketing_parcel"),
1836
+ (
1837
+ "easypost_osm_marketing_parcel_tracked",
1838
+ "easypost_osm_marketing_parcel_tracked",
1839
+ ),
1840
+ ("easypost_parcll_economy_west", "easypost_parcll_economy_west"),
1841
+ ("easypost_parcll_economy_east", "easypost_parcll_economy_east"),
1842
+ (
1843
+ "easypost_parcll_economy_central",
1844
+ "easypost_parcll_economy_central",
1845
+ ),
1846
+ (
1847
+ "easypost_parcll_economy_northeast",
1848
+ "easypost_parcll_economy_northeast",
1849
+ ),
1850
+ ("easypost_parcll_economy_south", "easypost_parcll_economy_south"),
1851
+ (
1852
+ "easypost_parcll_expedited_west",
1853
+ "easypost_parcll_expedited_west",
1854
+ ),
1855
+ (
1856
+ "easypost_parcll_expedited_northeast",
1857
+ "easypost_parcll_expedited_northeast",
1858
+ ),
1859
+ ("easypost_parcll_regional_west", "easypost_parcll_regional_west"),
1860
+ ("easypost_parcll_regional_east", "easypost_parcll_regional_east"),
1861
+ (
1862
+ "easypost_parcll_regional_central",
1863
+ "easypost_parcll_regional_central",
1864
+ ),
1865
+ (
1866
+ "easypost_parcll_regional_northeast",
1867
+ "easypost_parcll_regional_northeast",
1868
+ ),
1869
+ (
1870
+ "easypost_parcll_regional_south",
1871
+ "easypost_parcll_regional_south",
1872
+ ),
1873
+ (
1874
+ "easypost_parcll_us_to_canada_economy_west",
1875
+ "easypost_parcll_us_to_canada_economy_west",
1876
+ ),
1877
+ (
1878
+ "easypost_parcll_us_to_canada_economy_central",
1879
+ "easypost_parcll_us_to_canada_economy_central",
1880
+ ),
1881
+ (
1882
+ "easypost_parcll_us_to_canada_economy_northeast",
1883
+ "easypost_parcll_us_to_canada_economy_northeast",
1884
+ ),
1885
+ (
1886
+ "easypost_parcll_us_to_europe_economy_west",
1887
+ "easypost_parcll_us_to_europe_economy_west",
1888
+ ),
1889
+ (
1890
+ "easypost_parcll_us_to_europe_economy_northeast",
1891
+ "easypost_parcll_us_to_europe_economy_northeast",
1892
+ ),
1893
+ ("easypost_purolator_express", "easypost_purolator_express"),
1894
+ (
1895
+ "easypost_purolator_express12_pm",
1896
+ "easypost_purolator_express12_pm",
1897
+ ),
1898
+ (
1899
+ "easypost_purolator_express_pack12_pm",
1900
+ "easypost_purolator_express_pack12_pm",
1901
+ ),
1902
+ (
1903
+ "easypost_purolator_express_box12_pm",
1904
+ "easypost_purolator_express_box12_pm",
1905
+ ),
1906
+ (
1907
+ "easypost_purolator_express_envelope12_pm",
1908
+ "easypost_purolator_express_envelope12_pm",
1909
+ ),
1910
+ (
1911
+ "easypost_purolator_express1030_am",
1912
+ "easypost_purolator_express1030_am",
1913
+ ),
1914
+ (
1915
+ "easypost_purolator_express9_am",
1916
+ "easypost_purolator_express9_am",
1917
+ ),
1918
+ (
1919
+ "easypost_purolator_express_box",
1920
+ "easypost_purolator_express_box",
1921
+ ),
1922
+ (
1923
+ "easypost_purolator_express_box1030_am",
1924
+ "easypost_purolator_express_box1030_am",
1925
+ ),
1926
+ (
1927
+ "easypost_purolator_express_box9_am",
1928
+ "easypost_purolator_express_box9_am",
1929
+ ),
1930
+ (
1931
+ "easypost_purolator_express_box_evening",
1932
+ "easypost_purolator_express_box_evening",
1933
+ ),
1934
+ (
1935
+ "easypost_purolator_express_box_international",
1936
+ "easypost_purolator_express_box_international",
1937
+ ),
1938
+ (
1939
+ "easypost_purolator_express_box_international1030_am",
1940
+ "easypost_purolator_express_box_international1030_am",
1941
+ ),
1942
+ (
1943
+ "easypost_purolator_express_box_international1200",
1944
+ "easypost_purolator_express_box_international1200",
1945
+ ),
1946
+ (
1947
+ "easypost_purolator_express_box_international9_am",
1948
+ "easypost_purolator_express_box_international9_am",
1949
+ ),
1950
+ (
1951
+ "easypost_purolator_express_box_us",
1952
+ "easypost_purolator_express_box_us",
1953
+ ),
1954
+ (
1955
+ "easypost_purolator_express_box_us1030_am",
1956
+ "easypost_purolator_express_box_us1030_am",
1957
+ ),
1958
+ (
1959
+ "easypost_purolator_express_box_us1200",
1960
+ "easypost_purolator_express_box_us1200",
1961
+ ),
1962
+ (
1963
+ "easypost_purolator_express_box_us9_am",
1964
+ "easypost_purolator_express_box_us9_am",
1965
+ ),
1966
+ (
1967
+ "easypost_purolator_express_envelope",
1968
+ "easypost_purolator_express_envelope",
1969
+ ),
1970
+ (
1971
+ "easypost_purolator_express_envelope1030_am",
1972
+ "easypost_purolator_express_envelope1030_am",
1973
+ ),
1974
+ (
1975
+ "easypost_purolator_express_envelope9_am",
1976
+ "easypost_purolator_express_envelope9_am",
1977
+ ),
1978
+ (
1979
+ "easypost_purolator_express_envelope_evening",
1980
+ "easypost_purolator_express_envelope_evening",
1981
+ ),
1982
+ (
1983
+ "easypost_purolator_express_envelope_international",
1984
+ "easypost_purolator_express_envelope_international",
1985
+ ),
1986
+ (
1987
+ "easypost_purolator_express_envelope_international1030_am",
1988
+ "easypost_purolator_express_envelope_international1030_am",
1989
+ ),
1990
+ (
1991
+ "easypost_purolator_express_envelope_international1200",
1992
+ "easypost_purolator_express_envelope_international1200",
1993
+ ),
1994
+ (
1995
+ "easypost_purolator_express_envelope_international9_am",
1996
+ "easypost_purolator_express_envelope_international9_am",
1997
+ ),
1998
+ (
1999
+ "easypost_purolator_express_envelope_us",
2000
+ "easypost_purolator_express_envelope_us",
2001
+ ),
2002
+ (
2003
+ "easypost_purolator_express_envelope_us1030_am",
2004
+ "easypost_purolator_express_envelope_us1030_am",
2005
+ ),
2006
+ (
2007
+ "easypost_purolator_express_envelope_us1200",
2008
+ "easypost_purolator_express_envelope_us1200",
2009
+ ),
2010
+ (
2011
+ "easypost_purolator_express_envelope_us9_am",
2012
+ "easypost_purolator_express_envelope_us9_am",
2013
+ ),
2014
+ (
2015
+ "easypost_purolator_express_evening",
2016
+ "easypost_purolator_express_evening",
2017
+ ),
2018
+ (
2019
+ "easypost_purolator_express_international",
2020
+ "easypost_purolator_express_international",
2021
+ ),
2022
+ (
2023
+ "easypost_purolator_express_international1030_am",
2024
+ "easypost_purolator_express_international1030_am",
2025
+ ),
2026
+ (
2027
+ "easypost_purolator_express_international1200",
2028
+ "easypost_purolator_express_international1200",
2029
+ ),
2030
+ (
2031
+ "easypost_purolator_express_international9_am",
2032
+ "easypost_purolator_express_international9_am",
2033
+ ),
2034
+ (
2035
+ "easypost_purolator_express_pack",
2036
+ "easypost_purolator_express_pack",
2037
+ ),
2038
+ (
2039
+ "easypost_purolator_express_pack1030_am",
2040
+ "easypost_purolator_express_pack1030_am",
2041
+ ),
2042
+ (
2043
+ "easypost_purolator_express_pack9_am",
2044
+ "easypost_purolator_express_pack9_am",
2045
+ ),
2046
+ (
2047
+ "easypost_purolator_express_pack_evening",
2048
+ "easypost_purolator_express_pack_evening",
2049
+ ),
2050
+ (
2051
+ "easypost_purolator_express_pack_international",
2052
+ "easypost_purolator_express_pack_international",
2053
+ ),
2054
+ (
2055
+ "easypost_purolator_express_pack_international1030_am",
2056
+ "easypost_purolator_express_pack_international1030_am",
2057
+ ),
2058
+ (
2059
+ "easypost_purolator_express_pack_international1200",
2060
+ "easypost_purolator_express_pack_international1200",
2061
+ ),
2062
+ (
2063
+ "easypost_purolator_express_pack_international9_am",
2064
+ "easypost_purolator_express_pack_international9_am",
2065
+ ),
2066
+ (
2067
+ "easypost_purolator_express_pack_us",
2068
+ "easypost_purolator_express_pack_us",
2069
+ ),
2070
+ (
2071
+ "easypost_purolator_express_pack_us1030_am",
2072
+ "easypost_purolator_express_pack_us1030_am",
2073
+ ),
2074
+ (
2075
+ "easypost_purolator_express_pack_us1200",
2076
+ "easypost_purolator_express_pack_us1200",
2077
+ ),
2078
+ (
2079
+ "easypost_purolator_express_pack_us9_am",
2080
+ "easypost_purolator_express_pack_us9_am",
2081
+ ),
2082
+ ("easypost_purolator_express_us", "easypost_purolator_express_us"),
2083
+ (
2084
+ "easypost_purolator_express_us1030_am",
2085
+ "easypost_purolator_express_us1030_am",
2086
+ ),
2087
+ (
2088
+ "easypost_purolator_express_us1200",
2089
+ "easypost_purolator_express_us1200",
2090
+ ),
2091
+ (
2092
+ "easypost_purolator_express_us9_am",
2093
+ "easypost_purolator_express_us9_am",
2094
+ ),
2095
+ ("easypost_purolator_ground", "easypost_purolator_ground"),
2096
+ (
2097
+ "easypost_purolator_ground1030_am",
2098
+ "easypost_purolator_ground1030_am",
2099
+ ),
2100
+ ("easypost_purolator_ground9_am", "easypost_purolator_ground9_am"),
2101
+ (
2102
+ "easypost_purolator_ground_distribution",
2103
+ "easypost_purolator_ground_distribution",
2104
+ ),
2105
+ (
2106
+ "easypost_purolator_ground_evening",
2107
+ "easypost_purolator_ground_evening",
2108
+ ),
2109
+ (
2110
+ "easypost_purolator_ground_regional",
2111
+ "easypost_purolator_ground_regional",
2112
+ ),
2113
+ ("easypost_purolator_ground_us", "easypost_purolator_ground_us"),
2114
+ (
2115
+ "easypost_royalmail_international_signed",
2116
+ "easypost_royalmail_international_signed",
2117
+ ),
2118
+ (
2119
+ "easypost_royalmail_international_tracked",
2120
+ "easypost_royalmail_international_tracked",
2121
+ ),
2122
+ (
2123
+ "easypost_royalmail_international_tracked_and_signed",
2124
+ "easypost_royalmail_international_tracked_and_signed",
2125
+ ),
2126
+ ("easypost_royalmail_1st_class", "easypost_royalmail_1st_class"),
2127
+ (
2128
+ "easypost_royalmail_1st_class_signed_for",
2129
+ "easypost_royalmail_1st_class_signed_for",
2130
+ ),
2131
+ ("easypost_royalmail_2nd_class", "easypost_royalmail_2nd_class"),
2132
+ (
2133
+ "easypost_royalmail_2nd_class_signed_for",
2134
+ "easypost_royalmail_2nd_class_signed_for",
2135
+ ),
2136
+ (
2137
+ "easypost_royalmail_royal_mail24",
2138
+ "easypost_royalmail_royal_mail24",
2139
+ ),
2140
+ (
2141
+ "easypost_royalmail_royal_mail24_signed_for",
2142
+ "easypost_royalmail_royal_mail24_signed_for",
2143
+ ),
2144
+ (
2145
+ "easypost_royalmail_royal_mail48",
2146
+ "easypost_royalmail_royal_mail48",
2147
+ ),
2148
+ (
2149
+ "easypost_royalmail_royal_mail48_signed_for",
2150
+ "easypost_royalmail_royal_mail48_signed_for",
2151
+ ),
2152
+ (
2153
+ "easypost_royalmail_special_delivery_guaranteed1pm",
2154
+ "easypost_royalmail_special_delivery_guaranteed1pm",
2155
+ ),
2156
+ (
2157
+ "easypost_royalmail_special_delivery_guaranteed9am",
2158
+ "easypost_royalmail_special_delivery_guaranteed9am",
2159
+ ),
2160
+ (
2161
+ "easypost_royalmail_standard_letter1st_class",
2162
+ "easypost_royalmail_standard_letter1st_class",
2163
+ ),
2164
+ (
2165
+ "easypost_royalmail_standard_letter1st_class_signed_for",
2166
+ "easypost_royalmail_standard_letter1st_class_signed_for",
2167
+ ),
2168
+ (
2169
+ "easypost_royalmail_standard_letter2nd_class",
2170
+ "easypost_royalmail_standard_letter2nd_class",
2171
+ ),
2172
+ (
2173
+ "easypost_royalmail_standard_letter2nd_class_signed_for",
2174
+ "easypost_royalmail_standard_letter2nd_class_signed_for",
2175
+ ),
2176
+ ("easypost_royalmail_tracked24", "easypost_royalmail_tracked24"),
2177
+ (
2178
+ "easypost_royalmail_tracked24_high_volume",
2179
+ "easypost_royalmail_tracked24_high_volume",
2180
+ ),
2181
+ (
2182
+ "easypost_royalmail_tracked24_high_volume_signature",
2183
+ "easypost_royalmail_tracked24_high_volume_signature",
2184
+ ),
2185
+ (
2186
+ "easypost_royalmail_tracked24_signature",
2187
+ "easypost_royalmail_tracked24_signature",
2188
+ ),
2189
+ ("easypost_royalmail_tracked48", "easypost_royalmail_tracked48"),
2190
+ (
2191
+ "easypost_royalmail_tracked48_high_volume",
2192
+ "easypost_royalmail_tracked48_high_volume",
2193
+ ),
2194
+ (
2195
+ "easypost_royalmail_tracked48_high_volume_signature",
2196
+ "easypost_royalmail_tracked48_high_volume_signature",
2197
+ ),
2198
+ (
2199
+ "easypost_royalmail_tracked48_signature",
2200
+ "easypost_royalmail_tracked48_signature",
2201
+ ),
2202
+ (
2203
+ "easypost_seko_ecommerce_standard_tracked",
2204
+ "easypost_seko_ecommerce_standard_tracked",
2205
+ ),
2206
+ (
2207
+ "easypost_seko_ecommerce_express_tracked",
2208
+ "easypost_seko_ecommerce_express_tracked",
2209
+ ),
2210
+ (
2211
+ "easypost_seko_domestic_express",
2212
+ "easypost_seko_domestic_express",
2213
+ ),
2214
+ (
2215
+ "easypost_seko_domestic_standard",
2216
+ "easypost_seko_domestic_standard",
2217
+ ),
2218
+ ("easypost_sendle_easy", "easypost_sendle_easy"),
2219
+ ("easypost_sendle_pro", "easypost_sendle_pro"),
2220
+ ("easypost_sendle_plus", "easypost_sendle_plus"),
2221
+ (
2222
+ "easypost_sfexpress_international_standard_express_doc",
2223
+ "easypost_sfexpress_international_standard_express_doc",
2224
+ ),
2225
+ (
2226
+ "easypost_sfexpress_international_standard_express_parcel",
2227
+ "easypost_sfexpress_international_standard_express_parcel",
2228
+ ),
2229
+ (
2230
+ "easypost_sfexpress_international_economy_express_pilot",
2231
+ "easypost_sfexpress_international_economy_express_pilot",
2232
+ ),
2233
+ (
2234
+ "easypost_sfexpress_international_economy_express_doc",
2235
+ "easypost_sfexpress_international_economy_express_doc",
2236
+ ),
2237
+ ("easypost_speedee_delivery", "easypost_speedee_delivery"),
2238
+ ("easypost_startrack_express", "easypost_startrack_express"),
2239
+ ("easypost_startrack_premium", "easypost_startrack_premium"),
2240
+ (
2241
+ "easypost_startrack_fixed_price_premium",
2242
+ "easypost_startrack_fixed_price_premium",
2243
+ ),
2244
+ (
2245
+ "easypost_tforce_same_day_white_glove",
2246
+ "easypost_tforce_same_day_white_glove",
2247
+ ),
2248
+ (
2249
+ "easypost_tforce_next_day_white_glove",
2250
+ "easypost_tforce_next_day_white_glove",
2251
+ ),
2252
+ ("easypost_uds_delivery_service", "easypost_uds_delivery_service"),
2253
+ ("easypost_ups_standard", "easypost_ups_standard"),
2254
+ ("easypost_ups_saver", "easypost_ups_saver"),
2255
+ ("easypost_ups_express_plus", "easypost_ups_express_plus"),
2256
+ ("easypost_ups_next_day_air", "easypost_ups_next_day_air"),
2257
+ (
2258
+ "easypost_ups_next_day_air_saver",
2259
+ "easypost_ups_next_day_air_saver",
2260
+ ),
2261
+ (
2262
+ "easypost_ups_next_day_air_early_am",
2263
+ "easypost_ups_next_day_air_early_am",
2264
+ ),
2265
+ ("easypost_ups_2nd_day_air", "easypost_ups_2nd_day_air"),
2266
+ ("easypost_ups_2nd_day_air_am", "easypost_ups_2nd_day_air_am"),
2267
+ ("easypost_ups_3_day_select", "easypost_ups_3_day_select"),
2268
+ (
2269
+ "easypost_ups_mail_expedited_mail_innovations",
2270
+ "easypost_ups_mail_expedited_mail_innovations",
2271
+ ),
2272
+ (
2273
+ "easypost_ups_mail_priority_mail_innovations",
2274
+ "easypost_ups_mail_priority_mail_innovations",
2275
+ ),
2276
+ (
2277
+ "easypost_ups_mail_economy_mail_innovations",
2278
+ "easypost_ups_mail_economy_mail_innovations",
2279
+ ),
2280
+ ("easypost_usps_library_mail", "easypost_usps_library_mail"),
2281
+ (
2282
+ "easypost_usps_first_class_mail_international",
2283
+ "easypost_usps_first_class_mail_international",
2284
+ ),
2285
+ (
2286
+ "easypost_usps_first_class_package_international_service",
2287
+ "easypost_usps_first_class_package_international_service",
2288
+ ),
2289
+ (
2290
+ "easypost_usps_priority_mail_international",
2291
+ "easypost_usps_priority_mail_international",
2292
+ ),
2293
+ (
2294
+ "easypost_usps_express_mail_international",
2295
+ "easypost_usps_express_mail_international",
2296
+ ),
2297
+ ("easypost_veho_next_day", "easypost_veho_next_day"),
2298
+ ("easypost_veho_same_day", "easypost_veho_same_day"),
2299
+ (
2300
+ "eshipper_aramex_economy_document_express",
2301
+ "eshipper_aramex_economy_document_express",
2302
+ ),
2303
+ (
2304
+ "eshipper_aramex_economy_parcel_express",
2305
+ "eshipper_aramex_economy_parcel_express",
2306
+ ),
2307
+ (
2308
+ "eshipper_aramex_priority_letter_express",
2309
+ "eshipper_aramex_priority_letter_express",
2310
+ ),
2311
+ (
2312
+ "eshipper_aramex_priority_parcel_express",
2313
+ "eshipper_aramex_priority_parcel_express",
2314
+ ),
2315
+ (
2316
+ "eshipper_canada_post_air_parcel_intl",
2317
+ "eshipper_canada_post_air_parcel_intl",
2318
+ ),
2319
+ (
2320
+ "eshipper_canada_post_expedited",
2321
+ "eshipper_canada_post_expedited",
2322
+ ),
2323
+ (
2324
+ "eshipper_canada_post_expedited_parcel_usa",
2325
+ "eshipper_canada_post_expedited_parcel_usa",
2326
+ ),
2327
+ (
2328
+ "eshipper_canada_post_priority_courier",
2329
+ "eshipper_canada_post_priority_courier",
2330
+ ),
2331
+ ("eshipper_canada_post_regular", "eshipper_canada_post_regular"),
2332
+ (
2333
+ "eshipper_canada_post_small_packet",
2334
+ "eshipper_canada_post_small_packet",
2335
+ ),
2336
+ (
2337
+ "eshipper_canada_post_small_packet_international_air",
2338
+ "eshipper_canada_post_small_packet_international_air",
2339
+ ),
2340
+ (
2341
+ "eshipper_canada_post_small_packet_international_surface",
2342
+ "eshipper_canada_post_small_packet_international_surface",
2343
+ ),
2344
+ (
2345
+ "eshipper_canada_post_surface_parcel_intl",
2346
+ "eshipper_canada_post_surface_parcel_intl",
2347
+ ),
2348
+ (
2349
+ "eshipper_canada_post_xpress_post",
2350
+ "eshipper_canada_post_xpress_post",
2351
+ ),
2352
+ (
2353
+ "eshipper_canada_post_xpress_post_intl",
2354
+ "eshipper_canada_post_xpress_post_intl",
2355
+ ),
2356
+ (
2357
+ "eshipper_canada_post_xpress_post_usa",
2358
+ "eshipper_canada_post_xpress_post_usa",
2359
+ ),
2360
+ (
2361
+ "eshipper_canada_post_xpresspost",
2362
+ "eshipper_canada_post_xpresspost",
2363
+ ),
2364
+ (
2365
+ "eshipper_canpar_express_letter",
2366
+ "eshipper_canpar_express_letter",
2367
+ ),
2368
+ ("eshipper_canpar_express_pak", "eshipper_canpar_express_pak"),
2369
+ (
2370
+ "eshipper_canpar_express_parcel",
2371
+ "eshipper_canpar_express_parcel",
2372
+ ),
2373
+ ("eshipper_canpar_ground", "eshipper_canpar_ground"),
2374
+ ("eshipper_canpar_international", "eshipper_canpar_international"),
2375
+ ("eshipper_canpar_select_letter", "eshipper_canpar_select_letter"),
2376
+ ("eshipper_canpar_select_pak", "eshipper_canpar_select_pak"),
2377
+ ("eshipper_canpar_select_parcel", "eshipper_canpar_select_parcel"),
2378
+ ("eshipper_canpar_usa", "eshipper_canpar_usa"),
2379
+ (
2380
+ "eshipper_canpar_usa_select_letter",
2381
+ "eshipper_canpar_usa_select_letter",
2382
+ ),
2383
+ (
2384
+ "eshipper_canpar_usa_select_pak",
2385
+ "eshipper_canpar_usa_select_pak",
2386
+ ),
2387
+ (
2388
+ "eshipper_canpar_usa_select_parcel",
2389
+ "eshipper_canpar_usa_select_parcel",
2390
+ ),
2391
+ ("eshipper_cpx_canada_post", "eshipper_cpx_canada_post"),
2392
+ ("eshipper_day_ross_ltl", "eshipper_day_ross_ltl"),
2393
+ ("eshipper_dhl_dhl_ground", "eshipper_dhl_dhl_ground"),
2394
+ ("eshipper_dhl_economy_select", "eshipper_dhl_economy_select"),
2395
+ ("eshipper_dhl_esi_export", "eshipper_dhl_esi_export"),
2396
+ ("eshipper_dhl_express_1030am", "eshipper_dhl_express_1030am"),
2397
+ ("eshipper_dhl_express_12pm", "eshipper_dhl_express_12pm"),
2398
+ ("eshipper_dhl_express_900", "eshipper_dhl_express_900"),
2399
+ ("eshipper_dhl_express_9am", "eshipper_dhl_express_9am"),
2400
+ ("eshipper_dhl_express_envelope", "eshipper_dhl_express_envelope"),
2401
+ (
2402
+ "eshipper_dhl_express_worldwide",
2403
+ "eshipper_dhl_express_worldwide",
2404
+ ),
2405
+ ("eshipper_dhl_import_express", "eshipper_dhl_import_express"),
2406
+ (
2407
+ "eshipper_dhl_import_express_12pm",
2408
+ "eshipper_dhl_import_express_12pm",
2409
+ ),
2410
+ (
2411
+ "eshipper_dhl_import_express_9am",
2412
+ "eshipper_dhl_import_express_9am",
2413
+ ),
2414
+ ("eshipper_ltl_apex_v", "eshipper_ltl_apex_v"),
2415
+ ("eshipper_ltl_apex_trucking", "eshipper_ltl_apex_trucking"),
2416
+ ("eshipper_ltl_apex_trucking_v", "eshipper_ltl_apex_trucking_v"),
2417
+ ("eshipper_ltl_fastfrate_rail", "eshipper_ltl_fastfrate_rail"),
2418
+ (
2419
+ "eshipper_ltl_kindersley_expedited",
2420
+ "eshipper_ltl_kindersley_expedited",
2421
+ ),
2422
+ ("eshipper_ltl_kindersley_rail", "eshipper_ltl_kindersley_rail"),
2423
+ (
2424
+ "eshipper_ltl_kindersley_regular",
2425
+ "eshipper_ltl_kindersley_regular",
2426
+ ),
2427
+ ("eshipper_ltl_kindersley_road", "eshipper_ltl_kindersley_road"),
2428
+ ("eshipper_ltl_kingsway_road", "eshipper_ltl_kingsway_road"),
2429
+ ("eshipper_ltl_m_o_eastbound", "eshipper_ltl_m_o_eastbound"),
2430
+ ("eshipper_ltl_mo_rail", "eshipper_ltl_mo_rail"),
2431
+ (
2432
+ "eshipper_ltl_national_fastfreight_rail",
2433
+ "eshipper_ltl_national_fastfreight_rail",
2434
+ ),
2435
+ (
2436
+ "eshipper_ltl_national_fastfreight_road",
2437
+ "eshipper_ltl_national_fastfreight_road",
2438
+ ),
2439
+ ("eshipper_ltl_vitran_rail", "eshipper_ltl_vitran_rail"),
2440
+ ("eshipper_ltl_vitran_road", "eshipper_ltl_vitran_road"),
2441
+ (
2442
+ "eshipper_ltl_western_canada_rail",
2443
+ "eshipper_ltl_western_canada_rail",
2444
+ ),
2445
+ (
2446
+ "eshipper_federal_express_2day_freight",
2447
+ "eshipper_federal_express_2day_freight",
2448
+ ),
2449
+ (
2450
+ "eshipper_federal_express_3day_freight",
2451
+ "eshipper_federal_express_3day_freight",
2452
+ ),
2453
+ (
2454
+ "eshipper_federal_express_fedex_2nd_day",
2455
+ "eshipper_federal_express_fedex_2nd_day",
2456
+ ),
2457
+ (
2458
+ "eshipper_federal_express_fedex_economy",
2459
+ "eshipper_federal_express_fedex_economy",
2460
+ ),
2461
+ (
2462
+ "eshipper_federal_express_fedex_first_overnight",
2463
+ "eshipper_federal_express_fedex_first_overnight",
2464
+ ),
2465
+ (
2466
+ "eshipper_federal_express_fedex_ground",
2467
+ "eshipper_federal_express_fedex_ground",
2468
+ ),
2469
+ (
2470
+ "eshipper_federal_express_fedex_ground_us",
2471
+ "eshipper_federal_express_fedex_ground_us",
2472
+ ),
2473
+ (
2474
+ "eshipper_federal_express_fedex_international_priority",
2475
+ "eshipper_federal_express_fedex_international_priority",
2476
+ ),
2477
+ (
2478
+ "eshipper_federal_express_fedex_international_priority_express",
2479
+ "eshipper_federal_express_fedex_international_priority_express",
2480
+ ),
2481
+ (
2482
+ "eshipper_federal_express_fedex_intl_economy",
2483
+ "eshipper_federal_express_fedex_intl_economy",
2484
+ ),
2485
+ (
2486
+ "eshipper_federal_express_fedex_intl_economy_freight",
2487
+ "eshipper_federal_express_fedex_intl_economy_freight",
2488
+ ),
2489
+ (
2490
+ "eshipper_federal_express_fedex_intl_priority",
2491
+ "eshipper_federal_express_fedex_intl_priority",
2492
+ ),
2493
+ (
2494
+ "eshipper_federal_express_fedex_intl_priority_express",
2495
+ "eshipper_federal_express_fedex_intl_priority_express",
2496
+ ),
2497
+ (
2498
+ "eshipper_federal_express_fedex_intl_priority_freight",
2499
+ "eshipper_federal_express_fedex_intl_priority_freight",
2500
+ ),
2501
+ (
2502
+ "eshipper_federal_express_fedex_priority",
2503
+ "eshipper_federal_express_fedex_priority",
2504
+ ),
2505
+ (
2506
+ "eshipper_federal_express_fedex_standard_overnight",
2507
+ "eshipper_federal_express_fedex_standard_overnight",
2508
+ ),
2509
+ ("eshipper_flashbird_ground", "eshipper_flashbird_ground"),
2510
+ ("eshipper_fleet_optics_ground", "eshipper_fleet_optics_ground"),
2511
+ (
2512
+ "eshipper_project44_a_duie_pyle",
2513
+ "eshipper_project44_a_duie_pyle",
2514
+ ),
2515
+ (
2516
+ "eshipper_project44_aaa_cooper_transportation",
2517
+ "eshipper_project44_aaa_cooper_transportation",
2518
+ ),
2519
+ (
2520
+ "eshipper_project44_aberdeen_express",
2521
+ "eshipper_project44_aberdeen_express",
2522
+ ),
2523
+ ("eshipper_project44_abfs", "eshipper_project44_abfs"),
2524
+ (
2525
+ "eshipper_project44_averitt_express",
2526
+ "eshipper_project44_averitt_express",
2527
+ ),
2528
+ (
2529
+ "eshipper_project44_brown_transfer_company",
2530
+ "eshipper_project44_brown_transfer_company",
2531
+ ),
2532
+ (
2533
+ "eshipper_project44_central_freight_lines",
2534
+ "eshipper_project44_central_freight_lines",
2535
+ ),
2536
+ (
2537
+ "eshipper_project44_central_transport",
2538
+ "eshipper_project44_central_transport",
2539
+ ),
2540
+ (
2541
+ "eshipper_project44_chicago_suburban_express",
2542
+ "eshipper_project44_chicago_suburban_express",
2543
+ ),
2544
+ (
2545
+ "eshipper_project44_clear_lane_freight",
2546
+ "eshipper_project44_clear_lane_freight",
2547
+ ),
2548
+ (
2549
+ "eshipper_project44_con_way_freight",
2550
+ "eshipper_project44_con_way_freight",
2551
+ ),
2552
+ (
2553
+ "eshipper_project44_crosscountry_courier",
2554
+ "eshipper_project44_crosscountry_courier",
2555
+ ),
2556
+ ("eshipper_project44_day_ross", "eshipper_project44_day_ross"),
2557
+ ("eshipper_project44_day_ross_v", "eshipper_project44_day_ross_v"),
2558
+ (
2559
+ "eshipper_project44_dayton_freight_lines",
2560
+ "eshipper_project44_dayton_freight_lines",
2561
+ ),
2562
+ (
2563
+ "eshipper_project44_dependable_highway_express",
2564
+ "eshipper_project44_dependable_highway_express",
2565
+ ),
2566
+ (
2567
+ "eshipper_project44_dohrn_transfer_company",
2568
+ "eshipper_project44_dohrn_transfer_company",
2569
+ ),
2570
+ (
2571
+ "eshipper_project44_dugan_truck_line",
2572
+ "eshipper_project44_dugan_truck_line",
2573
+ ),
2574
+ (
2575
+ "eshipper_project44_estes_express_lines",
2576
+ "eshipper_project44_estes_express_lines",
2577
+ ),
2578
+ (
2579
+ "eshipper_project44_expedited_freight_systems",
2580
+ "eshipper_project44_expedited_freight_systems",
2581
+ ),
2582
+ (
2583
+ "eshipper_project44_fedex_freight_canada",
2584
+ "eshipper_project44_fedex_freight_canada",
2585
+ ),
2586
+ (
2587
+ "eshipper_project44_fedex_freight_east",
2588
+ "eshipper_project44_fedex_freight_east",
2589
+ ),
2590
+ (
2591
+ "eshipper_project44_fedex_freight_national_canada",
2592
+ "eshipper_project44_fedex_freight_national_canada",
2593
+ ),
2594
+ (
2595
+ "eshipper_project44_fedex_freight_national_usa",
2596
+ "eshipper_project44_fedex_freight_national_usa",
2597
+ ),
2598
+ (
2599
+ "eshipper_project44_fedex_freight_usa",
2600
+ "eshipper_project44_fedex_freight_usa",
2601
+ ),
2602
+ (
2603
+ "eshipper_project44_fedex_national",
2604
+ "eshipper_project44_fedex_national",
2605
+ ),
2606
+ ("eshipper_project44_forwardair", "eshipper_project44_forwardair"),
2607
+ (
2608
+ "eshipper_project44_frontline_freight",
2609
+ "eshipper_project44_frontline_freight",
2610
+ ),
2611
+ (
2612
+ "eshipper_project44_holland_motor_express",
2613
+ "eshipper_project44_holland_motor_express",
2614
+ ),
2615
+ (
2616
+ "eshipper_project44_lakeville_motor_express",
2617
+ "eshipper_project44_lakeville_motor_express",
2618
+ ),
2619
+ (
2620
+ "eshipper_project44_manitoulin_tlx_inc",
2621
+ "eshipper_project44_manitoulin_tlx_inc",
2622
+ ),
2623
+ (
2624
+ "eshipper_project44_midwest_motor_express",
2625
+ "eshipper_project44_midwest_motor_express",
2626
+ ),
2627
+ (
2628
+ "eshipper_project44_monroe_transportation_services",
2629
+ "eshipper_project44_monroe_transportation_services",
2630
+ ),
2631
+ (
2632
+ "eshipper_project44_n_m_transfer",
2633
+ "eshipper_project44_n_m_transfer",
2634
+ ),
2635
+ (
2636
+ "eshipper_project44_new_england_motor_freight",
2637
+ "eshipper_project44_new_england_motor_freight",
2638
+ ),
2639
+ (
2640
+ "eshipper_project44_new_penn_motor_express",
2641
+ "eshipper_project44_new_penn_motor_express",
2642
+ ),
2643
+ ("eshipper_project44_pitt_ohio", "eshipper_project44_pitt_ohio"),
2644
+ ("eshipper_project44_polaris", "eshipper_project44_polaris"),
2645
+ (
2646
+ "eshipper_project44_purolator_freight",
2647
+ "eshipper_project44_purolator_freight",
2648
+ ),
2649
+ (
2650
+ "eshipper_project44_rl_carriers",
2651
+ "eshipper_project44_rl_carriers",
2652
+ ),
2653
+ (
2654
+ "eshipper_project44_roadrunner_transportation_services",
2655
+ "eshipper_project44_roadrunner_transportation_services",
2656
+ ),
2657
+ (
2658
+ "eshipper_project44_saia_motor_freight",
2659
+ "eshipper_project44_saia_motor_freight",
2660
+ ),
2661
+ (
2662
+ "eshipper_project44_southeastern_freight_lines",
2663
+ "eshipper_project44_southeastern_freight_lines",
2664
+ ),
2665
+ (
2666
+ "eshipper_project44_southwestern_motor_transport",
2667
+ "eshipper_project44_southwestern_motor_transport",
2668
+ ),
2669
+ (
2670
+ "eshipper_project44_standard_forwarding",
2671
+ "eshipper_project44_standard_forwarding",
2672
+ ),
2673
+ (
2674
+ "eshipper_project44_total_transportation_distribution",
2675
+ "eshipper_project44_total_transportation_distribution",
2676
+ ),
2677
+ (
2678
+ "eshipper_project44_tst_overland_express",
2679
+ "eshipper_project44_tst_overland_express",
2680
+ ),
2681
+ ("eshipper_project44_ups", "eshipper_project44_ups"),
2682
+ (
2683
+ "eshipper_project44_usf_reddaway",
2684
+ "eshipper_project44_usf_reddaway",
2685
+ ),
2686
+ (
2687
+ "eshipper_project44_valley_cartage",
2688
+ "eshipper_project44_valley_cartage",
2689
+ ),
2690
+ (
2691
+ "eshipper_project44_vision_express_ltl",
2692
+ "eshipper_project44_vision_express_ltl",
2693
+ ),
2694
+ (
2695
+ "eshipper_project44_ward_trucking",
2696
+ "eshipper_project44_ward_trucking",
2697
+ ),
2698
+ (
2699
+ "eshipper_project44_xpo_logistics",
2700
+ "eshipper_project44_xpo_logistics",
2701
+ ),
2702
+ (
2703
+ "eshipper_project44_xpress_global_systems",
2704
+ "eshipper_project44_xpress_global_systems",
2705
+ ),
2706
+ ("eshipper_project44_yrc", "eshipper_project44_yrc"),
2707
+ (
2708
+ "eshipper_purolator_purolator_express",
2709
+ "eshipper_purolator_purolator_express",
2710
+ ),
2711
+ (
2712
+ "eshipper_purolator_purolator_express_1030",
2713
+ "eshipper_purolator_purolator_express_1030",
2714
+ ),
2715
+ (
2716
+ "eshipper_purolator_purolator_express_9am",
2717
+ "eshipper_purolator_purolator_express_9am",
2718
+ ),
2719
+ (
2720
+ "eshipper_purolator_purolator_expresscheque",
2721
+ "eshipper_purolator_purolator_expresscheque",
2722
+ ),
2723
+ (
2724
+ "eshipper_purolator_purolator_ground",
2725
+ "eshipper_purolator_purolator_ground",
2726
+ ),
2727
+ (
2728
+ "eshipper_purolator_purolator_ground_1030",
2729
+ "eshipper_purolator_purolator_ground_1030",
2730
+ ),
2731
+ (
2732
+ "eshipper_purolator_purolator_ground_9am",
2733
+ "eshipper_purolator_purolator_ground_9am",
2734
+ ),
2735
+ ("eshipper_purolator_puroletter", "eshipper_purolator_puroletter"),
2736
+ (
2737
+ "eshipper_purolator_puroletter_1030",
2738
+ "eshipper_purolator_puroletter_1030",
2739
+ ),
2740
+ (
2741
+ "eshipper_purolator_puroletter_9am",
2742
+ "eshipper_purolator_puroletter_9am",
2743
+ ),
2744
+ ("eshipper_purolator_puropak", "eshipper_purolator_puropak"),
2745
+ (
2746
+ "eshipper_purolator_puropak_1030",
2747
+ "eshipper_purolator_puropak_1030",
2748
+ ),
2749
+ (
2750
+ "eshipper_purolator_puropak_9am",
2751
+ "eshipper_purolator_puropak_9am",
2752
+ ),
2753
+ ("eshipper_pyk_ground_advantage", "eshipper_pyk_ground_advantage"),
2754
+ ("eshipper_pyk_priority_mail", "eshipper_pyk_priority_mail"),
2755
+ (
2756
+ "eshipper_sameday_9am_guaranteed",
2757
+ "eshipper_sameday_9am_guaranteed",
2758
+ ),
2759
+ ("eshipper_sameday_am_service", "eshipper_sameday_am_service"),
2760
+ (
2761
+ "eshipper_sameday_ground_service",
2762
+ "eshipper_sameday_ground_service",
2763
+ ),
2764
+ (
2765
+ "eshipper_sameday_h1_deliver_to_curbside",
2766
+ "eshipper_sameday_h1_deliver_to_curbside",
2767
+ ),
2768
+ (
2769
+ "eshipper_sameday_h2_delivery_to_room_of_choice",
2770
+ "eshipper_sameday_h2_delivery_to_room_of_choice",
2771
+ ),
2772
+ (
2773
+ "eshipper_sameday_h3_delivery_packaging_removal",
2774
+ "eshipper_sameday_h3_delivery_packaging_removal",
2775
+ ),
2776
+ (
2777
+ "eshipper_sameday_h4_delivery_to_curbside",
2778
+ "eshipper_sameday_h4_delivery_to_curbside",
2779
+ ),
2780
+ (
2781
+ "eshipper_sameday_h5_delivery_to_room_of_choice_2_man",
2782
+ "eshipper_sameday_h5_delivery_to_room_of_choice_2_man",
2783
+ ),
2784
+ (
2785
+ "eshipper_sameday_h6_delivery_packaging_removal_2_man",
2786
+ "eshipper_sameday_h6_delivery_packaging_removal_2_man",
2787
+ ),
2788
+ ("eshipper_sameday_ltl_service", "eshipper_sameday_ltl_service"),
2789
+ ("eshipper_sameday_pm_service", "eshipper_sameday_pm_service"),
2790
+ (
2791
+ "eshipper_sameday_urgent_letter",
2792
+ "eshipper_sameday_urgent_letter",
2793
+ ),
2794
+ ("eshipper_sameday_urgent_pac", "eshipper_sameday_urgent_pac"),
2795
+ ("eshipper_skip", "eshipper_skip"),
2796
+ (
2797
+ "eshipper_smartepost_intl_dhl_parcel_international_direct_ngr",
2798
+ "eshipper_smartepost_intl_dhl_parcel_international_direct_ngr",
2799
+ ),
2800
+ (
2801
+ "eshipper_smartepost_intl_global_mail_business_priority",
2802
+ "eshipper_smartepost_intl_global_mail_business_priority",
2803
+ ),
2804
+ (
2805
+ "eshipper_smartepost_intl_global_mail_business_standard",
2806
+ "eshipper_smartepost_intl_global_mail_business_standard",
2807
+ ),
2808
+ (
2809
+ "eshipper_smartepost_intl_global_mail_packet_plus_priority",
2810
+ "eshipper_smartepost_intl_global_mail_packet_plus_priority",
2811
+ ),
2812
+ (
2813
+ "eshipper_smartepost_intl_global_mail_packet_priority",
2814
+ "eshipper_smartepost_intl_global_mail_packet_priority",
2815
+ ),
2816
+ (
2817
+ "eshipper_smartepost_intl_global_mail_packet_standard",
2818
+ "eshipper_smartepost_intl_global_mail_packet_standard",
2819
+ ),
2820
+ (
2821
+ "eshipper_smartepost_intl_global_mail_parcel_direct_priority_yyz",
2822
+ "eshipper_smartepost_intl_global_mail_parcel_direct_priority_yyz",
2823
+ ),
2824
+ (
2825
+ "eshipper_smartepost_intl_global_mail_parcel_direct_standard_yyz",
2826
+ "eshipper_smartepost_intl_global_mail_parcel_direct_standard_yyz",
2827
+ ),
2828
+ (
2829
+ "eshipper_smartepost_intl_global_mail_parcel_priority",
2830
+ "eshipper_smartepost_intl_global_mail_parcel_priority",
2831
+ ),
2832
+ (
2833
+ "eshipper_smartepost_intl_global_mail_parcel_standard",
2834
+ "eshipper_smartepost_intl_global_mail_parcel_standard",
2835
+ ),
2836
+ ("eshipper_ups_expedited", "eshipper_ups_expedited"),
2837
+ ("eshipper_ups_express", "eshipper_ups_express"),
2838
+ ("eshipper_ups_express_early_am", "eshipper_ups_express_early_am"),
2839
+ ("eshipper_ups_ground", "eshipper_ups_ground"),
2840
+ (
2841
+ "eshipper_ups_second_day_air_am",
2842
+ "eshipper_ups_second_day_air_am",
2843
+ ),
2844
+ ("eshipper_ups_standard", "eshipper_ups_standard"),
2845
+ ("eshipper_ups_three_day_select", "eshipper_ups_three_day_select"),
2846
+ ("eshipper_ups_ups_saver", "eshipper_ups_ups_saver"),
2847
+ (
2848
+ "eshipper_ups_worldwide_expedited",
2849
+ "eshipper_ups_worldwide_expedited",
2850
+ ),
2851
+ (
2852
+ "eshipper_ups_worldwide_express",
2853
+ "eshipper_ups_worldwide_express",
2854
+ ),
2855
+ (
2856
+ "eshipper_ups_worldwide_express_plus",
2857
+ "eshipper_ups_worldwide_express_plus",
2858
+ ),
2859
+ (
2860
+ "eshipper_usps_first_class_mail",
2861
+ "eshipper_usps_first_class_mail",
2862
+ ),
2863
+ (
2864
+ "eshipper_usps_first_class_package_return_service",
2865
+ "eshipper_usps_first_class_package_return_service",
2866
+ ),
2867
+ ("eshipper_usps_library_mail", "eshipper_usps_library_mail"),
2868
+ ("eshipper_usps_media_mail", "eshipper_usps_media_mail"),
2869
+ ("eshipper_usps_parcel_select", "eshipper_usps_parcel_select"),
2870
+ ("eshipper_usps_pbx", "eshipper_usps_pbx"),
2871
+ ("eshipper_usps_pbx_lightweight", "eshipper_usps_pbx_lightweight"),
2872
+ ("eshipper_usps_priority_mail", "eshipper_usps_priority_mail"),
2873
+ (
2874
+ "eshipper_usps_priority_mail_express",
2875
+ "eshipper_usps_priority_mail_express",
2876
+ ),
2877
+ (
2878
+ "eshipper_usps_priority_mail_open_and_distribute",
2879
+ "eshipper_usps_priority_mail_open_and_distribute",
2880
+ ),
2881
+ (
2882
+ "eshipper_usps_priority_mail_return_service",
2883
+ "eshipper_usps_priority_mail_return_service",
2884
+ ),
2885
+ (
2886
+ "eshipper_usps_retail_ground_formerly_standard_post",
2887
+ "eshipper_usps_retail_ground_formerly_standard_post",
2888
+ ),
2889
+ (
2890
+ "fedex_international_priority_express",
2891
+ "fedex_international_priority_express",
2892
+ ),
2893
+ ("fedex_international_first", "fedex_international_first"),
2894
+ ("fedex_international_priority", "fedex_international_priority"),
2895
+ ("fedex_international_economy", "fedex_international_economy"),
2896
+ ("fedex_ground", "fedex_ground"),
2897
+ ("fedex_cargo_mail", "fedex_cargo_mail"),
2898
+ (
2899
+ "fedex_cargo_international_premium",
2900
+ "fedex_cargo_international_premium",
2901
+ ),
2902
+ ("fedex_first_overnight", "fedex_first_overnight"),
2903
+ ("fedex_first_overnight_freight", "fedex_first_overnight_freight"),
2904
+ ("fedex_1_day_freight", "fedex_1_day_freight"),
2905
+ ("fedex_2_day_freight", "fedex_2_day_freight"),
2906
+ ("fedex_3_day_freight", "fedex_3_day_freight"),
2907
+ (
2908
+ "fedex_international_priority_freight",
2909
+ "fedex_international_priority_freight",
2910
+ ),
2911
+ (
2912
+ "fedex_international_economy_freight",
2913
+ "fedex_international_economy_freight",
2914
+ ),
2915
+ (
2916
+ "fedex_cargo_airport_to_airport",
2917
+ "fedex_cargo_airport_to_airport",
2918
+ ),
2919
+ (
2920
+ "fedex_international_priority_distribution",
2921
+ "fedex_international_priority_distribution",
2922
+ ),
2923
+ (
2924
+ "fedex_ip_direct_distribution_freight",
2925
+ "fedex_ip_direct_distribution_freight",
2926
+ ),
2927
+ (
2928
+ "fedex_intl_ground_distribution",
2929
+ "fedex_intl_ground_distribution",
2930
+ ),
2931
+ ("fedex_ground_home_delivery", "fedex_ground_home_delivery"),
2932
+ ("fedex_smart_post", "fedex_smart_post"),
2933
+ ("fedex_priority_overnight", "fedex_priority_overnight"),
2934
+ ("fedex_standard_overnight", "fedex_standard_overnight"),
2935
+ ("fedex_2_day", "fedex_2_day"),
2936
+ ("fedex_2_day_am", "fedex_2_day_am"),
2937
+ ("fedex_express_saver", "fedex_express_saver"),
2938
+ ("fedex_same_day", "fedex_same_day"),
2939
+ ("fedex_same_day_city", "fedex_same_day_city"),
2940
+ ("fedex_one_day_freight", "fedex_one_day_freight"),
2941
+ (
2942
+ "fedex_international_economy_distribution",
2943
+ "fedex_international_economy_distribution",
2944
+ ),
2945
+ (
2946
+ "fedex_international_connect_plus",
2947
+ "fedex_international_connect_plus",
2948
+ ),
2949
+ (
2950
+ "fedex_international_distribution_freight",
2951
+ "fedex_international_distribution_freight",
2952
+ ),
2953
+ ("fedex_regional_economy", "fedex_regional_economy"),
2954
+ ("fedex_next_day_freight", "fedex_next_day_freight"),
2955
+ ("fedex_next_day", "fedex_next_day"),
2956
+ ("fedex_next_day_10am", "fedex_next_day_10am"),
2957
+ ("fedex_next_day_12pm", "fedex_next_day_12pm"),
2958
+ ("fedex_next_day_end_of_day", "fedex_next_day_end_of_day"),
2959
+ ("fedex_distance_deferred", "fedex_distance_deferred"),
2960
+ (
2961
+ "fedex_europe_first_international_priority",
2962
+ "fedex_europe_first_international_priority",
2963
+ ),
2964
+ ("fedex_1_day_freight", "fedex_1_day_freight"),
2965
+ ("fedex_2_day", "fedex_2_day"),
2966
+ ("fedex_2_day_am", "fedex_2_day_am"),
2967
+ ("fedex_2_day_freight", "fedex_2_day_freight"),
2968
+ ("fedex_3_day_freight", "fedex_3_day_freight"),
2969
+ (
2970
+ "fedex_cargo_airport_to_airport",
2971
+ "fedex_cargo_airport_to_airport",
2972
+ ),
2973
+ (
2974
+ "fedex_cargo_freight_forwarding",
2975
+ "fedex_cargo_freight_forwarding",
2976
+ ),
2977
+ (
2978
+ "fedex_cargo_international_express_freight",
2979
+ "fedex_cargo_international_express_freight",
2980
+ ),
2981
+ (
2982
+ "fedex_cargo_international_premium",
2983
+ "fedex_cargo_international_premium",
2984
+ ),
2985
+ ("fedex_cargo_mail", "fedex_cargo_mail"),
2986
+ ("fedex_cargo_registered_mail", "fedex_cargo_registered_mail"),
2987
+ ("fedex_cargo_surface_mail", "fedex_cargo_surface_mail"),
2988
+ (
2989
+ "fedex_custom_critical_air_expedite",
2990
+ "fedex_custom_critical_air_expedite",
2991
+ ),
2992
+ (
2993
+ "fedex_custom_critical_air_expedite_exclusive_use",
2994
+ "fedex_custom_critical_air_expedite_exclusive_use",
2995
+ ),
2996
+ (
2997
+ "fedex_custom_critical_air_expedite_network",
2998
+ "fedex_custom_critical_air_expedite_network",
2999
+ ),
3000
+ (
3001
+ "fedex_custom_critical_charter_air",
3002
+ "fedex_custom_critical_charter_air",
3003
+ ),
3004
+ (
3005
+ "fedex_custom_critical_point_to_point",
3006
+ "fedex_custom_critical_point_to_point",
3007
+ ),
3008
+ (
3009
+ "fedex_custom_critical_surface_expedite",
3010
+ "fedex_custom_critical_surface_expedite",
3011
+ ),
3012
+ (
3013
+ "fedex_custom_critical_surface_expedite_exclusive_use",
3014
+ "fedex_custom_critical_surface_expedite_exclusive_use",
3015
+ ),
3016
+ (
3017
+ "fedex_custom_critical_temp_assure_air",
3018
+ "fedex_custom_critical_temp_assure_air",
3019
+ ),
3020
+ (
3021
+ "fedex_custom_critical_temp_assure_validated_air",
3022
+ "fedex_custom_critical_temp_assure_validated_air",
3023
+ ),
3024
+ (
3025
+ "fedex_custom_critical_white_glove_services",
3026
+ "fedex_custom_critical_white_glove_services",
3027
+ ),
3028
+ ("fedex_distance_deferred", "fedex_distance_deferred"),
3029
+ ("fedex_express_saver", "fedex_express_saver"),
3030
+ ("fedex_first_freight", "fedex_first_freight"),
3031
+ ("fedex_freight_economy", "fedex_freight_economy"),
3032
+ ("fedex_freight_priority", "fedex_freight_priority"),
3033
+ ("fedex_ground", "fedex_ground"),
3034
+ (
3035
+ "fedex_international_priority_plus",
3036
+ "fedex_international_priority_plus",
3037
+ ),
3038
+ ("fedex_next_day_afternoon", "fedex_next_day_afternoon"),
3039
+ ("fedex_next_day_early_morning", "fedex_next_day_early_morning"),
3040
+ ("fedex_next_day_end_of_day", "fedex_next_day_end_of_day"),
3041
+ ("fedex_next_day_freight", "fedex_next_day_freight"),
3042
+ ("fedex_next_day_mid_morning", "fedex_next_day_mid_morning"),
3043
+ ("fedex_first_overnight", "fedex_first_overnight"),
3044
+ ("fedex_ground_home_delivery", "fedex_ground_home_delivery"),
3045
+ (
3046
+ "fedex_international_distribution_freight",
3047
+ "fedex_international_distribution_freight",
3048
+ ),
3049
+ ("fedex_international_economy", "fedex_international_economy"),
3050
+ (
3051
+ "fedex_international_economy_distribution",
3052
+ "fedex_international_economy_distribution",
3053
+ ),
3054
+ (
3055
+ "fedex_international_economy_freight",
3056
+ "fedex_international_economy_freight",
3057
+ ),
3058
+ ("fedex_international_first", "fedex_international_first"),
3059
+ ("fedex_international_ground", "fedex_international_ground"),
3060
+ ("fedex_international_priority", "fedex_international_priority"),
3061
+ (
3062
+ "fedex_international_priority_distribution",
3063
+ "fedex_international_priority_distribution",
3064
+ ),
3065
+ (
3066
+ "fedex_international_priority_express",
3067
+ "fedex_international_priority_express",
3068
+ ),
3069
+ (
3070
+ "fedex_international_priority_freight",
3071
+ "fedex_international_priority_freight",
3072
+ ),
3073
+ ("fedex_priority_overnight", "fedex_priority_overnight"),
3074
+ ("fedex_same_day", "fedex_same_day"),
3075
+ ("fedex_same_day_city", "fedex_same_day_city"),
3076
+ (
3077
+ "fedex_same_day_metro_afternoon",
3078
+ "fedex_same_day_metro_afternoon",
3079
+ ),
3080
+ ("fedex_same_day_metro_morning", "fedex_same_day_metro_morning"),
3081
+ ("fedex_same_day_metro_rush", "fedex_same_day_metro_rush"),
3082
+ ("fedex_smart_post", "fedex_smart_post"),
3083
+ ("fedex_standard_overnight", "fedex_standard_overnight"),
3084
+ (
3085
+ "fedex_transborder_distribution_consolidation",
3086
+ "fedex_transborder_distribution_consolidation",
3087
+ ),
3088
+ ("freightcom_all", "freightcom_all"),
3089
+ ("freightcom_usf_holland", "freightcom_usf_holland"),
3090
+ ("freightcom_central_transport", "freightcom_central_transport"),
3091
+ ("freightcom_estes", "freightcom_estes"),
3092
+ ("freightcom_canpar_ground", "freightcom_canpar_ground"),
3093
+ ("freightcom_canpar_select", "freightcom_canpar_select"),
3094
+ ("freightcom_canpar_overnight", "freightcom_canpar_overnight"),
3095
+ ("freightcom_dicom_ground", "freightcom_dicom_ground"),
3096
+ ("freightcom_purolator_ground", "freightcom_purolator_ground"),
3097
+ ("freightcom_purolator_express", "freightcom_purolator_express"),
3098
+ (
3099
+ "freightcom_purolator_express_9_am",
3100
+ "freightcom_purolator_express_9_am",
3101
+ ),
3102
+ (
3103
+ "freightcom_purolator_express_10_30_am",
3104
+ "freightcom_purolator_express_10_30_am",
3105
+ ),
3106
+ (
3107
+ "freightcom_purolator_ground_us",
3108
+ "freightcom_purolator_ground_us",
3109
+ ),
3110
+ (
3111
+ "freightcom_purolator_express_us",
3112
+ "freightcom_purolator_express_us",
3113
+ ),
3114
+ (
3115
+ "freightcom_purolator_express_us_9_am",
3116
+ "freightcom_purolator_express_us_9_am",
3117
+ ),
3118
+ (
3119
+ "freightcom_purolator_express_us_10_30_am",
3120
+ "freightcom_purolator_express_us_10_30_am",
3121
+ ),
3122
+ (
3123
+ "freightcom_fedex_express_saver",
3124
+ "freightcom_fedex_express_saver",
3125
+ ),
3126
+ ("freightcom_fedex_ground", "freightcom_fedex_ground"),
3127
+ ("freightcom_fedex_2day", "freightcom_fedex_2day"),
3128
+ (
3129
+ "freightcom_fedex_priority_overnight",
3130
+ "freightcom_fedex_priority_overnight",
3131
+ ),
3132
+ (
3133
+ "freightcom_fedex_standard_overnight",
3134
+ "freightcom_fedex_standard_overnight",
3135
+ ),
3136
+ (
3137
+ "freightcom_fedex_first_overnight",
3138
+ "freightcom_fedex_first_overnight",
3139
+ ),
3140
+ (
3141
+ "freightcom_fedex_international_priority",
3142
+ "freightcom_fedex_international_priority",
3143
+ ),
3144
+ (
3145
+ "freightcom_fedex_international_economy",
3146
+ "freightcom_fedex_international_economy",
3147
+ ),
3148
+ ("freightcom_ups_standard", "freightcom_ups_standard"),
3149
+ ("freightcom_ups_expedited", "freightcom_ups_expedited"),
3150
+ ("freightcom_ups_express_saver", "freightcom_ups_express_saver"),
3151
+ ("freightcom_ups_express", "freightcom_ups_express"),
3152
+ ("freightcom_ups_express_early", "freightcom_ups_express_early"),
3153
+ ("freightcom_ups_3day_select", "freightcom_ups_3day_select"),
3154
+ (
3155
+ "freightcom_ups_worldwide_expedited",
3156
+ "freightcom_ups_worldwide_expedited",
3157
+ ),
3158
+ (
3159
+ "freightcom_ups_worldwide_express",
3160
+ "freightcom_ups_worldwide_express",
3161
+ ),
3162
+ (
3163
+ "freightcom_ups_worldwide_express_plus",
3164
+ "freightcom_ups_worldwide_express_plus",
3165
+ ),
3166
+ (
3167
+ "freightcom_ups_worldwide_express_saver",
3168
+ "freightcom_ups_worldwide_express_saver",
3169
+ ),
3170
+ ("freightcom_dhl_express_easy", "freightcom_dhl_express_easy"),
3171
+ ("freightcom_dhl_express_10_30", "freightcom_dhl_express_10_30"),
3172
+ (
3173
+ "freightcom_dhl_express_worldwide",
3174
+ "freightcom_dhl_express_worldwide",
3175
+ ),
3176
+ ("freightcom_dhl_express_12_00", "freightcom_dhl_express_12_00"),
3177
+ ("freightcom_dhl_economy_select", "freightcom_dhl_economy_select"),
3178
+ (
3179
+ "freightcom_dhl_ecommerce_am_service",
3180
+ "freightcom_dhl_ecommerce_am_service",
3181
+ ),
3182
+ (
3183
+ "freightcom_dhl_ecommerce_ground_service",
3184
+ "freightcom_dhl_ecommerce_ground_service",
3185
+ ),
3186
+ (
3187
+ "freightcom_canadapost_regular_parcel",
3188
+ "freightcom_canadapost_regular_parcel",
3189
+ ),
3190
+ (
3191
+ "freightcom_canadapost_expedited_parcel",
3192
+ "freightcom_canadapost_expedited_parcel",
3193
+ ),
3194
+ (
3195
+ "freightcom_canadapost_xpresspost",
3196
+ "freightcom_canadapost_xpresspost",
3197
+ ),
3198
+ (
3199
+ "freightcom_canadapost_priority",
3200
+ "freightcom_canadapost_priority",
3201
+ ),
3202
+ ("standard_service", "standard_service"),
3203
+ ("geodis_EXP", "geodis_EXP"),
3204
+ ("geodis_MES", "geodis_MES"),
3205
+ ("geodis_express_france", "geodis_express_france"),
3206
+ (
3207
+ "geodis_retour_trans_fr_messagerie_plus",
3208
+ "geodis_retour_trans_fr_messagerie_plus",
3209
+ ),
3210
+ ("letter_ordered", "letter_ordered"),
3211
+ ("letter_simple", "letter_simple"),
3212
+ ("letter_valued", "letter_valued"),
3213
+ ("package_ordered", "package_ordered"),
3214
+ ("package_simple", "package_simple"),
3215
+ ("package_valued", "package_valued"),
3216
+ ("parcel_simple", "parcel_simple"),
3217
+ ("parcel_valued", "parcel_valued"),
3218
+ ("postcard_ordered", "postcard_ordered"),
3219
+ ("postcard_simple", "postcard_simple"),
3220
+ ("sekogram_simple", "sekogram_simple"),
3221
+ ("sprint_simple", "sprint_simple"),
3222
+ ("yes_ordered_value", "yes_ordered_value"),
3223
+ ("locate2u_local_delivery", "locate2u_local_delivery"),
3224
+ ("purolator_express_9_am", "purolator_express_9_am"),
3225
+ ("purolator_express_us", "purolator_express_us"),
3226
+ ("purolator_express_10_30_am", "purolator_express_10_30_am"),
3227
+ ("purolator_express_us_9_am", "purolator_express_us_9_am"),
3228
+ ("purolator_express_12_pm", "purolator_express_12_pm"),
3229
+ ("purolator_express_us_10_30_am", "purolator_express_us_10_30_am"),
3230
+ ("purolator_express", "purolator_express"),
3231
+ ("purolator_express_us_12_00", "purolator_express_us_12_00"),
3232
+ ("purolator_express_evening", "purolator_express_evening"),
3233
+ ("purolator_express_envelope_us", "purolator_express_envelope_us"),
3234
+ (
3235
+ "purolator_express_envelope_9_am",
3236
+ "purolator_express_envelope_9_am",
3237
+ ),
3238
+ (
3239
+ "purolator_express_us_envelope_9_am",
3240
+ "purolator_express_us_envelope_9_am",
3241
+ ),
3242
+ (
3243
+ "purolator_express_envelope_10_30_am",
3244
+ "purolator_express_envelope_10_30_am",
3245
+ ),
3246
+ (
3247
+ "purolator_express_us_envelope_10_30_am",
3248
+ "purolator_express_us_envelope_10_30_am",
3249
+ ),
3250
+ (
3251
+ "purolator_express_envelope_12_pm",
3252
+ "purolator_express_envelope_12_pm",
3253
+ ),
3254
+ (
3255
+ "purolator_express_us_envelope_12_00",
3256
+ "purolator_express_us_envelope_12_00",
3257
+ ),
3258
+ ("purolator_express_envelope", "purolator_express_envelope"),
3259
+ ("purolator_express_pack_us", "purolator_express_pack_us"),
3260
+ (
3261
+ "purolator_express_envelope_evening",
3262
+ "purolator_express_envelope_evening",
3263
+ ),
3264
+ (
3265
+ "purolator_express_us_pack_9_am",
3266
+ "purolator_express_us_pack_9_am",
3267
+ ),
3268
+ ("purolator_express_pack_9_am", "purolator_express_pack_9_am"),
3269
+ (
3270
+ "purolator_express_us_pack_10_30_am",
3271
+ "purolator_express_us_pack_10_30_am",
3272
+ ),
3273
+ (
3274
+ "purolator_express_pack10_30_am",
3275
+ "purolator_express_pack10_30_am",
3276
+ ),
3277
+ (
3278
+ "purolator_express_us_pack_12_00",
3279
+ "purolator_express_us_pack_12_00",
3280
+ ),
3281
+ ("purolator_express_pack_12_pm", "purolator_express_pack_12_pm"),
3282
+ ("purolator_express_box_us", "purolator_express_box_us"),
3283
+ ("purolator_express_pack", "purolator_express_pack"),
3284
+ ("purolator_express_us_box_9_am", "purolator_express_us_box_9_am"),
3285
+ (
3286
+ "purolator_express_pack_evening",
3287
+ "purolator_express_pack_evening",
3288
+ ),
3289
+ (
3290
+ "purolator_express_us_box_10_30_am",
3291
+ "purolator_express_us_box_10_30_am",
3292
+ ),
3293
+ ("purolator_express_box_9_am", "purolator_express_box_9_am"),
3294
+ (
3295
+ "purolator_express_us_box_12_00",
3296
+ "purolator_express_us_box_12_00",
3297
+ ),
3298
+ (
3299
+ "purolator_express_box_10_30_am",
3300
+ "purolator_express_box_10_30_am",
3301
+ ),
3302
+ ("purolator_ground_us", "purolator_ground_us"),
3303
+ ("purolator_express_box_12_pm", "purolator_express_box_12_pm"),
3304
+ (
3305
+ "purolator_express_international",
3306
+ "purolator_express_international",
3307
+ ),
3308
+ ("purolator_express_box", "purolator_express_box"),
3309
+ (
3310
+ "purolator_express_international_9_am",
3311
+ "purolator_express_international_9_am",
3312
+ ),
3313
+ ("purolator_express_box_evening", "purolator_express_box_evening"),
3314
+ (
3315
+ "purolator_express_international_10_30_am",
3316
+ "purolator_express_international_10_30_am",
3317
+ ),
3318
+ ("purolator_ground", "purolator_ground"),
3319
+ (
3320
+ "purolator_express_international_12_00",
3321
+ "purolator_express_international_12_00",
3322
+ ),
3323
+ ("purolator_ground_9_am", "purolator_ground_9_am"),
3324
+ (
3325
+ "purolator_express_envelope_international",
3326
+ "purolator_express_envelope_international",
3327
+ ),
3328
+ ("purolator_ground_10_30_am", "purolator_ground_10_30_am"),
3329
+ (
3330
+ "purolator_express_international_envelope_9_am",
3331
+ "purolator_express_international_envelope_9_am",
3332
+ ),
3333
+ ("purolator_ground_evening", "purolator_ground_evening"),
3334
+ (
3335
+ "purolator_express_international_envelope_10_30_am",
3336
+ "purolator_express_international_envelope_10_30_am",
3337
+ ),
3338
+ ("purolator_quick_ship", "purolator_quick_ship"),
3339
+ (
3340
+ "purolator_express_international_envelope_12_00",
3341
+ "purolator_express_international_envelope_12_00",
3342
+ ),
3343
+ ("purolator_quick_ship_envelope", "purolator_quick_ship_envelope"),
3344
+ (
3345
+ "purolator_express_pack_international",
3346
+ "purolator_express_pack_international",
3347
+ ),
3348
+ ("purolator_quick_ship_pack", "purolator_quick_ship_pack"),
3349
+ (
3350
+ "purolator_express_international_pack_9_am",
3351
+ "purolator_express_international_pack_9_am",
3352
+ ),
3353
+ ("purolator_quick_ship_box", "purolator_quick_ship_box"),
3354
+ (
3355
+ "purolator_express_international_pack_10_30_am",
3356
+ "purolator_express_international_pack_10_30_am",
3357
+ ),
3358
+ (
3359
+ "purolator_express_international_pack_12_00",
3360
+ "purolator_express_international_pack_12_00",
3361
+ ),
3362
+ (
3363
+ "purolator_express_box_international",
3364
+ "purolator_express_box_international",
3365
+ ),
3366
+ (
3367
+ "purolator_express_international_box_9_am",
3368
+ "purolator_express_international_box_9_am",
3369
+ ),
3370
+ (
3371
+ "purolator_express_international_box_10_30_am",
3372
+ "purolator_express_international_box_10_30_am",
3373
+ ),
3374
+ (
3375
+ "purolator_express_international_box_12_00",
3376
+ "purolator_express_international_box_12_00",
3377
+ ),
3378
+ ("roadie_local_delivery", "roadie_local_delivery"),
3379
+ (
3380
+ "sapient_royal_mail_hm_forces_mail",
3381
+ "sapient_royal_mail_hm_forces_mail",
3382
+ ),
3383
+ (
3384
+ "sapient_royal_mail_hm_forces_signed_for",
3385
+ "sapient_royal_mail_hm_forces_signed_for",
3386
+ ),
3387
+ (
3388
+ "sapient_royal_mail_hm_forces_special_delivery_500",
3389
+ "sapient_royal_mail_hm_forces_special_delivery_500",
3390
+ ),
3391
+ (
3392
+ "sapient_royal_mail_hm_forces_special_delivery_1000",
3393
+ "sapient_royal_mail_hm_forces_special_delivery_1000",
3394
+ ),
3395
+ (
3396
+ "sapient_royal_mail_hm_forces_special_delivery_2500",
3397
+ "sapient_royal_mail_hm_forces_special_delivery_2500",
3398
+ ),
3399
+ (
3400
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_ll",
3401
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_ll",
3402
+ ),
3403
+ (
3404
+ "sapient_royal_mail_international_business_mail_ll_max_sort_residue_standard",
3405
+ "sapient_royal_mail_international_business_mail_ll_max_sort_residue_standard",
3406
+ ),
3407
+ (
3408
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_l",
3409
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_l",
3410
+ ),
3411
+ (
3412
+ "sapient_royal_mail_international_business_mail_l_max_sort_residue_standard",
3413
+ "sapient_royal_mail_international_business_mail_l_max_sort_residue_standard",
3414
+ ),
3415
+ (
3416
+ "sapient_royal_mail_international_business_printed_matter_packet",
3417
+ "sapient_royal_mail_international_business_printed_matter_packet",
3418
+ ),
3419
+ ("sapient_royal_mail_1st_class", "sapient_royal_mail_1st_class"),
3420
+ ("sapient_royal_mail_2nd_class", "sapient_royal_mail_2nd_class"),
3421
+ (
3422
+ "sapient_royal_mail_1st_class_signed_for",
3423
+ "sapient_royal_mail_1st_class_signed_for",
3424
+ ),
3425
+ (
3426
+ "sapient_royal_mail_2nd_class_signed_for",
3427
+ "sapient_royal_mail_2nd_class_signed_for",
3428
+ ),
3429
+ (
3430
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable",
3431
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable",
3432
+ ),
3433
+ (
3434
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_extra_comp",
3435
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_extra_comp",
3436
+ ),
3437
+ (
3438
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable_ddp",
3439
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable_ddp",
3440
+ ),
3441
+ (
3442
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_ddp",
3443
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_ddp",
3444
+ ),
3445
+ (
3446
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable",
3447
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable",
3448
+ ),
3449
+ (
3450
+ "sapient_royal_mail_24_standard_signed_for_parcel_daily_rate_service",
3451
+ "sapient_royal_mail_24_standard_signed_for_parcel_daily_rate_service",
3452
+ ),
3453
+ (
3454
+ "sapient_royal_mail_48_standard_signed_for_parcel_daily_rate_service",
3455
+ "sapient_royal_mail_48_standard_signed_for_parcel_daily_rate_service",
3456
+ ),
3457
+ (
3458
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority",
3459
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority",
3460
+ ),
3461
+ (
3462
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_DE",
3463
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_DE",
3464
+ ),
3465
+ (
3466
+ "sapient_royal_mail_de_import_standard_24_parcel",
3467
+ "sapient_royal_mail_de_import_standard_24_parcel",
3468
+ ),
3469
+ (
3470
+ "sapient_royal_mail_de_import_standard_24_parcel_DE",
3471
+ "sapient_royal_mail_de_import_standard_24_parcel_DE",
3472
+ ),
3473
+ (
3474
+ "sapient_royal_mail_de_import_standard_24_ll",
3475
+ "sapient_royal_mail_de_import_standard_24_ll",
3476
+ ),
3477
+ (
3478
+ "sapient_royal_mail_de_import_standard_48_ll",
3479
+ "sapient_royal_mail_de_import_standard_48_ll",
3480
+ ),
3481
+ (
3482
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_ll",
3483
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_ll",
3484
+ ),
3485
+ (
3486
+ "sapient_royal_mail_de_import_to_eu_max_sort_ll",
3487
+ "sapient_royal_mail_de_import_to_eu_max_sort_ll",
3488
+ ),
3489
+ (
3490
+ "sapient_royal_mail_de_import_to_eu_tracked_parcel",
3491
+ "sapient_royal_mail_de_import_to_eu_tracked_parcel",
3492
+ ),
3493
+ (
3494
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_parcel",
3495
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_parcel",
3496
+ ),
3497
+ (
3498
+ "sapient_royal_mail_de_import_to_eu_tracked_high_vol_ll",
3499
+ "sapient_royal_mail_de_import_to_eu_tracked_high_vol_ll",
3500
+ ),
3501
+ (
3502
+ "sapient_royal_mail_de_import_to_eu_max_sort_parcel",
3503
+ "sapient_royal_mail_de_import_to_eu_max_sort_parcel",
3504
+ ),
3505
+ (
3506
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority",
3507
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority",
3508
+ ),
3509
+ (
3510
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked",
3511
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked",
3512
+ ),
3513
+ (
3514
+ "sapient_royal_mail_international_business_mail_ll_country_sort_priority",
3515
+ "sapient_royal_mail_international_business_mail_ll_country_sort_priority",
3516
+ ),
3517
+ (
3518
+ "sapient_royal_mail_international_business_parcels",
3519
+ "sapient_royal_mail_international_business_parcels",
3520
+ ),
3521
+ (
3522
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced_extra_territorial_office_of_exchange",
3523
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced_extra_territorial_office_of_exchange",
3524
+ ),
3525
+ (
3526
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced_extra_territorial_office_of_exchange",
3527
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced_extra_territorial_office_of_exchange",
3528
+ ),
3529
+ (
3530
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_extra_territorial_office_of_exchange",
3531
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_extra_territorial_office_of_exchange",
3532
+ ),
3533
+ (
3534
+ "sapient_royal_mail_international_business_mail_tracked_ll_country_priced_extra_territorial_office_of_exchange",
3535
+ "sapient_royal_mail_international_business_mail_tracked_ll_country_priced_extra_territorial_office_of_exchange",
3536
+ ),
3537
+ (
3538
+ "sapient_royal_mail_international_business_mail_tracked_signed_ll_country_priced_extra_territorial_office_of_exchange",
3539
+ "sapient_royal_mail_international_business_mail_tracked_signed_ll_country_priced_extra_territorial_office_of_exchange",
3540
+ ),
3541
+ (
3542
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority_extra_territorial_office_of_exchange",
3543
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority_extra_territorial_office_of_exchange",
3544
+ ),
3545
+ (
3546
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_e",
3547
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_e",
3548
+ ),
3549
+ (
3550
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_e",
3551
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_e",
3552
+ ),
3553
+ (
3554
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_c",
3555
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_c",
3556
+ ),
3557
+ (
3558
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_c",
3559
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_c",
3560
+ ),
3561
+ (
3562
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked_extra_territorial_office_of_exchange",
3563
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked_extra_territorial_office_of_exchange",
3564
+ ),
3565
+ (
3566
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_high_vol_country_priced_extra_territorial_office_of_exchange",
3567
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_high_vol_country_priced_extra_territorial_office_of_exchange",
3568
+ ),
3569
+ (
3570
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_signed_high_vol_country_priced_extra_territorial_office_of_exchange",
3571
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_signed_high_vol_country_priced_extra_territorial_office_of_exchange",
3572
+ ),
3573
+ (
3574
+ "sapient_royal_mail_international_business_personal_correspondence_signed_l_high_vol_country_priced_extra_territorial_office_of_exchange",
3575
+ "sapient_royal_mail_international_business_personal_correspondence_signed_l_high_vol_country_priced_extra_territorial_office_of_exchange",
3576
+ ),
3577
+ (
3578
+ "sapient_royal_mail_international_business_personal_correspondence_ll_country_sort_priority_extra_territorial_office_of_exchange",
3579
+ "sapient_royal_mail_international_business_personal_correspondence_ll_country_sort_priority_extra_territorial_office_of_exchange",
3580
+ ),
3581
+ (
3582
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
3583
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
3584
+ ),
3585
+ (
3586
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_signed_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
3587
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_signed_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
3588
+ ),
3589
+ (
3590
+ "sapient_royal_mail_international_business_personal_correspondence_signed_ll_extra_compensation_country_priced_extra_territorial_office_of_exchange",
3591
+ "sapient_royal_mail_international_business_personal_correspondence_signed_ll_extra_compensation_country_priced_extra_territorial_office_of_exchange",
3592
+ ),
3593
+ (
3594
+ "sapient_royal_mail_24_standard_signed_for_large_letter_flat_rate_service",
3595
+ "sapient_royal_mail_24_standard_signed_for_large_letter_flat_rate_service",
3596
+ ),
3597
+ (
3598
+ "sapient_royal_mail_48_standard_signed_for_large_letter_flat_rate_service",
3599
+ "sapient_royal_mail_48_standard_signed_for_large_letter_flat_rate_service",
3600
+ ),
3601
+ (
3602
+ "sapient_royal_mail_24_presorted_ll",
3603
+ "sapient_royal_mail_24_presorted_ll",
3604
+ ),
3605
+ (
3606
+ "sapient_royal_mail_48_presorted_ll",
3607
+ "sapient_royal_mail_48_presorted_ll",
3608
+ ),
3609
+ (
3610
+ "sapient_royal_mail_international_tracked_parcels_0_30kg",
3611
+ "sapient_royal_mail_international_tracked_parcels_0_30kg",
3612
+ ),
3613
+ (
3614
+ "sapient_royal_mail_international_business_tracked_express_npc",
3615
+ "sapient_royal_mail_international_business_tracked_express_npc",
3616
+ ),
3617
+ (
3618
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp",
3619
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp",
3620
+ ),
3621
+ (
3622
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_c_prio",
3623
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_c_prio",
3624
+ ),
3625
+ (
3626
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_xcomp_c_prio",
3627
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_xcomp_c_prio",
3628
+ ),
3629
+ (
3630
+ "sapient_royal_mail_international_business_parcels_zone_sort_priority_service",
3631
+ "sapient_royal_mail_international_business_parcels_zone_sort_priority_service",
3632
+ ),
3633
+ (
3634
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority",
3635
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority",
3636
+ ),
3637
+ (
3638
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority_machine",
3639
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority_machine",
3640
+ ),
3641
+ (
3642
+ "sapient_royal_mail_international_business_mail_letters_zone_sort_priority",
3643
+ "sapient_royal_mail_international_business_mail_letters_zone_sort_priority",
3644
+ ),
3645
+ (
3646
+ "sapient_royal_mail_import_de_tracked_returns_24",
3647
+ "sapient_royal_mail_import_de_tracked_returns_24",
3648
+ ),
3649
+ (
3650
+ "sapient_royal_mail_import_de_tracked_returns_48",
3651
+ "sapient_royal_mail_import_de_tracked_returns_48",
3652
+ ),
3653
+ (
3654
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable_high_volume",
3655
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable_high_volume",
3656
+ ),
3657
+ (
3658
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable_high_volume",
3659
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable_high_volume",
3660
+ ),
3661
+ (
3662
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable",
3663
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable",
3664
+ ),
3665
+ (
3666
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable",
3667
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable",
3668
+ ),
3669
+ (
3670
+ "sapient_royal_mail_import_de_tracked_48_high_volume",
3671
+ "sapient_royal_mail_import_de_tracked_48_high_volume",
3672
+ ),
3673
+ (
3674
+ "sapient_royal_mail_import_de_tracked_24_high_volume",
3675
+ "sapient_royal_mail_import_de_tracked_24_high_volume",
3676
+ ),
3677
+ (
3678
+ "sapient_royal_mail_import_de_tracked_24",
3679
+ "sapient_royal_mail_import_de_tracked_24",
3680
+ ),
3681
+ (
3682
+ "sapient_royal_mail_de_import_to_eu_signed_parcel",
3683
+ "sapient_royal_mail_de_import_to_eu_signed_parcel",
3684
+ ),
3685
+ (
3686
+ "sapient_royal_mail_import_de_tracked_48",
3687
+ "sapient_royal_mail_import_de_tracked_48",
3688
+ ),
3689
+ (
3690
+ "sapient_royal_mail_international_business_parcels_print_direct_priority",
3691
+ "sapient_royal_mail_international_business_parcels_print_direct_priority",
3692
+ ),
3693
+ (
3694
+ "sapient_royal_mail_international_business_parcels_print_direct_standard",
3695
+ "sapient_royal_mail_international_business_parcels_print_direct_standard",
3696
+ ),
3697
+ (
3698
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_country_priced",
3699
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_country_priced",
3700
+ ),
3701
+ (
3702
+ "sapient_royal_mail_international_business_parcels_tracked_zone_sort",
3703
+ "sapient_royal_mail_international_business_parcels_tracked_zone_sort",
3704
+ ),
3705
+ (
3706
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_zone_sort",
3707
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_zone_sort",
3708
+ ),
3709
+ (
3710
+ "sapient_royal_mail_international_business_parcels_signed_zone_sort",
3711
+ "sapient_royal_mail_international_business_parcels_signed_zone_sort",
3712
+ ),
3713
+ (
3714
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_zone_sort",
3715
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_zone_sort",
3716
+ ),
3717
+ (
3718
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced",
3719
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced",
3720
+ ),
3721
+ (
3722
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_country_priced",
3723
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_country_priced",
3724
+ ),
3725
+ (
3726
+ "sapient_royal_mail_international_business_parcels_signed_country_priced",
3727
+ "sapient_royal_mail_international_business_parcels_signed_country_priced",
3728
+ ),
3729
+ (
3730
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_country_priced",
3731
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_country_priced",
3732
+ ),
3733
+ (
3734
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_country_priced",
3735
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_country_priced",
3736
+ ),
3737
+ (
3738
+ "sapient_royal_mail_international_business_mail_signed_high_vol_country_priced",
3739
+ "sapient_royal_mail_international_business_mail_signed_high_vol_country_priced",
3740
+ ),
3741
+ (
3742
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_extra_comp_country_priced",
3743
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_extra_comp_country_priced",
3744
+ ),
3745
+ (
3746
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_extra_comp_country_priced",
3747
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_extra_comp_country_priced",
3748
+ ),
3749
+ (
3750
+ "sapient_royal_mail_international_business_parcel_tracked_boxable_country_priced",
3751
+ "sapient_royal_mail_international_business_parcel_tracked_boxable_country_priced",
3752
+ ),
3753
+ (
3754
+ "sapient_royal_mail_international_business_parcels_tracked_signed_zone_sort",
3755
+ "sapient_royal_mail_international_business_parcels_tracked_signed_zone_sort",
3756
+ ),
3757
+ (
3758
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_zone_sort",
3759
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_zone_sort",
3760
+ ),
3761
+ (
3762
+ "sapient_royal_mail_international_business_mail_tracked_signed_zone_sort",
3763
+ "sapient_royal_mail_international_business_mail_tracked_signed_zone_sort",
3764
+ ),
3765
+ (
3766
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced",
3767
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced",
3768
+ ),
3769
+ (
3770
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_country_priced",
3771
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_country_priced",
3772
+ ),
3773
+ (
3774
+ "sapient_royal_mail_international_business_mail_tracked_signed_country_priced",
3775
+ "sapient_royal_mail_international_business_mail_tracked_signed_country_priced",
3776
+ ),
3777
+ (
3778
+ "sapient_royal_mail_international_business_mail_tracked_zone_sort",
3779
+ "sapient_royal_mail_international_business_mail_tracked_zone_sort",
3780
+ ),
3781
+ (
3782
+ "sapient_royal_mail_international_business_mail_tracked_country_priced",
3783
+ "sapient_royal_mail_international_business_mail_tracked_country_priced",
3784
+ ),
3785
+ (
3786
+ "sapient_royal_mail_international_business_mail_signed_zone_sort",
3787
+ "sapient_royal_mail_international_business_mail_signed_zone_sort",
3788
+ ),
3789
+ (
3790
+ "sapient_royal_mail_international_business_mail_signed_country_priced",
3791
+ "sapient_royal_mail_international_business_mail_signed_country_priced",
3792
+ ),
3793
+ (
3794
+ "sapient_royal_mail_international_business_mail_signed_extra_compensation_country_priced",
3795
+ "sapient_royal_mail_international_business_mail_signed_extra_compensation_country_priced",
3796
+ ),
3797
+ (
3798
+ "sapient_royal_mail_international_business_parcels_tracked_direct_ireland_country",
3799
+ "sapient_royal_mail_international_business_parcels_tracked_direct_ireland_country",
3800
+ ),
3801
+ (
3802
+ "sapient_royal_mail_international_business_parcels_tracked_signed_ddp",
3803
+ "sapient_royal_mail_international_business_parcels_tracked_signed_ddp",
3804
+ ),
3805
+ (
3806
+ "sapient_royal_mail_international_standard_on_account",
3807
+ "sapient_royal_mail_international_standard_on_account",
3808
+ ),
3809
+ (
3810
+ "sapient_royal_mail_international_economy_on_account",
3811
+ "sapient_royal_mail_international_economy_on_account",
3812
+ ),
3813
+ (
3814
+ "sapient_royal_mail_international_signed_on_account",
3815
+ "sapient_royal_mail_international_signed_on_account",
3816
+ ),
3817
+ (
3818
+ "sapient_royal_mail_international_signed_on_account_extra_comp",
3819
+ "sapient_royal_mail_international_signed_on_account_extra_comp",
3820
+ ),
3821
+ (
3822
+ "sapient_royal_mail_international_tracked_on_account",
3823
+ "sapient_royal_mail_international_tracked_on_account",
3824
+ ),
3825
+ (
3826
+ "sapient_royal_mail_international_tracked_on_account_extra_comp",
3827
+ "sapient_royal_mail_international_tracked_on_account_extra_comp",
3828
+ ),
3829
+ (
3830
+ "sapient_royal_mail_international_tracked_signed_on_account",
3831
+ "sapient_royal_mail_international_tracked_signed_on_account",
3832
+ ),
3833
+ (
3834
+ "sapient_royal_mail_international_tracked_signed_on_account_extra_comp",
3835
+ "sapient_royal_mail_international_tracked_signed_on_account_extra_comp",
3836
+ ),
3837
+ (
3838
+ "sapient_royal_mail_48_ll_flat_rate",
3839
+ "sapient_royal_mail_48_ll_flat_rate",
3840
+ ),
3841
+ (
3842
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_flat_rate_service",
3843
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_flat_rate_service",
3844
+ ),
3845
+ (
3846
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_flat_rate_service",
3847
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_flat_rate_service",
3848
+ ),
3849
+ (
3850
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_daily_rate_service",
3851
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_daily_rate_service",
3852
+ ),
3853
+ (
3854
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_daily_rate_service",
3855
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_daily_rate_service",
3856
+ ),
3857
+ (
3858
+ "sapient_royal_mail_24_presorted_p",
3859
+ "sapient_royal_mail_24_presorted_p",
3860
+ ),
3861
+ (
3862
+ "sapient_royal_mail_48_presorted_p",
3863
+ "sapient_royal_mail_48_presorted_p",
3864
+ ),
3865
+ (
3866
+ "sapient_royal_mail_24_ll_flat_rate",
3867
+ "sapient_royal_mail_24_ll_flat_rate",
3868
+ ),
3869
+ (
3870
+ "sapient_royal_mail_rm24_presorted_p_annual_flat_rate",
3871
+ "sapient_royal_mail_rm24_presorted_p_annual_flat_rate",
3872
+ ),
3873
+ (
3874
+ "sapient_royal_mail_rm48_presorted_p_annual_flat_rate",
3875
+ "sapient_royal_mail_rm48_presorted_p_annual_flat_rate",
3876
+ ),
3877
+ (
3878
+ "sapient_royal_mail_rm48_presorted_ll_annual_flat_rate",
3879
+ "sapient_royal_mail_rm48_presorted_ll_annual_flat_rate",
3880
+ ),
3881
+ (
3882
+ "sapient_royal_mail_rm24_presorted_ll_annual_flat_rate",
3883
+ "sapient_royal_mail_rm24_presorted_ll_annual_flat_rate",
3884
+ ),
3885
+ (
3886
+ "sapient_royal_mail_24_standard_signed_for_packetpost_flat_rate_service",
3887
+ "sapient_royal_mail_24_standard_signed_for_packetpost_flat_rate_service",
3888
+ ),
3889
+ (
3890
+ "sapient_royal_mail_48_standard_signed_for_packetpost_flat_rate_service",
3891
+ "sapient_royal_mail_48_standard_signed_for_packetpost_flat_rate_service",
3892
+ ),
3893
+ (
3894
+ "sapient_royal_mail_parcelpost_flat_rate_annual",
3895
+ "sapient_royal_mail_parcelpost_flat_rate_annual",
3896
+ ),
3897
+ (
3898
+ "sapient_royal_mail_parcelpost_flat_rate_annual_PPJ",
3899
+ "sapient_royal_mail_parcelpost_flat_rate_annual_PPJ",
3900
+ ),
3901
+ (
3902
+ "sapient_royal_mail_rm24_ll_annual_flat_rate",
3903
+ "sapient_royal_mail_rm24_ll_annual_flat_rate",
3904
+ ),
3905
+ (
3906
+ "sapient_royal_mail_rm48_ll_annual_flat_rate",
3907
+ "sapient_royal_mail_rm48_ll_annual_flat_rate",
3908
+ ),
3909
+ (
3910
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_l",
3911
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_l",
3912
+ ),
3913
+ (
3914
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_priority_service",
3915
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_priority_service",
3916
+ ),
3917
+ (
3918
+ "sapient_royal_mail_international_business_mail_letters_max_sort_standard",
3919
+ "sapient_royal_mail_international_business_mail_letters_max_sort_standard",
3920
+ ),
3921
+ (
3922
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_standard_service",
3923
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_standard_service",
3924
+ ),
3925
+ (
3926
+ "sapient_royal_mail_48_sort8p_annual_flat_rate",
3927
+ "sapient_royal_mail_48_sort8p_annual_flat_rate",
3928
+ ),
3929
+ (
3930
+ "sapient_royal_mail_24_ll_daily_rate",
3931
+ "sapient_royal_mail_24_ll_daily_rate",
3932
+ ),
3933
+ (
3934
+ "sapient_royal_mail_24_p_daily_rate",
3935
+ "sapient_royal_mail_24_p_daily_rate",
3936
+ ),
3937
+ (
3938
+ "sapient_royal_mail_48_ll_daily_rate",
3939
+ "sapient_royal_mail_48_ll_daily_rate",
3940
+ ),
3941
+ (
3942
+ "sapient_royal_mail_48_p_daily_rate",
3943
+ "sapient_royal_mail_48_p_daily_rate",
3944
+ ),
3945
+ (
3946
+ "sapient_royal_mail_24_p_flat_rate",
3947
+ "sapient_royal_mail_24_p_flat_rate",
3948
+ ),
3949
+ (
3950
+ "sapient_royal_mail_48_p_flat_rate",
3951
+ "sapient_royal_mail_48_p_flat_rate",
3952
+ ),
3953
+ (
3954
+ "sapient_royal_mail_24_sort8_ll_annual_flat_rate",
3955
+ "sapient_royal_mail_24_sort8_ll_annual_flat_rate",
3956
+ ),
3957
+ (
3958
+ "sapient_royal_mail_24_sort8_p_annual_flat_rate",
3959
+ "sapient_royal_mail_24_sort8_p_annual_flat_rate",
3960
+ ),
3961
+ (
3962
+ "sapient_royal_mail_48_sort8_ll_annual_flat_rate",
3963
+ "sapient_royal_mail_48_sort8_ll_annual_flat_rate",
3964
+ ),
3965
+ (
3966
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_750",
3967
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_750",
3968
+ ),
3969
+ (
3970
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_1000",
3971
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_1000",
3972
+ ),
3973
+ (
3974
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_2500",
3975
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_2500",
3976
+ ),
3977
+ (
3978
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_750",
3979
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_750",
3980
+ ),
3981
+ (
3982
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_1000",
3983
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_1000",
3984
+ ),
3985
+ (
3986
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_2500",
3987
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_2500",
3988
+ ),
3989
+ (
3990
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_750",
3991
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_750",
3992
+ ),
3993
+ (
3994
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_1000",
3995
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_1000",
3996
+ ),
3997
+ (
3998
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_2500",
3999
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_2500",
4000
+ ),
4001
+ (
4002
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_750",
4003
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_750",
4004
+ ),
4005
+ (
4006
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_1000",
4007
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_1000",
4008
+ ),
4009
+ (
4010
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_2500",
4011
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_2500",
4012
+ ),
4013
+ (
4014
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_750",
4015
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_750",
4016
+ ),
4017
+ (
4018
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_1000",
4019
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_1000",
4020
+ ),
4021
+ (
4022
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_2500",
4023
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_2500",
4024
+ ),
4025
+ (
4026
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_750",
4027
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_750",
4028
+ ),
4029
+ (
4030
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_1000",
4031
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_1000",
4032
+ ),
4033
+ (
4034
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_2500",
4035
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_2500",
4036
+ ),
4037
+ (
4038
+ "sapient_royal_mail_special_delivery_guaranteed_age_750",
4039
+ "sapient_royal_mail_special_delivery_guaranteed_age_750",
4040
+ ),
4041
+ (
4042
+ "sapient_royal_mail_special_delivery_guaranteed_age_1000",
4043
+ "sapient_royal_mail_special_delivery_guaranteed_age_1000",
4044
+ ),
4045
+ (
4046
+ "sapient_royal_mail_special_delivery_guaranteed_age_2500",
4047
+ "sapient_royal_mail_special_delivery_guaranteed_age_2500",
4048
+ ),
4049
+ (
4050
+ "sapient_royal_mail_special_delivery_guaranteed_id_750",
4051
+ "sapient_royal_mail_special_delivery_guaranteed_id_750",
4052
+ ),
4053
+ (
4054
+ "sapient_royal_mail_special_delivery_guaranteed_id_1000",
4055
+ "sapient_royal_mail_special_delivery_guaranteed_id_1000",
4056
+ ),
4057
+ (
4058
+ "sapient_royal_mail_special_delivery_guaranteed_id_2500",
4059
+ "sapient_royal_mail_special_delivery_guaranteed_id_2500",
4060
+ ),
4061
+ (
4062
+ "sapient_royal_mail_special_delivery_guaranteed_750",
4063
+ "sapient_royal_mail_special_delivery_guaranteed_750",
4064
+ ),
4065
+ (
4066
+ "sapient_royal_mail_special_delivery_guaranteed_1000",
4067
+ "sapient_royal_mail_special_delivery_guaranteed_1000",
4068
+ ),
4069
+ (
4070
+ "sapient_royal_mail_special_delivery_guaranteed_2500",
4071
+ "sapient_royal_mail_special_delivery_guaranteed_2500",
4072
+ ),
4073
+ (
4074
+ "sapient_royal_mail_1st_class_standard_signed_for_letters_daily_rate_service",
4075
+ "sapient_royal_mail_1st_class_standard_signed_for_letters_daily_rate_service",
4076
+ ),
4077
+ (
4078
+ "sapient_royal_mail_2nd_class_standard_signed_for_letters_daily_rate_service",
4079
+ "sapient_royal_mail_2nd_class_standard_signed_for_letters_daily_rate_service",
4080
+ ),
4081
+ (
4082
+ "sapient_royal_mail_tracked_24_high_volume_signature_age",
4083
+ "sapient_royal_mail_tracked_24_high_volume_signature_age",
4084
+ ),
4085
+ (
4086
+ "sapient_royal_mail_tracked_48_high_volume_signature_age",
4087
+ "sapient_royal_mail_tracked_48_high_volume_signature_age",
4088
+ ),
4089
+ (
4090
+ "sapient_royal_mail_tracked_24_signature_age",
4091
+ "sapient_royal_mail_tracked_24_signature_age",
4092
+ ),
4093
+ (
4094
+ "sapient_royal_mail_tracked_48_signature_age",
4095
+ "sapient_royal_mail_tracked_48_signature_age",
4096
+ ),
4097
+ (
4098
+ "sapient_royal_mail_tracked_48_high_volume_signature_no_signature",
4099
+ "sapient_royal_mail_tracked_48_high_volume_signature_no_signature",
4100
+ ),
4101
+ (
4102
+ "sapient_royal_mail_tracked_24_high_volume_signature_no_signature",
4103
+ "sapient_royal_mail_tracked_24_high_volume_signature_no_signature",
4104
+ ),
4105
+ (
4106
+ "sapient_royal_mail_tracked_24_signature_no_signature",
4107
+ "sapient_royal_mail_tracked_24_signature_no_signature",
4108
+ ),
4109
+ (
4110
+ "sapient_royal_mail_tracked_48_signature_no_signature",
4111
+ "sapient_royal_mail_tracked_48_signature_no_signature",
4112
+ ),
4113
+ (
4114
+ "sapient_royal_mail_tracked_letter_boxable_48_high_volume_signature_no_signature",
4115
+ "sapient_royal_mail_tracked_letter_boxable_48_high_volume_signature_no_signature",
4116
+ ),
4117
+ (
4118
+ "sapient_royal_mail_tracked_letter_boxable_24_high_volume_signature_no_signature",
4119
+ "sapient_royal_mail_tracked_letter_boxable_24_high_volume_signature_no_signature",
4120
+ ),
4121
+ (
4122
+ "sapient_royal_mail_tracked_letter_boxable_24_signature_no_signature",
4123
+ "sapient_royal_mail_tracked_letter_boxable_24_signature_no_signature",
4124
+ ),
4125
+ (
4126
+ "sapient_royal_mail_tracked_letter_boxable_48_signature_no_signature",
4127
+ "sapient_royal_mail_tracked_letter_boxable_48_signature_no_signature",
4128
+ ),
4129
+ (
4130
+ "sapient_royal_mail_tracked_returns_24",
4131
+ "sapient_royal_mail_tracked_returns_24",
4132
+ ),
4133
+ (
4134
+ "sapient_royal_mail_tracked_returns_48",
4135
+ "sapient_royal_mail_tracked_returns_48",
4136
+ ),
4137
+ (
4138
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_WE",
4139
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_WE",
4140
+ ),
4141
+ (
4142
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority",
4143
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority",
4144
+ ),
4145
+ (
4146
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority_machine",
4147
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority_machine",
4148
+ ),
4149
+ (
4150
+ "sapient_royal_mail_international_business_mail_letters_zero_sort_priority",
4151
+ "sapient_royal_mail_international_business_mail_letters_zero_sort_priority",
4152
+ ),
4153
+ ("sendle_standard_pickup", "sendle_standard_pickup"),
4154
+ ("sendle_standard_dropoff", "sendle_standard_dropoff"),
4155
+ ("sendle_express_pickup", "sendle_express_pickup"),
4156
+ ("tge_freight_service", "tge_freight_service"),
4157
+ ("tnt_special_express", "tnt_special_express"),
4158
+ ("tnt_9_00_express", "tnt_9_00_express"),
4159
+ ("tnt_10_00_express", "tnt_10_00_express"),
4160
+ ("tnt_12_00_express", "tnt_12_00_express"),
4161
+ ("tnt_express", "tnt_express"),
4162
+ ("tnt_economy_express", "tnt_economy_express"),
4163
+ ("tnt_global_express", "tnt_global_express"),
4164
+ ("ups_standard", "ups_standard"),
4165
+ ("ups_worldwide_express", "ups_worldwide_express"),
4166
+ ("ups_worldwide_expedited", "ups_worldwide_expedited"),
4167
+ ("ups_worldwide_express_plus", "ups_worldwide_express_plus"),
4168
+ ("ups_worldwide_saver", "ups_worldwide_saver"),
4169
+ ("ups_2nd_day_air", "ups_2nd_day_air"),
4170
+ ("ups_2nd_day_air_am", "ups_2nd_day_air_am"),
4171
+ ("ups_3_day_select", "ups_3_day_select"),
4172
+ ("ups_ground", "ups_ground"),
4173
+ ("ups_next_day_air", "ups_next_day_air"),
4174
+ ("ups_next_day_air_early", "ups_next_day_air_early"),
4175
+ ("ups_next_day_air_saver", "ups_next_day_air_saver"),
4176
+ ("ups_expedited_ca", "ups_expedited_ca"),
4177
+ ("ups_express_saver_ca", "ups_express_saver_ca"),
4178
+ ("ups_3_day_select_ca_us", "ups_3_day_select_ca_us"),
4179
+ ("ups_access_point_economy_ca", "ups_access_point_economy_ca"),
4180
+ ("ups_express_ca", "ups_express_ca"),
4181
+ ("ups_express_early_ca", "ups_express_early_ca"),
4182
+ ("ups_express_saver_intl_ca", "ups_express_saver_intl_ca"),
4183
+ ("ups_standard_ca", "ups_standard_ca"),
4184
+ ("ups_worldwide_expedited_ca", "ups_worldwide_expedited_ca"),
4185
+ ("ups_worldwide_express_ca", "ups_worldwide_express_ca"),
4186
+ ("ups_worldwide_express_plus_ca", "ups_worldwide_express_plus_ca"),
4187
+ ("ups_express_early_ca_us", "ups_express_early_ca_us"),
4188
+ ("ups_access_point_economy_eu", "ups_access_point_economy_eu"),
4189
+ ("ups_expedited_eu", "ups_expedited_eu"),
4190
+ ("ups_express_eu", "ups_express_eu"),
4191
+ ("ups_standard_eu", "ups_standard_eu"),
4192
+ ("ups_worldwide_express_plus_eu", "ups_worldwide_express_plus_eu"),
4193
+ ("ups_worldwide_saver_eu", "ups_worldwide_saver_eu"),
4194
+ ("ups_access_point_economy_mx", "ups_access_point_economy_mx"),
4195
+ ("ups_expedited_mx", "ups_expedited_mx"),
4196
+ ("ups_express_mx", "ups_express_mx"),
4197
+ ("ups_standard_mx", "ups_standard_mx"),
4198
+ ("ups_worldwide_express_plus_mx", "ups_worldwide_express_plus_mx"),
4199
+ ("ups_worldwide_saver_mx", "ups_worldwide_saver_mx"),
4200
+ ("ups_access_point_economy_pl", "ups_access_point_economy_pl"),
4201
+ (
4202
+ "ups_today_dedicated_courrier_pl",
4203
+ "ups_today_dedicated_courrier_pl",
4204
+ ),
4205
+ ("ups_today_express_pl", "ups_today_express_pl"),
4206
+ ("ups_today_express_saver_pl", "ups_today_express_saver_pl"),
4207
+ ("ups_today_standard_pl", "ups_today_standard_pl"),
4208
+ ("ups_expedited_pl", "ups_expedited_pl"),
4209
+ ("ups_express_pl", "ups_express_pl"),
4210
+ ("ups_express_plus_pl", "ups_express_plus_pl"),
4211
+ ("ups_express_saver_pl", "ups_express_saver_pl"),
4212
+ ("ups_standard_pl", "ups_standard_pl"),
4213
+ ("ups_2nd_day_air_pr", "ups_2nd_day_air_pr"),
4214
+ ("ups_ground_pr", "ups_ground_pr"),
4215
+ ("ups_next_day_air_pr", "ups_next_day_air_pr"),
4216
+ ("ups_next_day_air_early_pr", "ups_next_day_air_early_pr"),
4217
+ ("ups_worldwide_expedited_pr", "ups_worldwide_expedited_pr"),
4218
+ ("ups_worldwide_express_pr", "ups_worldwide_express_pr"),
4219
+ ("ups_worldwide_express_plus_pr", "ups_worldwide_express_plus_pr"),
4220
+ ("ups_worldwide_saver_pr", "ups_worldwide_saver_pr"),
4221
+ ("ups_express_12_00_de", "ups_express_12_00_de"),
4222
+ ("ups_worldwide_express_freight", "ups_worldwide_express_freight"),
4223
+ (
4224
+ "ups_worldwide_express_freight_midday",
4225
+ "ups_worldwide_express_freight_midday",
4226
+ ),
4227
+ ("ups_worldwide_economy_ddu", "ups_worldwide_economy_ddu"),
4228
+ ("ups_worldwide_economy_ddp", "ups_worldwide_economy_ddp"),
4229
+ ("usps_standard_service", "usps_standard_service"),
4230
+ ("usps_parcel_select", "usps_parcel_select"),
4231
+ (
4232
+ "usps_parcel_select_lightweight",
4233
+ "usps_parcel_select_lightweight",
4234
+ ),
4235
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
4236
+ ("usps_priority_mail", "usps_priority_mail"),
4237
+ (
4238
+ "usps_first_class_package_service",
4239
+ "usps_first_class_package_service",
4240
+ ),
4241
+ ("usps_library_mail", "usps_library_mail"),
4242
+ ("usps_media_mail", "usps_media_mail"),
4243
+ ("usps_bound_printed_matter", "usps_bound_printed_matter"),
4244
+ ("usps_connect_local", "usps_connect_local"),
4245
+ ("usps_connect_mail", "usps_connect_mail"),
4246
+ ("usps_connect_next_day", "usps_connect_next_day"),
4247
+ ("usps_connect_regional", "usps_connect_regional"),
4248
+ ("usps_connect_same_day", "usps_connect_same_day"),
4249
+ ("usps_ground_advantage", "usps_ground_advantage"),
4250
+ ("usps_retail_ground", "usps_retail_ground"),
4251
+ ("usps_all", "usps_all"),
4252
+ ("usps_standard_service", "usps_standard_service"),
4253
+ ("usps_parcel_select", "usps_parcel_select"),
4254
+ (
4255
+ "usps_parcel_select_lightweight",
4256
+ "usps_parcel_select_lightweight",
4257
+ ),
4258
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
4259
+ ("usps_priority_mail", "usps_priority_mail"),
4260
+ (
4261
+ "usps_first_class_package_service",
4262
+ "usps_first_class_package_service",
4263
+ ),
4264
+ ("usps_library_mail", "usps_library_mail"),
4265
+ ("usps_media_mail", "usps_media_mail"),
4266
+ ("usps_bound_printed_matter", "usps_bound_printed_matter"),
4267
+ ("usps_connect_local", "usps_connect_local"),
4268
+ ("usps_connect_mail", "usps_connect_mail"),
4269
+ ("usps_connect_next_day", "usps_connect_next_day"),
4270
+ ("usps_connect_regional", "usps_connect_regional"),
4271
+ ("usps_connect_same_day", "usps_connect_same_day"),
4272
+ ("usps_ground_advantage", "usps_ground_advantage"),
4273
+ ("usps_retail_ground", "usps_retail_ground"),
4274
+ ("usps_all", "usps_all"),
4275
+ ("usps_first_class", "usps_first_class"),
4276
+ ("usps_first_class_commercial", "usps_first_class_commercial"),
4277
+ (
4278
+ "usps_first_class_hfp_commercial",
4279
+ "usps_first_class_hfp_commercial",
4280
+ ),
4281
+ ("usps_priority", "usps_priority"),
4282
+ ("usps_priority_commercial", "usps_priority_commercial"),
4283
+ ("usps_priority_cpp", "usps_priority_cpp"),
4284
+ ("usps_priority_hfp_commercial", "usps_priority_hfp_commercial"),
4285
+ ("usps_priority_hfp_cpp", "usps_priority_hfp_cpp"),
4286
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
4287
+ (
4288
+ "usps_priority_mail_express_commercial",
4289
+ "usps_priority_mail_express_commercial",
4290
+ ),
4291
+ (
4292
+ "usps_priority_mail_express_cpp",
4293
+ "usps_priority_mail_express_cpp",
4294
+ ),
4295
+ ("usps_priority_mail_express_sh", "usps_priority_mail_express_sh"),
4296
+ (
4297
+ "usps_priority_mail_express_sh_commercial",
4298
+ "usps_priority_mail_express_sh_commercial",
4299
+ ),
4300
+ (
4301
+ "usps_priority_mail_express_hfp",
4302
+ "usps_priority_mail_express_hfp",
4303
+ ),
4304
+ (
4305
+ "usps_priority_mail_express_hfp_commercial",
4306
+ "usps_priority_mail_express_hfp_commercial",
4307
+ ),
4308
+ (
4309
+ "usps_priority_mail_express_hfp_cpp",
4310
+ "usps_priority_mail_express_hfp_cpp",
4311
+ ),
4312
+ ("usps_priority_mail_cubic", "usps_priority_mail_cubic"),
4313
+ ("usps_retail_ground", "usps_retail_ground"),
4314
+ ("usps_media", "usps_media"),
4315
+ ("usps_library", "usps_library"),
4316
+ ("usps_all", "usps_all"),
4317
+ ("usps_online", "usps_online"),
4318
+ ("usps_plus", "usps_plus"),
4319
+ ("usps_bpm", "usps_bpm"),
4320
+ ("usps_ground_advantage", "usps_ground_advantage"),
4321
+ (
4322
+ "usps_ground_advantage_commercial",
4323
+ "usps_ground_advantage_commercial",
4324
+ ),
4325
+ ("usps_ground_advantage_hfp", "usps_ground_advantage_hfp"),
4326
+ (
4327
+ "usps_ground_advantage_hfp_commercial",
4328
+ "usps_ground_advantage_hfp_commercial",
4329
+ ),
4330
+ ("usps_ground_advantage_cubic", "usps_ground_advantage_cubic"),
4331
+ ("usps_first_class", "usps_first_class"),
4332
+ ("usps_first_class_commercial", "usps_first_class_commercial"),
4333
+ (
4334
+ "usps_first_class_hfp_commercial",
4335
+ "usps_first_class_hfp_commercial",
4336
+ ),
4337
+ ("usps_priority", "usps_priority"),
4338
+ ("usps_priority_commercial", "usps_priority_commercial"),
4339
+ ("usps_priority_cpp", "usps_priority_cpp"),
4340
+ ("usps_priority_hfp_commercial", "usps_priority_hfp_commercial"),
4341
+ ("usps_priority_hfp_cpp", "usps_priority_hfp_cpp"),
4342
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
4343
+ (
4344
+ "usps_priority_mail_express_commercial",
4345
+ "usps_priority_mail_express_commercial",
4346
+ ),
4347
+ (
4348
+ "usps_priority_mail_express_cpp",
4349
+ "usps_priority_mail_express_cpp",
4350
+ ),
4351
+ ("usps_priority_mail_express_sh", "usps_priority_mail_express_sh"),
4352
+ (
4353
+ "usps_priority_mail_express_sh_commercial",
4354
+ "usps_priority_mail_express_sh_commercial",
4355
+ ),
4356
+ (
4357
+ "usps_priority_mail_express_hfp",
4358
+ "usps_priority_mail_express_hfp",
4359
+ ),
4360
+ (
4361
+ "usps_priority_mail_express_hfp_commercial",
4362
+ "usps_priority_mail_express_hfp_commercial",
4363
+ ),
4364
+ (
4365
+ "usps_priority_mail_express_hfp_cpp",
4366
+ "usps_priority_mail_express_hfp_cpp",
4367
+ ),
4368
+ ("usps_priority_mail_cubic", "usps_priority_mail_cubic"),
4369
+ ("usps_retail_ground", "usps_retail_ground"),
4370
+ ("usps_media", "usps_media"),
4371
+ ("usps_library", "usps_library"),
4372
+ ("usps_all", "usps_all"),
4373
+ ("usps_online", "usps_online"),
4374
+ ("usps_plus", "usps_plus"),
4375
+ ("usps_bpm", "usps_bpm"),
4376
+ ("zoom2u_VIP", "zoom2u_VIP"),
4377
+ ("zoom2u_3_hour", "zoom2u_3_hour"),
4378
+ ("zoom2u_same_day", "zoom2u_same_day"),
4379
+ ],
4380
+ help_text="\n The list of services you want to apply the surcharge to.\n <br/>\n Note that by default, the surcharge is applied to all services\n ",
4381
+ null=True,
4382
+ ),
4383
+ ),
4384
+ ]