commonware-estimator 2026.4.0

Simulate mechanism performance under realistic network conditions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
{
    "data": {
        "ca-central-1": {
            "ap-southeast-3": 230.334,
            "il-central-1": 136.32,
            "eu-west-2": 79.582,
            "mx-central-1": 70.497,
            "ap-east-2": 181.834,
            "me-south-1": 162.704,
            "ap-southeast-1": 214.618,
            "us-west-1": 79.97800000000001,
            "eu-west-3": 85.744,
            "eu-central-2": 93.859,
            "me-central-1": 196.449,
            "ap-northeast-3": 153.73399999999998,
            "us-east-1": 16.312,
            "eu-north-1": 106.395,
            "ap-southeast-5": 221.442,
            "us-west-2": 60.902,
            "ap-southeast-4": 208.875,
            "ap-south-1": 192.852,
            "ap-southeast-7": 241.713,
            "us-east-2": 26.588,
            "ap-east-1": 196.472,
            "sa-east-1": 125.412,
            "ap-northeast-2": 176.51399999999998,
            "ap-south-2": 211.562,
            "eu-south-1": 101.912,
            "eu-west-1": 69.214,
            "ap-southeast-2": 198.256,
            "ca-central-1": 4.008,
            "eu-south-2": 109.538,
            "ap-northeast-1": 147.50799999999998,
            "ca-west-1": 48.253,
            "eu-central-1": 93.33,
            "af-south-1": 225.136
        },
        "ap-southeast-2": {
            "eu-south-2": 269.09799999999996,
            "ap-southeast-2": 4.096,
            "ap-southeast-5": 99.411,
            "sa-east-1": 312.05600000000004,
            "eu-west-2": 266.332,
            "eu-west-3": 280.194,
            "il-central-1": 294.25,
            "eu-south-1": 242.364,
            "ap-southeast-1": 94.832,
            "us-west-1": 139.25,
            "ca-west-1": 157.45299999999995,
            "ap-northeast-1": 105.814,
            "me-central-1": 180.228,
            "mx-central-1": 211.766,
            "af-south-1": 408.742,
            "us-east-2": 188.043,
            "ap-east-1": 127.86,
            "us-east-1": 199.676,
            "eu-central-1": 251.648,
            "ap-east-2": 152.956,
            "eu-west-1": 255.58999999999995,
            "ap-south-1": 154.86200000000002,
            "ca-central-1": 198.17400000000004,
            "me-south-1": 189.073,
            "ap-southeast-3": 109.21499999999996,
            "ap-southeast-7": 120.651,
            "ap-northeast-3": 120.724,
            "eu-central-2": 245.888,
            "ap-south-2": 143.161,
            "eu-north-1": 271.595,
            "ap-northeast-2": 146.134,
            "ap-southeast-4": 13.476,
            "us-west-2": 141.134
        },
        "ap-southeast-5": {
            "ap-south-1": 71.88,
            "ap-east-1": 44.95399999999999,
            "ap-southeast-4": 110.911,
            "eu-west-1": 188.67800000000005,
            "ap-northeast-2": 80.45599999999999,
            "eu-central-1": 168.254,
            "me-central-1": 95.777,
            "us-east-2": 212.02500000000003,
            "ap-southeast-2": 101.224,
            "mx-central-1": 250.616,
            "ap-southeast-3": 23.688,
            "us-west-2": 167.09,
            "us-east-1": 225.71999999999997,
            "ap-east-2": 56.712,
            "ap-southeast-7": 23.97,
            "ap-south-2": 58.255,
            "eu-west-2": 180.02400000000003,
            "eu-north-1": 187.76,
            "eu-west-3": 175.142,
            "ap-northeast-1": 77.108,
            "ca-west-1": 183.247,
            "af-south-1": 330.904,
            "eu-south-2": 175.792,
            "ap-southeast-1": 9.738,
            "ap-northeast-3": 83.75999999999999,
            "il-central-1": 210.206,
            "ap-southeast-5": 2.06,
            "me-south-1": 105.024,
            "us-west-1": 177.958,
            "eu-south-1": 158.425,
            "eu-central-2": 161.68200000000002,
            "ca-central-1": 223.004,
            "sa-east-1": 335.994
        },
        "ap-east-1": {
            "ap-southeast-7": 63.218,
            "ap-southeast-5": 43.458000000000006,
            "eu-west-1": 259.81100000000004,
            "ap-northeast-3": 47.072,
            "eu-west-3": 200.556,
            "me-central-1": 124.65,
            "mx-central-1": 213.65,
            "ap-east-1": 2.826,
            "il-central-1": 235.88,
            "sa-east-1": 316.206,
            "eu-north-1": 213.31000000000003,
            "ap-south-2": 82.78800000000001,
            "eu-west-2": 205.018,
            "us-east-2": 185.045,
            "ap-southeast-1": 37.528000000000006,
            "us-east-1": 198.424,
            "me-south-1": 131.042,
            "ap-northeast-1": 51.567,
            "ap-southeast-3": 52.152,
            "ap-east-2": 17.606,
            "ap-south-1": 98.406,
            "us-west-2": 145.636,
            "ca-west-1": 161.284,
            "af-south-1": 353.126,
            "eu-south-1": 184.18199999999996,
            "ap-northeast-2": 39.166,
            "us-west-1": 155.68400000000003,
            "ca-central-1": 202.888,
            "eu-south-2": 195.51,
            "ap-southeast-4": 139.01999999999998,
            "ap-southeast-2": 127.983,
            "eu-central-1": 194.019,
            "eu-central-2": 187.918
        },
        "eu-west-3": {
            "eu-central-2": 11.763,
            "ap-south-1": 109.494,
            "ap-southeast-4": 290.10200000000003,
            "ap-southeast-2": 280.371,
            "ap-northeast-2": 249.476,
            "mx-central-1": 138.861,
            "ap-southeast-1": 167.245,
            "me-central-1": 113.876,
            "eu-west-1": 20.176,
            "ap-southeast-7": 194.43400000000003,
            "ap-south-2": 128.28,
            "us-west-1": 144.46499999999995,
            "ap-east-2": 196.226,
            "eu-west-2": 11.578,
            "il-central-1": 53.65799999999999,
            "me-south-1": 87.03299999999999,
            "eu-south-2": 21.612,
            "ap-southeast-3": 182.86900000000003,
            "sa-east-1": 195.58300000000003,
            "ca-west-1": 152.62900000000002,
            "eu-south-1": 21.082,
            "eu-north-1": 32.304,
            "us-west-2": 135.667,
            "eu-west-3": 3.322,
            "eu-central-1": 12.699000000000002,
            "us-east-1": 84.15,
            "ap-northeast-1": 219.634,
            "ap-southeast-5": 173.43,
            "af-south-1": 146.536,
            "ca-central-1": 85.772,
            "us-east-2": 94.561,
            "ap-northeast-3": 226.054,
            "ap-east-1": 199.21
        },
        "eu-north-1": {
            "ap-south-1": 148.87699999999998,
            "eu-south-2": 53.404,
            "eu-central-2": 27.644,
            "ap-southeast-1": 180.489,
            "ap-northeast-2": 250.092,
            "sa-east-1": 222.98,
            "us-east-1": 112.202,
            "eu-west-1": 39.718,
            "ap-southeast-3": 194.966,
            "af-south-1": 174.142,
            "ap-southeast-4": 281.782,
            "me-central-1": 134.50799999999998,
            "ap-southeast-2": 271.22,
            "il-central-1": 83.56900000000002,
            "ap-east-2": 225.313,
            "ap-southeast-5": 185.05,
            "ap-northeast-3": 253.369,
            "eu-central-1": 22.98,
            "ap-northeast-1": 246.67,
            "me-south-1": 105.278,
            "eu-south-1": 31.380000000000003,
            "eu-west-2": 30.938,
            "ap-southeast-7": 206.303,
            "eu-north-1": 3.3320000000000007,
            "us-east-2": 122.713,
            "ca-central-1": 104.796,
            "us-west-2": 154.70999999999998,
            "eu-west-3": 31.552,
            "mx-central-1": 166.473,
            "us-west-1": 172.498,
            "ca-west-1": 171.81,
            "ap-south-2": 166.65500000000003,
            "ap-east-1": 212.841
        },
        "eu-central-1": {
            "me-south-1": 86.002,
            "eu-central-2": 9.335,
            "ca-central-1": 92.768,
            "us-east-2": 103.302,
            "mx-central-1": 147.246,
            "af-south-1": 155.906,
            "il-central-1": 64.22800000000001,
            "eu-central-1": 4.042,
            "ap-northeast-1": 226.991,
            "ap-southeast-5": 165.28799999999995,
            "ap-east-1": 193.079,
            "eu-west-1": 26.988,
            "ap-southeast-7": 186.515,
            "ap-southeast-4": 262.091,
            "us-east-1": 92.65,
            "ap-southeast-1": 160.42199999999997,
            "ca-west-1": 159.72599999999997,
            "us-west-2": 142.438,
            "eu-north-1": 22.938,
            "eu-west-2": 17.648000000000003,
            "ap-east-2": 207.096,
            "ap-southeast-3": 174.95299999999995,
            "ap-southeast-2": 251.345,
            "ap-northeast-3": 233.9,
            "us-west-1": 153.012,
            "sa-east-1": 204.017,
            "eu-south-2": 34.827,
            "eu-west-3": 12.15,
            "ap-south-1": 129.262,
            "ap-south-2": 148.40400000000002,
            "eu-south-1": 12.204,
            "me-central-1": 115.264,
            "ap-northeast-2": 230.834
        },
        "ap-south-2": {
            "sa-east-1": 316.71999999999997,
            "ap-south-2": 8.290000000000001,
            "eu-west-2": 133.424,
            "af-south-1": 292.336,
            "eu-central-1": 145.436,
            "ca-west-1": 222.5,
            "ap-southeast-4": 147.444,
            "us-west-2": 205.55,
            "eu-west-1": 141.21999999999997,
            "ap-southeast-5": 50.982000000000006,
            "us-east-1": 204.648,
            "mx-central-1": 271.562,
            "us-west-1": 216.432,
            "ap-south-1": 23.914,
            "ap-northeast-3": 119.508,
            "ap-east-1": 80.27600000000001,
            "us-east-2": 215.13,
            "ap-southeast-7": 72.074,
            "me-central-1": 45.728,
            "eu-north-1": 164.96999999999997,
            "ap-southeast-2": 138.46999999999997,
            "ap-southeast-1": 46.819,
            "me-south-1": 54.843999999999994,
            "eu-south-2": 139.86399999999998,
            "ap-northeast-2": 116.444,
            "eu-west-3": 124.448,
            "il-central-1": 158.696,
            "eu-south-1": 126.824,
            "eu-central-2": 130.724,
            "ap-southeast-3": 60.504,
            "ap-northeast-1": 116.102,
            "ap-east-2": 91.088,
            "ca-central-1": 207.526
        },
        "me-south-1": {
            "ap-southeast-7": 123.744,
            "ca-west-1": 254.687,
            "us-west-1": 221.938,
            "ap-south-2": 57.69900000000001,
            "us-east-2": 171.93,
            "ap-southeast-3": 113.65800000000002,
            "ap-southeast-1": 98.92,
            "ap-northeast-2": 168.862,
            "il-central-1": 110.787,
            "eu-north-1": 105.548,
            "us-east-1": 161.71999999999997,
            "eu-west-1": 98.585,
            "mx-central-1": 215.706,
            "ap-southeast-5": 103.444,
            "ap-northeast-1": 176.4,
            "ap-southeast-2": 189.306,
            "ap-east-2": 144.43099999999998,
            "eu-west-2": 89.464,
            "eu-central-2": 90.92799999999998,
            "ca-central-1": 162.712,
            "eu-south-1": 114.322,
            "ap-south-1": 38.82000000000001,
            "us-west-2": 262.89,
            "ap-northeast-3": 171.612,
            "me-central-1": 14.582,
            "me-south-1": 2.7,
            "ap-southeast-4": 199.736,
            "eu-south-2": 88.872,
            "ap-east-1": 131.65,
            "sa-east-1": 273.39599999999996,
            "eu-central-1": 86.80199999999999,
            "eu-west-3": 86.863,
            "af-south-1": 250.6
        },
        "ap-northeast-3": {
            "ap-south-2": 123.842,
            "ap-northeast-1": 9.900000000000002,
            "ca-west-1": 115.744,
            "il-central-1": 276.631,
            "ca-central-1": 151.32799999999995,
            "ap-east-1": 46.49999999999999,
            "ap-south-1": 138.104,
            "us-east-1": 154.406,
            "ap-northeast-3": 2.19,
            "eu-west-1": 208.168,
            "ap-southeast-1": 76.852,
            "eu-north-1": 253.40200000000004,
            "ap-northeast-2": 25.171,
            "ap-southeast-2": 120.348,
            "me-central-1": 163.098,
            "ap-southeast-7": 101.412,
            "eu-south-1": 224.74,
            "mx-central-1": 170.72600000000003,
            "eu-central-2": 228.374,
            "eu-west-3": 224.654,
            "sa-east-1": 264.418,
            "eu-central-1": 234.27399999999997,
            "us-west-1": 109.928,
            "eu-west-2": 219.074,
            "ap-southeast-5": 81.715,
            "ap-southeast-4": 131.349,
            "ap-southeast-3": 91.662,
            "us-west-2": 99.93,
            "us-east-2": 142.076,
            "af-south-1": 374.778,
            "ap-east-2": 34.87,
            "eu-south-2": 240.657,
            "me-south-1": 170.648
        },
        "af-south-1": {
            "af-south-1": 4.4559999999999995,
            "ap-southeast-1": 313.912,
            "eu-south-1": 189.257,
            "ap-south-1": 271.56500000000005,
            "us-west-2": 273.496,
            "me-central-1": 284.494,
            "eu-central-2": 152.072,
            "il-central-1": 226.708,
            "eu-west-2": 149.552,
            "ap-southeast-3": 335.36899999999997,
            "ap-east-2": 256.114,
            "ap-southeast-2": 408.79,
            "ap-east-1": 347.552,
            "ap-southeast-5": 326.67600000000004,
            "ap-south-2": 296.6,
            "eu-north-1": 174.30399999999997,
            "ap-southeast-7": 345.392,
            "ap-northeast-3": 373.056,
            "mx-central-1": 280.462,
            "sa-east-1": 337.226,
            "ca-west-1": 290.38,
            "ap-southeast-4": 418.93999999999994,
            "us-east-2": 236.193,
            "us-west-1": 286.278,
            "ap-northeast-1": 356.548,
            "ca-central-1": 223.168,
            "us-east-1": 225.892,
            "me-south-1": 247.152,
            "eu-west-3": 144.73000000000002,
            "ap-northeast-2": 386.016,
            "eu-west-1": 158.452,
            "eu-central-1": 154.744,
            "eu-south-2": 135.0
        },
        "us-west-1": {
            "ap-southeast-3": 184.954,
            "ap-east-1": 154.911,
            "me-central-1": 254.396,
            "ap-southeast-7": 195.54,
            "us-west-1": 2.817,
            "eu-south-2": 167.596,
            "eu-north-1": 172.856,
            "ap-east-2": 141.72600000000003,
            "ap-southeast-4": 149.095,
            "eu-west-1": 129.93400000000003,
            "il-central-1": 194.387,
            "ap-south-1": 232.0,
            "eu-west-2": 147.874,
            "ca-central-1": 79.80600000000001,
            "ca-west-1": 39.49400000000001,
            "us-east-1": 63.944,
            "us-east-2": 52.468,
            "eu-central-2": 152.226,
            "eu-south-1": 161.759,
            "ap-northeast-2": 133.536,
            "us-west-2": 21.889999999999997,
            "sa-east-1": 174.762,
            "me-south-1": 221.299,
            "eu-central-1": 153.252,
            "ap-south-2": 219.716,
            "mx-central-1": 74.076,
            "ap-northeast-3": 109.73,
            "ap-northeast-1": 108.256,
            "ap-southeast-2": 139.126,
            "af-south-1": 287.76,
            "ap-southeast-1": 169.592,
            "ap-southeast-5": 174.913,
            "eu-west-3": 144.256
        },
        "il-central-1": {
            "ap-southeast-5": 217.319,
            "af-south-1": 235.508,
            "ap-south-2": 166.09400000000002,
            "ap-southeast-3": 227.104,
            "sa-east-1": 254.492,
            "eu-central-1": 72.646,
            "ap-southeast-7": 238.586,
            "me-central-1": 149.79600000000002,
            "ap-northeast-2": 282.97999999999996,
            "ap-northeast-1": 279.67,
            "ap-east-1": 245.212,
            "eu-west-2": 70.47600000000001,
            "eu-central-2": 50.059,
            "eu-south-2": 64.132,
            "ca-central-1": 144.79399999999998,
            "us-east-2": 147.113,
            "us-east-1": 140.325,
            "eu-west-3": 54.73,
            "eu-south-1": 51.742,
            "me-south-1": 120.378,
            "us-west-1": 203.914,
            "il-central-1": 2.808,
            "mx-central-1": 198.416,
            "ap-east-2": 261.08599999999996,
            "ca-west-1": 212.046,
            "eu-west-1": 78.448,
            "ap-south-1": 153.63799999999998,
            "ap-southeast-2": 304.29999999999995,
            "ap-southeast-1": 211.736,
            "eu-north-1": 92.708,
            "us-west-2": 186.199,
            "ap-northeast-3": 286.50600000000003,
            "ap-southeast-4": 314.324
        },
        "mx-central-1": {
            "eu-west-1": 127.171,
            "ap-southeast-4": 225.07199999999995,
            "ca-central-1": 73.95,
            "ca-west-1": 78.125,
            "sa-east-1": 171.60899999999998,
            "us-east-2": 51.39000000000001,
            "ap-northeast-2": 197.298,
            "ap-northeast-3": 174.04000000000002,
            "us-west-2": 93.135,
            "eu-north-1": 170.353,
            "me-central-1": 252.67199999999997,
            "ap-northeast-1": 169.507,
            "il-central-1": 192.944,
            "us-east-1": 59.196000000000005,
            "ap-east-2": 200.134,
            "eu-south-1": 160.43099999999998,
            "ap-east-1": 216.858,
            "eu-south-2": 165.376,
            "ap-southeast-5": 250.414,
            "ap-south-2": 278.668,
            "ap-south-1": 249.869,
            "eu-west-2": 135.31,
            "eu-central-1": 150.92799999999997,
            "me-south-1": 219.613,
            "eu-central-2": 149.73,
            "ap-southeast-3": 258.572,
            "us-west-1": 75.45200000000001,
            "ap-southeast-2": 215.42,
            "eu-west-3": 141.734,
            "mx-central-1": 4.512,
            "ap-southeast-1": 243.592,
            "af-south-1": 283.956,
            "ap-southeast-7": 271.826
        },
        "us-east-1": {
            "us-west-1": 64.16,
            "ap-northeast-2": 179.82399999999998,
            "eu-west-2": 77.958,
            "eu-central-1": 93.16,
            "eu-west-3": 83.976,
            "eu-central-2": 91.796,
            "mx-central-1": 57.538,
            "ap-northeast-3": 155.5,
            "ap-southeast-7": 247.126,
            "me-south-1": 161.79000000000002,
            "eu-south-2": 107.687,
            "eu-south-1": 101.536,
            "ap-northeast-1": 149.68400000000003,
            "us-west-2": 64.419,
            "ap-southeast-4": 209.515,
            "eu-west-1": 69.62199999999999,
            "eu-north-1": 112.794,
            "ap-southeast-5": 225.008,
            "il-central-1": 134.338,
            "ap-east-1": 198.808,
            "me-central-1": 194.358,
            "ap-southeast-1": 219.64,
            "ap-east-2": 180.884,
            "ap-south-1": 192.50600000000003,
            "ap-south-2": 208.887,
            "af-south-1": 227.96400000000003,
            "ca-west-1": 50.293,
            "us-east-1": 5.505999999999999,
            "ap-southeast-2": 199.812,
            "sa-east-1": 115.31000000000002,
            "ap-southeast-3": 235.445,
            "us-east-2": 15.068,
            "ca-central-1": 16.704
        },
        "sa-east-1": {
            "us-east-1": 115.378,
            "ap-southeast-5": 333.25300000000004,
            "me-south-1": 273.45,
            "eu-north-1": 223.336,
            "me-central-1": 305.377,
            "ap-southeast-2": 312.424,
            "ap-southeast-7": 354.171,
            "ap-southeast-1": 327.67600000000004,
            "af-south-1": 338.904,
            "ap-south-1": 301.76,
            "eu-west-1": 178.588,
            "ap-northeast-2": 289.659,
            "us-west-2": 175.24200000000002,
            "ap-southeast-3": 343.226,
            "ap-northeast-3": 265.451,
            "ap-southeast-4": 322.76200000000006,
            "sa-east-1": 3.317999999999999,
            "eu-central-2": 203.243,
            "eu-west-2": 187.346,
            "eu-south-2": 218.632,
            "us-west-1": 175.30800000000002,
            "ca-central-1": 125.982,
            "eu-central-1": 205.01400000000004,
            "ap-northeast-1": 258.918,
            "eu-south-1": 213.542,
            "il-central-1": 245.676,
            "ap-south-2": 320.046,
            "mx-central-1": 169.212,
            "eu-west-3": 195.948,
            "ap-east-1": 308.396,
            "ca-west-1": 192.022,
            "us-east-2": 125.423,
            "ap-east-2": 290.716
        },
        "ap-northeast-2": {
            "eu-central-2": 224.662,
            "eu-west-3": 249.641,
            "us-east-2": 165.328,
            "ap-southeast-5": 78.20599999999999,
            "me-south-1": 166.79500000000002,
            "il-central-1": 272.52200000000005,
            "ap-south-2": 120.832,
            "ap-southeast-1": 73.91600000000001,
            "ap-northeast-3": 25.406,
            "ap-east-2": 64.782,
            "us-east-1": 179.50400000000002,
            "ca-west-1": 138.395,
            "eu-west-2": 243.862,
            "me-central-1": 163.47699999999998,
            "ap-northeast-2": 4.02,
            "ap-south-1": 135.238,
            "eu-central-1": 231.55399999999997,
            "ca-central-1": 176.098,
            "eu-west-1": 233.225,
            "sa-east-1": 289.366,
            "af-south-1": 386.686,
            "mx-central-1": 194.664,
            "ap-southeast-3": 87.94200000000001,
            "ap-southeast-2": 145.23200000000003,
            "eu-south-2": 239.252,
            "us-west-1": 133.928,
            "eu-north-1": 250.374,
            "ap-southeast-4": 155.211,
            "eu-south-1": 221.956,
            "ap-southeast-7": 98.363,
            "us-west-2": 123.798,
            "ap-east-1": 39.14,
            "ap-northeast-1": 36.369
        },
        "me-central-1": {
            "il-central-1": 144.488,
            "ap-east-1": 126.276,
            "ap-northeast-3": 165.422,
            "ap-northeast-1": 170.514,
            "eu-west-1": 131.198,
            "ca-central-1": 197.156,
            "eu-central-2": 111.276,
            "ap-southeast-4": 192.196,
            "eu-west-3": 115.92400000000002,
            "ap-southeast-3": 105.872,
            "eu-south-1": 107.828,
            "mx-central-1": 251.766,
            "eu-south-2": 121.358,
            "eu-central-1": 116.878,
            "ap-south-1": 31.403999999999996,
            "ca-west-1": 267.772,
            "us-west-1": 256.994,
            "us-east-2": 204.881,
            "ap-southeast-5": 95.275,
            "us-east-1": 194.4,
            "ap-south-2": 50.15400000000001,
            "ap-southeast-7": 116.66,
            "us-west-2": 257.092,
            "ap-southeast-1": 91.096,
            "sa-east-1": 306.97,
            "ap-east-2": 139.35,
            "ap-northeast-2": 165.08800000000002,
            "eu-north-1": 137.322,
            "af-south-1": 285.16400000000004,
            "ap-southeast-2": 182.187,
            "me-central-1": 3.235,
            "me-south-1": 16.625999999999998,
            "eu-west-2": 123.488
        },
        "ap-southeast-7": {
            "eu-central-1": 191.111,
            "ap-northeast-3": 105.022,
            "eu-south-1": 181.064,
            "eu-west-2": 201.291,
            "eu-central-2": 184.972,
            "af-south-1": 351.77799999999996,
            "us-west-1": 199.603,
            "us-west-2": 190.141,
            "ap-south-1": 93.742,
            "ap-east-1": 65.855,
            "eu-south-2": 195.49,
            "ap-southeast-3": 45.394,
            "mx-central-1": 271.955,
            "sa-east-1": 358.375,
            "me-south-1": 125.596,
            "eu-west-1": 210.302,
            "ca-west-1": 205.407,
            "eu-west-3": 196.707,
            "ap-southeast-7": 3.4099999999999993,
            "ap-northeast-2": 101.338,
            "ap-southeast-5": 26.49,
            "ap-southeast-1": 31.048,
            "ap-southeast-2": 123.8,
            "ap-south-2": 78.815,
            "me-central-1": 117.794,
            "eu-north-1": 209.799,
            "ap-northeast-1": 100.667,
            "us-east-2": 232.644,
            "ap-southeast-4": 132.56599999999997,
            "il-central-1": 232.77399999999997,
            "ap-east-2": 78.612,
            "us-east-1": 247.2,
            "ca-central-1": 245.166
        },
        "ca-west-1": {
            "eu-west-1": 138.692,
            "eu-west-2": 149.596,
            "ap-southeast-7": 205.81600000000003,
            "ap-south-2": 229.414,
            "ap-southeast-1": 179.322,
            "us-east-1": 52.78099999999999,
            "mx-central-1": 77.88399999999999,
            "ap-southeast-2": 160.95899999999995,
            "ap-northeast-2": 141.755,
            "eu-west-3": 156.10399999999998,
            "sa-east-1": 195.22600000000003,
            "eu-north-1": 175.536,
            "ca-west-1": 1.481,
            "ap-east-1": 164.655,
            "il-central-1": 206.223,
            "ap-south-1": 245.42400000000004,
            "eu-central-2": 163.87999999999997,
            "af-south-1": 294.428,
            "ca-central-1": 51.286,
            "eu-south-1": 171.84499999999997,
            "us-east-2": 41.557,
            "ap-northeast-3": 119.378,
            "ap-northeast-1": 114.631,
            "us-west-1": 42.568000000000005,
            "me-south-1": 258.058,
            "ap-southeast-4": 171.777,
            "eu-south-2": 179.26899999999998,
            "us-west-2": 21.888,
            "ap-southeast-5": 185.924,
            "me-central-1": 271.26199999999994,
            "eu-central-1": 163.576,
            "ap-southeast-3": 194.36,
            "ap-east-2": 146.06599999999997
        },
        "ap-northeast-1": {
            "eu-west-3": 219.301,
            "ap-northeast-3": 10.12,
            "eu-south-1": 218.044,
            "eu-central-1": 227.58,
            "us-west-1": 108.744,
            "us-east-1": 149.53699999999998,
            "ap-southeast-5": 75.58100000000002,
            "eu-west-1": 202.468,
            "af-south-1": 357.974,
            "ap-northeast-1": 2.75,
            "mx-central-1": 166.42800000000005,
            "ap-northeast-2": 36.343,
            "ap-southeast-2": 106.936,
            "eu-south-2": 234.2,
            "il-central-1": 270.18499999999995,
            "ap-south-2": 119.918,
            "eu-west-2": 213.041,
            "ap-southeast-3": 85.28,
            "ca-central-1": 146.89100000000002,
            "eu-north-1": 247.227,
            "ca-west-1": 111.751,
            "ap-southeast-4": 128.397,
            "ap-southeast-1": 70.59400000000001,
            "us-west-2": 98.598,
            "eu-central-2": 221.82599999999996,
            "ap-east-2": 36.724,
            "ap-southeast-7": 97.583,
            "sa-east-1": 258.34299999999996,
            "me-central-1": 168.882,
            "me-south-1": 174.947,
            "ap-south-1": 134.32800000000003,
            "us-east-2": 135.58000000000004,
            "ap-east-1": 52.086
        },
        "us-west-2": {
            "sa-east-1": 174.628,
            "me-central-1": 257.23400000000004,
            "ap-southeast-3": 175.31199999999998,
            "ap-east-1": 144.916,
            "eu-west-1": 118.292,
            "ap-south-1": 222.202,
            "me-south-1": 214.895,
            "ca-central-1": 60.565999999999995,
            "eu-south-2": 158.98200000000003,
            "ap-southeast-7": 186.223,
            "us-east-2": 50.502,
            "us-west-1": 21.72,
            "us-east-1": 64.031,
            "eu-west-2": 128.938,
            "eu-west-3": 135.29899999999998,
            "eu-central-2": 143.358,
            "ap-southeast-4": 151.611,
            "us-west-2": 3.17,
            "eu-south-1": 151.28000000000003,
            "ap-northeast-1": 98.204,
            "ap-southeast-5": 164.70600000000002,
            "ap-northeast-3": 99.611,
            "af-south-1": 274.764,
            "ap-south-2": 209.593,
            "ap-southeast-2": 141.002,
            "ap-east-2": 131.308,
            "il-central-1": 185.624,
            "ap-northeast-2": 123.571,
            "ca-west-1": 21.363999999999997,
            "eu-central-1": 142.776,
            "mx-central-1": 90.412,
            "ap-southeast-1": 160.206,
            "eu-north-1": 155.46699999999998
        },
        "ap-southeast-4": {
            "us-east-1": 210.238,
            "us-west-1": 151.01799999999997,
            "mx-central-1": 224.46600000000004,
            "ap-southeast-3": 120.728,
            "me-south-1": 201.085,
            "ap-east-2": 164.272,
            "il-central-1": 306.918,
            "ap-southeast-2": 14.438,
            "ap-southeast-4": 2.3440000000000003,
            "ap-east-1": 140.351,
            "eu-central-2": 257.98400000000004,
            "ap-northeast-1": 135.11200000000002,
            "ca-central-1": 210.282,
            "eu-west-1": 267.382,
            "ap-south-2": 153.17400000000004,
            "eu-central-1": 264.322,
            "eu-south-2": 285.41999999999996,
            "us-west-2": 151.88,
            "eu-west-2": 278.756,
            "ap-northeast-3": 132.654,
            "ap-northeast-2": 157.211,
            "af-south-1": 420.724,
            "eu-north-1": 283.56,
            "ap-southeast-5": 111.177,
            "us-east-2": 198.207,
            "ca-west-1": 169.394,
            "ap-southeast-7": 131.392,
            "ap-south-1": 166.54999999999998,
            "eu-south-1": 254.592,
            "sa-east-1": 324.354,
            "eu-west-3": 291.86400000000003,
            "me-central-1": 192.067,
            "ap-southeast-1": 105.928
        },
        "ap-southeast-3": {
            "eu-central-1": 178.83499999999998,
            "eu-west-1": 198.699,
            "eu-south-1": 169.42,
            "ap-northeast-2": 91.296,
            "ap-east-2": 68.696,
            "eu-central-2": 173.308,
            "ap-east-1": 54.814,
            "me-south-1": 116.744,
            "af-south-1": 344.70799999999997,
            "ap-southeast-2": 112.53600000000002,
            "ap-northeast-1": 88.006,
            "us-west-1": 188.72,
            "il-central-1": 221.859,
            "eu-west-3": 185.745,
            "ap-southeast-5": 26.386000000000003,
            "ap-southeast-3": 2.5640000000000005,
            "us-east-1": 235.918,
            "ca-central-1": 233.92600000000004,
            "mx-central-1": 260.31399999999996,
            "eu-west-2": 190.843,
            "eu-south-2": 185.861,
            "ap-southeast-4": 122.792,
            "us-west-2": 175.48700000000002,
            "ap-northeast-3": 94.546,
            "eu-north-1": 198.479,
            "ca-west-1": 194.514,
            "us-east-2": 221.218,
            "ap-southeast-7": 46.848,
            "sa-east-1": 346.988,
            "ap-southeast-1": 19.2,
            "ap-south-2": 67.75,
            "me-central-1": 107.21099999999998,
            "ap-south-1": 82.30199999999999
        },
        "us-east-2": {
            "ap-southeast-3": 221.158,
            "ca-west-1": 40.682,
            "eu-south-1": 112.59,
            "ap-northeast-3": 145.18400000000003,
            "ap-south-1": 204.744,
            "us-east-2": 5.401999999999999,
            "eu-north-1": 123.86999999999998,
            "me-south-1": 172.388,
            "ap-south-2": 219.803,
            "ap-southeast-1": 204.494,
            "ap-east-2": 170.55400000000003,
            "ap-southeast-4": 198.416,
            "us-west-2": 51.166,
            "eu-west-2": 88.86200000000001,
            "ap-southeast-2": 188.625,
            "eu-central-1": 104.18800000000002,
            "mx-central-1": 52.028,
            "eu-central-2": 103.256,
            "sa-east-1": 125.97,
            "il-central-1": 145.38600000000002,
            "ap-southeast-5": 215.056,
            "ca-central-1": 28.306,
            "ap-southeast-7": 232.93,
            "eu-south-2": 118.798,
            "eu-west-1": 80.71,
            "ap-east-1": 188.336,
            "me-central-1": 205.295,
            "us-west-1": 53.21999999999999,
            "eu-west-3": 95.22,
            "us-east-1": 16.476,
            "af-south-1": 239.35,
            "ap-northeast-2": 167.36749999999998,
            "ap-northeast-1": 136.476
        },
        "ap-east-2": {
            "af-south-1": 256.93899999999996,
            "ca-west-1": 145.08499999999998,
            "ap-southeast-4": 165.74599999999998,
            "eu-central-1": 208.898,
            "ap-east-1": 19.375,
            "us-east-1": 180.64300000000003,
            "me-south-1": 147.94299999999998,
            "ap-south-2": 97.78,
            "ap-northeast-1": 37.404,
            "ap-east-2": 5.596,
            "il-central-1": 253.299,
            "eu-south-2": 202.875,
            "ca-central-1": 183.231,
            "ap-southeast-7": 77.9,
            "eu-west-3": 196.634,
            "eu-west-1": 236.437,
            "mx-central-1": 199.036,
            "us-west-1": 142.951,
            "ap-southeast-1": 51.721,
            "ap-southeast-3": 67.358,
            "us-west-2": 132.305,
            "eu-north-1": 228.60799999999995,
            "ap-northeast-2": 65.655,
            "sa-east-1": 292.711,
            "eu-south-1": 201.408,
            "ap-northeast-3": 35.819,
            "us-east-2": 167.548,
            "ap-south-1": 113.84,
            "eu-west-2": 246.77,
            "ap-southeast-5": 57.529,
            "me-central-1": 140.483,
            "ap-southeast-2": 154.752,
            "eu-central-2": 204.813
        },
        "eu-south-1": {
            "us-east-1": 101.888,
            "ap-southeast-1": 151.478,
            "eu-central-1": 12.972,
            "us-west-1": 162.15800000000002,
            "me-south-1": 113.305,
            "af-south-1": 191.542,
            "ap-northeast-3": 224.962,
            "ap-south-1": 110.822,
            "me-central-1": 105.996,
            "ca-central-1": 102.0,
            "ca-west-1": 168.87,
            "ap-southeast-5": 156.25099999999998,
            "ap-southeast-2": 242.464,
            "il-central-1": 47.32300000000001,
            "ap-south-2": 130.71,
            "eu-west-1": 36.306,
            "ap-southeast-4": 253.175,
            "eu-central-2": 7.558000000000002,
            "ap-northeast-2": 221.71299999999997,
            "eu-west-2": 27.594,
            "ap-east-2": 200.38,
            "us-east-2": 112.334,
            "ap-northeast-1": 217.986,
            "us-west-2": 151.846,
            "ap-east-1": 184.209,
            "eu-west-3": 21.083999999999996,
            "sa-east-1": 213.224,
            "eu-north-1": 31.986,
            "ap-southeast-3": 166.18099999999998,
            "ap-southeast-7": 177.51299999999998,
            "eu-south-2": 26.078000000000003,
            "mx-central-1": 156.58999999999995,
            "eu-south-1": 2.758
        },
        "ap-southeast-1": {
            "ap-southeast-4": 104.839,
            "ap-southeast-5": 8.518,
            "ca-central-1": 215.408,
            "us-west-2": 160.92399999999998,
            "ap-south-1": 64.496,
            "ap-east-2": 50.748000000000005,
            "eu-west-1": 179.077,
            "ap-southeast-3": 17.552999999999997,
            "af-south-1": 316.89300000000003,
            "us-west-1": 170.582,
            "us-east-2": 203.55,
            "eu-south-1": 151.572,
            "il-central-1": 203.169,
            "ap-southeast-7": 28.664,
            "me-central-1": 90.092,
            "eu-north-1": 180.675,
            "ap-east-1": 37.18900000000001,
            "eu-west-2": 169.897,
            "eu-central-2": 155.11,
            "eu-central-1": 161.197,
            "sa-east-1": 327.793,
            "ap-northeast-3": 77.168,
            "me-south-1": 98.123,
            "mx-central-1": 241.183,
            "ca-west-1": 176.19,
            "ap-south-2": 51.479,
            "ap-northeast-2": 74.208,
            "ap-southeast-2": 94.844,
            "ap-southeast-1": 3.731,
            "eu-west-3": 166.976,
            "eu-south-2": 164.60399999999998,
            "ap-northeast-1": 70.94,
            "us-east-1": 219.003
        },
        "eu-west-2": {
            "ap-southeast-7": 198.894,
            "ap-east-1": 202.4,
            "us-west-2": 128.932,
            "ap-northeast-1": 212.92799999999997,
            "ap-south-1": 117.578,
            "us-west-1": 147.834,
            "af-south-1": 150.50000000000003,
            "me-south-1": 88.626,
            "il-central-1": 61.452,
            "me-central-1": 121.632,
            "ap-northeast-3": 219.222,
            "ap-southeast-4": 276.808,
            "ap-east-2": 243.906,
            "ap-southeast-1": 169.546,
            "us-east-2": 88.107,
            "sa-east-1": 186.756,
            "eu-south-1": 27.261000000000003,
            "eu-west-2": 3.348,
            "eu-south-2": 34.858000000000004,
            "mx-central-1": 132.03400000000002,
            "ca-west-1": 145.87600000000003,
            "ap-southeast-3": 187.638,
            "ap-southeast-2": 266.092,
            "ap-northeast-2": 243.132,
            "eu-west-1": 13.506,
            "us-east-1": 77.514,
            "ap-southeast-5": 178.42499999999998,
            "eu-north-1": 31.588,
            "eu-west-3": 11.026,
            "ca-central-1": 78.954,
            "eu-central-1": 17.836000000000002,
            "ap-south-2": 136.836,
            "eu-central-2": 19.353
        },
        "eu-west-1": {
            "eu-west-3": 20.092,
            "ap-southeast-3": 196.711,
            "us-east-2": 80.22,
            "af-south-1": 160.34,
            "me-south-1": 97.852,
            "ap-south-2": 145.34199999999998,
            "ap-southeast-2": 255.742,
            "me-central-1": 130.144,
            "us-west-1": 130.108,
            "eu-south-2": 31.062,
            "ap-southeast-1": 178.534,
            "ap-southeast-5": 187.427,
            "ap-northeast-2": 232.626,
            "eu-north-1": 40.878,
            "ap-south-1": 125.89,
            "eu-central-1": 27.456,
            "eu-west-1": 3.178,
            "us-east-1": 69.736,
            "ap-east-1": 225.13,
            "il-central-1": 70.206,
            "ap-southeast-7": 207.775,
            "ca-west-1": 135.47200000000004,
            "ap-northeast-3": 209.036,
            "us-west-2": 118.55,
            "ap-east-2": 234.576,
            "sa-east-1": 178.20600000000002,
            "ap-northeast-1": 202.28200000000004,
            "eu-west-2": 14.057999999999998,
            "ap-southeast-4": 266.379,
            "mx-central-1": 124.154,
            "eu-central-2": 27.97,
            "ca-central-1": 69.226,
            "eu-south-1": 35.922000000000004
        },
        "ap-south-1": {
            "ap-southeast-3": 78.684,
            "mx-central-1": 244.466,
            "us-west-1": 231.589,
            "ap-northeast-2": 134.488,
            "me-central-1": 29.717,
            "us-east-1": 189.67,
            "ap-southeast-2": 154.675,
            "ap-southeast-1": 63.786,
            "eu-west-1": 125.389,
            "eu-central-1": 128.96800000000002,
            "eu-north-1": 148.43,
            "af-south-1": 274.025,
            "ap-northeast-3": 137.60899999999998,
            "ap-southeast-5": 69.28900000000002,
            "eu-central-2": 115.148,
            "eu-west-3": 108.615,
            "us-east-2": 199.802,
            "eu-south-2": 118.398,
            "sa-east-1": 301.02200000000005,
            "il-central-1": 138.158,
            "ap-south-2": 27.323,
            "us-west-2": 222.188,
            "ap-northeast-1": 133.25399999999996,
            "eu-west-2": 117.11499999999998,
            "ap-south-1": 3.167,
            "eu-south-1": 109.935,
            "ap-east-1": 97.036,
            "ap-east-2": 110.718,
            "ca-central-1": 191.241,
            "ca-west-1": 239.528,
            "me-south-1": 38.129999999999995,
            "ap-southeast-7": 89.40299999999999,
            "ap-southeast-4": 165.10699999999997
        },
        "eu-south-2": {
            "eu-south-2": 3.184,
            "eu-central-2": 33.45100000000001,
            "mx-central-1": 164.954,
            "me-central-1": 121.989,
            "me-south-1": 93.184,
            "ap-southeast-3": 182.231,
            "ap-south-2": 143.628,
            "ap-northeast-2": 239.57,
            "ap-northeast-3": 241.426,
            "ap-east-2": 204.056,
            "ap-south-1": 123.402,
            "eu-west-2": 37.058,
            "ap-southeast-2": 272.511,
            "ap-southeast-4": 280.908,
            "ap-east-1": 200.514,
            "il-central-1": 61.583,
            "eu-north-1": 56.59000000000001,
            "us-east-1": 107.674,
            "us-west-2": 159.096,
            "us-west-1": 171.176,
            "ca-central-1": 111.879,
            "eu-west-3": 22.24,
            "ap-northeast-1": 234.492,
            "ap-southeast-7": 192.59,
            "ap-southeast-5": 170.692,
            "eu-west-1": 31.494,
            "eu-central-1": 35.468999999999994,
            "sa-east-1": 221.08399999999995,
            "us-east-2": 118.381,
            "ap-southeast-1": 164.902,
            "af-south-1": 137.654,
            "eu-south-1": 28.456,
            "ca-west-1": 179.262
        },
        "eu-central-2": {
            "us-east-2": 102.534,
            "il-central-1": 41.947,
            "ap-southeast-5": 160.454,
            "mx-central-1": 147.426,
            "eu-south-1": 7.636000000000001,
            "af-south-1": 152.491,
            "sa-east-1": 203.494,
            "ca-central-1": 94.272,
            "ap-southeast-1": 155.408,
            "ap-south-1": 116.52,
            "me-central-1": 109.777,
            "eu-central-1": 9.89,
            "ap-southeast-2": 246.62,
            "eu-north-1": 28.72,
            "ap-southeast-3": 170.39600000000002,
            "us-west-2": 143.498,
            "ap-south-2": 135.54000000000002,
            "ap-southeast-4": 257.1,
            "ap-east-2": 203.2,
            "ap-southeast-7": 181.621,
            "eu-west-1": 28.221,
            "ap-northeast-2": 224.782,
            "ap-northeast-3": 228.97100000000003,
            "eu-west-2": 20.071,
            "eu-central-2": 3.4,
            "ap-east-1": 188.555,
            "me-south-1": 91.853,
            "us-west-1": 152.685,
            "ca-west-1": 161.221,
            "us-east-1": 92.003,
            "eu-south-2": 31.289,
            "ap-northeast-1": 221.94,
            "eu-west-3": 12.27
        }
    }
}